diff options
Diffstat (limited to 'mod/custom_index/languages')
-rw-r--r-- | mod/custom_index/languages/en.php | 14 | ||||
-rw-r--r-- | mod/custom_index/languages/es.php | 17 |
2 files changed, 31 insertions, 0 deletions
diff --git a/mod/custom_index/languages/en.php b/mod/custom_index/languages/en.php new file mode 100644 index 000000000..071ff81e5 --- /dev/null +++ b/mod/custom_index/languages/en.php @@ -0,0 +1,14 @@ +<?php +/** + * Custom Index English language file + */ + +$english = array( + 'custom:bookmarks' => "Latest bookmarks", + 'custom:groups' => "Latest groups", + 'custom:files' => "Latest files", + 'custom:blogs' => "Latest blog posts", + 'custom:members' => "Newest members", +); + +add_translation("en", $english); diff --git a/mod/custom_index/languages/es.php b/mod/custom_index/languages/es.php new file mode 100644 index 000000000..62f651958 --- /dev/null +++ b/mod/custom_index/languages/es.php @@ -0,0 +1,17 @@ +<?php
+
+ $spanish = array(
+
+ 'custom:bookmarks' => "Últimos favoritos",
+ 'custom:groups' => "Últimos grupos",
+ 'custom:files' => "Últimos ficheros subidos",
+ 'custom:blogs' => "Últimas entradas",
+ 'custom:members' => "Nuevos miembros de la red",
+ 'custom:nofiles' => "No existen ficheros todavia",
+ 'custom:nogroups' => "No existen grupos todavia",
+
+ );
+
+ add_translation("es",$spanish);
+
+?>
|