diff options
author | Sem <sembrestels@riseup.net> | 2012-01-14 01:14:29 +0100 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2012-01-14 01:14:29 +0100 |
commit | 85086911c89f456885de4f499d59a434c50fd3f8 (patch) | |
tree | 96f5c50831ca306ffebc839409baeab30d646f27 /mod/search | |
download | elgg-85086911c89f456885de4f499d59a434c50fd3f8.tar.gz elgg-85086911c89f456885de4f499d59a434c50fd3f8.tar.bz2 |
Original nnimis' plugin.
Diffstat (limited to 'mod/search')
-rw-r--r-- | mod/search/languages/en.php | 21 | ||||
-rw-r--r-- | mod/search/languages/es.php | 18 |
2 files changed, 39 insertions, 0 deletions
diff --git a/mod/search/languages/en.php b/mod/search/languages/en.php new file mode 100644 index 000000000..e3899500f --- /dev/null +++ b/mod/search/languages/en.php @@ -0,0 +1,21 @@ +<?php + +$english = array( + 'search:enter_term' => 'Enter a search term:', + 'search:no_results' => 'No results.', + 'search:matched' => 'Matched: ', + 'search:results' => 'Results for %s', + 'search:no_query' => 'Please enter a query to search.', + 'search:search_error' => 'Error', + + 'search:more' => '+%s more %s', + + 'search_types:tags' => 'Tags', + + 'search_types:comments' => 'Comments', + 'search:comment_on' => 'Comment on "%s"', + 'search:comment_by' => 'by', + 'search:unavailable_entity' => 'Unavailable Entity', +); + +add_translation('en', $english); diff --git a/mod/search/languages/es.php b/mod/search/languages/es.php new file mode 100644 index 000000000..9e25644c1 --- /dev/null +++ b/mod/search/languages/es.php @@ -0,0 +1,18 @@ +<?php + +$spanish = array( + 'search:enter_term' => "Introduce un término de búsqueda" , + 'search:no_results' => "No hay resultados." , + 'search:matched' => "Coinciden:" , + 'search:results' => "Resultados de %s" , + 'search:no_query' => "Por favor, introduce una consulta a buscar." , + 'search:search_error' => "Error" , + 'search:more' => "+%s más %s" , + 'search_types:tags' => "Etiquetas" , + 'search_types:comments' => "Comentarios" , + 'search:comment_on' => "Comentarios de \"%s\"" , + 'search:comment_by' => 'por', + 'search:unavailable_entity' => "Entidad no disponible" +); + +add_translation('es', $spanish); |