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,80 @@
# ADDON mailstream
# Copyright (C)
# This file is distributed under the same license as the Friendica mailstream 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 19:19+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"
#: mailstream.php:55
msgid "From Address"
msgstr "Adresa odesílatele"
#: mailstream.php:57
msgid "Email address that stream items will appear to be from."
msgstr "Adresa, která vysílá položky, se objeví jako odesílatel."
#: mailstream.php:60 mailstream.php:282
msgid "Save Settings"
msgstr "Uložit Nastavení"
#: mailstream.php:165
msgid "Re:"
msgstr "Re:"
#: mailstream.php:173
msgid "Friendica post"
msgstr "Friendica příspěvky"
#: mailstream.php:176
msgid "Diaspora post"
msgstr "Diaspora příspvěvky"
#: mailstream.php:183
msgid "Feed item"
msgstr "Zdrojová položka"
#: mailstream.php:186
msgid "Email"
msgstr "E-mail"
#: mailstream.php:188
msgid "Friendica Item"
msgstr "Friendica položka"
#: mailstream.php:229
msgid "Upstream"
msgstr "Upstream"
#: mailstream.php:230
msgid "Local"
msgstr "Lokální"
#: mailstream.php:274
msgid "Email Address"
msgstr "E-mailová adresa"
#: mailstream.php:276
msgid "Leave blank to use your account email address"
msgstr "Ponechte prázdné pro použití vaší e-mailové adresy"
#: mailstream.php:279
msgid "Enabled"
msgstr "Povoleno"
#: mailstream.php:281
msgid "Mail Stream Settings"
msgstr "Mail Stream nastavení"

View file

@ -0,0 +1,22 @@
<?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["From Address"] = "Adresa odesílatele";
$a->strings["Email address that stream items will appear to be from."] = "Adresa, která vysílá položky, se objeví jako odesílatel.";
$a->strings["Save Settings"] = "Uložit Nastavení";
$a->strings["Re:"] = "Re:";
$a->strings["Friendica post"] = "Friendica příspěvky";
$a->strings["Diaspora post"] = "Diaspora příspvěvky";
$a->strings["Feed item"] = "Zdrojová položka";
$a->strings["Email"] = "E-mail";
$a->strings["Friendica Item"] = "Friendica položka";
$a->strings["Upstream"] = "Upstream";
$a->strings["Local"] = "Lokální";
$a->strings["Email Address"] = "E-mailová adresa";
$a->strings["Leave blank to use your account email address"] = "Ponechte prázdné pro použití vaší e-mailové adresy";
$a->strings["Enabled"] = "Povoleno";
$a->strings["Mail Stream Settings"] = "Mail Stream nastavení";