mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-25 08:43:40 +00:00
updated CS translation of the buffer addon THX Aditoo
This commit is contained in:
parent
ee173d2339
commit
a8f3196f28
2 changed files with 10 additions and 8 deletions
|
@ -4,20 +4,21 @@
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# Michal Šupler <msupler@gmail.com>, 2014
|
# Lorem Ipsum <aditoo@seznam.cz>, 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-22 13:18+0200\n"
|
"POT-Creation-Date: 2014-06-22 13:18+0200\n"
|
||||||
"PO-Revision-Date: 2014-07-07 18:27+0000\n"
|
"PO-Revision-Date: 2018-06-09 09:15+0000\n"
|
||||||
"Last-Translator: Michal Šupler <msupler@gmail.com>\n"
|
"Last-Translator: Lorem Ipsum <aditoo@seznam.cz>\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"
|
||||||
|
|
||||||
#: buffer.php:31
|
#: buffer.php:31
|
||||||
msgid "Permission denied."
|
msgid "Permission denied."
|
||||||
|
@ -61,7 +62,7 @@ msgstr "Přihlásit ke spojení na Buffer"
|
||||||
|
|
||||||
#: buffer.php:146
|
#: buffer.php:146
|
||||||
msgid "Enable Buffer Post Addon"
|
msgid "Enable Buffer Post Addon"
|
||||||
msgstr "Povolit Buffer Post Addon"
|
msgstr "Povolit doplněk Buffer Post"
|
||||||
|
|
||||||
#: buffer.php:151
|
#: buffer.php:151
|
||||||
msgid "Post to Buffer by default"
|
msgid "Post to Buffer by default"
|
||||||
|
|
|
@ -2,7 +2,8 @@
|
||||||
|
|
||||||
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["Permission denied."] = "Přístup odmítnut.";
|
$a->strings["Permission denied."] = "Přístup odmítnut.";
|
||||||
|
@ -15,7 +16,7 @@ $a->strings["return to the connector page"] = "návrat ke stránce konektor";
|
||||||
$a->strings["Post to Buffer"] = "Příspěvek na Buffer";
|
$a->strings["Post to Buffer"] = "Příspěvek na Buffer";
|
||||||
$a->strings["Buffer Export"] = "Buffer Export";
|
$a->strings["Buffer Export"] = "Buffer Export";
|
||||||
$a->strings["Authenticate your Buffer connection"] = "Přihlásit ke spojení na Buffer";
|
$a->strings["Authenticate your Buffer connection"] = "Přihlásit ke spojení na Buffer";
|
||||||
$a->strings["Enable Buffer Post Addon"] = "Povolit Buffer Post Addon";
|
$a->strings["Enable Buffer Post Addon"] = "Povolit doplněk Buffer Post";
|
||||||
$a->strings["Post to Buffer by default"] = "Defaultně zaslat na Buffer";
|
$a->strings["Post to Buffer by default"] = "Defaultně zaslat na Buffer";
|
||||||
$a->strings["Check to delete this preset"] = "Zaškrtnout pro smazání tohoto nastavení";
|
$a->strings["Check to delete this preset"] = "Zaškrtnout pro smazání tohoto nastavení";
|
||||||
$a->strings["Posts are going to all accounts that are enabled by default:"] = "Příspěvky jsou zasílány na všechny účty, které jsou defaultně povoleny:";
|
$a->strings["Posts are going to all accounts that are enabled by default:"] = "Příspěvky jsou zasílány na všechny účty, které jsou defaultně povoleny:";
|
||||||
|
|
Loading…
Reference in a new issue