PL translation update THX strebski

This commit is contained in:
Tobias Diekershoff 2022-03-08 16:26:19 +01:00
parent ba94368482
commit ed96e0a2f6
No known key found for this signature in database
GPG key ID: 25FE376FF17694A1
107 changed files with 1290 additions and 1501 deletions

View file

@ -5,14 +5,15 @@
#
# Translators:
# Joe Doe, 2021
# Piotr Strębski <strebski@gmail.com>, 2022
# Waldemar Stoczkowski, 2018
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
"PO-Revision-Date: 2021-11-15 19:24+0000\n"
"Last-Translator: Joe Doe\n"
"POT-Creation-Date: 2021-12-12 22:09+0000\n"
"PO-Revision-Date: 2022-03-08 14:32+0000\n"
"Last-Translator: Piotr Strębski <strebski@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"
@ -20,14 +21,36 @@ msgstr ""
"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"
#: rendertime.php:36
#: rendertime.php:30
msgid "Save Settings"
msgstr "Zapisz ustawienia"
#: rendertime.php:31
msgid "Show callstack"
msgstr ""
#: rendertime.php:31
msgid ""
"Show detailed performance measures in the callstack. When deactivated, only "
"the summary will be displayed."
msgstr ""
#: rendertime.php:32
msgid "Minimal time"
msgstr ""
#: rendertime.php:32
msgid "Minimal time that an activity needs to be listed in the callstack."
msgstr ""
#: rendertime.php:57
#, php-format
msgid ""
"Database: %s/%s, Network: %s, Rendering: %s, Session: %s, I/O: %s, Other: "
"%s, Total: %s"
msgstr "Baza danych: %s/%s, Sieć: %s, Rendering: %s, Sesja: %s, I/O: %s, Inne: %s, Łacznie: %s"
#: rendertime.php:53
#: rendertime.php:74
#, php-format
msgid "Class-Init: %s, Boot: %s, Init: %s, Content: %s, Other: %s, Total: %s"
msgstr ""

View file

@ -5,4 +5,5 @@ function string_plural_select_pl($n){
$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; }
}}
$a->strings['Save Settings'] = 'Zapisz ustawienia';
$a->strings['Database: %s/%s, Network: %s, Rendering: %s, Session: %s, I/O: %s, Other: %s, Total: %s'] = 'Baza danych: %s/%s, Sieć: %s, Rendering: %s, Sesja: %s, I/O: %s, Inne: %s, Łacznie: %s';