blob: 5bfcbf290c56b8be3c2438b4ec2041f835bdc342 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?php
/**
* Dutch translation.
*
* @package dutch_translation
* @author ColdTrick IT Solutions
* @copyright Coldtrick IT Solutions 2010
* @link http://www.coldtrick.com/
*/
if(elgg_is_active_plugin('search')){
$language = array (
'search:comment_by' => 'door',
'search:enter_term' => 'Geef een zoekterm op:',
'search:no_results' => 'Geen resultaten:',
'search:matched' => 'Gevonden:',
'search:results' => 'Resultaten voor %s',
'search:no_query' => 'Geef een zoekopdracht op',
'search:search_error' => 'Fout',
'search:more' => '+%s meer %s',
'search_types:tags' => 'Tags',
'search_types:comments' => 'Reacties',
'search:comment_on' => 'Reacties op "%s"',
'search:unavailable_entity' => 'Niet beschikbare Entity',
);
add_translation("nl", $language);
}
|