aboutsummaryrefslogtreecommitdiff
path: root/mod/logrotate/languages
diff options
context:
space:
mode:
Diffstat (limited to 'mod/logrotate/languages')
-rw-r--r--mod/logrotate/languages/en.php29
-rw-r--r--mod/logrotate/languages/es.php28
2 files changed, 29 insertions, 28 deletions
diff --git a/mod/logrotate/languages/en.php b/mod/logrotate/languages/en.php
new file mode 100644
index 000000000..d785ad50d
--- /dev/null
+++ b/mod/logrotate/languages/en.php
@@ -0,0 +1,29 @@
+<?php
+/**
+ * Elgg log rotator language pack.
+ *
+ * @package ElggLogRotate
+ */
+
+$english = array(
+ 'logrotate:period' => 'How often should the system log be archived?',
+
+ 'logrotate:weekly' => 'Once a week',
+ 'logrotate:monthly' => 'Once a month',
+ 'logrotate:yearly' => 'Once a year',
+
+ 'logrotate:logrotated' => "Log rotated\n",
+ 'logrotate:lognotrotated' => "Error rotating log\n",
+
+ 'logrotate:delete' => 'Delete archived logs older than a',
+
+ 'logrotate:week' => 'week',
+ 'logrotate:month' => 'month',
+ 'logrotate:year' => 'year',
+ 'logrotate:never' => 'never',
+
+ 'logrotate:logdeleted' => "Log deleted\n",
+ 'logrotate:lognotdeleted' => "No logs deleted\n",
+);
+
+add_translation("en", $english);
diff --git a/mod/logrotate/languages/es.php b/mod/logrotate/languages/es.php
deleted file mode 100644
index ff8d65c54..000000000
--- a/mod/logrotate/languages/es.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-/**
- * Elgg log rotator language pack.
- *
- * @package ElggLogRotate
- */
-
-$spanish = array(
- 'logrotate:period' => 'Con qu&eacute; 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&ntilde;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&ntilde;o',
-
- 'logrotate:logdeleted' => "Registro eliminado\n",
- 'logrotate:lognotdeleted' => "Error al eliminar el registro\n",
-);
-
-add_translation("es", $spanish);