mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-05 13:43:00 +00:00
11 lines
457 B
PHP
11 lines
457 B
PHP
<?php
|
|
|
|
if(! function_exists("string_plural_select_it")) {
|
|
function string_plural_select_it($n){
|
|
$n = intval($n);
|
|
return intval($n != 1);
|
|
}}
|
|
$a->strings['No Timeline settings updated.'] = 'Impostazioni "No Timeline" aggiornate.';
|
|
$a->strings['No Timeline Settings'] = 'Impostazioni "No Timeline"';
|
|
$a->strings['Disable Archive selector on profile wall'] = 'Disabilita il selettore dell\'archivio sulla pagina del profilo';
|
|
$a->strings['Submit'] = 'Invia';
|