1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
OC.L10N.register(
"comments",
{
"Comments" : "Kommentaarid",
"You commented" : "Sa kommenteerisid",
"{author} commented" : "{author} kommenteeris",
"You commented on %1$s" : "Sa kommmenteerisid %1$s",
"You commented on {file}" : "Sa kommenteerisid faili {file}",
"%1$s commented on %2$s" : "%1$s kommenteeris %2$s",
"{author} commented on {file}" : "{author} kommenteeris faili {file}",
"<strong>Comments</strong> for files" : "<strong>Kommentaarid</strong> failidele",
"Edit comment" : "Muuda kommentaari",
"Delete comment" : "Kustuta kommentaar",
"No comments yet, start the conversation!" : "Kommentaare veel pole, alusta vestlust",
"Retry" : "Proovi uuesti",
"_%n unread comment_::_%n unread comments_" : ["%n lugemata kommentaar","%n lugemata kommentaari"],
"Comment" : "Kommentaar",
"%1$s commented" : "%1$s kommenteeris"
},
"nplurals=2; plural=(n != 1);");
|