langfilter PL translation

This commit is contained in:
Tobias Diekershoff 2018-04-01 19:55:08 +02:00
parent 1385f0713b
commit e44714ac69
2 changed files with 99 additions and 0 deletions

View File

@ -0,0 +1,80 @@
# ADDON langfilter
# Copyright (C)
# This file is distributed under the same license as the Friendica langfilter addon package.
#
#
# Translators:
# Waldemar Stoczkowski <waldemar.stoczkowski@gmail.com>, 2018
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-03-29 22:43+0700\n"
"PO-Revision-Date: 2018-04-01 14:28+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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pl\n"
"Plural-Forms: nplurals=4; plural=(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);\n"
#: langfilter.php:57
msgid "Language Filter"
msgstr "Filtr językowy"
#: langfilter.php:58
msgid ""
"This addon tries to identify the language posts are writen in. If it does "
"not match any language specifed below, posts will be hidden by collapsing "
"them."
msgstr "Ten dodatek próbuje zidentyfikować posty językowe, które są zapisywane. Jeśli nie pasuje do żadnego z języków określonych poniżej, posty będą ukrywane przez ich zwijanie."
#: langfilter.php:59
msgid "Use the language filter"
msgstr "Użyj filtru językowego"
#: langfilter.php:60
msgid "Able to read"
msgstr "Może odczytać"
#: langfilter.php:60
msgid ""
"List of abbreviations (iso2 codes) for languages you speak, comma separated."
" For example \"de,it\"."
msgstr "Lista skrótów (kodów iso2) dla języków, które znasz, oddzielonych przecinkami. Na przykład \"pl,de,it\"."
#: langfilter.php:61
msgid "Minimum confidence in language detection"
msgstr "Minimalne zaufanie do wykrywania języka"
#: langfilter.php:61
msgid ""
"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."
msgstr "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."
#: langfilter.php:62
msgid "Minimum length of message body"
msgstr "Minimalna długość treści wiadomości"
#: langfilter.php:62
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)."
#: langfilter.php:63
msgid "Save Settings"
msgstr "Zapisz ustawienia"
#: langfilter.php:104
msgid "Language Filter Settings saved."
msgstr "Ustawienia filtra języka zostały zapisane."
#: langfilter.php:181
#, php-format
msgid "Hidden content in %s - Click to open/close"
msgstr "Ukryte treści w %s - Kliknij aby otworzyć/zamknąć"

View File

@ -0,0 +1,19 @@
<?php
if(! function_exists("string_plural_select_pl")) {
function string_plural_select_pl($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);;
}}
;
$a->strings["Language Filter"] = "Filtr językowy";
$a->strings["This addon tries to identify the language posts are writen in. If it does not match any language specifed below, posts will be hidden by collapsing them."] = "Ten dodatek próbuje zidentyfikować posty językowe, które są zapisywane. Jeśli nie pasuje do żadnego z języków określonych poniżej, posty będą ukrywane przez ich zwijanie.";
$a->strings["Use the language filter"] = "Użyj filtru językowego";
$a->strings["Able to read"] = "Może odczytać";
$a->strings["List of abbreviations (iso2 codes) for languages you speak, comma separated. For example \"de,it\"."] = "Lista skrótów (kodów iso2) dla języków, które znasz, oddzielonych przecinkami. Na przykład \"pl,de,it\".";
$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["Save Settings"] = "Zapisz ustawienia";
$a->strings["Language Filter Settings saved."] = "Ustawienia filtra języka zostały zapisane.";
$a->strings["Hidden content in %s - Click to open/close"] = "Ukryte treści w %s - Kliknij aby otworzyć/zamknąć";