CS wppost addon

This commit is contained in:
Tobias Diekershoff 2018-06-18 11:32:36 +02:00
parent 767e7b78e5
commit badc9cc02c
2 changed files with 43 additions and 33 deletions

View File

@ -4,65 +4,73 @@
# #
# #
# Translators: # Translators:
# Michal Šupler <msupler@gmail.com>, 2014 # Aditoo, 2018
# Aditoo, 2018
# michal_s <msupler@gmail.com>, 2014
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: friendica\n" "Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-23 14:45+0200\n" "POT-Creation-Date: 2017-01-24 21:06+0100\n"
"PO-Revision-Date: 2014-07-02 15:14+0000\n" "PO-Revision-Date: 2018-06-14 14:10+0000\n"
"Last-Translator: Michal Šupler <msupler@gmail.com>\n" "Last-Translator: Aditoo\n"
"Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n" "Language-Team: Czech (http://www.transifex.com/Friendica/friendica/language/cs/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Language: cs\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"
#: wppost.php:42 #: wppost.php:42
msgid "Post to Wordpress" msgid "Post to Wordpress"
msgstr "Příspěvky do WordPress" msgstr "Odesílat na WordPress"
#: wppost.php:79 wppost.php:83 #: wppost.php:80 wppost.php:84
msgid "Wordpress Export" msgid "Wordpress Export"
msgstr "Wordpress Export" msgstr "Exportovat do WordPress"
#: wppost.php:86 #: wppost.php:87
msgid "Enable WordPress Post Addon" msgid "Enable WordPress Post Addon"
msgstr "Povolit rozšíření na WordPress" msgstr "Povolit doplněk WordPress Post"
#: wppost.php:91 #: wppost.php:92
msgid "WordPress username" msgid "WordPress username"
msgstr "WordPress uživatelské jméno" msgstr "WordPress uživatelské jméno"
#: wppost.php:96 #: wppost.php:97
msgid "WordPress password" msgid "WordPress password"
msgstr "WordPress heslo" msgstr "WordPress heslo"
#: wppost.php:101 #: wppost.php:102
msgid "WordPress API URL" msgid "WordPress API URL"
msgstr "URL adresa API WordPress" msgstr "URL adresa API WordPress"
#: wppost.php:106 #: wppost.php:107
msgid "Post to WordPress by default" msgid "Post to WordPress by default"
msgstr "standardně posílat příspěvky na WordPress" msgstr "standardně posílat příspěvky na WordPress"
#: wppost.php:111 #: wppost.php:112
msgid "Provide a backlink to the Friendica post" msgid "Provide a backlink to the Friendica post"
msgstr "Poskytuje zpětný link na Friendica příspěvek" msgstr "Poskytnout zpětný odkaz na příspěvek Friendica"
#: wppost.php:116 #: wppost.php:116
msgid ""
"Text for the backlink, e.g. Read the original post and comment stream on "
"Friendica."
msgstr "Text pro zpětné odkazy, např. \"Přečtěte si původní příspěvek a komentáře na Friendica\"."
#: wppost.php:121
msgid "Don't post messages that are too short" msgid "Don't post messages that are too short"
msgstr "Neposílat zprávy, které jsou příliš krátké" msgstr "Neposílejte zprávy, které jsou příliš krátké"
#: wppost.php:122 #: wppost.php:127
msgid "Save Settings" msgid "Save Settings"
msgstr "Uložit Nastavení" msgstr "Uložit nastavení"
#: wppost.php:243 #: wppost.php:206
msgid "Read the orig­i­nal post and com­ment stream on Friendica"
msgstr "Přečtěte si původní příspěvek a komentáře na Friendica"
#: wppost.php:269
msgid "Post from Friendica" msgid "Post from Friendica"
msgstr "Příspěvek z Friendica" msgstr "Příspěvek z Friendica"
#: wppost.php:255
msgid "Read the original post and comment stream on Friendica"
msgstr "Přečíst si originální příspěvek a komentáře na Friendica"

View File

@ -2,18 +2,20 @@
if(! function_exists("string_plural_select_cs")) { if(! function_exists("string_plural_select_cs")) {
function string_plural_select_cs($n){ 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["Post to Wordpress"] = "Příspěvky do WordPress"; $a->strings["Post to Wordpress"] = "Odesílat na WordPress";
$a->strings["Wordpress Export"] = "Wordpress Export"; $a->strings["Wordpress Export"] = "Exportovat do WordPress";
$a->strings["Enable WordPress Post Addon"] = "Povolit rozšíření na WordPress"; $a->strings["Enable WordPress Post Addon"] = "Povolit doplněk WordPress Post";
$a->strings["WordPress username"] = "WordPress uživatelské jméno"; $a->strings["WordPress username"] = "WordPress uživatelské jméno";
$a->strings["WordPress password"] = "WordPress heslo"; $a->strings["WordPress password"] = "WordPress heslo";
$a->strings["WordPress API URL"] = "URL adresa API WordPress"; $a->strings["WordPress API URL"] = "URL adresa API WordPress";
$a->strings["Post to WordPress by default"] = "standardně posílat příspěvky na WordPress"; $a->strings["Post to WordPress by default"] = "standardně posílat příspěvky na WordPress";
$a->strings["Provide a backlink to the Friendica post"] = "Poskytuje zpětný link na Friendica příspěvek"; $a->strings["Provide a backlink to the Friendica post"] = "Poskytnout zpětný odkaz na příspěvek Friendica";
$a->strings["Don't post messages that are too short"] = "Neposílat zprávy, které jsou příliš krátké"; $a->strings["Text for the backlink, e.g. Read the original post and comment stream on Friendica."] = "Text pro zpětné odkazy, např. \"Přečtěte si původní příspěvek a komentáře na Friendica\".";
$a->strings["Save Settings"] = "Uložit Nastavení"; $a->strings["Don't post messages that are too short"] = "Neposílejte zprávy, které jsou příliš krátké";
$a->strings["Save Settings"] = "Uložit nastavení";
$a->strings["Read the orig­i­nal post and com­ment stream on Friendica"] = "Přečtěte si původní příspěvek a komentáře na Friendica";
$a->strings["Post from Friendica"] = "Příspěvek z Friendica"; $a->strings["Post from Friendica"] = "Příspěvek z Friendica";
$a->strings["Read the original post and comment stream on Friendica"] = "Přečíst si originální příspěvek a komentáře na Friendica";