forked from friendica/friendica-addons
added CS translation of the ifttt addon THX Aditoo
This commit is contained in:
parent
1e592cc727
commit
51a0593054
51
ifttt/lang/cs/messages.po
Normal file
51
ifttt/lang/cs/messages.po
Normal file
|
@ -0,0 +1,51 @@
|
|||
# ADDON ifttt
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica ifttt addon package.
|
||||
#
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-27 09:30+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Lorem Ipsum <aditoo@seznam.cz>, 2018\n"
|
||||
"Language-Team: Czech (https://www.transifex.com/Friendica/teams/12172/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=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
|
||||
#: ifttt.php:53 ifttt.php:57
|
||||
msgid "IFTTT Mirror"
|
||||
msgstr "Zrcadlení IFTTT"
|
||||
|
||||
#: ifttt.php:61
|
||||
msgid ""
|
||||
"Create an account at <a href=\"http://www.ifttt.com\">IFTTT</a>. Create "
|
||||
"three Facebook recipes that are connected with <a "
|
||||
"href=\"https://ifttt.com/maker\">Maker</a> (In the form \"if Facebook then "
|
||||
"Maker\") with the following parameters:"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:68
|
||||
msgid "Body for \"new status message\""
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:70
|
||||
msgid "Body for \"new photo upload\""
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:72
|
||||
msgid "Body for \"new link post\""
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:77
|
||||
msgid "Generate new key"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:81
|
||||
msgid "Save Settings"
|
||||
msgstr "Uložit nastavení"
|
15
ifttt/lang/cs/strings.php
Normal file
15
ifttt/lang/cs/strings.php
Normal file
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_cs")) {
|
||||
function string_plural_select_cs($n){
|
||||
$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["IFTTT Mirror"] = "Zrcadlení IFTTT";
|
||||
$a->strings["Create an account at <a href=\"http://www.ifttt.com\">IFTTT</a>. Create three Facebook recipes that are connected with <a href=\"https://ifttt.com/maker\">Maker</a> (In the form \"if Facebook then Maker\") with the following parameters:"] = "";
|
||||
$a->strings["Body for \"new status message\""] = "";
|
||||
$a->strings["Body for \"new photo upload\""] = "";
|
||||
$a->strings["Body for \"new link post\""] = "";
|
||||
$a->strings["Generate new key"] = "";
|
||||
$a->strings["Save Settings"] = "Uložit nastavení";
|
Loading…
Reference in a new issue