diff options
Diffstat (limited to 'languages/es/es.logrotate.php')
-rw-r--r-- | languages/es/es.logrotate.php | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/languages/es/es.logrotate.php b/languages/es/es.logrotate.php new file mode 100644 index 000000000..ff8d65c54 --- /dev/null +++ b/languages/es/es.logrotate.php @@ -0,0 +1,28 @@ +<?php +/** + * Elgg log rotator language pack. + * + * @package ElggLogRotate + */ + +$spanish = array( + 'logrotate:period' => 'Con qué frecuencia debe archivarse el log del sistema?', + + 'logrotate:weekly' => 'Una vez a la semana', + 'logrotate:monthly' => 'Una vez al mes', + 'logrotate:yearly' => 'Una vez al año', + + 'logrotate:logrotated' => "Registro archivado\n", + 'logrotate:lognotrotated' => "Error al archivar el registro\n", + + 'logrotate:date' => 'Eliminar registros archivados anteriores a:', + + 'logrotate:week' => 'semana', + 'logrotate:month' => 'mes', + 'logrotate:year' => 'año', + + 'logrotate:logdeleted' => "Registro eliminado\n", + 'logrotate:lognotdeleted' => "Error al eliminar el registro\n", +); + +add_translation("es", $spanish); |