PL translation langfilter THX waldis

This commit is contained in:
Tobias Diekershoff 2018-08-06 14:04:55 +02:00
parent 9944a5696c
commit 37952d899d
2 changed files with 4 additions and 3 deletions

View File

@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-01 11:11-0400\n"
"PO-Revision-Date: 2018-04-07 16:43+0000\n"
"PO-Revision-Date: 2018-08-04 11:31+0000\n"
"Last-Translator: Waldemar Stoczkowski <waldemar.stoczkowski@gmail.com>\n"
"Language-Team: Polish (http://www.transifex.com/Friendica/friendica/language/pl/)\n"
"MIME-Version: 1.0\n"
@ -64,7 +64,7 @@ msgid ""
"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)."
msgstr "Minimalna liczba znaków w treści wiadomości dla używanego filtru. Wpisy krótsze niż ta nie będą filtrowane. Uwaga: Wykrywanie języka nie jest wiarygodne dla krótkiej treści (<200 znaków)."
msgstr "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)."
#: langfilter.php:64
msgid "Save Settings"

View File

@ -2,6 +2,7 @@
if(! function_exists("string_plural_select_pl")) {
function string_plural_select_pl($n){
$n = intval($n);
return ($n==1 ? 0 : ($n%10>=2 && $n%10<=4) && ($n%100<12 || $n%100>14) ? 1 : $n!=1 && ($n%10>=0 && $n%10<=1) || ($n%10>=5 && $n%10<=9) || ($n%100>=12 && $n%100<=14) ? 2 : 3);;
}}
;
@ -13,7 +14,7 @@ $a->strings["List of abbreviations (iso2 codes) for languages you speak, comma s
$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 filtru. Wpisy krótsze niż ta nie będą filtrowane. Uwaga: Wykrywanie języka nie jest wiarygodne dla krótkiej treści (<200 znaków).";
$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).";
$a->strings["Save Settings"] = "Zapisz ustawienia";
$a->strings["Language Filter Settings saved."] = "Ustawienia filtra języka zostały zapisane.";
$a->strings["Filtered language: %s"] = "Język filtrowany: %s";