friendica-addons/langfilter/lang/pl/strings.php

19 lines
2.1 KiB
PHP
Raw Normal View History

2018-04-01 17:55:08 +00:00
<?php
if(! function_exists("string_plural_select_pl")) {
function string_plural_select_pl($n){
2018-08-06 12:04:55 +00:00
$n = intval($n);
if ($n==1) { return 0; } else if (($n%10>=2 && $n%10<=4) && ($n%100<12 || $n%100>14)) { return 1; } else if ($n!=1 && ($n%10>=0 && $n%10<=1) || ($n%10>=5 && $n%10<=9) || ($n%100>=12 && $n%100<=14)) { return 2; } else { return 3; }
2018-04-01 17:55:08 +00:00
}}
2022-03-08 15:26:19 +00:00
$a->strings['This addon tries to identify the language posts are written in. If it does not match any language specified below, posts will be hidden by collapsing them.'] = 'Ten dodatek próbuje zidentyfikować wpisy językowe, które są zapisywane. Jeśli nie pasuje do żadnego z języków określonych poniżej, wpisy będą ukrywane przez ich zwijanie.';
2021-10-10 06:27:53 +00:00
$a->strings['Use the language filter'] = 'Użyj filtru językowego';
$a->strings['Able to read'] = 'Może odczytać';
2022-03-08 15:26:19 +00:00
$a->strings['List of abbreviations (ISO 639-1 codes) for languages you speak, comma separated. For example "de,it".'] = 'Lista skrótów (kody ISO 639-1) dla języków, które znasz, oddzielonych przecinkami. Na przykład "pl,de,it".';
2021-10-10 06:27:53 +00:00
$a->strings['Minimum confidence in language detection'] = 'Minimalne zaufanie do wykrywania języka';
$a->strings['Minimum confidence in language detection being correct, from 0 to 100. Posts will not be filtered when the confidence of language detection is below this percent value.'] = 'Minimalne zaufanie do wykrywania języka jest poprawne, od 0 do 100. Wpisy nie będą filtrowane, gdy pewność wykrycia języka jest poniżej tej wartości procentowej.';
$a->strings['Minimum length of message body'] = 'Minimalna długość treści wiadomości';
$a->strings['Minimum number of characters in message body for filter to be used. Posts shorter than this will not be filtered. Note: Language detection is unreliable for short content (<200 characters).'] = 'Minimalna liczba znaków w treści wiadomości dla używanego filtra. Wpisy krótsze niż te nie będą filtrowane. Uwaga: Wykrywanie języka nie jest wiarygodne dla krótkiej treści (<200 znaków).';
2022-03-08 15:26:19 +00:00
$a->strings['Language Filter'] = 'Filtr językowy';
2021-10-10 06:27:53 +00:00
$a->strings['Save Settings'] = 'Zapisz ustawienia';
$a->strings['Filtered language: %s'] = 'Język filtrowany: %s';