aboutsummaryrefslogtreecommitdiff
path: root/mod/externalpages
diff options
context:
space:
mode:
Diffstat (limited to 'mod/externalpages')
-rw-r--r--mod/externalpages/languages/en.php27
-rw-r--r--mod/externalpages/languages/es.php27
2 files changed, 54 insertions, 0 deletions
diff --git a/mod/externalpages/languages/en.php b/mod/externalpages/languages/en.php
new file mode 100644
index 000000000..5f0f4ad7b
--- /dev/null
+++ b/mod/externalpages/languages/en.php
@@ -0,0 +1,27 @@
+<?php
+/**
+ * External pages English language file
+ */
+
+$english = array(
+
+ /**
+ * Menu items and titles
+ */
+ 'expages' => "Site pages",
+ 'admin:appearance:expages' => "Site Pages",
+ 'expages:about' => "About",
+ 'expages:terms' => "Terms",
+ 'expages:privacy' => "Privacy",
+ 'expages:contact' => "Contact",
+
+ 'expages:notset' => "This page has not been set up yet.",
+
+ /**
+ * Status messages
+ */
+ 'expages:posted' => "Your page was successfully updated.",
+ 'expages:error' => "Unable to save this page.",
+);
+
+add_translation("en", $english);
diff --git a/mod/externalpages/languages/es.php b/mod/externalpages/languages/es.php
new file mode 100644
index 000000000..26951734f
--- /dev/null
+++ b/mod/externalpages/languages/es.php
@@ -0,0 +1,27 @@
+<?php
+/**
+ * External pages English language file
+ */
+
+$spanish = array(
+
+ /**
+ * Menu items and titles
+ */
+ 'expages' => "P&aacute;ginas del sitio",
+ 'admin:appearance:expages' => "P&aacute;ginas del Sitio",
+ 'expages:about' => "Acerca de",
+ 'expages:terms' => "T&eacute;rminos",
+ 'expages:privacy' => "Privacidad",
+ 'expages:contact' => "Contacto",
+
+ 'expages:notset' => "Esta p&aacute;ginas no se ha configurado a&uacute;n.",
+
+ /**
+ * Status messages
+ */
+ 'expages:posted' => "Su p&aacute;gina se ha actualizado correctamente.",
+ 'expages:error' => "No se pudo guardar la p&aacute;gina.",
+);
+
+add_translation("es", $spanish);