mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-05 17:42:54 +00:00
pageheader PL translation
This commit is contained in:
parent
42e6368786
commit
73414bccbb
2 changed files with 54 additions and 5 deletions
42
pageheader/lang/pl/messages.po
Normal file
42
pageheader/lang/pl/messages.po
Normal 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."
|
|
@ -1,5 +1,12 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
$a->strings["\"pageheader\" Settings"] = "";
|
if(! function_exists("string_plural_select_pl")) {
|
||||||
$a->strings["Submit"] = "Potwierdź";
|
function string_plural_select_pl($n){
|
||||||
$a->strings["pageheader Settings saved."] = "";
|
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.";
|
||||||
|
|
Loading…
Reference in a new issue