mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-05 16:22:54 +00:00
16 lines
914 B
PHP
16 lines
914 B
PHP
<?php
|
|
|
|
if(! function_exists("string_plural_select_es")) {
|
|
function string_plural_select_es($n){
|
|
return ($n != 1);;
|
|
}}
|
|
;
|
|
$a->strings["Event Export"] = "Exportación de evento";
|
|
$a->strings["You can download public events from: "] = "Puede descargar eventos públicos desde:";
|
|
$a->strings["The user does not export the calendar."] = "El usuario no exporta el calendario.";
|
|
$a->strings["This calendar format is not supported"] = "No se soporta este formato de calendario";
|
|
$a->strings["Export Events"] = "Exportar Eventos";
|
|
$a->strings["If this is enabled, your public events will be available at"] = "Si esto está habilitado, sus eventos públicos estarán permitidos en";
|
|
$a->strings["Currently supported formats are ical and csv."] = "Los formatos soportados actualmente son ical y csv.";
|
|
$a->strings["Enable calendar export"] = "Habilitar exportar calendario";
|
|
$a->strings["Save Settings"] = "Guardar Ajustes";
|