blob: 27d554012d1784ede7592c50113c8801ce542296 (
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
|
<?php
/**
* Search Danish language file
*
*/
$danish = array(
'search:enter_term' => 'Indtast et søgeord:',
'search:no_results' => 'Ingen resultater...',
'search:matched' => 'Match: ',
'search:results' => 'Resultater for %s',
'search:no_query' => 'Vær venlig at indtaste noget at søge efter.',
'search:search_error' => 'Fejl',
'search:more' => '+%s flere %s',
'search_types:tags' => 'Tags',
'search_types:comments' => 'Kommentarer',
'search:comment_on' => 'Kommentér "%s"',
'search:comment_by' => 'af',
'search:unavailable_entity' => 'Utilgængelig søgeterm',
);
add_translation("da",$danish);
|