HU and IT translation updates
[friendica-addons.git/.git] / testdrive / lang / it / strings.php
index 8923cc1..8faf5a0 100644 (file)
@@ -3,7 +3,7 @@
 if(! function_exists("string_plural_select_it")) {
 function string_plural_select_it($n){
        $n = intval($n);
-       return intval($n != 1);
+       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.';