forked from friendica/friendica-addons
15 lines
910 B
PHP
15 lines
910 B
PHP
<?php
|
|
|
|
if(! function_exists("string_plural_select_es")) {
|
|
function string_plural_select_es($n){
|
|
return ($n != 1);;
|
|
}}
|
|
;
|
|
$a->strings["Save Settings"] = "Guardar configuración";
|
|
$a->strings["Redirect URL"] = "Redirigir URL";
|
|
$a->strings["all your visitors from the web will be redirected to this URL"] = "todos los visitantes de la web serán redirigidos a esta dirección.";
|
|
$a->strings["Begin of the Blackout"] = "Inicio del apagón.";
|
|
$a->strings["format is <em>YYYY</em> year, <em>MM</em> month, <em>DD</em> day, <em>hh</em> hour and <em>mm</em> minute"] = "formato es <em>YYYY</em> año, <em>MM</em> mes, <em>DD</em> día, <em>hh</em> hora y <em>mm</em> minuto";
|
|
$a->strings["End of the Blackout"] = "Fin del apagón.";
|
|
$a->strings["The end-date is prior to the start-date of the blackout, you should fix this."] = "La fecha de final del apagón es antes de la fecha de inicio, deberías arreglar esto.";
|