friendica-addons/public_server/lang/it/strings.php

18 lines
969 B
PHP

<?php
if(! function_exists("string_plural_select_it")) {
function string_plural_select_it($n){
$n = intval($n);
if ($n == 1) { return 0; } else if ($n != 0 && $n % 1000000 == 0) { return 1; } else { return 2; }
}}
$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.';