2014-09-14 22:01:44 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if(! function_exists("string_plural_select_it")) {
|
|
|
|
function string_plural_select_it($n){
|
2021-02-01 18:47:38 +01:00
|
|
|
$n = intval($n);
|
|
|
|
return intval($n != 1);
|
2014-09-14 22:01:44 +02:00
|
|
|
}}
|
2021-10-10 08:27:53 +02:00
|
|
|
$a->strings['Administrator'] = 'Amministratore';
|
|
|
|
$a->strings['Your account on %s will expire in a few days.'] = 'Il tuo account su %s scadrà tra pochi giorni.';
|
|
|
|
$a->strings['Your Friendica account is about to expire.'] = 'Il tuo account Friendica sta per scadere.';
|
|
|
|
$a->strings['Hi %1$s,
|
|
|
|
|
|
|
|
Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days'] = 'Ciao %1$s,
|
|
|
|
|
|
|
|
Il tuo account su %2$s scadrà in meno di cinque giorni. Puoi mantenere il tuo account autenticandoti almeno una volta ogni 30 giorni';
|
|
|
|
$a->strings['Save Settings'] = 'Salva Impostazioni';
|
|
|
|
$a->strings['Set any of these options to 0 to deactivate it.'] = 'Imposta una qualunque di queste opzioni a 0 per disattivarla.';
|