diff options
Diffstat (limited to 'mod/categories/languages')
-rw-r--r-- | mod/categories/languages/en.php | 15 | ||||
-rw-r--r-- | mod/categories/languages/es.php | 16 |
2 files changed, 31 insertions, 0 deletions
diff --git a/mod/categories/languages/en.php b/mod/categories/languages/en.php new file mode 100644 index 000000000..eaa65b13e --- /dev/null +++ b/mod/categories/languages/en.php @@ -0,0 +1,15 @@ +<?php +/** + * Categories English language file + */ + +$english = array( + 'categories' => 'Categories', + 'categories:settings' => 'Set site categories', + 'categories:explanation' => 'To set some predefined site-wide categories that will be used throughout your system, enter them below, separated with commas. Compatible tools will then display them when the user creates or edits content.', + 'categories:save:success' => 'Site categories were successfully saved.', + 'categories:results' => "Results for the site category: %s", + 'categories:on_activate_reminder' => "Site-wide Cateogires won't work until you add categories. <a href=\"%s\">Add categories now.</a>", +); + +add_translation("en", $english);
\ No newline at end of file diff --git a/mod/categories/languages/es.php b/mod/categories/languages/es.php new file mode 100644 index 000000000..31c8ef173 --- /dev/null +++ b/mod/categories/languages/es.php @@ -0,0 +1,16 @@ +<?php + +// Generado por translationbrowser + +$spanish = array( + 'categories' => "Categorías" , + 'categories:settings' => "Edita las categorías del sitio" , + 'categories:explanation' => "Para establecer algunas categorías globales para el sitio que serán usadas a través de tu sistema, introdúcelas abajo separadas por comas. Serán mostradas por las herramientas compatibles cuando el usuario cree o edite contenido." , + 'categories:save:success' => "Las categorías del sitio se han grabado correctamente.", + 'categories:results' => "Resultados del sitio para la categoría: %s", + 'categories:on_activate_reminder' => "Las categorías del sitio no se encuentran disponibles hasta que agregue alguna. <a href=\"%s\">Añadir categorías ahora.</a>", +); + +add_translation('es', $spanish); + +?>
\ No newline at end of file |