qcomment PL translation

This commit is contained in:
Tobias Diekershoff 2018-04-01 11:37:36 +02:00
parent 2fe45ed3d3
commit 1f2f820226
2 changed files with 69 additions and 10 deletions

View File

@ -0,0 +1,54 @@
# ADDON qcomment
# Copyright (C)
# This file is distributed under the same license as the Friendica qcomment 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: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: 2018-03-31 20:01+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"
#: qcomment.php:51
msgid ":-)"
msgstr ":-)"
#: qcomment.php:51
msgid ":-("
msgstr ":-("
#: qcomment.php:51
msgid "lol"
msgstr "lol"
#: qcomment.php:54
msgid "Quick Comment Settings"
msgstr "Ustawienia szybkiego komentowania"
#: qcomment.php:56
msgid ""
"Quick comments are found near comment boxes, sometimes hidden. Click them to"
" provide simple replies."
msgstr "Szybkie komentarze znajdują się w pobliżu pól komentarza, czasami są ukryte. Kliknij je, aby zapewnić proste odpowiedzi."
#: qcomment.php:57
msgid "Enter quick comments, one per line"
msgstr ""
#: qcomment.php:61
msgid "Submit"
msgstr "Wyślij"
#: qcomment.php:75
msgid "Quick Comment settings saved."
msgstr "Zapisano szybkie ustawienia komentarzy."

View File

@ -1,10 +1,15 @@
<?php
$a->strings[":-)"] = ":-)";
$a->strings[":-("] = ":-(";
$a->strings["lol"] = "lol";
$a->strings["Quick Comment Settings"] = "Ustawienia szybkiego komentowania";
$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "";
$a->strings["Enter quick comments, one per line"] = "";
$a->strings["Submit"] = "Potwierdź";
$a->strings["Quick Comment 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[":-)"] = ":-)";
$a->strings[":-("] = ":-(";
$a->strings["lol"] = "lol";
$a->strings["Quick Comment Settings"] = "Ustawienia szybkiego komentowania";
$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "Szybkie komentarze znajdują się w pobliżu pól komentarza, czasami są ukryte. Kliknij je, aby zapewnić proste odpowiedzi.";
$a->strings["Enter quick comments, one per line"] = "";
$a->strings["Submit"] = "Wyślij";
$a->strings["Quick Comment settings saved."] = "Zapisano szybkie ustawienia komentarzy.";