mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-06-07 09:54:27 +02:00
regenerated all strings.php files from the current translation strings (message.po)
This commit is contained in:
parent
7f3704ae54
commit
500aab3c53
716 changed files with 1081 additions and 1607 deletions
|
@ -3,11 +3,10 @@
|
|||
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;;
|
||||
if (($n == 1 && $n % 1 == 0)) { return 0; } else if (($n >= 2 && $n <= 4 && $n % 1 == 0)) { return 1; } else if (($n % 1 != 0 )) { return 2; } else { return 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:"] = "Vytvořte si účet na <a href=\"http://www.ifttt.com\">IFTTT</a>. Vytvořte si tři recepty na Facebooku, které jsou připojeny k <a href=\"https://ifttt.com/maker\">Makeru</a> (ve formě \"If Facebook then Maker\") s následujícími parametry:";
|
||||
$a->strings["Body for \"new status message\""] = "Tělo pole \"nová statusová zpráva\"";
|
||||
$a->strings["Body for \"new photo upload\""] = "Tělo pole \"nová nahraná fotografie\"";
|
||||
$a->strings["Body for \"new link post\""] = "Tělo pole \"nový příspěvek\"";
|
||||
|
|
|
@ -2,11 +2,11 @@
|
|||
|
||||
if(! function_exists("string_plural_select_de")) {
|
||||
function string_plural_select_de($n){
|
||||
return ($n != 1);;
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
;
|
||||
$a->strings["IFTTT Mirror"] = "IFTTT Spiegel";
|
||||
$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:"] = "Lege ein Konto bei <a href=\"http://www.ifttt.com\"> IFTTT an</a>. Gebe drei Facebook Empfänger ein, die mit <a href=\"https://ifttt.com/maker\">Maker </a> verbunden sind (in der Form \"wenn Facebook dann Maker\"), mit den folgenden Parametern:";
|
||||
$a->strings["Body for \"new status message\""] = "Body für \"Neue Status Meldung\"";
|
||||
$a->strings["Body for \"new photo upload\""] = "Body für \"Neues Foto hochgeladen\"";
|
||||
$a->strings["Body for \"new link post\""] = "Body für \"Neue Nachricht\"";
|
||||
|
|
|
@ -3,11 +3,10 @@
|
|||
if(! function_exists("string_plural_select_en_gb")) {
|
||||
function string_plural_select_en_gb($n){
|
||||
$n = intval($n);
|
||||
return ($n != 1);;
|
||||
return intval($n != 1);
|
||||
}}
|
||||
;
|
||||
$a->strings["IFTTT Mirror"] = "IFTTT Mirror";
|
||||
$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:"] = "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\""] = "Body for \"new status message\"";
|
||||
$a->strings["Body for \"new photo upload\""] = "Body for \"new photo upload\"";
|
||||
$a->strings["Body for \"new link post\""] = "Body for \"new link post\"";
|
||||
|
|
|
@ -2,13 +2,9 @@
|
|||
|
||||
if(! function_exists("string_plural_select_fi_fi")) {
|
||||
function string_plural_select_fi_fi($n){
|
||||
return ($n != 1);;
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
;
|
||||
$a->strings["IFTTT Mirror"] = "";
|
||||
$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"] = "Luo uusi avain";
|
||||
$a->strings["Save Settings"] = "Tallenna asetukset";
|
||||
|
|
|
@ -2,11 +2,11 @@
|
|||
|
||||
if(! function_exists("string_plural_select_pl")) {
|
||||
function string_plural_select_pl($n){
|
||||
return ($n==1 ? 0 : ($n%10>=2 && $n%10<=4) && ($n%100<12 || $n%100>14) ? 1 : $n!=1 && ($n%10>=0 && $n%10<=1) || ($n%10>=5 && $n%10<=9) || ($n%100>=12 && $n%100<=14) ? 2 : 3);;
|
||||
$n = intval($n);
|
||||
if ($n==1) { return 0; } else if (($n%10>=2 && $n%10<=4) && ($n%100<12 || $n%100>14)) { return 1; } else if ($n!=1 && ($n%10>=0 && $n%10<=1) || ($n%10>=5 && $n%10<=9) || ($n%100>=12 && $n%100<=14)) { return 2; } else { return 3; }
|
||||
}}
|
||||
;
|
||||
$a->strings["IFTTT Mirror"] = "Lustro 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:"] = "Utwórz konto na <a href=\"http://www.ifttt.com\">IFTTT</a>. Utwórz trzy przepisy na Facebooku, które są powiązane z <a href=\"https://ifttt.com/maker\">Maker</a> (W formie \"jeśli Facebook następnie Maker\") z następujących parametrów:";
|
||||
$a->strings["Body for \"new status message\""] = "Treść dla \"nowy status wiadomości\"";
|
||||
$a->strings["Body for \"new photo upload\""] = "Treść dla \"nowe przesyłanie zdjęć\"";
|
||||
$a->strings["Body for \"new link post\""] = "Treść dla \"nowe łącza postu\"";
|
||||
|
|
|
@ -3,13 +3,9 @@
|
|||
if(! function_exists("string_plural_select_zh_cn")) {
|
||||
function string_plural_select_zh_cn($n){
|
||||
$n = intval($n);
|
||||
return 0;;
|
||||
return intval(0);
|
||||
}}
|
||||
;
|
||||
$a->strings["IFTTT Mirror"] = "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 href=\"http://www.ifttt.com\">IFTTT</a>创建一个帐户。创建三个与<a href=\"https://ifttt.com/maker\">Maker</a>(表格为“ if Facebook then Maker”)相关的 Facebook 菜谱,参数如下:";
|
||||
$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"] = "保存设置";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue