updates CS translation of the catavatar, pageheader, randplace and tumblr addons THX Aditoo

This commit is contained in:
Tobias Diekershoff 2018-06-11 10:16:56 +02:00
parent eeeb7b5634
commit 3db811e5c5
8 changed files with 71 additions and 53 deletions

View file

@ -4,20 +4,21 @@
#
#
# Translators:
# Michal Šupler <msupler@gmail.com>, 2014
# Lorem Ipsum <aditoo@seznam.cz>, 2018
# michal_s <msupler@gmail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 13:18+0200\n"
"PO-Revision-Date: 2014-07-28 18:09+0000\n"
"Last-Translator: Michal Šupler <msupler@gmail.com>\n"
"Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: 2018-06-10 09:11+0000\n"
"Last-Translator: Lorem Ipsum <aditoo@seznam.cz>\n"
"Language-Team: Czech (http://www.transifex.com/Friendica/friendica/language/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: cs\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
#: randplace.php:169
msgid "Randplace Settings"
@ -25,8 +26,8 @@ msgstr "Randplace Nastavení"
#: randplace.php:171
msgid "Enable Randplace Addon"
msgstr "Povolit Randplace Addon"
msgstr "Povolit doplněk Randplace"
#: randplace.php:177
msgid "Save Settings"
msgstr "Uložit Nastavení"
msgid "Submit"
msgstr "Odeslat"

View file

@ -2,9 +2,10 @@
if(! function_exists("string_plural_select_cs")) {
function string_plural_select_cs($n){
return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;;
$n = intval($n);
return ($n == 1 && $n % 1 == 0) ? 0 : ($n >= 2 && $n <= 4 && $n % 1 == 0) ? 1: ($n % 1 != 0 ) ? 2 : 3;;
}}
;
$a->strings["Randplace Settings"] = "Randplace Nastavení";
$a->strings["Enable Randplace Addon"] = "Povolit Randplace Addon";
$a->strings["Save Settings"] = "Uložit Nastavení";
$a->strings["Enable Randplace Addon"] = "Povolit doplněk Randplace";
$a->strings["Submit"] = "Odeslat";