blob: fe8fd56ed45f2436cd8c24ea02273d85fbf969f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
$ca = array (
'search:enter_term' => 'Introdueix un terme de recerca',
'search:no_results' => 'No hi ha resultats.',
'search:matched' => 'Coincideixen:',
'search:results' => 'Resultats de %s',
'search:no_query' => 'Si us plau, instrodueixi una consulta.',
'search:search_error' => 'Error',
'search:more' => '+%s més %s',
'search_types:tags' => 'Etiquetes',
'search_types:comments' => 'Comentaris',
'search:comment_on' => 'Comentari de "%s"',
'search:comment_by' => 'per',
'search:unavailable_entity' => 'Entitat no disponible',
);
add_translation("ca", $ca);
|