updated CS translation of the startpage addon THX Aditoo

This commit is contained in:
Tobias Diekershoff 2018-06-12 16:20:24 +02:00
parent 93c564ecc5
commit 09a37202ac
2 changed files with 23 additions and 21 deletions

View File

@ -4,33 +4,34 @@
#
#
# Translators:
# Michal Šupler <msupler@gmail.com>, 2014
# Aditoo, 2018
# michal_s <msupler@gmail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-23 14:45+0200\n"
"PO-Revision-Date: 2014-07-28 18:13+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-12 12:13+0000\n"
"Last-Translator: Aditoo\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"
#: startpage.php:83 startpage.php:87
msgid "Startpage"
msgstr "Úvodní stránka"
#: startpage.php:83
msgid "Startpage Settings"
msgstr "Nastavení startovní stránky"
#: startpage.php:90
#: startpage.php:85
msgid "Home page to load after login - leave blank for profile wall"
msgstr "Domá stránka k načtení po přihlášení - pro profilovou zeď ponechejte prázdné"
msgstr "Domovslá stránka k načtení po přihlášení - pro profilovou zeď ponechejte prázdné"
#: startpage.php:93
#: startpage.php:88
msgid "Examples: &quot;network&quot; or &quot;notifications/system&quot;"
msgstr "Příklady: \"síť\" nebo \"notifikace systému\""
msgstr "Příklady: &quot;network&quot; nebo &quot;notifications/system&quot;"
#: startpage.php:97
msgid "Save Settings"
msgstr "Uložit Nastavení"
#: startpage.php:92
msgid "Submit"
msgstr "Odeslat"

View File

@ -2,10 +2,11 @@
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["Startpage"] = "Úvodní stránka";
$a->strings["Home page to load after login - leave blank for profile wall"] = "Domá stránka k načtení po přihlášení - pro profilovou zeď ponechejte prázdné";
$a->strings["Examples: &quot;network&quot; or &quot;notifications/system&quot;"] = "Příklady: \"síť\" nebo \"notifikace systému\"";
$a->strings["Save Settings"] = "Uložit Nastavení";
$a->strings["Startpage Settings"] = "Nastavení startovní stránky";
$a->strings["Home page to load after login - leave blank for profile wall"] = "Domovslá stránka k načtení po přihlášení - pro profilovou zeď ponechejte prázdné";
$a->strings["Examples: &quot;network&quot; or &quot;notifications/system&quot;"] = "Příklady: &quot;network&quot; nebo &quot;notifications/system&quot;";
$a->strings["Submit"] = "Odeslat";