blob: bb962d35765ebe1b84706344c48633cce528b72e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
OC.L10N.register(
"comments",
{
"You commented" : "Du kommenterede",
"%1$s commented" : "%1$s kommenterede",
"You commented on %2$s" : "Du kommenterede %2$s",
"%1$s commented on %2$s" : "%1$s kommenterede %2$s",
"Comments" : "Kommentarer",
"Type in a new comment..." : "Indtast en ny kommentar...",
"Delete comment" : "Slet kommentar",
"Cancel" : "Annullér",
"Save" : "Gem",
"Comment" : "Kommentér"
},
"nplurals=2; plural=(n != 1);");
|