blob: e3899500fddea098ccf4f753882a335e011b1907 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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);
|