updated CS translation of the fromgplus addon THX Aditoo

This commit is contained in:
Tobias Diekershoff 2018-06-12 16:17:16 +02:00
parent a5b1984e74
commit f95abcbe07
2 changed files with 38 additions and 20 deletions

View File

@ -4,37 +4,51 @@
#
#
# Translators:
# Michal Šupler <msupler@gmail.com>, 2014-2015
# Aditoo, 2018
# Aditoo, 2018
# michal_s <msupler@gmail.com>, 2014-2015
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: 2015-02-11 19:38+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: 2018-04-01 11:14-0400\n"
"PO-Revision-Date: 2018-06-11 19:37+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"
#: fromgplus.php:33
msgid "Google+ Import Settings"
msgstr "Nastavení importu z Google+ "
#: fromgplus.php:55 fromgplus.php:59
msgid "Google+ Mirror"
msgstr "Zrcadlení Google+"
#: fromgplus.php:36
#: fromgplus.php:64
msgid "Enable Google+ Import"
msgstr "Povolit Import z Google+"
#: fromgplus.php:39
#: fromgplus.php:67
msgid "Google Account ID"
msgstr "název účtu Google "
msgstr "ID účtu Google "
#: fromgplus.php:44
msgid "Submit"
msgstr "Odeslat"
#: fromgplus.php:70
msgid "Add keywords to post"
msgstr "Přidat k příspěvku klíčová slova"
#: fromgplus.php:59
#: fromgplus.php:75 fromgplus.php:105
msgid "Save Settings"
msgstr "Uložit nastavení"
#: fromgplus.php:96
msgid "Google+ Import Settings saved."
msgstr "Nastavení importu z Google+ uloženo."
#: fromgplus.php:106
msgid "Key"
msgstr "Klíč"
#: fromgplus.php:114
msgid "Settings updated."
msgstr "Nastavení aktualizována"

View File

@ -2,11 +2,15 @@
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["Google+ Import Settings"] = "Nastavení importu z Google+ ";
$a->strings["Google+ Mirror"] = "Zrcadlení Google+";
$a->strings["Enable Google+ Import"] = "Povolit Import z Google+";
$a->strings["Google Account ID"] = "název účtu Google ";
$a->strings["Submit"] = "Odeslat";
$a->strings["Google Account ID"] = "ID účtu Google ";
$a->strings["Add keywords to post"] = "Přidat k příspěvku klíčová slova";
$a->strings["Save Settings"] = "Uložit nastavení";
$a->strings["Google+ Import Settings saved."] = "Nastavení importu z Google+ uloženo.";
$a->strings["Key"] = "Klíč";
$a->strings["Settings updated."] = "Nastavení aktualizována";