regenerated all strings.php files from the current translation strings (message.po)

This commit is contained in:
Tobias Diekershoff 2021-02-01 18:47:38 +01:00
parent 7f3704ae54
commit 500aab3c53
716 changed files with 1081 additions and 1607 deletions

View file

@ -2,7 +2,8 @@
if(! function_exists("string_plural_select_cs")) {
function string_plural_select_cs($n){
return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;;
$n = intval($n);
if (($n==1)) { return 0; } else if (($n>=2 && $n<=4)) { return 1; } else { return 2; }
}}
;
$a->strings["From Address"] = "Adresa odesílatele";

View file

@ -3,7 +3,7 @@
if(! function_exists("string_plural_select_de")) {
function string_plural_select_de($n){
$n = intval($n);
return ($n != 1);;
return intval($n != 1);
}}
;
$a->strings["From Address"] = "Absender";

View file

@ -2,7 +2,8 @@
if(! function_exists("string_plural_select_en_gb")) {
function string_plural_select_en_gb($n){
return ($n != 1);;
$n = intval($n);
return intval($n != 1);
}}
;
$a->strings["From Address"] = "From address";

View file

@ -2,7 +2,8 @@
if(! function_exists("string_plural_select_es")) {
function string_plural_select_es($n){
return ($n != 1);;
$n = intval($n);
return intval($n != 1);
}}
;
$a->strings["From Address"] = "Desde Dirección";

View file

@ -2,25 +2,19 @@
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["From Address"] = "Lähettäjä";
$a->strings["Email address that stream items will appear to be from."] = "";
$a->strings["Save Settings"] = "Tallenna asetukset";
$a->strings["Re:"] = "Koskien";
$a->strings["Friendica post"] = "Friendica -julkaisu";
$a->strings["Diaspora post"] = "Diaspora -julkaisu";
$a->strings["Feed item"] = "";
$a->strings["Email"] = "Sähköposti";
$a->strings["Friendica Item"] = "Friendica -kohde";
$a->strings["Upstream"] = "";
$a->strings["Local"] = "Paikallinen";
$a->strings["Enabled"] = "Käytössä";
$a->strings["Email Address"] = "Sähköpostiosoite";
$a->strings["Leave blank to use your account email address"] = "";
$a->strings["Exclude Likes"] = "";
$a->strings["Check this to omit mailing \"Like\" notifications"] = "";
$a->strings["Attach Images"] = "Liitä kuvia";
$a->strings["Download images in posts and attach them to the email. Useful for reading email while offline."] = "";
$a->strings["Mail Stream Settings"] = "Mail Stream -asetukset";

View file

@ -2,21 +2,18 @@
if(! function_exists("string_plural_select_fr")) {
function string_plural_select_fr($n){
return ($n > 1);;
$n = intval($n);
return intval($n > 1);
}}
;
$a->strings["From Address"] = "Depuis l'adresse";
$a->strings["Email address that stream items will appear to be from."] = "";
$a->strings["Save Settings"] = "Sauvegarder les paramètres";
$a->strings["Re:"] = "Re :";
$a->strings["Friendica post"] = "Message Friendica";
$a->strings["Diaspora post"] = "Message Diaspora";
$a->strings["Feed item"] = "";
$a->strings["Email"] = "Courriel";
$a->strings["Friendica Item"] = "Élément de Friendica";
$a->strings["Upstream"] = "";
$a->strings["Local"] = "Local";
$a->strings["Email Address"] = "Adresse de courriel";
$a->strings["Leave blank to use your account email address"] = "";
$a->strings["Enabled"] = "Activer";
$a->strings["Mail Stream Settings"] = "Paramètres de Mail Stream";

View file

@ -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["From Address"] = "Indirizzo di invio";

View file

@ -3,25 +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["From Address"] = "Van Adres";
$a->strings["Email address that stream items will appear to be from."] = "E-mail adres waarvan stream items komen ";
$a->strings["Save Settings"] = "Instellingen opslaan";
$a->strings["Re:"] = "";
$a->strings["Friendica post"] = "";
$a->strings["Diaspora post"] = "";
$a->strings["Feed item"] = "";
$a->strings["Email"] = "";
$a->strings["Friendica Item"] = "";
$a->strings["Upstream"] = "";
$a->strings["Local"] = "";
$a->strings["Enabled"] = "Ingeschakeld";
$a->strings["Email Address"] = "";
$a->strings["Leave blank to use your account email address"] = "";
$a->strings["Exclude Likes"] = "";
$a->strings["Check this to omit mailing \"Like\" notifications"] = "";
$a->strings["Attach Images"] = "";
$a->strings["Download images in posts and attach them to the email. Useful for reading email while offline."] = "";
$a->strings["Mail Stream Settings"] = "";

View file

@ -2,7 +2,8 @@
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["From Address"] = "Z adresu";

View file

@ -2,7 +2,8 @@
if(! function_exists("string_plural_select_ro")) {
function string_plural_select_ro($n){
return ($n==1?0:((($n%100>19)||(($n%100==0)&&($n!=0)))?2:1));;
$n = intval($n);
if ($n==1) { return 0; } else if ((($n%100>19)||(($n%100==0)&&($n!=0)))) { return 2; } else { return 1; }
}}
;
$a->strings["From Address"] = "Adresa sursă";