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,7 +3,7 @@
|
|||
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["\"Secure Mail\" Settings"] = "Nastavení \"Secure Mail\"";
|
||||
|
|
|
@ -2,7 +2,8 @@
|
|||
|
||||
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["\"Secure Mail\" Settings"] = "\"Secure Mail\" Einstellungen";
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
if(! function_exists("string_plural_select_et")) {
|
||||
function string_plural_select_et($n){
|
||||
$n = intval($n);
|
||||
return ($n != 1);;
|
||||
return intval($n != 1);
|
||||
}}
|
||||
;
|
||||
$a->strings["\"Secure Mail\" Settings"] = "\"Turvaline Meil\" sätted";
|
||||
|
@ -11,7 +11,6 @@ $a->strings["Save Settings"] = "Salvesta sätted";
|
|||
$a->strings["Save and send test"] = "Salvesta ja saada testmeil";
|
||||
$a->strings["Enable Secure Mail"] = "Aktiveeri Turvaline meil";
|
||||
$a->strings["Public key"] = "Avalik võti";
|
||||
$a->strings["Your public PGP key, ascii armored format"] = "";
|
||||
$a->strings["Secure Mail Settings saved."] = "Turvalise Meili sätted salvestatud.";
|
||||
$a->strings["Test email sent"] = "Testmeil saadetud";
|
||||
$a->strings["There was an error sending the test email"] = "Testmeili saatmisel ilmnes viga";
|
||||
|
|
|
@ -2,7 +2,8 @@
|
|||
|
||||
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["\"Secure Mail\" Settings"] = "Secure Mail -asetukset";
|
||||
|
@ -10,7 +11,6 @@ $a->strings["Save Settings"] = "Tallenna asetukset";
|
|||
$a->strings["Save and send test"] = "Tallenna ja lähetä koeviesti";
|
||||
$a->strings["Enable Secure Mail"] = "Ota Secure Mail käyttöön";
|
||||
$a->strings["Public key"] = "Julkinen avain";
|
||||
$a->strings["Your public PGP key, ascii armored format"] = "";
|
||||
$a->strings["Secure Mail Settings saved."] = "Secure Mail -asetukset tallennettu.";
|
||||
$a->strings["Test email sent"] = "Koeviesti lähetetty";
|
||||
$a->strings["There was an error sending the test email"] = "Testisähköpostin lähetyksessä tapahtui virhe";
|
||||
|
|
|
@ -2,7 +2,8 @@
|
|||
|
||||
if(! function_exists("string_plural_select_it")) {
|
||||
function string_plural_select_it($n){
|
||||
return ($n != 1);;
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
;
|
||||
$a->strings["\"Secure Mail\" Settings"] = "Impostazioni Secure Mail";
|
||||
|
|
|
@ -3,15 +3,10 @@
|
|||
if(! function_exists("string_plural_select_nl")) {
|
||||
function string_plural_select_nl($n){
|
||||
$n = intval($n);
|
||||
return ($n != 1);;
|
||||
return intval($n != 1);
|
||||
}}
|
||||
;
|
||||
$a->strings["\"Secure Mail\" Settings"] = "\"Secure Mail\" instellingen";
|
||||
$a->strings["Save Settings"] = "Instellingen opslaan";
|
||||
$a->strings["Save and send test"] = "";
|
||||
$a->strings["Enable Secure Mail"] = "Secure Mail inschakelen";
|
||||
$a->strings["Public key"] = "";
|
||||
$a->strings["Your public PGP key, ascii armored format"] = "";
|
||||
$a->strings["Secure Mail Settings saved."] = "Secure Mail instellingen opgeslagen";
|
||||
$a->strings["Test email sent"] = "";
|
||||
$a->strings["There was an error sending the test email"] = "";
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
if(! function_exists("string_plural_select_pl")) {
|
||||
function string_plural_select_pl($n){
|
||||
$n = intval($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);;
|
||||
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["\"Secure Mail\" Settings"] = "Ustawienia \"Bezpieczna poczta\"";
|
||||
|
|
|
@ -2,7 +2,8 @@
|
|||
|
||||
if(! function_exists("string_plural_select_zh_cn")) {
|
||||
function string_plural_select_zh_cn($n){
|
||||
return 0;;
|
||||
$n = intval($n);
|
||||
return intval(0);
|
||||
}}
|
||||
;
|
||||
$a->strings["\"Secure Mail\" Settings"] = "“加密邮件”设置";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue