blob: f601256d0d26b6ada12f2ef6e9328ba0af59c17b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
$language_array = 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:unavailable_entity' => 'Unavailable Entity',
);
add_translation('en', $language_array);
|