forked from friendica/friendica-addons
15 lines
457 B
PHP
15 lines
457 B
PHP
<?php
|
|
|
|
if(! function_exists("string_plural_select_it")) {
|
|
function string_plural_select_it($n){
|
|
return ($n != 1);;
|
|
}}
|
|
;
|
|
$a->strings["YourLS"] = "YourLS";
|
|
$a->strings["URL: http://"] = "Inidirizzo: http://";
|
|
$a->strings["Username:"] = "Nome utente:";
|
|
$a->strings["Password:"] = "Password:";
|
|
$a->strings["Use SSL "] = "Usa SSL";
|
|
$a->strings["Save Settings"] = "Salva Impostazioni";
|
|
$a->strings["yourls Settings saved."] = "Impostazioni \"YourLS\" salvate.";
|