forked from friendica/friendica-addons
notifyall PL translation
This commit is contained in:
parent
3a7cf51d7a
commit
7a663354f4
58
notifyall/lang/pl/messages.po
Normal file
58
notifyall/lang/pl/messages.po
Normal file
|
@ -0,0 +1,58 @@
|
|||
# ADDON notifyall
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica notifyall addon package.
|
||||
#
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-14 16:41+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Waldemar Stoczkowski <waldemar.stoczkowski@gmail.com>, 2018\n"
|
||||
"Language-Team: Polish (https://www.transifex.com/Friendica/teams/12172/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"
|
||||
|
||||
#: notifyall.php:26
|
||||
msgid "Send email to all members"
|
||||
msgstr "Wyślij e-mail do wszystkich członków"
|
||||
|
||||
#: notifyall.php:42
|
||||
#, php-format
|
||||
msgid "%s Administrator"
|
||||
msgstr "%s Administrator"
|
||||
|
||||
#: notifyall.php:44
|
||||
#, php-format
|
||||
msgid "%1$s, %2$s Administrator"
|
||||
msgstr "%1$s, %2$s Administrator"
|
||||
|
||||
#: notifyall.php:60
|
||||
msgid "No recipients found."
|
||||
msgstr "Nie znaleziono adresatów."
|
||||
|
||||
#: notifyall.php:78
|
||||
msgid "Emails sent"
|
||||
msgstr "Wysłane wiadomości e-mail"
|
||||
|
||||
#: notifyall.php:86
|
||||
msgid "Send email to all members of this Friendica instance."
|
||||
msgstr ""
|
||||
"Wyślij wiadomość e-mail do wszystkich członków tej instancji Friendica."
|
||||
|
||||
#: notifyall.php:91
|
||||
msgid "Message subject"
|
||||
msgstr "Temat wiadomości"
|
||||
|
||||
#: notifyall.php:92
|
||||
msgid "Test mode (only send to administrator)"
|
||||
msgstr "Tryb testowy (wysyłany tylko do administratora)"
|
||||
|
||||
#: notifyall.php:93
|
||||
msgid "Submit"
|
||||
msgstr "Zatwierdź"
|
16
notifyall/lang/pl/strings.php
Normal file
16
notifyall/lang/pl/strings.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?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["Send email to all members"] = "Wyślij e-mail do wszystkich członków";
|
||||
$a->strings["%s Administrator"] = "%s Administrator";
|
||||
$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrator";
|
||||
$a->strings["No recipients found."] = "Nie znaleziono adresatów.";
|
||||
$a->strings["Emails sent"] = "Wysłane wiadomości e-mail";
|
||||
$a->strings["Send email to all members of this Friendica instance."] = "Wyślij wiadomość e-mail do wszystkich członków tej instancji Friendica.";
|
||||
$a->strings["Message subject"] = "Temat wiadomości";
|
||||
$a->strings["Test mode (only send to administrator)"] = "Tryb testowy (wysyłany tylko do administratora)";
|
||||
$a->strings["Submit"] = "Zatwierdź";
|
Loading…
Reference in a new issue