pageheader PL translation

This commit is contained in:
Tobias Diekershoff 2018-04-01 19:21:11 +02:00
parent 42e6368786
commit 73414bccbb
2 changed files with 54 additions and 5 deletions

View File

@ -0,0 +1,42 @@
# ADDON pageheader
# Copyright (C)
# This file is distributed under the same license as the Friendica pageheader 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-11 18:52+0100\n"
"PO-Revision-Date: 2018-03-31 17:27+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"
#: pageheader.php:53
msgid "\"pageheader\" Settings"
msgstr "\"pageheader\" Ustawienia"
#: pageheader.php:54
msgid "Message"
msgstr "Wiadomość"
#: pageheader.php:54
msgid ""
"Message to display on every page on this server (or put a pageheader.html "
"file in your docroot)"
msgstr "Wiadomość do wyświetlenia na każdej stronie tego serwera (lub umieść plik pageheader.html w swoim dokumencie roboczym)"
#: pageheader.php:55
msgid "Save Settings"
msgstr "Zapisz ustawienia"
#: pageheader.php:69
msgid "pageheader Settings saved."
msgstr "pageheader Ustawienia zapisane."

View File

@ -1,5 +1,12 @@
<?php
$a->strings["\"pageheader\" Settings"] = "";
$a->strings["Submit"] = "Potwierdź";
$a->strings["pageheader Settings saved."] = "";
<?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["\"pageheader\" Settings"] = "\"pageheader\" Ustawienia";
$a->strings["Message"] = "Wiadomość";
$a->strings["Message to display on every page on this server (or put a pageheader.html file in your docroot)"] = "Wiadomość do wyświetlenia na każdej stronie tego serwera (lub umieść plik pageheader.html w swoim dokumencie roboczym)";
$a->strings["Save Settings"] = "Zapisz ustawienia";
$a->strings["pageheader Settings saved."] = "pageheader Ustawienia zapisane.";