From 36b01e3c2d4033f690b30b4fcf92711da28cb2ed Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 27 Feb 2019 01:12:05 +0000 Subject: [tx-robot] updated from transifex --- apps/comments/l10n/si_LK.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'apps/comments/l10n/si_LK.js') diff --git a/apps/comments/l10n/si_LK.js b/apps/comments/l10n/si_LK.js index 02a6df3f3c5..1eb2b438f96 100644 --- a/apps/comments/l10n/si_LK.js +++ b/apps/comments/l10n/si_LK.js @@ -1,13 +1,22 @@ OC.L10N.register( "comments", { + "Comments" : "අදහස් දැක්වීම්", + "You commented" : "ඔයාගේ අදහස", + "%1$s commented" : "%1$s අදහස් දක්වා ඇත", + "{author} commented" : "{අයිතිකරු} අදහස් දක්වා ඇත", + "You commented on %1$s" : "ඔබ %1$s හි අදහස් දක්වා ඇත", + "You commented on {file}" : "ඔබ {file} හි අදහස් දක්වා ඇත", + "%1$s commented on %2$s" : "%1$s, %2$s තුල අදහස් දක්වා ඇත", + "{author} commented on {file}" : "{author}, {file} තුල අදහසක් දක්වා ඇත", + "Comments for files" : "ගොනු සදහා අදහස් ", + "{user} mentioned you in a comment on “{file}”" : "{user} ඔබව {file} තුලදී මතක් කර ඇත", "Edit comment" : "අදහස වෙනස් කරන්න", "Delete comment" : "අදහස් දැක්වීම මකන්න", "New comment …" : "අලුත් අදහස් දැක්වීමක් ...", "Post" : "ලිපියක්", "Cancel" : "එපා", "[Deleted user]" : "[ඉවත්කළ සේවාදායකයා]", - "Comments" : "අදහස් දැක්වීම්", "No comments yet, start the conversation!" : "තවම අදහස් නැත. ආරම්බක අදහස ඇතුළු කරන්න !", "More comments …" : "තවත් අදහස් ...", "Save" : "සුරකින්න", @@ -15,15 +24,6 @@ OC.L10N.register( "Error occurred while updating comment with id {id}" : "{id} අදහස වෙනස් කිරීමේ දෝෂයක් ඇත", "Error occurred while posting comment" : "අදහස්ගැ දැක්වීමේ ගැටළුවක් ඇත", "Comment" : "අදහස", - "You commented" : "ඔයාගේ අදහස", - "%1$s commented" : "%1$s අදහස් දක්වා ඇත", - "{author} commented" : "{අයිතිකරු} අදහස් දක්වා ඇත", - "You commented on %1$s" : "ඔබ %1$s හි අදහස් දක්වා ඇත", - "You commented on {file}" : "ඔබ {file} හි අදහස් දක්වා ඇත", - "%1$s commented on %2$s" : "%1$s, %2$s තුල අදහස් දක්වා ඇත", - "{author} commented on {file}" : "{author}, {file} තුල අදහසක් දක්වා ඇත", - "Comments for files" : "ගොනු සදහා අදහස් ", - "{user} mentioned you in a comment on “{file}”" : "{user} ඔබව {file} තුලදී මතක් කර ඇත", "%1$s mentioned you in a comment on “%2$s”" : "%1$s ඔබව %2$s හි අදහසක මතක් කර ඇත" }, "nplurals=2; plural=(n != 1);"); -- cgit v1.2.3 git/tree/?h=release/v1.23&id=ebe569a268bbe71bf2bc30cd2829227700688b57'>root/modules/convert/pull.go
blob: 3b39e3d2c12697b441bda5ea71c255f572c72010 (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
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202