mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-12 19:38:49 +00: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,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["Permission denied."] = "Přístup odmítnut.";
|
||||
|
|
|
@ -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["Permission denied."] = "Zugriff verweigert.";
|
||||
|
|
|
@ -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["Permission denied."] = "Permiso denegado.";
|
||||
|
|
|
@ -3,26 +3,18 @@
|
|||
if(! function_exists("string_plural_select_fi_fi")) {
|
||||
function string_plural_select_fi_fi($n){
|
||||
$n = intval($n);
|
||||
return ($n != 1);;
|
||||
return intval($n != 1);
|
||||
}}
|
||||
;
|
||||
$a->strings["Permission denied."] = "Lupa kielletty.";
|
||||
$a->strings["Unable to register the client at the pump.io server '%s'."] = "";
|
||||
$a->strings["You are now authenticated to pumpio."] = "";
|
||||
$a->strings["return to the connector page"] = "";
|
||||
$a->strings["Post to pumpio"] = "Lähetä pump.ioon";
|
||||
$a->strings["Pump.io Import/Export/Mirror"] = "";
|
||||
$a->strings["pump.io username (without the servername)"] = "pump.io käyttäjätunnus (ilman palvelinnimeä)";
|
||||
$a->strings["pump.io servername (without \"http://\" or \"https://\" )"] = "pump.io palvelinnimi (ilman \"http://\" tai \"https://\" )";
|
||||
$a->strings["Authenticate your pump.io connection"] = "";
|
||||
$a->strings["Import the remote timeline"] = "Tuo etäaikajana";
|
||||
$a->strings["Enable pump.io Post Addon"] = "Ota pump.io -viestilisäosa käyttöön";
|
||||
$a->strings["Post to pump.io by default"] = "Lähetä pump.iohon oletuksena";
|
||||
$a->strings["Should posts be public?"] = "";
|
||||
$a->strings["Mirror all public posts"] = "Peilaa kaikki julkiset julkaisut";
|
||||
$a->strings["Check to delete this preset"] = "";
|
||||
$a->strings["Save Settings"] = "Tallenna asetukset";
|
||||
$a->strings["Pump.io post failed. Queued for retry."] = "Pump.io -julkaisu epäonnistui. Jonossa uudelleenyritykseen.";
|
||||
$a->strings["Pump.io like failed. Queued for retry."] = "Pump.io -tykkäys epäonnistui. Jonossa uudelleenyritykseen.";
|
||||
$a->strings["status"] = "tila";
|
||||
$a->strings["%1\$s likes %2\$s's %3\$s"] = "";
|
||||
|
|
|
@ -2,26 +2,17 @@
|
|||
|
||||
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["Permission denied."] = "Permission refusée.";
|
||||
$a->strings["Unable to register the client at the pump.io server '%s'."] = "";
|
||||
$a->strings["You are now authenticated to pumpio."] = "Vous êtes maintenant authentifié sur pump.io.";
|
||||
$a->strings["return to the connector page"] = "Retourner à la page du connecteur";
|
||||
$a->strings["Post to pumpio"] = "Publier sur pump.io";
|
||||
$a->strings["Pump.io Import/Export/Mirror"] = "";
|
||||
$a->strings["pump.io username (without the servername)"] = "Nom d'utilisateur pump.io (sans le nom du serveur)";
|
||||
$a->strings["pump.io servername (without \"http://\" or \"https://\" )"] = "";
|
||||
$a->strings["Authenticate your pump.io connection"] = "";
|
||||
$a->strings["Import the remote timeline"] = "Importer la timeline distante";
|
||||
$a->strings["Enable pump.io Post Addon"] = "";
|
||||
$a->strings["Post to pump.io by default"] = "Publier sur pump.io par défaut";
|
||||
$a->strings["Should posts be public?"] = "Les messages devraient être publiques ?";
|
||||
$a->strings["Mirror all public posts"] = "";
|
||||
$a->strings["Check to delete this preset"] = "";
|
||||
$a->strings["Save Settings"] = "Sauvegarder les paramètres";
|
||||
$a->strings["Pump.io post failed. Queued for retry."] = "";
|
||||
$a->strings["Pump.io like failed. Queued for retry."] = "";
|
||||
$a->strings["status"] = "statut";
|
||||
$a->strings["%1\$s likes %2\$s's %3\$s"] = "";
|
||||
|
|
|
@ -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["Permission denied."] = "Permesso negato.";
|
||||
|
|
|
@ -3,26 +3,12 @@
|
|||
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["Permission denied."] = "Toegang geweigerd.";
|
||||
$a->strings["Unable to register the client at the pump.io server '%s'."] = "Niet mogelijk om uw client te registreren op pump.io server '%s'";
|
||||
$a->strings["You are now authenticated to pumpio."] = "";
|
||||
$a->strings["return to the connector page"] = "";
|
||||
$a->strings["Post to pumpio"] = "";
|
||||
$a->strings["Pump.io Import/Export/Mirror"] = "Pump.io Import/Exporteren/Spiegelen";
|
||||
$a->strings["pump.io username (without the servername)"] = "";
|
||||
$a->strings["pump.io servername (without \"http://\" or \"https://\" )"] = "";
|
||||
$a->strings["Authenticate your pump.io connection"] = "";
|
||||
$a->strings["Import the remote timeline"] = "";
|
||||
$a->strings["Enable pump.io Post Addon"] = "Pump.io Post Addon inschakelen";
|
||||
$a->strings["Post to pump.io by default"] = "Plaatsen op pump.io als standaard instellen ";
|
||||
$a->strings["Should posts be public?"] = "";
|
||||
$a->strings["Mirror all public posts"] = "";
|
||||
$a->strings["Check to delete this preset"] = "";
|
||||
$a->strings["Save Settings"] = "Instellingen opslaan";
|
||||
$a->strings["Pump.io post failed. Queued for retry."] = "";
|
||||
$a->strings["Pump.io like failed. Queued for retry."] = "";
|
||||
$a->strings["status"] = "";
|
||||
$a->strings["%1\$s likes %2\$s's %3\$s"] = "";
|
||||
|
|
|
@ -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["Permission denied."] = "Odmowa dostępu.";
|
||||
|
|
|
@ -2,26 +2,19 @@
|
|||
|
||||
if(! function_exists("string_plural_select_pt_br")) {
|
||||
function string_plural_select_pt_br($n){
|
||||
return ($n > 1);;
|
||||
$n = intval($n);
|
||||
return intval($n > 1);
|
||||
}}
|
||||
;
|
||||
$a->strings["Permission denied."] = "Permissão negada.";
|
||||
$a->strings["Unable to register the client at the pump.io server '%s'."] = "";
|
||||
$a->strings["You are now authenticated to pumpio."] = "Você se autenticou no Pump.io.";
|
||||
$a->strings["return to the connector page"] = "voltar à página de conectores";
|
||||
$a->strings["Post to pumpio"] = "Publicar no Pump.io";
|
||||
$a->strings["Pump.io Import/Export/Mirror"] = "";
|
||||
$a->strings["pump.io username (without the servername)"] = "Nome de usuário no pump.io (sem o nome do servidor)";
|
||||
$a->strings["pump.io servername (without \"http://\" or \"https://\" )"] = "";
|
||||
$a->strings["Authenticate your pump.io connection"] = "";
|
||||
$a->strings["Import the remote timeline"] = "Importar a linha do tempo remota";
|
||||
$a->strings["Enable pump.io Post Addon"] = "Habilitar plug-in para publicar no Pump.io";
|
||||
$a->strings["Post to pump.io by default"] = "Publicar no Pump.io por padrão";
|
||||
$a->strings["Should posts be public?"] = "";
|
||||
$a->strings["Mirror all public posts"] = "";
|
||||
$a->strings["Check to delete this preset"] = "";
|
||||
$a->strings["Save Settings"] = "Salvar Configurações";
|
||||
$a->strings["Pump.io post failed. Queued for retry."] = "Falha ao publicar no Pump.io. Na fila para tentar novamente.";
|
||||
$a->strings["Pump.io like failed. Queued for retry."] = "Falha ao curtir no Pump.io. Na fila para tentar novamente.";
|
||||
$a->strings["status"] = "";
|
||||
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s curtiu o %3\$s de %2\$s";
|
||||
|
|
|
@ -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["Permission denied."] = "Permisiune refuzată.";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue