blob: 03eac5bd13b110891252e25dc8300bcb1b5234ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
$es = 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", $es);
|