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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
<?php
/**
* The Wire Danish language file
*/
$danish = array(
/**
* Menu items and titles
*/
'thewire' => "The wire",
'thewire:everyone' => "Alle wire indlæg",
'thewire:user' => "%s's wire indlæg",
'thewire:friends' => 'Dine venner på the wire',
'thewire:reply' => "Svar",
'thewire:replying' => "Svar til %s (@%s) som skrev",
'thewire:thread' => "Tråd",
'thewire:charleft' => "tegn tilbage",
'thewire:tags' => "Wire indlæg tagged med '%s'",
'thewire:noposts' => "Ingen wire indlæg endnu",
'item:object:thewire' => "Wire indlæg",
'thewire:update' => 'Opdater',
'thewire:previous' => "Tidligere",
'thewire:hide' => "Gem",
'thewire:previous:help' => "Se tidligere indlæg",
'thewire:hide:help' => "Gem tidligere indlæg",
/**
* The wire river
*/
'river:create:object:thewire' => "%s skrev til %s",
'thewire:wire' => 'wire',
/**
* Wire widget
**/
'thewire:widget:desc' => 'Vis dine seneste wire indlæg',
'thewire:num' => 'Antal indlæg der skal vises',
'thewire:moreposts' => 'Ikke flere wire indlæg',
/**
* Status messages
*/
'thewire:posted' => "Dit indlæg blev postet til the wire.",
'thewire:deleted' => "Dit wire indlæg er blevet slettet.",
'thewire:blank' => "Beklager, du skal skrive noget i tekstboksen, før det kan gemmes.",
'thewire:notfound' => "Beklager, vi kunne ikke finde det specificerede wire indlæg.",
'thewire:notdeleted' => "Beklager, vi kunne ikke slette dette wire indlæg.",
/**
* Notifications
*/
'thewire:notify:subject' => "Nyt wire indlæg",
'thewire:notify:reply' => '%s svarede på %s på the wire:',
'thewire:notify:post' => '%s skrev på the wire:',
);
add_translation('da',$danish);
?>
|