CS: added translation from transifex

This commit is contained in:
Tobias Diekershoff 2014-09-06 17:59:46 +02:00
parent 951f9dc006
commit 214e7d9b1c
128 changed files with 4605 additions and 664 deletions

View file

@ -0,0 +1,76 @@
# ADDON buffer
# Copyright (C)
# This file is distributed under the same license as the Friendica buffer addon package.
#
#
# Translators:
# Michal Šupler <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-07 18:27+0000\n"
"Last-Translator: Michal Šupler <msupler@gmail.com>\n"
"Language-Team: Czech (http://www.transifex.com/projects/p/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"
#: buffer.php:31
msgid "Permission denied."
msgstr "Přístup odmítnut."
#: buffer.php:57 buffer.php:185
msgid "Save Settings"
msgstr "Uložit Nastavení"
#: buffer.php:59
msgid "Client ID"
msgstr "Client ID"
#: buffer.php:60
msgid "Client Secret"
msgstr "Client Secret"
#: buffer.php:67
msgid "Error when registering buffer connection:"
msgstr "Chyba při registraci buffer spojená"
#: buffer.php:86
msgid "You are now authenticated to buffer. "
msgstr "Nyní jste přihlášen k bufferu."
#: buffer.php:87
msgid "return to the connector page"
msgstr "návrat ke stránce konektor"
#: buffer.php:103
msgid "Post to Buffer"
msgstr "Příspěvek na Buffer"
#: buffer.php:128 buffer.php:132
msgid "Buffer Export"
msgstr "Buffer Export"
#: buffer.php:142
msgid "Authenticate your Buffer connection"
msgstr "Přihlásit ke spojení na Buffer"
#: buffer.php:146
msgid "Enable Buffer Post Plugin"
msgstr "Povolit Buffer Post Plugin"
#: buffer.php:151
msgid "Post to Buffer by default"
msgstr "Defaultně zaslat na Buffer"
#: buffer.php:156
msgid "Check to delete this preset"
msgstr "Zaškrtnout pro smazání tohoto nastavení"
#: buffer.php:165
msgid "Posts are going to all accounts that are enabled by default:"
msgstr "Příspěvky jsou zasílány na všechny účty, které jsou defaultně povoleny:"

View file

@ -0,0 +1,21 @@
<?php
if(! function_exists("string_plural_select_cs")) {
function string_plural_select_cs($n){
return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;;
}}
;
$a->strings["Permission denied."] = "Přístup odmítnut.";
$a->strings["Save Settings"] = "Uložit Nastavení";
$a->strings["Client ID"] = "Client ID";
$a->strings["Client Secret"] = "Client Secret";
$a->strings["Error when registering buffer connection:"] = "Chyba při registraci buffer spojená";
$a->strings["You are now authenticated to buffer. "] = "Nyní jste přihlášen k bufferu.";
$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["Buffer Export"] = "Buffer Export";
$a->strings["Authenticate your Buffer connection"] = "Přihlásit ke spojení na Buffer";
$a->strings["Enable Buffer Post Plugin"] = "Povolit Buffer Post Plugin";
$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["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:";