作者 邓超

init delete

正在显示 45 个修改的文件 包含 0 行增加4845 行删除

要显示太多修改。

为保证性能只显示 45 of 45+ 个文件。

1 -/**  
2 - * ACL plugin script  
3 - *  
4 - * @licstart The following is the entire license notice for the  
5 - * JavaScript code in this file.  
6 - *  
7 - * Copyright (c) The Roundcube Dev Team  
8 - *  
9 - * The JavaScript code in this page is free software: you can redistribute it  
10 - * and/or modify it under the terms of the GNU General Public License  
11 - * as published by the Free Software Foundation, either version 3 of  
12 - * the License, or (at your option) any later version.  
13 - *  
14 - * @licend The above is the entire license notice  
15 - * for the JavaScript code in this file.  
16 - */  
17 -  
18 -if (window.rcmail) {  
19 - rcmail.addEventListener('init', function() {  
20 - if (rcmail.gui_objects.acltable) {  
21 - rcmail.acl_list_init();  
22 - // enable autocomplete on user input  
23 - if (rcmail.env.acl_users_source) {  
24 - var inst = rcmail.is_framed() ? parent.rcmail : rcmail;  
25 - inst.init_address_input_events($('#acluser'), {action:'settings/plugin.acl-autocomplete'});  
26 -  
27 - // pass config settings and localized texts to autocomplete context  
28 - inst.set_env({ autocomplete_max:rcmail.env.autocomplete_max, autocomplete_min_length:rcmail.env.autocomplete_min_length });  
29 - inst.add_label('autocompletechars', rcmail.labels.autocompletechars);  
30 - inst.add_label('autocompletemore', rcmail.labels.autocompletemore);  
31 -  
32 - // fix inserted value  
33 - inst.addEventListener('autocomplete_insert', function(e) {  
34 - if (e.field.id != 'acluser')  
35 - return;  
36 -  
37 - e.field.value = e.insert.replace(/[ ,;]+$/, '');  
38 - });  
39 - }  
40 - }  
41 -  
42 - rcmail.enable_command('acl-create', 'acl-save', 'acl-cancel', 'acl-mode-switch', true);  
43 - rcmail.enable_command('acl-delete', 'acl-edit', false);  
44 -  
45 - if (rcmail.env.acl_advanced)  
46 - $('#acl-switch').addClass('selected').find('input').prop('checked', true);  
47 - });  
48 -}  
49 -  
50 -// Display new-entry form  
51 -rcube_webmail.prototype.acl_create = function()  
52 -{  
53 - this.acl_init_form();  
54 -}  
55 -  
56 -// Display ACL edit form  
57 -rcube_webmail.prototype.acl_edit = function()  
58 -{  
59 - // @TODO: multi-row edition  
60 - var id = this.acl_list.get_single_selection();  
61 - if (id)  
62 - this.acl_init_form(id);  
63 -}  
64 -  
65 -// ACL entry delete  
66 -rcube_webmail.prototype.acl_delete = function()  
67 -{  
68 - var users = this.acl_get_usernames();  
69 -  
70 - if (users && users.length) {  
71 - this.confirm_dialog(this.get_label('acl.deleteconfirm'), 'delete', function(e, ref) {  
72 - ref.http_post('settings/plugin.acl', {  
73 - _act: 'delete',  
74 - _user: users.join(','),  
75 - _mbox: rcmail.env.mailbox  
76 - }, ref.set_busy(true, 'acl.deleting'));  
77 - });  
78 - }  
79 -}  
80 -  
81 -// Save ACL data  
82 -rcube_webmail.prototype.acl_save = function()  
83 -{  
84 - var data, type, rights = '', user = $('#acluser', this.acl_form).val();  
85 -  
86 - $((this.env.acl_advanced ? '#advancedrights :checkbox' : '#simplerights :checkbox'), this.acl_form).map(function() {  
87 - if (this.checked)  
88 - rights += this.value;  
89 - });  
90 -  
91 - if (type = $('input:checked[name=usertype]', this.acl_form).val()) {  
92 - if (type != 'user')  
93 - user = type;  
94 - }  
95 -  
96 - if (!user) {  
97 - this.alert_dialog(this.get_label('acl.nouser'));  
98 - return;  
99 - }  
100 - if (!rights) {  
101 - this.alert_dialog(this.get_label('acl.norights'));  
102 - return;  
103 - }  
104 -  
105 - data = {  
106 - _act: 'save',  
107 - _user: user,  
108 - _acl: rights,  
109 - _mbox: this.env.mailbox  
110 - }  
111 -  
112 - if (this.acl_id) {  
113 - data._old = this.acl_id;  
114 - }  
115 -  
116 - this.http_post('settings/plugin.acl', data, this.set_busy(true, 'acl.saving'));  
117 -}  
118 -  
119 -// Cancel/Hide form  
120 -rcube_webmail.prototype.acl_cancel = function()  
121 -{  
122 - this.ksearch_blur();  
123 - this.acl_popup.dialog('close');  
124 -}  
125 -  
126 -// Update data after save (and hide form)  
127 -rcube_webmail.prototype.acl_update = function(o)  
128 -{  
129 - // delete old row  
130 - if (o.old)  
131 - this.acl_remove_row(o.old);  
132 - // make sure the same ID doesn't exist  
133 - else if (this.env.acl[o.id])  
134 - this.acl_remove_row(o.id);  
135 -  
136 - // add new row  
137 - this.acl_add_row(o, true);  
138 - // hide autocomplete popup  
139 - this.ksearch_blur();  
140 - // hide form  
141 - this.acl_popup.dialog('close');  
142 -}  
143 -  
144 -// Switch table display mode  
145 -rcube_webmail.prototype.acl_mode_switch = function(elem)  
146 -{  
147 - this.env.acl_advanced = !this.env.acl_advanced;  
148 - this.enable_command('acl-delete', 'acl-edit', false);  
149 - this.http_request('settings/plugin.acl', '_act=list'  
150 - + '&_mode='+(this.env.acl_advanced ? 'advanced' : 'simple')  
151 - + '&_mbox='+urlencode(this.env.mailbox),  
152 - this.set_busy(true, 'loading'));  
153 -}  
154 -  
155 -// ACL table initialization  
156 -rcube_webmail.prototype.acl_list_init = function()  
157 -{  
158 - var method = this.env.acl_advanced ? 'addClass' : 'removeClass';  
159 -  
160 - $('#acl-switch')[method]('selected');  
161 - $(this.gui_objects.acltable)[method]('advanced');  
162 -  
163 - this.acl_list = new rcube_list_widget(this.gui_objects.acltable,  
164 - {multiselect: true, draggable: false, keyboard: true});  
165 - this.acl_list.addEventListener('select', function(o) { rcmail.acl_list_select(o); })  
166 - .addEventListener('dblclick', function(o) { rcmail.acl_list_dblclick(o); })  
167 - .addEventListener('keypress', function(o) { rcmail.acl_list_keypress(o); })  
168 - .init();  
169 -}  
170 -  
171 -// ACL table row selection handler  
172 -rcube_webmail.prototype.acl_list_select = function(list)  
173 -{  
174 - rcmail.enable_command('acl-delete', list.get_selection().length > 0);  
175 - rcmail.enable_command('acl-edit', list.get_selection().length == 1);  
176 - list.focus();  
177 -}  
178 -  
179 -// ACL table double-click handler  
180 -rcube_webmail.prototype.acl_list_dblclick = function(list)  
181 -{  
182 - this.acl_edit();  
183 -}  
184 -  
185 -// ACL table keypress handler  
186 -rcube_webmail.prototype.acl_list_keypress = function(list)  
187 -{  
188 - if (list.key_pressed == list.ENTER_KEY)  
189 - this.command('acl-edit');  
190 - else if (list.key_pressed == list.DELETE_KEY || list.key_pressed == list.BACKSPACE_KEY)  
191 - if (!this.acl_form || !this.acl_form.is(':visible'))  
192 - this.command('acl-delete');  
193 -}  
194 -  
195 -// Reloads ACL table  
196 -rcube_webmail.prototype.acl_list_update = function(html)  
197 -{  
198 - $(this.gui_objects.acltable).html(html);  
199 - this.acl_list_init();  
200 -}  
201 -  
202 -// Returns names of users in selected rows  
203 -rcube_webmail.prototype.acl_get_usernames = function()  
204 -{  
205 - var users = [], n, len, id, row,  
206 - list = this.acl_list,  
207 - selection = list.get_selection();  
208 -  
209 - for (n=0, len=selection.length; n<len; n++) {  
210 - if (this.env.acl_specials.length && $.inArray(selection[n], this.env.acl_specials) >= 0) {  
211 - users.push(selection[n]);  
212 - }  
213 - else if ((row = list.rows[selection[n]]) && (id = $(row.obj).data('userid'))) {  
214 - users.push(id);  
215 - }  
216 - }  
217 -  
218 - return users;  
219 -}  
220 -  
221 -// Removes ACL table row  
222 -rcube_webmail.prototype.acl_remove_row = function(id)  
223 -{  
224 - var list = this.acl_list;  
225 -  
226 - list.remove_row(id);  
227 - list.clear_selection();  
228 -  
229 - // we don't need it anymore (remove id conflict)  
230 - $('#rcmrow'+id).remove();  
231 - this.env.acl[id] = null;  
232 -  
233 - this.enable_command('acl-delete', list.get_selection().length > 0);  
234 - this.enable_command('acl-edit', list.get_selection().length == 1);  
235 -}  
236 -  
237 -// Adds ACL table row  
238 -rcube_webmail.prototype.acl_add_row = function(o, sel)  
239 -{  
240 - var n, len, ids = [], spec = [], id = o.id, list = this.acl_list,  
241 - items = this.env.acl_advanced ? [] : this.env.acl_items,  
242 - table = this.gui_objects.acltable,  
243 - row = $('thead > tr', table).clone();  
244 -  
245 - // Update new row  
246 - $('th', row).map(function() {  
247 - var td = $('<td>'),  
248 - title = $(this).attr('title'),  
249 - cl = this.className.replace(/^acl/, '');  
250 -  
251 - if (title)  
252 - td.attr('title', title);  
253 -  
254 - if (items && items[cl])  
255 - cl = items[cl];  
256 -  
257 - if (cl == 'user')  
258 - td.addClass(cl).attr('title', o.title).append($('<a>').text(o.display));  
259 - else  
260 - td.addClass(this.className + ' ' + rcmail.acl_class(o.acl, cl)).html('<span/>');  
261 -  
262 - $(this).replaceWith(td);  
263 - });  
264 -  
265 - row = row.attr({id: 'rcmrow' + id, 'data-userid': o.username}).get(0);  
266 -  
267 - this.env.acl[id] = o.acl;  
268 -  
269 - // sorting... (create an array of user identifiers, then sort it)  
270 - for (n in this.env.acl) {  
271 - if (this.env.acl[n]) {  
272 - if (this.env.acl_specials.length && $.inArray(n, this.env.acl_specials) >= 0)  
273 - spec.push(n);  
274 - else  
275 - ids.push(n);  
276 - }  
277 - }  
278 - ids.sort();  
279 - // specials on the top  
280 - ids = spec.concat(ids);  
281 -  
282 - // find current id  
283 - for (n=0, len=ids.length; n<len; n++)  
284 - if (ids[n] == id)  
285 - break;  
286 -  
287 - // add row  
288 - if (n && n < len) {  
289 - $('#rcmrow'+ids[n-1]).after(row);  
290 - list.init_row(row);  
291 - list.rowcount++;  
292 - }  
293 - else  
294 - list.insert_row(row);  
295 -  
296 - if (sel)  
297 - list.select_row(o.id);  
298 -}  
299 -  
300 -// Initializes and shows ACL create/edit form  
301 -rcube_webmail.prototype.acl_init_form = function(id)  
302 -{  
303 - var ul, row, td, val = '', type = 'user', li_elements, body = $('body'),  
304 - adv_ul = $('#advancedrights'), sim_ul = $('#simplerights'),  
305 - name_input = $('#acluser'), type_list = $('#usertype');  
306 -  
307 - if (!this.acl_form) {  
308 - var fn = function () { $('input[value="user"]').prop('checked', true); };  
309 - name_input.click(fn).keypress(fn);  
310 - }  
311 -  
312 - this.acl_form = $('#aclform');  
313 -  
314 - // Hide unused items  
315 - if (this.env.acl_advanced) {  
316 - adv_ul.show();  
317 - sim_ul.hide();  
318 - ul = adv_ul;  
319 - }  
320 - else {  
321 - sim_ul.show();  
322 - adv_ul.hide();  
323 - ul = sim_ul;  
324 - }  
325 -  
326 - // initialize form fields  
327 - li_elements = $(':checkbox', ul);  
328 - li_elements.attr('checked', false);  
329 -  
330 - if (id && (row = this.acl_list.rows[id])) {  
331 - row = row.obj;  
332 - li_elements.map(function() {  
333 - td = $('td.'+this.id, row);  
334 - if (td.length && td.hasClass('enabled'))  
335 - this.checked = true;  
336 - });  
337 -  
338 - if (!this.env.acl_specials.length || $.inArray(id, this.env.acl_specials) < 0)  
339 - val = $(row).data('userid');  
340 - else  
341 - type = id;  
342 - }  
343 - // mark read (lrs) rights by default  
344 - else {  
345 - li_elements.filter(function() { return this.id.match(/^acl([lrs]|read)$/); }).prop('checked', true);  
346 - }  
347 -  
348 - name_input.val(val);  
349 - $('input[value='+type+']').prop('checked', true);  
350 -  
351 - this.acl_id = id;  
352 -  
353 - var buttons = {}, me = this, body = document.body;  
354 -  
355 - buttons[this.get_label('save')] = function(e) { me.command('acl-save'); };  
356 - buttons[this.get_label('cancel')] = function(e) { me.command('acl-cancel'); };  
357 -  
358 - // display it as popup  
359 - this.acl_popup = this.show_popup_dialog(  
360 - this.acl_form.show(),  
361 - id ? this.get_label('acl.editperms') : this.get_label('acl.newuser'),  
362 - buttons,  
363 - {  
364 - button_classes: ['mainaction submit', 'cancel'],  
365 - modal: true,  
366 - closeOnEscape: true,  
367 - close: function(e, ui) {  
368 - (me.is_framed() ? parent.rcmail : me).ksearch_hide();  
369 - me.acl_form.appendTo(body).hide();  
370 - $(this).remove();  
371 - window.focus(); // focus iframe  
372 - }  
373 - }  
374 - );  
375 -  
376 - if (type == 'user')  
377 - name_input.focus();  
378 - else  
379 - $('input:checked', type_list).focus();  
380 -}  
381 -  
382 -// Returns class name according to ACL comparison result  
383 -rcube_webmail.prototype.acl_class = function(acl1, acl2)  
384 -{  
385 - var i, len, found = 0;  
386 -  
387 - acl1 = String(acl1);  
388 - acl2 = String(acl2);  
389 -  
390 - for (i=0, len=acl2.length; i<len; i++)  
391 - if (acl1.indexOf(acl2[i]) > -1)  
392 - found++;  
393 -  
394 - if (found == len)  
395 - return 'enabled';  
396 - else if (found)  
397 - return 'partial';  
398 -  
399 - return 'disabled';  
400 -}  
1 -/**  
2 - * ACL plugin script  
3 - *  
4 - * @licstart The following is the entire license notice for the  
5 - * JavaScript code in this file.  
6 - *  
7 - * Copyright (c) The Roundcube Dev Team  
8 - *  
9 - * The JavaScript code in this page is free software: you can redistribute it  
10 - * and/or modify it under the terms of the GNU General Public License  
11 - * as published by the Free Software Foundation, either version 3 of  
12 - * the License, or (at your option) any later version.  
13 - *  
14 - * @licend The above is the entire license notice  
15 - * for the JavaScript code in this file.  
16 - */  
17 -window.rcmail&&rcmail.addEventListener("init",function(){var e;rcmail.gui_objects.acltable&&(rcmail.acl_list_init(),rcmail.env.acl_users_source&&((e=rcmail.is_framed()?parent.rcmail:rcmail).init_address_input_events($("#acluser"),{action:"settings/plugin.acl-autocomplete"}),e.set_env({autocomplete_max:rcmail.env.autocomplete_max,autocomplete_min_length:rcmail.env.autocomplete_min_length}),e.add_label("autocompletechars",rcmail.labels.autocompletechars),e.add_label("autocompletemore",rcmail.labels.autocompletemore),e.addEventListener("autocomplete_insert",function(e){"acluser"==e.field.id&&(e.field.value=e.insert.replace(/[ ,;]+$/,""))}))),rcmail.enable_command("acl-create","acl-save","acl-cancel","acl-mode-switch",!0),rcmail.enable_command("acl-delete","acl-edit",!1),rcmail.env.acl_advanced&&$("#acl-switch").addClass("selected").find("input").prop("checked",!0)}),rcube_webmail.prototype.acl_create=function(){this.acl_init_form()},rcube_webmail.prototype.acl_edit=function(){var e=this.acl_list.get_single_selection();e&&this.acl_init_form(e)},rcube_webmail.prototype.acl_delete=function(){var a=this.acl_get_usernames();a&&a.length&&this.confirm_dialog(this.get_label("acl.deleteconfirm"),"delete",function(e,t){t.http_post("settings/plugin.acl",{_act:"delete",_user:a.join(","),_mbox:rcmail.env.mailbox},t.set_busy(!0,"acl.deleting"))})},rcube_webmail.prototype.acl_save=function(){var e,t="",a=$("#acluser",this.acl_form).val();$(this.env.acl_advanced?"#advancedrights :checkbox":"#simplerights :checkbox",this.acl_form).map(function(){this.checked&&(t+=this.value)}),(a=(e=$("input:checked[name=usertype]",this.acl_form).val())&&"user"!=e?e:a)?t?(a={_act:"save",_user:a,_acl:t,_mbox:this.env.mailbox},this.acl_id&&(a._old=this.acl_id),this.http_post("settings/plugin.acl",a,this.set_busy(!0,"acl.saving"))):this.alert_dialog(this.get_label("acl.norights")):this.alert_dialog(this.get_label("acl.nouser"))},rcube_webmail.prototype.acl_cancel=function(){this.ksearch_blur(),this.acl_popup.dialog("close")},rcube_webmail.prototype.acl_update=function(e){e.old?this.acl_remove_row(e.old):this.env.acl[e.id]&&this.acl_remove_row(e.id),this.acl_add_row(e,!0),this.ksearch_blur(),this.acl_popup.dialog("close")},rcube_webmail.prototype.acl_mode_switch=function(e){this.env.acl_advanced=!this.env.acl_advanced,this.enable_command("acl-delete","acl-edit",!1),this.http_request("settings/plugin.acl","_act=list&_mode="+(this.env.acl_advanced?"advanced":"simple")+"&_mbox="+urlencode(this.env.mailbox),this.set_busy(!0,"loading"))},rcube_webmail.prototype.acl_list_init=function(){var e=this.env.acl_advanced?"addClass":"removeClass";$("#acl-switch")[e]("selected"),$(this.gui_objects.acltable)[e]("advanced"),this.acl_list=new rcube_list_widget(this.gui_objects.acltable,{multiselect:!0,draggable:!1,keyboard:!0}),this.acl_list.addEventListener("select",function(e){rcmail.acl_list_select(e)}).addEventListener("dblclick",function(e){rcmail.acl_list_dblclick(e)}).addEventListener("keypress",function(e){rcmail.acl_list_keypress(e)}).init()},rcube_webmail.prototype.acl_list_select=function(e){rcmail.enable_command("acl-delete",0<e.get_selection().length),rcmail.enable_command("acl-edit",1==e.get_selection().length),e.focus()},rcube_webmail.prototype.acl_list_dblclick=function(e){this.acl_edit()},rcube_webmail.prototype.acl_list_keypress=function(e){e.key_pressed==e.ENTER_KEY?this.command("acl-edit"):e.key_pressed!=e.DELETE_KEY&&e.key_pressed!=e.BACKSPACE_KEY||this.acl_form&&this.acl_form.is(":visible")||this.command("acl-delete")},rcube_webmail.prototype.acl_list_update=function(e){$(this.gui_objects.acltable).html(e),this.acl_list_init()},rcube_webmail.prototype.acl_get_usernames=function(){for(var e,t,a=[],l=this.acl_list,c=l.get_selection(),i=0,s=c.length;i<s;i++)this.env.acl_specials.length&&0<=$.inArray(c[i],this.env.acl_specials)?a.push(c[i]):(t=l.rows[c[i]])&&(e=$(t.obj).data("userid"))&&a.push(e);return a},rcube_webmail.prototype.acl_remove_row=function(e){var t=this.acl_list;t.remove_row(e),t.clear_selection(),$("#rcmrow"+e).remove(),this.env.acl[e]=null,this.enable_command("acl-delete",0<t.get_selection().length),this.enable_command("acl-edit",1==t.get_selection().length)},rcube_webmail.prototype.acl_add_row=function(l,e){var t,a,c=[],i=[],s=l.id,n=this.acl_list,o=this.env.acl_advanced?[]:this.env.acl_items,r=this.gui_objects.acltable,r=$("thead > tr",r).clone();for(t in $("th",r).map(function(){var e=$("<td>"),t=$(this).attr("title"),a=this.className.replace(/^acl/,"");t&&e.attr("title",t),"user"==(a=o&&o[a]?o[a]:a)?e.addClass(a).attr("title",l.title).append($("<a>").text(l.display)):e.addClass(this.className+" "+rcmail.acl_class(l.acl,a)).html("<span/>"),$(this).replaceWith(e)}),r=r.attr({id:"rcmrow"+s,"data-userid":l.username}).get(0),this.env.acl[s]=l.acl,this.env.acl)this.env.acl[t]&&(this.env.acl_specials.length&&0<=$.inArray(t,this.env.acl_specials)?i:c).push(t);for(c.sort(),t=0,a=(c=i.concat(c)).length;t<a&&c[t]!=s;t++);t&&t<a?($("#rcmrow"+c[t-1]).after(r),n.init_row(r),n.rowcount++):n.insert_row(r),e&&n.select_row(l.id)},rcube_webmail.prototype.acl_init_form=function(e){var t,a,l,c="",i="user",s=($("body"),$("#advancedrights")),n=$("#simplerights"),o=$("#acluser"),r=$("#usertype");this.acl_form||o.click(l=function(){$('input[value="user"]').prop("checked",!0)}).keypress(l),this.acl_form=$("#aclform"),n=this.env.acl_advanced?(s.show(),n.hide(),s):(n.show(),s.hide(),n),(n=$(":checkbox",n)).attr("checked",!1),e&&(t=this.acl_list.rows[e])?(t=t.obj,n.map(function(){(a=$("td."+this.id,t)).length&&a.hasClass("enabled")&&(this.checked=!0)}),!this.env.acl_specials.length||$.inArray(e,this.env.acl_specials)<0?c=$(t).data("userid"):i=e):n.filter(function(){return this.id.match(/^acl([lrs]|read)$/)}).prop("checked",!0),o.val(c),$("input[value="+i+"]").prop("checked",!0),this.acl_id=e;var c={},_=this,d=document.body;c[this.get_label("save")]=function(e){_.command("acl-save")},c[this.get_label("cancel")]=function(e){_.command("acl-cancel")},this.acl_popup=this.show_popup_dialog(this.acl_form.show(),e?this.get_label("acl.editperms"):this.get_label("acl.newuser"),c,{button_classes:["mainaction submit","cancel"],modal:!0,closeOnEscape:!0,close:function(e,t){(_.is_framed()?parent.rcmail:_).ksearch_hide(),_.acl_form.appendTo(d).hide(),$(this).remove(),window.focus()}}),("user"==i?o:$("input:checked",r)).focus()},rcube_webmail.prototype.acl_class=function(e,t){var a,l,c=0;for(e=String(e),a=0,l=(t=String(t)).length;a<l;a++)-1<e.indexOf(t[a])&&c++;return c==l?"enabled":c?"partial":"disabled"};  
1 -<?php  
2 -  
3 -/**  
4 - * Folders Access Control Lists Management (RFC4314, RFC2086)  
5 - *  
6 - * @author Aleksander Machniak <alec@alec.pl>  
7 - *  
8 - * Copyright (C) Kolab Systems AG  
9 - *  
10 - * This program is free software: you can redistribute it and/or modify  
11 - * it under the terms of the GNU General Public License as published by  
12 - * the Free Software Foundation, either version 3 of the License, or  
13 - * (at your option) any later version.  
14 - *  
15 - * This program is distributed in the hope that it will be useful,  
16 - * but WITHOUT ANY WARRANTY; without even the implied warranty of  
17 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the  
18 - * GNU General Public License for more details.  
19 - *  
20 - * You should have received a copy of the GNU General Public License  
21 - * along with this program. If not, see http://www.gnu.org/licenses/.  
22 - */  
23 -  
24 -class acl extends rcube_plugin  
25 -{  
26 - public $task = 'settings';  
27 -  
28 - private $rc;  
29 - private $supported = null;  
30 - private $mbox;  
31 - private $ldap;  
32 - private $specials = ['anyone', 'anonymous'];  
33 -  
34 - /**  
35 - * Plugin initialization  
36 - */  
37 - function init()  
38 - {  
39 - $this->rc = rcmail::get_instance();  
40 -  
41 - // Register hooks  
42 - $this->add_hook('folder_form', [$this, 'folder_form']);  
43 -  
44 - // Plugin actions  
45 - $this->register_action('plugin.acl', [$this, 'acl_actions']);  
46 - $this->register_action('plugin.acl-autocomplete', [$this, 'acl_autocomplete']);  
47 - }  
48 -  
49 - /**  
50 - * Handler for plugin actions (AJAX)  
51 - */  
52 - function acl_actions()  
53 - {  
54 - $action = trim(rcube_utils::get_input_value('_act', rcube_utils::INPUT_GPC));  
55 -  
56 - // Connect to IMAP  
57 - $this->rc->storage_init();  
58 -  
59 - // Load localization and configuration  
60 - $this->add_texts('localization/');  
61 - $this->load_config();  
62 -  
63 - if ($action == 'save') {  
64 - $this->action_save();  
65 - }  
66 - else if ($action == 'delete') {  
67 - $this->action_delete();  
68 - }  
69 - else if ($action == 'list') {  
70 - $this->action_list();  
71 - }  
72 -  
73 - // Only AJAX actions  
74 - $this->rc->output->send();  
75 - }  
76 -  
77 - /**  
78 - * Handler for user login autocomplete request  
79 - */  
80 - function acl_autocomplete()  
81 - {  
82 - $this->load_config();  
83 -  
84 - $search = rcube_utils::get_input_value('_search', rcube_utils::INPUT_GPC, true);  
85 - $reqid = rcube_utils::get_input_value('_reqid', rcube_utils::INPUT_GPC);  
86 - $users = [];  
87 - $keys = [];  
88 -  
89 - if ($this->init_ldap()) {  
90 - $max = (int) $this->rc->config->get('autocomplete_max', 15);  
91 - $mode = (int) $this->rc->config->get('addressbook_search_mode');  
92 -  
93 - $this->ldap->set_pagesize($max);  
94 - $result = $this->ldap->search('*', $search, $mode);  
95 -  
96 - foreach ($result->records as $record) {  
97 - $user = $record['uid'];  
98 -  
99 - if (is_array($user) && !empty($user)) {  
100 - $user = array_filter($user);  
101 - $user = $user[0];  
102 - }  
103 -  
104 - if ($user) {  
105 - $display = rcube_addressbook::compose_search_name($record);  
106 - $user = ['name' => $user, 'display' => $display];  
107 - $users[] = $user;  
108 - $keys[] = $display ?: $user['name'];  
109 - }  
110 - }  
111 -  
112 - if ($this->rc->config->get('acl_groups')) {  
113 - $prefix = $this->rc->config->get('acl_group_prefix');  
114 - $group_field = $this->rc->config->get('acl_group_field', 'name');  
115 - $result = $this->ldap->list_groups($search, $mode);  
116 -  
117 - foreach ($result as $record) {  
118 - $group = $record['name'];  
119 - $group_id = is_array($record[$group_field]) ? $record[$group_field][0] : $record[$group_field];  
120 -  
121 - if ($group) {  
122 - $users[] = ['name' => ($prefix ?: '') . $group_id, 'display' => $group, 'type' => 'group'];  
123 - $keys[] = $group;  
124 - }  
125 - }  
126 - }  
127 - }  
128 -  
129 - if (count($users)) {  
130 - // sort users index  
131 - asort($keys, SORT_LOCALE_STRING);  
132 - // re-sort users according to index  
133 - foreach ($keys as $idx => $val) {  
134 - $keys[$idx] = $users[$idx];  
135 - }  
136 - $users = array_values($keys);  
137 - }  
138 -  
139 - $this->rc->output->command('ksearch_query_results', $users, $search, $reqid);  
140 - $this->rc->output->send();  
141 - }  
142 -  
143 - /**  
144 - * Handler for 'folder_form' hook  
145 - *  
146 - * @param array $args Hook arguments array (form data)  
147 - *  
148 - * @return array Hook arguments array  
149 - */  
150 - function folder_form($args)  
151 - {  
152 - $mbox_imap = $args['options']['name'];  
153 - $myrights = $args['options']['rights'];  
154 -  
155 - // Edited folder name (empty in create-folder mode)  
156 - if (!strlen($mbox_imap)) {  
157 - return $args;  
158 - }  
159 -/*  
160 - // Do nothing on protected folders (?)  
161 - if (!empty($args['options']['protected'])) {  
162 - return $args;  
163 - }  
164 -*/  
165 - // Get MYRIGHTS  
166 - if (empty($myrights)) {  
167 - return $args;  
168 - }  
169 -  
170 - // Load localization and include scripts  
171 - $this->load_config();  
172 - $this->specials = $this->rc->config->get('acl_specials', $this->specials);  
173 - $this->add_texts('localization/', ['deleteconfirm', 'norights',  
174 - 'nouser', 'deleting', 'saving', 'newuser', 'editperms']);  
175 - $this->rc->output->add_label('save', 'cancel');  
176 - $this->include_script('acl.js');  
177 - $this->rc->output->include_script('list.js');  
178 - $this->include_stylesheet($this->local_skin_path() . '/acl.css');  
179 -  
180 - // add Info fieldset if it doesn't exist  
181 - if (!isset($args['form']['props']['fieldsets']['info']))  
182 - $args['form']['props']['fieldsets']['info'] = [  
183 - 'name' => $this->rc->gettext('info'),  
184 - 'content' => []  
185 - ];  
186 -  
187 - // Display folder rights to 'Info' fieldset  
188 - $args['form']['props']['fieldsets']['info']['content']['myrights'] = [  
189 - 'label' => rcube::Q($this->gettext('myrights')),  
190 - 'value' => $this->acl2text($myrights)  
191 - ];  
192 -  
193 - // Return if not folder admin  
194 - if (!in_array('a', $myrights)) {  
195 - return $args;  
196 - }  
197 -  
198 - // The 'Sharing' tab  
199 - $this->mbox = $mbox_imap;  
200 - $this->rc->output->set_env('acl_users_source', (bool) $this->rc->config->get('acl_users_source'));  
201 - $this->rc->output->set_env('mailbox', $mbox_imap);  
202 - $this->rc->output->add_handlers([  
203 - 'acltable' => [$this, 'templ_table'],  
204 - 'acluser' => [$this, 'templ_user'],  
205 - 'aclrights' => [$this, 'templ_rights'],  
206 - ]);  
207 -  
208 - $this->rc->output->set_env('autocomplete_max', (int) $this->rc->config->get('autocomplete_max', 15));  
209 - $this->rc->output->set_env('autocomplete_min_length', $this->rc->config->get('autocomplete_min_length'));  
210 - $this->rc->output->add_label('autocompletechars', 'autocompletemore');  
211 -  
212 - $args['form']['sharing'] = [  
213 - 'name' => rcube::Q($this->gettext('sharing')),  
214 - 'content' => $this->rc->output->parse('acl.table', false, false),  
215 - ];  
216 -  
217 - return $args;  
218 - }  
219 -  
220 - /**  
221 - * Creates ACL rights table  
222 - *  
223 - * @param array $attrib Template object attributes  
224 - *  
225 - * @return string HTML Content  
226 - */  
227 - function templ_table($attrib)  
228 - {  
229 - if (empty($attrib['id'])) {  
230 - $attrib['id'] = 'acl-table';  
231 - }  
232 -  
233 - $out = $this->list_rights($attrib);  
234 -  
235 - $this->rc->output->add_gui_object('acltable', $attrib['id']);  
236 -  
237 - return $out;  
238 - }  
239 -  
240 - /**  
241 - * Creates ACL rights form (rights list part)  
242 - *  
243 - * @param array $attrib Template object attributes  
244 - *  
245 - * @return string HTML Content  
246 - */  
247 - function templ_rights($attrib)  
248 - {  
249 - // Get supported rights  
250 - $supported = $this->rights_supported();  
251 -  
252 - // give plugins the opportunity to adjust this list  
253 - $data = $this->rc->plugins->exec_hook('acl_rights_supported',  
254 - ['rights' => $supported, 'folder' => $this->mbox, 'labels' => []]  
255 - );  
256 - $supported = $data['rights'];  
257 -  
258 - // depending on server capability either use 'te' or 'd' for deleting msgs  
259 - $deleteright = implode(array_intersect(str_split('ted'), $supported));  
260 -  
261 - $out = '';  
262 - $ul = '';  
263 - $input = new html_checkbox();  
264 -  
265 - // Advanced rights  
266 - $attrib['id'] = 'advancedrights';  
267 - foreach ($supported as $key => $val) {  
268 - $id = "acl$val";  
269 - $ul .= html::tag('li', null,  
270 - $input->show('', ['name' => "acl[$val]", 'value' => $val, 'id' => $id])  
271 - . html::label(['for' => $id, 'title' => $this->gettext('longacl'.$val)], $this->gettext('acl'.$val))  
272 - );  
273 - }  
274 -  
275 - $out = html::tag('ul', $attrib, $ul, html::$common_attrib);  
276 -  
277 - // Simple rights  
278 - $ul = '';  
279 - $attrib['id'] = 'simplerights';  
280 - $items = [  
281 - 'read' => 'lrs',  
282 - 'write' => 'wi',  
283 - 'delete' => $deleteright,  
284 - 'other' => preg_replace('/[lrswi'.$deleteright.']/', '', implode($supported)),  
285 - ];  
286 -  
287 - // give plugins the opportunity to adjust this list  
288 - $data = $this->rc->plugins->exec_hook('acl_rights_simple',  
289 - ['rights' => $items, 'folder' => $this->mbox, 'labels' => [], 'titles' => []]  
290 - );  
291 -  
292 - foreach ($data['rights'] as $key => $val) {  
293 - $id = "acl$key";  
294 - $title = !empty($data['titles'][$key]) ? $data['titles'][$key] : $this->gettext('longacl'.$key);  
295 - $label = !empty($data['labels'][$key]) ? $data['labels'][$key] : $this->gettext('acl'.$key);  
296 - $ul .= html::tag('li', null,  
297 - $input->show('', ['name' => "acl[$val]", 'value' => $val, 'id' => $id])  
298 - . html::label(['for' => $id, 'title' => $title], $label)  
299 - );  
300 - }  
301 -  
302 - $out .= "\n" . html::tag('ul', $attrib, $ul, html::$common_attrib);  
303 -  
304 - $this->rc->output->set_env('acl_items', $data['rights']);  
305 -  
306 - return $out;  
307 - }  
308 -  
309 - /**  
310 - * Creates ACL rights form (user part)  
311 - *  
312 - * @param array $attrib Template object attributes  
313 - *  
314 - * @return string HTML Content  
315 - */  
316 - function templ_user($attrib)  
317 - {  
318 - // Create username input  
319 - $class = !empty($attrib['class']) ? $attrib['class'] : '';  
320 - $attrib['name'] = 'acluser';  
321 - $attrib['class'] = 'form-control';  
322 -  
323 - $textfield = new html_inputfield($attrib);  
324 -  
325 - $label = html::label(['for' => $attrib['id'], 'class' => 'input-group-text'], $this->gettext('username'));  
326 - $fields['user'] = html::div('input-group',  
327 - html::span('input-group-prepend', $label) . ' ' . $textfield->show()  
328 - );  
329 -  
330 - // Add special entries  
331 - if (!empty($this->specials)) {  
332 - foreach ($this->specials as $key) {  
333 - $fields[$key] = html::label(['for' => 'id' . $key], $this->gettext($key));  
334 - }  
335 - }  
336 -  
337 - $this->rc->output->set_env('acl_specials', $this->specials);  
338 -  
339 - // Create list with radio buttons  
340 - if (count($fields) > 1) {  
341 - $ul = '';  
342 - foreach ($fields as $key => $val) {  
343 - $radio = new html_radiobutton(['name' => 'usertype']);  
344 - $radio = $radio->show($key == 'user' ? 'user' : '', ['value' => $key, 'id' => 'id' . $key]);  
345 - $ul .= html::tag('li', null, $radio . $val);  
346 - }  
347 -  
348 - $out = html::tag('ul', ['id' => 'usertype', 'class' => $class], $ul, html::$common_attrib);  
349 - }  
350 - // Display text input alone  
351 - else {  
352 - $out = html::div($class, $fields['user']);  
353 - }  
354 -  
355 - return $out;  
356 - }  
357 -  
358 - /**  
359 - * Creates ACL rights table  
360 - *  
361 - * @param array $attrib Template object attributes  
362 - *  
363 - * @return string HTML Content  
364 - */  
365 - private function list_rights($attrib = [])  
366 - {  
367 - // Get ACL for the folder  
368 - $acl = $this->rc->storage->get_acl($this->mbox);  
369 -  
370 - if (!is_array($acl)) {  
371 - $acl = [];  
372 - }  
373 -  
374 - // Keep special entries (anyone/anonymous) on top of the list  
375 - if (!empty($this->specials) && !empty($acl)) {  
376 - foreach ($this->specials as $key) {  
377 - if (isset($acl[$key])) {  
378 - $acl_special[$key] = $acl[$key];  
379 - unset($acl[$key]);  
380 - }  
381 - }  
382 - }  
383 -  
384 - // Sort the list by username  
385 - uksort($acl, 'strnatcasecmp');  
386 -  
387 - if (!empty($acl_special)) {  
388 - $acl = array_merge($acl_special, $acl);  
389 - }  
390 -  
391 - // Get supported rights and build column names  
392 - $supported = $this->rights_supported();  
393 -  
394 - // give plugins the opportunity to adjust this list  
395 - $data = $this->rc->plugins->exec_hook('acl_rights_supported',  
396 - ['rights' => $supported, 'folder' => $this->mbox, 'labels' => []]  
397 - );  
398 - $supported = $data['rights'];  
399 -  
400 - // depending on server capability either use 'te' or 'd' for deleting msgs  
401 - $deleteright = implode(array_intersect(str_split('ted'), $supported));  
402 -  
403 - // Use advanced or simple (grouped) rights  
404 - $advanced = $this->rc->config->get('acl_advanced_mode');  
405 -  
406 - if ($advanced) {  
407 - $items = [];  
408 - foreach ($supported as $sup) {  
409 - $items[$sup] = $sup;  
410 - }  
411 - }  
412 - else {  
413 - $items = [  
414 - 'read' => 'lrs',  
415 - 'write' => 'wi',  
416 - 'delete' => $deleteright,  
417 - 'other' => preg_replace('/[lrswi'.$deleteright.']/', '', implode($supported)),  
418 - ];  
419 -  
420 - // give plugins the opportunity to adjust this list  
421 - $data = $this->rc->plugins->exec_hook('acl_rights_simple',  
422 - ['rights' => $items, 'folder' => $this->mbox, 'labels' => []]  
423 - );  
424 - $items = $data['rights'];  
425 - }  
426 -  
427 - // Create the table  
428 - $attrib['noheader'] = true;  
429 - $table = new html_table($attrib);  
430 - $self = $this->rc->get_user_name();  
431 - $js_table = [];  
432 -  
433 - // Create table header  
434 - $table->add_header('user', $this->gettext('identifier'));  
435 - foreach (array_keys($items) as $key) {  
436 - $label = !empty($data['labels'][$key]) ? $data['labels'][$key] : $this->gettext('shortacl' . $key);  
437 - $table->add_header(['class' => 'acl' . $key, 'title' => $label], $label);  
438 - }  
439 -  
440 - foreach ($acl as $user => $rights) {  
441 - if ($user === $self) {  
442 - continue;  
443 - }  
444 -  
445 - // filter out virtual rights (c or d) the server may return  
446 - $userrights = array_intersect($rights, $supported);  
447 - $userid = rcube_utils::html_identifier($user);  
448 - $title = null;  
449 -  
450 - if (!empty($this->specials) && in_array($user, $this->specials)) {  
451 - $username = $this->gettext($user);  
452 - }  
453 - else {  
454 - $username = $this->resolve_acl_identifier($user, $title);  
455 - }  
456 -  
457 - $table->add_row(['id' => 'rcmrow' . $userid, 'data-userid' => $user]);  
458 - $table->add(['class' => 'user text-nowrap', 'title' => $title],  
459 - html::a(['id' => 'rcmlinkrow' . $userid], rcube::Q($username))  
460 - );  
461 -  
462 - foreach ($items as $key => $right) {  
463 - $in = $this->acl_compare($userrights, $right);  
464 - switch ($in) {  
465 - case 2: $class = 'enabled'; break;  
466 - case 1: $class = 'partial'; break;  
467 - default: $class = 'disabled'; break;  
468 - }  
469 - $table->add('acl' . $key . ' ' . $class, '<span></span>');  
470 - }  
471 -  
472 - $js_table[$userid] = implode($userrights);  
473 - }  
474 -  
475 - $this->rc->output->set_env('acl', $js_table);  
476 - $this->rc->output->set_env('acl_advanced', $advanced);  
477 -  
478 - $out = $table->show();  
479 -  
480 - return $out;  
481 - }  
482 -  
483 - /**  
484 - * Handler for ACL update/create action  
485 - */  
486 - private function action_save()  
487 - {  
488 - $mbox = trim(rcube_utils::get_input_value('_mbox', rcube_utils::INPUT_POST, true)); // UTF7-IMAP  
489 - $user = trim(rcube_utils::get_input_value('_user', rcube_utils::INPUT_POST));  
490 - $acl = trim(rcube_utils::get_input_value('_acl', rcube_utils::INPUT_POST));  
491 - $oldid = trim(rcube_utils::get_input_value('_old', rcube_utils::INPUT_POST));  
492 -  
493 - $acl = array_intersect(str_split($acl), $this->rights_supported());  
494 - $users = $oldid ? [$user] : explode(',', $user);  
495 - $result = 0;  
496 - $self = $this->rc->get_user_name();  
497 -  
498 - foreach ($users as $user) {  
499 - $user = trim($user);  
500 - $username = '';  
501 - $prefix = $this->rc->config->get('acl_groups') ? $this->rc->config->get('acl_group_prefix') : '';  
502 -  
503 - if ($prefix && strpos($user, $prefix) === 0) {  
504 - $username = $user;  
505 - }  
506 - else if (!empty($this->specials) && in_array($user, $this->specials)) {  
507 - $username = $this->gettext($user);  
508 - }  
509 - else if (!empty($user)) {  
510 - if (!strpos($user, '@') && ($realm = $this->get_realm())) {  
511 - $user .= '@' . rcube_utils::idn_to_ascii(preg_replace('/^@/', '', $realm));  
512 - }  
513 -  
514 - // Make sure it's valid email address to prevent from "disappearing folder"  
515 - // issue in Cyrus IMAP e.g. when the acl user identifier contains spaces inside.  
516 - if (strpos($user, '@') && !rcube_utils::check_email($user, false)) {  
517 - $user = null;  
518 - }  
519 -  
520 - $username = $user;  
521 - }  
522 -  
523 - if (!$acl || !$user || !strlen($mbox)) {  
524 - continue;  
525 - }  
526 -  
527 - $user = $this->mod_login($user);  
528 - $username = $this->mod_login($username);  
529 -  
530 - if ($user != $self && $username != $self) {  
531 - if ($this->rc->storage->set_acl($mbox, $user, $acl)) {  
532 - $display = $this->resolve_acl_identifier($username, $title);  
533 - $this->rc->output->command('acl_update', [  
534 - 'id' => rcube_utils::html_identifier($user),  
535 - 'username' => $username,  
536 - 'title' => $title,  
537 - 'display' => $display,  
538 - 'acl' => implode($acl),  
539 - 'old' => $oldid  
540 - ]);  
541 - $result++;  
542 - }  
543 - }  
544 - }  
545 -  
546 - if ($result) {  
547 - $this->rc->output->show_message($oldid ? 'acl.updatesuccess' : 'acl.createsuccess', 'confirmation');  
548 - }  
549 - else {  
550 - $this->rc->output->show_message($oldid ? 'acl.updateerror' : 'acl.createerror', 'error');  
551 - }  
552 - }  
553 -  
554 - /**  
555 - * Handler for ACL delete action  
556 - */  
557 - private function action_delete()  
558 - {  
559 - $mbox = trim(rcube_utils::get_input_value('_mbox', rcube_utils::INPUT_POST, true)); //UTF7-IMAP  
560 - $user = trim(rcube_utils::get_input_value('_user', rcube_utils::INPUT_POST));  
561 -  
562 - $user = explode(',', $user);  
563 -  
564 - foreach ($user as $u) {  
565 - $u = trim($u);  
566 - if ($this->rc->storage->delete_acl($mbox, $u)) {  
567 - $this->rc->output->command('acl_remove_row', rcube_utils::html_identifier($u));  
568 - }  
569 - else {  
570 - $error = true;  
571 - }  
572 - }  
573 -  
574 - if (empty($error)) {  
575 - $this->rc->output->show_message('acl.deletesuccess', 'confirmation');  
576 - }  
577 - else {  
578 - $this->rc->output->show_message('acl.deleteerror', 'error');  
579 - }  
580 - }  
581 -  
582 - /**  
583 - * Handler for ACL list update action (with display mode change)  
584 - */  
585 - private function action_list()  
586 - {  
587 - if (in_array('acl_advanced_mode', (array)$this->rc->config->get('dont_override'))) {  
588 - return;  
589 - }  
590 -  
591 - $this->mbox = trim(rcube_utils::get_input_value('_mbox', rcube_utils::INPUT_GPC, true)); // UTF7-IMAP  
592 - $advanced = trim(rcube_utils::get_input_value('_mode', rcube_utils::INPUT_GPC));  
593 - $advanced = $advanced == 'advanced';  
594 -  
595 - // Save state in user preferences  
596 - $this->rc->user->save_prefs(['acl_advanced_mode' => $advanced]);  
597 -  
598 - $out = $this->list_rights();  
599 -  
600 - $out = preg_replace(['/^<table[^>]+>/', '/<\/table>$/'], '', $out);  
601 -  
602 - $this->rc->output->command('acl_list_update', $out);  
603 - }  
604 -  
605 - /**  
606 - * Creates <UL> list with descriptive access rights  
607 - *  
608 - * @param array $rights MYRIGHTS result  
609 - *  
610 - * @return string HTML content  
611 - */  
612 - function acl2text($rights)  
613 - {  
614 - if (empty($rights)) {  
615 - return '';  
616 - }  
617 -  
618 - $supported = $this->rights_supported();  
619 - $list = [];  
620 - $attrib = [  
621 - 'name' => 'rcmyrights',  
622 - 'style' => 'margin:0; padding:0 15px;',  
623 - ];  
624 -  
625 - foreach ($supported as $right) {  
626 - if (in_array($right, $rights)) {  
627 - $list[] = html::tag('li', null, rcube::Q($this->gettext('acl' . $right)));  
628 - }  
629 - }  
630 -  
631 - if (count($list) == count($supported)) {  
632 - return rcube::Q($this->gettext('aclfull'));  
633 - }  
634 -  
635 - return html::tag('ul', $attrib, implode("\n", $list));  
636 - }  
637 -  
638 - /**  
639 - * Compares two ACLs (according to supported rights)  
640 - *  
641 - * @param array $acl1 ACL rights array (or string)  
642 - * @param array $acl2 ACL rights array (or string)  
643 - *  
644 - * @param int Comparison result, 2 - full match, 1 - partial match, 0 - no match  
645 - */  
646 - function acl_compare($acl1, $acl2)  
647 - {  
648 - if (!is_array($acl1)) $acl1 = str_split($acl1);  
649 - if (!is_array($acl2)) $acl2 = str_split($acl2);  
650 -  
651 - $rights = $this->rights_supported();  
652 -  
653 - $acl1 = array_intersect($acl1, $rights);  
654 - $acl2 = array_intersect($acl2, $rights);  
655 - $res = array_intersect($acl1, $acl2);  
656 -  
657 - $cnt1 = count($res);  
658 - $cnt2 = count($acl2);  
659 -  
660 - if ($cnt1 == $cnt2) {  
661 - return 2;  
662 - }  
663 -  
664 - if ($cnt1) {  
665 - return 1;  
666 - }  
667 -  
668 - return 0;  
669 - }  
670 -  
671 - /**  
672 - * Get list of supported access rights (according to RIGHTS capability)  
673 - *  
674 - * @return array List of supported access rights abbreviations  
675 - */  
676 - function rights_supported()  
677 - {  
678 - if ($this->supported !== null) {  
679 - return $this->supported;  
680 - }  
681 -  
682 - $capa = $this->rc->storage->get_capability('RIGHTS');  
683 -  
684 - if (is_array($capa) && !empty($capa)) {  
685 - $rights = strtolower($capa[0]);  
686 - }  
687 - else {  
688 - $rights = 'cd';  
689 - }  
690 -  
691 - return $this->supported = str_split('lrswi' . $rights . 'pa');  
692 - }  
693 -  
694 - /**  
695 - * Username realm detection.  
696 - *  
697 - * @return string Username realm (domain)  
698 - */  
699 - private function get_realm()  
700 - {  
701 - // When user enters a username without domain part, realm  
702 - // allows to add it to the username (and display correct username in the table)  
703 -  
704 - if (isset($_SESSION['acl_username_realm'])) {  
705 - return $_SESSION['acl_username_realm'];  
706 - }  
707 -  
708 - $self = $this->rc->get_user_name();  
709 -  
710 - // find realm in username of logged user (?)  
711 - list($name, $domain) = rcube_utils::explode('@', $self);  
712 -  
713 - // Use (always existent) ACL entry on the INBOX for the user to determine  
714 - // whether or not the user ID in ACL entries need to be qualified and how  
715 - // they would need to be qualified.  
716 - if (empty($domain)) {  
717 - $acl = $this->rc->storage->get_acl('INBOX');  
718 - if (is_array($acl)) {  
719 - $regexp = '/^' . preg_quote($self, '/') . '@(.*)$/';  
720 - foreach (array_keys($acl) as $name) {  
721 - if (preg_match($regexp, $name, $matches)) {  
722 - $domain = $matches[1];  
723 - break;  
724 - }  
725 - }  
726 - }  
727 - }  
728 -  
729 - return $_SESSION['acl_username_realm'] = $domain;  
730 - }  
731 -  
732 - /**  
733 - * Initializes autocomplete LDAP backend  
734 - */  
735 - protected function init_ldap()  
736 - {  
737 - if ($this->ldap) {  
738 - return $this->ldap->ready;  
739 - }  
740 -  
741 - // get LDAP config  
742 - $config = $this->rc->config->get('acl_users_source');  
743 -  
744 - if (empty($config)) {  
745 - return false;  
746 - }  
747 -  
748 - // not an array, use configured ldap_public source  
749 - if (!is_array($config)) {  
750 - $ldap_config = (array) $this->rc->config->get('ldap_public');  
751 - $config = $ldap_config[$config];  
752 - }  
753 -  
754 - $uid_field = $this->rc->config->get('acl_users_field', 'mail');  
755 - $filter = $this->rc->config->get('acl_users_filter');  
756 -  
757 - if (empty($uid_field) || empty($config)) {  
758 - return false;  
759 - }  
760 -  
761 - // get name attribute  
762 - if (!empty($config['fieldmap'])) {  
763 - $name_field = $config['fieldmap']['name'];  
764 - }  
765 - // ... no fieldmap, use the old method  
766 - if (empty($name_field)) {  
767 - $name_field = $config['name_field'];  
768 - }  
769 -  
770 - // add UID field to fieldmap, so it will be returned in a record with name  
771 - $config['fieldmap']['name'] = $name_field;  
772 - $config['fieldmap']['uid'] = $uid_field;  
773 -  
774 - // search in UID and name fields  
775 - // $name_field can be in a form of <field>:<modifier> (#1490591)  
776 - $name_field = preg_replace('/:.*$/', '', $name_field);  
777 - $search = array_unique([$name_field, $uid_field]);  
778 -  
779 - $config['search_fields'] = $search;  
780 - $config['required_fields'] = [$uid_field];  
781 -  
782 - // set search filter  
783 - if ($filter) {  
784 - $config['filter'] = $filter;  
785 - }  
786 -  
787 - // disable vlv  
788 - $config['vlv'] = false;  
789 -  
790 - // Initialize LDAP connection  
791 - $this->ldap = new rcube_ldap(  
792 - $config,  
793 - $this->rc->config->get('ldap_debug'),  
794 - $this->rc->config->mail_domain($_SESSION['imap_host'])  
795 - );  
796 -  
797 - return $this->ldap->ready;  
798 - }  
799 -  
800 - /**  
801 - * Modify user login according to 'login_lc' setting  
802 - */  
803 - protected function mod_login($user)  
804 - {  
805 - $login_lc = $this->rc->config->get('login_lc');  
806 -  
807 - if ($login_lc === true || $login_lc == 2) {  
808 - $user = mb_strtolower($user);  
809 - }  
810 - // lowercase domain name  
811 - else if ($login_lc && strpos($user, '@')) {  
812 - list($local, $domain) = explode('@', $user);  
813 - $user = $local . '@' . mb_strtolower($domain);  
814 - }  
815 -  
816 - return $user;  
817 - }  
818 -  
819 - /**  
820 - * Resolve acl identifier to user/group name  
821 - */  
822 - protected function resolve_acl_identifier($id, &$title = null)  
823 - {  
824 - if ($this->init_ldap()) {  
825 - $groups = $this->rc->config->get('acl_groups');  
826 - $prefix = $this->rc->config->get('acl_group_prefix');  
827 - $group_field = $this->rc->config->get('acl_group_field', 'name');  
828 -  
829 - // Unfortunately this works only if group_field=name,  
830 - // list_groups() allows searching by group name only  
831 - if ($groups && $prefix && $group_field === 'name' && strpos($id, $prefix) === 0) {  
832 - $gid = substr($id, strlen($prefix));  
833 - $result = $this->ldap->list_groups($gid, rcube_addressbook::SEARCH_STRICT);  
834 -  
835 - if (count($result) === 1 && ($record = $result[0])) {  
836 - if (isset($record[$group_field]) && $record[$group_field] === $gid) {  
837 - $display = $record['name'];  
838 - if ($display != $gid) {  
839 - $title = sprintf('%s (%s)', $display, $gid);  
840 - }  
841 -  
842 - return $display;  
843 - }  
844 - }  
845 -  
846 - return $id;  
847 - }  
848 -  
849 - $this->ldap->set_pagesize('2');  
850 - // Note: 'uid' works here because we overwrite fieldmap in init_ldap() above  
851 - $result = $this->ldap->search('uid', $id, rcube_addressbook::SEARCH_STRICT);  
852 -  
853 - if ($result->count === 1 && ($record = $result->first())) {  
854 - if ($record['uid'] === $id) {  
855 - $title = rcube_addressbook::compose_search_name($record);  
856 - $display = rcube_addressbook::compose_list_name($record);  
857 -  
858 - return $display;  
859 - }  
860 - }  
861 - }  
862 -  
863 - return $id;  
864 - }  
865 -}  
1 -{  
2 - "name": "roundcube/acl",  
3 - "type": "roundcube-plugin",  
4 - "description": "IMAP Folders Access Control Lists Management (RFC4314, RFC2086).",  
5 - "license": "GPL-3.0-or-later",  
6 - "version": "1.8",  
7 - "authors": [  
8 - {  
9 - "name": "Aleksander Machniak",  
10 - "email": "alec@alec.pl",  
11 - "role": "Lead"  
12 - }  
13 - ],  
14 - "repositories": [  
15 - {  
16 - "type": "composer",  
17 - "url": "https://plugins.roundcube.net"  
18 - }  
19 - ],  
20 - "require": {  
21 - "php": ">=5.4.0",  
22 - "roundcube/plugin-installer": ">=0.1.3"  
23 - }  
24 -}  
1 -<?php  
2 -  
3 -// Default look of access rights table  
4 -// In advanced mode all access rights are displayed separately  
5 -// In simple mode access rights are grouped into four groups: read, write, delete, full  
6 -$config['acl_advanced_mode'] = false;  
7 -  
8 -// LDAP addressbook that would be searched for user names autocomplete.  
9 -// That should be an array referring to the $config['ldap_public'] array key  
10 -// or complete addressbook configuration array.  
11 -$config['acl_users_source'] = '';  
12 -  
13 -// The LDAP attribute which will be used as ACL user identifier  
14 -$config['acl_users_field'] = 'mail';  
15 -  
16 -// The LDAP search filter will be &'d with search queries  
17 -$config['acl_users_filter'] = '';  
18 -  
19 -// Enable LDAP groups in user autocompletion.  
20 -// Note: LDAP addressbook defined in acl_users_source must include groups config  
21 -$config['acl_groups'] = false;  
22 -  
23 -// Prefix added to the group name to build IMAP ACL identifier  
24 -$config['acl_group_prefix'] = 'group:';  
25 -  
26 -// The LDAP attribute (or field name) which will be used as ACL group identifier  
27 -$config['acl_group_field'] = 'name';  
28 -  
29 -// Include the following 'special' access control subjects in the ACL dialog;  
30 -// Defaults to array('anyone', 'anonymous') (not when set to an empty array)  
31 -// Example: array('anyone') to exclude 'anonymous'.  
32 -// Set to an empty array to exclude all special aci subjects.  
33 -$config['acl_specials'] = array('anyone', 'anonymous');  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['username'] = 'المستخدم :';  
18 -$labels['advanced'] = 'الوضع المتقدم';  
19 -$labels['add'] = 'إضافة';  
20 -$labels['acld'] = 'حذف الرسائل';  
21 -$labels['aclt'] = 'حذف الرسائل';  
22 -$labels['aclx'] = 'حذف المجلد';  
23 -$labels['aclother'] = 'آخر';  
24 -$labels['acldelete'] = 'حذف';  
25 -$labels['shortaclc'] = 'أنشئ';  
26 -$labels['shortaclk'] = 'أنشئ';  
27 -$labels['shortacld'] = 'حذف';  
28 -$labels['shortaclt'] = 'حذف';  
29 -$labels['shortaclother'] = 'آخر';  
30 -$labels['shortacldelete'] = 'حذف';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'مشاركة';  
18 -$labels['myrights'] = 'حقوق الوصول';  
19 -$labels['username'] = 'مستخدم:';  
20 -$labels['advanced'] = 'وضع متقدم';  
21 -$labels['add'] = 'إضافة';  
22 -$labels['newuser'] = 'اضافة مدخل';  
23 -$labels['editperms'] = 'تعديل الصلاحيات';  
24 -$labels['actions'] = 'اجراءات حقوق الوصول...';  
25 -$labels['anyone'] = 'كل المستخدمين(اي شخص)';  
26 -$labels['anonymous'] = 'ضيف (مجهول)';  
27 -$labels['identifier'] = 'معرف';  
28 -$labels['acll'] = 'بحث';  
29 -$labels['aclr'] = 'قراءة الرسائل';  
30 -$labels['acls'] = 'ابقاء حالة الزيارة';  
31 -$labels['aclw'] = 'اكتب رمز';  
32 -$labels['acli'] = 'ادخل (نسخ الى)';  
33 -$labels['aclp'] = 'نشر';  
34 -$labels['aclc'] = 'إنشاء مجلدات فرعية';  
35 -$labels['aclk'] = 'إنشاء مجلدات فرعية';  
36 -$labels['acld'] = 'حذف الرسائل';  
37 -$labels['aclt'] = 'حذف الرسائل';  
38 -$labels['acle'] = 'حُذف';  
39 -$labels['aclx'] = 'حذف المجلد';  
40 -$labels['acla'] = 'ادارة';  
41 -$labels['acln'] = 'التعليق على الرسائل';  
42 -$labels['aclfull'] = 'تحكم كامل';  
43 -$labels['aclother'] = 'اخرى';  
44 -$labels['aclread'] = 'قراءة ';  
45 -$labels['aclwrite'] = 'كتابة';  
46 -$labels['acldelete'] = 'حذف';  
47 -$labels['shortacll'] = 'بحث';  
48 -$labels['shortaclr'] = 'قراءة ';  
49 -$labels['shortacls'] = 'ابقاء';  
50 -$labels['shortaclw'] = 'قراءة';  
51 -$labels['shortacli'] = 'ادراج';  
52 -$labels['shortaclp'] = 'نشر';  
53 -$labels['shortaclc'] = 'أنشئ';  
54 -$labels['shortaclk'] = 'أنشئ';  
55 -$labels['shortacld'] = 'حذف';  
56 -$labels['shortaclt'] = 'حذف';  
57 -$labels['shortacle'] = 'حُذف';  
58 -$labels['shortaclx'] = 'حذف المجلد';  
59 -$labels['shortacla'] = 'ادارة';  
60 -$labels['shortacln'] = 'كتابة تعليق';  
61 -$labels['shortaclother'] = 'اخرى';  
62 -$labels['shortaclread'] = 'قراءة ';  
63 -$labels['shortaclwrite'] = 'كتابة';  
64 -$labels['shortacldelete'] = 'حذف';  
65 -$labels['longacll'] = 'المجلد مرئي في القائمة وبالامكان ايضا الاشتراك';  
66 -$labels['longaclr'] = 'من الممكن فتح المجلد للقراءة';  
67 -$labels['longacls'] = 'وسم الزيارة في الرسائل بالامكان تغييره';  
68 -$labels['longaclw'] = 'وسم والكلمات الرئيسية في الرسائل يمكن تغييره, ماعدا الزيارة والحذف ';  
69 -$labels['longacli'] = 'بالامكان كتابة الرسائل ونسخها الى هذا المجلد';  
70 -$labels['longaclp'] = 'بالامكان نشر الرسائل الى هذ المجلد';  
71 -$labels['longaclc'] = 'بالامكان انشاء المجلدات ( او اعادة التسمية ) مباشرة تحت هذا المجلد';  
72 -$labels['longaclk'] = 'بالامكان انشاء المجلدات ( او اعادة التسمية ) مباشرة تحت هذا المجلد';  
73 -$labels['longacld'] = 'حذف وسم الرسائل من الممكن تغييرة';  
74 -$labels['longaclt'] = 'حذف وسم الرسائل من الممكن تغييرة';  
75 -$labels['longacle'] = 'بالامكان شطب الرسائل';  
76 -$labels['longaclx'] = 'هذا المجلد بالامكان حذفة او اعادة تسميته';  
77 -$labels['longacla'] = 'حقوق الوصول لهذا المجلد بالامكان تغييره';  
78 -$labels['longacln'] = 'يمكن تغيير البيانات الوصفية (التعليقات) المشتركة بين الرسائل';  
79 -$labels['longaclfull'] = 'التحكم الكامل يتضمن ادارة المجلدات';  
80 -$labels['longaclread'] = 'من الممكن فتح المجلد للقراءة';  
81 -$labels['longaclwrite'] = 'لا يمكن وضع علامة على الرسائل, كتبت او نسخة الى هذا المجلد';  
82 -$labels['longacldelete'] = 'لا يمكن حذف الرسائل';  
83 -$labels['longaclother'] = 'حقوق الوصول الأخرى';  
84 -$labels['ariasummaryacltable'] = 'قائمة حقوق الوصول';  
85 -$labels['arialabelaclactions'] = 'قائمة الإجراءات';  
86 -$labels['arialabelaclform'] = 'نموذج حقوق الوصول';  
87 -$messages['deleting'] = 'جاري حذف حقوق الوصول...';  
88 -$messages['saving'] = 'جاري حفظ حقوق الوصول...';  
89 -$messages['updatesuccess'] = 'تم تغيير حقوق الوصول بنجاح';  
90 -$messages['deletesuccess'] = 'تم حذف حقوق الوصول بنجاح';  
91 -$messages['createsuccess'] = 'تم اضافة حقوق الوصول بنجاح';  
92 -$messages['updateerror'] = 'لا يمكن تحديث حقوق الوصول';  
93 -$messages['deleteerror'] = 'لا يمكن حذف حقوق الوصول';  
94 -$messages['createerror'] = 'لا يمكن اضافة حقوق الوصول';  
95 -$messages['deleteconfirm'] = 'هل تريد فعلاً حذف حقوق الوصول لـ المستخدمين المحددين ؟';  
96 -$messages['norights'] = 'لم يتم تحديد حقوق وصول!';  
97 -$messages['nouser'] = 'لم يتم تحديد اسم مستخدم!';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Compartición';  
18 -$labels['myrights'] = 'Drechos d\'accesu';  
19 -$labels['username'] = 'Usuariu:';  
20 -$labels['advanced'] = 'Mou avanzáu';  
21 -$labels['add'] = 'Amestar';  
22 -$labels['newuser'] = 'Amestar entrada';  
23 -$labels['editperms'] = 'Editar permisos';  
24 -$labels['actions'] = 'Aición de drechos d\'accesu...';  
25 -$labels['anyone'] = 'Tolos usuarios (toos)';  
26 -$labels['anonymous'] = 'Convidaos (anónimos)';  
27 -$labels['identifier'] = 'Identificador';  
28 -$labels['acll'] = 'Guetar';  
29 -$labels['aclr'] = 'Lleer mensaxes';  
30 -$labels['acls'] = 'Estáu Caltener Vistu';  
31 -$labels['aclw'] = 'Escribir banderes';  
32 -$labels['acli'] = 'Inxertar (copiar a)';  
33 -$labels['aclc'] = 'Crear subcarpetes';  
34 -$labels['aclk'] = 'Crear subcarpetes';  
35 -$labels['acld'] = 'Desaniciar mensaxes';  
36 -$labels['aclt'] = 'Desaniciar mensaxes';  
37 -$labels['acle'] = 'Desanciar';  
38 -$labels['aclx'] = 'Desaniciar carpeta';  
39 -$labels['acla'] = 'Alministrar';  
40 -$labels['aclfull'] = 'Control total';  
41 -$labels['aclother'] = 'Otru';  
42 -$labels['aclread'] = 'Lleer';  
43 -$labels['aclwrite'] = 'Escribir';  
44 -$labels['acldelete'] = 'Desaniciar';  
45 -$labels['shortacll'] = 'Guetar';  
46 -$labels['shortaclr'] = 'Lleer';  
47 -$labels['shortacls'] = 'Caltener';  
48 -$labels['shortaclw'] = 'Escribir';  
49 -$labels['shortacli'] = 'Inxertar';  
50 -$labels['shortaclc'] = 'Crear';  
51 -$labels['shortaclk'] = 'Crear';  
52 -$labels['shortacld'] = 'Desaniciar';  
53 -$labels['shortaclt'] = 'Desaniciar';  
54 -$labels['shortacle'] = 'Desaniciar';  
55 -$labels['shortaclx'] = 'Desaniciu de carpeta';  
56 -$labels['shortacla'] = 'Alministrar';  
57 -$labels['shortaclother'] = 'Otru';  
58 -$labels['shortaclread'] = 'Lleer';  
59 -$labels['shortaclwrite'] = 'Escribir';  
60 -$labels['shortacldelete'] = 'Desaniciar';  
61 -$labels['longacll'] = 'La carpeta ye visible nes llistes y pue soscribise a';  
62 -$labels['longaclr'] = 'La carpeta nun pue abrise pa leer';  
63 -$labels['longaclx'] = 'La carpeta pue desaniciase o renomase';  
64 -$labels['longacla'] = 'Puen camudase los drechos d\'accesu de la carpeta';  
65 -$labels['longaclfull'] = 'Control completu incluyendo l\'alminitración de carpeta';  
66 -$labels['longaclread'] = 'La carpeta pue abrise pa llectura';  
67 -$labels['longaclwrite'] = 'Los mensaxes puen conseñase, escribise o copiase a la carpeta';  
68 -$labels['longacldelete'] = 'Los mensaxes puen desaniciase';  
69 -$labels['longaclother'] = 'Otros drechos d\'accesu';  
70 -$labels['ariasummaryacltable'] = 'Llista de drechos d\'accesu';  
71 -$messages['deleting'] = 'Desaniciando los drechos d\'accesu...';  
72 -$messages['saving'] = 'Guardando los drechos d\'accesu...';  
73 -$messages['updatesuccess'] = 'Camudaos con ésitu los drechos d\'accesu';  
74 -$messages['deletesuccess'] = 'Desaniciaos con ésitu los drechos d\'accesu';  
75 -$messages['createsuccess'] = 'Amestaos con ésitu los drechos d\'accesu';  
76 -$messages['updateerror'] = 'Nun puen anovase los drechos d\'accesu';  
77 -$messages['deleteerror'] = 'Nun puen desaniciase los drechos d\'accesu';  
78 -$messages['createerror'] = 'Nun puen amestase los drechos d\'accesu';  
79 -$messages['deleteconfirm'] = '¿De xuru quies desaniciar los drechos d\'accesu al(a los) usuariu(os) esbilláu(os)?';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Paylaşma';  
18 -$labels['myrights'] = 'Giriş hüququ';  
19 -$labels['username'] = 'İstifadəçi:';  
20 -$labels['advanced'] = 'Ekspert rejimi';  
21 -$labels['add'] = 'Əlavə et';  
22 -$labels['newuser'] = 'Sahə əlavə et';  
23 -$labels['editperms'] = 'Cavabları redaktə et';  
24 -$labels['actions'] = 'Giriş hüququ ilə hərəkət...';  
25 -$labels['anyone'] = 'Bütün istifadəçilər (istənilən)';  
26 -$labels['anonymous'] = 'Qonaqlar (anonimlər)';  
27 -$labels['identifier'] = 'İdentifikator';  
28 -$labels['acll'] = 'Baxış';  
29 -$labels['aclr'] = 'Məktubu oxu';  
30 -$labels['acls'] = 'Oxunulan kimi saxla';  
31 -$labels['aclw'] = 'Yazı bayrağı';  
32 -$labels['acli'] = 'Əlavə et (kopyala)';  
33 -$labels['aclp'] = 'Yazı';  
34 -$labels['aclc'] = 'Qovluqaltı yarat';  
35 -$labels['aclk'] = 'Qovluqaltı yarat';  
36 -$labels['acld'] = 'Məktubu sil';  
37 -$labels['aclt'] = 'Məktubu sil';  
38 -$labels['acle'] = 'Poz';  
39 -$labels['aclx'] = 'Qovluğu sil';  
40 -$labels['acla'] = 'İdarə';  
41 -$labels['acln'] = 'Mesajl şərh et';  
42 -$labels['aclfull'] = 'Tam idarə';  
43 -$labels['aclother'] = 'Digər';  
44 -$labels['aclread'] = 'Oxu';  
45 -$labels['aclwrite'] = 'Yaz';  
46 -$labels['acldelete'] = 'Sil';  
47 -$labels['shortacll'] = 'Baxış';  
48 -$labels['shortaclr'] = 'Oxu';  
49 -$labels['shortacls'] = 'Saxla';  
50 -$labels['shortaclw'] = 'Yaz';  
51 -$labels['shortacli'] = 'Yerləşdir';  
52 -$labels['shortaclp'] = 'Yazı';  
53 -$labels['shortaclc'] = 'Yarat';  
54 -$labels['shortaclk'] = 'Yarat';  
55 -$labels['shortacld'] = 'Sil';  
56 -$labels['shortaclt'] = 'Sil';  
57 -$labels['shortacle'] = 'Poz';  
58 -$labels['shortaclx'] = 'Qovluğun silinməsi';  
59 -$labels['shortacla'] = 'İdarə';  
60 -$labels['shortacln'] = 'Şərh';  
61 -$labels['shortaclother'] = 'Digər';  
62 -$labels['shortaclread'] = 'Oxu';  
63 -$labels['shortaclwrite'] = 'Yaz';  
64 -$labels['shortacldelete'] = 'Sil';  
65 -$labels['longacll'] = 'Qovluq siyahıda görünür və yazılmağa hazırdır';  
66 -$labels['longaclr'] = 'Bu qovluq oxunmaq üçün açıla bilər';  
67 -$labels['longacls'] = 'Oxunulan flaqı dəyişdirilə bilər';  
68 -$labels['longaclw'] = 'Oxunulan və silinənlərdən başqa flaqlar və açar sözləri dəyişdirilə bilər';  
69 -$labels['longacli'] = 'Məktub qovluğa yazıla və ya saxlanıla bilər';  
70 -$labels['longaclp'] = 'Məktub bu qovluğa göndərilə bilər';  
71 -$labels['longaclc'] = 'Qovluqaltları bu qovluqda yaradıla və ya adı dəyişdirilə bilər';  
72 -$labels['longaclk'] = 'Qovluqaltları bu qovluqda yaradıla və ya adı dəyişdirilə bilər';  
73 -$labels['longacld'] = 'Silinən flaqı dəyişdirilə bilər';  
74 -$labels['longaclt'] = 'Silinən flaqı dəyişdirilə bilər';  
75 -$labels['longacle'] = 'Məktublar pozula bilər';  
76 -$labels['longaclx'] = 'Bu qovluq silinə və ya adı dəyişdirilə bilər';  
77 -$labels['longacla'] = 'Bu qovluğa giriş hüququ dəyişdirilə bilər';  
78 -$labels['longacln'] = 'Müştərək metaməlumatlar (şərhlər) dəyişdirilə bilər';  
79 -$labels['longaclfull'] = 'Qovluğun idarəsi ilə birlikdə, tam giriş.';  
80 -$labels['longaclread'] = 'Bu qovluq oxunmaq üçün açıla bilər';  
81 -$labels['longaclwrite'] = 'Məktubu bu qovluğa qeyd etmək, yazmaq və kopyalamaq olar';  
82 -$labels['longacldelete'] = 'Məktubu silmək olar';  
83 -$labels['longaclother'] = 'Digər giriş hüquqları';  
84 -$labels['ariasummaryacltable'] = 'Giriş hüquqlarının siyahısı';  
85 -$labels['arialabelaclactions'] = 'Hərəkət siyahısı';  
86 -$labels['arialabelaclform'] = 'Giriş hüquqlarının forması';  
87 -$messages['deleting'] = 'Giriş hüququnun silinməsi...';  
88 -$messages['saving'] = 'Giriş hüququnun saxlanılması...';  
89 -$messages['updatesuccess'] = 'Giriş hüququ dəyişdirildi';  
90 -$messages['deletesuccess'] = 'Giriş hüququ silindi';  
91 -$messages['createsuccess'] = 'Giriş hüququ əlavə edildi';  
92 -$messages['updateerror'] = 'Hüquqları yeniləmək alınmadı';  
93 -$messages['deleteerror'] = 'Giriş hüququnu silmək mümkün deyil';  
94 -$messages['createerror'] = 'Giriş hüququnu əlavə etmək mümkün deyil';  
95 -$messages['deleteconfirm'] = 'Seçilmiş istifadəçilərin giriş hüququnu silməkdə əminsiniz?';  
96 -$messages['norights'] = 'Giriş hüquqları göstərilməyib!';  
97 -$messages['nouser'] = 'İstifadəçi adı təyin olunmayıb!';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Сумесны доступ';  
18 -$labels['myrights'] = 'Правы доступу';  
19 -$labels['username'] = 'Карыстальнік:';  
20 -$labels['advanced'] = 'Пашыраны рэжым';  
21 -$labels['add'] = 'Дадаць';  
22 -$labels['newuser'] = 'Дадаць запіс';  
23 -$labels['editperms'] = 'Рэдагаваць правы доступу';  
24 -$labels['actions'] = 'Дзеянні з правамі доступу...';  
25 -$labels['anyone'] = 'Усе карыстальнікі (любыя)';  
26 -$labels['anonymous'] = 'Госці (ананімныя)';  
27 -$labels['identifier'] = 'Ідэнтыфікатар';  
28 -$labels['acll'] = 'Пошук';  
29 -$labels['aclr'] = 'Прачытаць паведамленні';  
30 -$labels['acls'] = 'Пакінуць стан Бачанае';  
31 -$labels['aclw'] = 'Флагі запісвання';  
32 -$labels['acli'] = 'Уставіць (капіраваць у)';  
33 -$labels['aclp'] = 'Адправіць';  
34 -$labels['aclc'] = 'Стварыць укладзеныя папкі';  
35 -$labels['aclk'] = 'Стварыць укладзеныя папкі';  
36 -$labels['acld'] = 'Выдаліць паведамленні';  
37 -$labels['aclt'] = 'Выдаліць паведамленні';  
38 -$labels['acle'] = 'Знішчыць паведамленні';  
39 -$labels['aclx'] = 'Выдаліць папку';  
40 -$labels['acla'] = 'Адміністраваць';  
41 -$labels['acln'] = 'Анатаваць паведамленні';  
42 -$labels['aclfull'] = 'Поўны доступ';  
43 -$labels['aclother'] = 'Іншае';  
44 -$labels['aclread'] = 'Чытанне';  
45 -$labels['aclwrite'] = 'Запіс';  
46 -$labels['acldelete'] = 'Выдаленне';  
47 -$labels['shortacll'] = 'Пошук';  
48 -$labels['shortaclr'] = 'Чытанне';  
49 -$labels['shortacls'] = 'Пакінуць';  
50 -$labels['shortaclw'] = 'Запісванне';  
51 -$labels['shortacli'] = 'Даданне';  
52 -$labels['shortaclp'] = 'Адпраўленне';  
53 -$labels['shortaclc'] = 'Стварэнне';  
54 -$labels['shortaclk'] = 'Стварэнне';  
55 -$labels['shortacld'] = 'Выдаленне';  
56 -$labels['shortaclt'] = 'Выдаленне';  
57 -$labels['shortacle'] = 'Знішчэнне';  
58 -$labels['shortaclx'] = 'Выдаленне папкі';  
59 -$labels['shortacla'] = 'Адміністраванне';  
60 -$labels['shortacln'] = 'Анатаваць';  
61 -$labels['shortaclother'] = 'Іншае';  
62 -$labels['shortaclread'] = 'Чытанне';  
63 -$labels['shortaclwrite'] = 'Запіс';  
64 -$labels['shortacldelete'] = 'Выдаленне';  
65 -$labels['longacll'] = 'Папку можна пабачыць у спісах і падпісацца на яе';  
66 -$labels['longaclr'] = 'Папку можна адкрыць для чытання';  
67 -$labels['longacls'] = 'На паведамленнях можна пераключаць флаг Бачанае';  
68 -$labels['longaclw'] = 'На паведамленнях можна мяняць ключавыя словы і пераключаць флагі, апроч Бачанае і Выдаленае';  
69 -$labels['longacli'] = 'Паведамленні могуць быць запісаныя альбо скапіяваныя ў папку';  
70 -$labels['longaclp'] = 'Паведамленні могуць быць адпраўленыя ў гэтую папку';  
71 -$labels['longaclc'] = 'Папкі могуць быць створаны (альбо перайменаваны) наўпрост пад гэтай папкай';  
72 -$labels['longaclk'] = 'Папкі могуць быць створаны (альбо перайменаваны) наўпрост пад гэтай папкай';  
73 -$labels['longacld'] = 'На паведамленнях можна пераключаць флаг Выдаленае';  
74 -$labels['longaclt'] = 'На паведамленнях можна пераключаць флаг Выдаленае';  
75 -$labels['longacle'] = 'Паведамленні могуць быць знішчаны';  
76 -$labels['longaclx'] = 'Папку можна выдаліць альбо перайменаваць';  
77 -$labels['longacla'] = 'Правы доступу на папку можна змяняць';  
78 -$labels['longacln'] = 'Анатацыі паведамленняў (супольныя метаданыя) можна змяняць';  
79 -$labels['longaclfull'] = 'Поўны доступ, уключна з адмінстраваннем папкі';  
80 -$labels['longaclread'] = 'Папку можна адкрыць для чытання';  
81 -$labels['longaclwrite'] = 'Паведамленні могуць быць пазначаныя, запісаныя альбо скапіяваныя ў папку';  
82 -$labels['longacldelete'] = 'Паведамленні можна выдаліць';  
83 -$labels['longaclother'] = 'Іншыя правы доступу';  
84 -$labels['ariasummaryacltable'] = 'Спіс правоў доступу';  
85 -$labels['arialabelaclactions'] = 'Спіс дзеянняў';  
86 -$labels['arialabelaclform'] = 'Форма правоў доступу';  
87 -$messages['deleting'] = 'Правы доступу выдаляюцца...';  
88 -$messages['saving'] = 'Правы доступу захоўваюцца...';  
89 -$messages['updatesuccess'] = 'Правы доступу зменены';  
90 -$messages['deletesuccess'] = 'Правы доступу выдалены';  
91 -$messages['createsuccess'] = 'Правы доступу дададзены';  
92 -$messages['updateerror'] = 'Не ўдалося абнавіць правы доступу';  
93 -$messages['deleteerror'] = 'Не ўдалося выдаліць правы доступу';  
94 -$messages['createerror'] = 'Не ўдалося дадаць правы доступу';  
95 -$messages['deleteconfirm'] = 'Напраўду выдаліць правы доступу для вылучанага карыстальніка(ў)?';  
96 -$messages['norights'] = 'Жадных правоў не зададзена!';  
97 -$messages['nouser'] = 'Жадных імёнаў карыстальнікаў не зададзена!';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Споделяне';  
18 -$labels['myrights'] = 'Права за достъп';  
19 -$labels['username'] = 'Потребител:';  
20 -$labels['advanced'] = 'Разширен режим';  
21 -$labels['add'] = 'Добави';  
22 -$labels['newuser'] = 'Добавяне на запис';  
23 -$labels['editperms'] = 'Редакция на права';  
24 -$labels['actions'] = 'Действия на права за достъп...';  
25 -$labels['anyone'] = 'Всички потребители (който и да е)';  
26 -$labels['anonymous'] = 'Гости (анонимни)';  
27 -$labels['identifier'] = 'Индентификатор';  
28 -$labels['acll'] = 'Претърсване';  
29 -$labels['aclr'] = 'Четене на писма';  
30 -$labels['acls'] = 'Запазване на Видяно';  
31 -$labels['aclw'] = 'Записване на флагове';  
32 -$labels['acli'] = 'Вмъкване (Копиране в)';  
33 -$labels['aclp'] = 'Изпращане';  
34 -$labels['aclc'] = 'Създаване на подпапки';  
35 -$labels['aclk'] = 'Създаване на подпапки';  
36 -$labels['acld'] = 'Изтриване на писма';  
37 -$labels['aclt'] = 'Изтриване на писмо';  
38 -$labels['acle'] = 'Заличаване';  
39 -$labels['aclx'] = 'Изтриване на папка';  
40 -$labels['acla'] = 'Администриране';  
41 -$labels['acln'] = 'Анотиране на писма';  
42 -$labels['aclfull'] = 'Пълен контрол';  
43 -$labels['aclother'] = 'Други';  
44 -$labels['aclread'] = 'Четене';  
45 -$labels['aclwrite'] = 'Писане';  
46 -$labels['acldelete'] = 'Изтриване';  
47 -$labels['shortacll'] = 'Търсене';  
48 -$labels['shortaclr'] = 'Четене';  
49 -$labels['shortacls'] = 'Запазване';  
50 -$labels['shortaclw'] = 'Писане';  
51 -$labels['shortacli'] = 'Вмъкване';  
52 -$labels['shortaclp'] = 'Изпращане';  
53 -$labels['shortaclc'] = 'Създаване';  
54 -$labels['shortaclk'] = 'Създаване';  
55 -$labels['shortacld'] = 'Изтриване';  
56 -$labels['shortaclt'] = 'Изтриване';  
57 -$labels['shortacle'] = 'Заличаване';  
58 -$labels['shortaclx'] = 'Изтриване на папка';  
59 -$labels['shortacla'] = 'Администриране';  
60 -$labels['shortacln'] = 'Анотирай';  
61 -$labels['shortaclother'] = 'Други';  
62 -$labels['shortaclread'] = 'Четене';  
63 -$labels['shortaclwrite'] = 'Писане';  
64 -$labels['shortacldelete'] = 'Изтриване';  
65 -$labels['longacll'] = 'Папката е видима в списъците и може да се абонирате';  
66 -$labels['longaclr'] = 'Папката може да бъде отворена за четене';  
67 -$labels['longacls'] = 'Флаг Видяно може да бъде променен.';  
68 -$labels['longaclw'] = 'Флаговете и кл. думи за писмата могат да бъдат променяни, без Видяно и Изтрито.';  
69 -$labels['longacli'] = 'Писмата могат да бъдат писани или копирани към папката.';  
70 -$labels['longaclp'] = 'Писмата могат да бъдат писани в папката';  
71 -$labels['longaclc'] = 'Папките могат да бъдат създавани (или преименувани) директно в тази папка';  
72 -$labels['longaclk'] = 'Папките могат да бъдат създавани (или преименувани) в тази основна папка';  
73 -$labels['longacld'] = 'Флагът Изтрито може да бъде променян';  
74 -$labels['longaclt'] = 'Флагът Изтрито може да бъде променян';  
75 -$labels['longacle'] = 'Писмата могат да бъдат заличавани';  
76 -$labels['longaclx'] = 'Папката може да бъде изтривана или преименувана';  
77 -$labels['longacla'] = 'Правата за достъп до папката могат да бъдат променяни';  
78 -$labels['longacln'] = 'Могат да се променят споделените метаданни (антоции) на писмата';  
79 -$labels['longaclfull'] = 'Пълен контрол, включително и администриране на папките';  
80 -$labels['longaclread'] = 'Папката може да бъде отворена за четене';  
81 -$labels['longaclwrite'] = 'Писмата могат да бъдат маркирани, записвани или копирани в папката';  
82 -$labels['longacldelete'] = 'Писмата могат да бъдат изтривани';  
83 -$labels['longaclother'] = 'Други права за достъп';  
84 -$labels['ariasummaryacltable'] = 'Списък с права за достъп';  
85 -$labels['arialabelaclactions'] = 'Списък с действия';  
86 -$labels['arialabelaclform'] = 'Форма с права за достъп';  
87 -$messages['deleting'] = 'Изтриване на права за достъп...';  
88 -$messages['saving'] = 'Запазване на права за достъп...';  
89 -$messages['updatesuccess'] = 'Правата за достъп са променени успешно';  
90 -$messages['deletesuccess'] = 'Правата за достъп са изтрити успешно';  
91 -$messages['createsuccess'] = 'Правата за достъп са добавени успешно';  
92 -$messages['updateerror'] = 'Невъзможно модифициране на правата за достъп';  
93 -$messages['deleteerror'] = 'Невъзможно изтриване на права за достъп';  
94 -$messages['createerror'] = 'Невъзможно добавяне на права за достъп';  
95 -$messages['deleteconfirm'] = 'Сигурни ли сте, че желаете да премахнате правата за достъп от избраните потребители?';  
96 -$messages['norights'] = 'Няма указани права!';  
97 -$messages['nouser'] = 'Няма указано потребителско име!';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -  
18 -$labels['aclread'] = 'পড়';  
19 -$labels['acldelete'] = 'ফেলে দিন';  
20 -$labels['shortaclr'] = 'পড়';  
21 -$labels['shortaclc'] = 'প্রস্তুত করুন';  
22 -$labels['shortaclk'] = 'প্রস্তুত করুন';  
23 -$labels['shortacld'] = 'ফেলে দিন';  
24 -$labels['shortaclt'] = 'ফেলে দিন';  
25 -$labels['shortaclread'] = 'পড়';  
26 -$labels['shortacldelete'] = 'ফেলে দিন';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Rannañ';  
18 -$labels['myrights'] = 'Aotreoù mont e-barzh';  
19 -$labels['username'] = 'Implijer:';  
20 -$labels['advanced'] = 'Mod kempleshoc\'h';  
21 -$labels['add'] = 'Ouzhpennañ';  
22 -$labels['newuser'] = 'Ouzhpennañ un elfenn';  
23 -$labels['editperms'] = 'Embann an aotreoù';  
24 -$labels['actions'] = 'Aotreoù mont e-barzh';  
25 -$labels['anyone'] = 'An holl implijerien (neb hini)';  
26 -$labels['anonymous'] = 'Kouvidi (dizanv)';  
27 -$labels['identifier'] = 'Naoudi';  
28 -$labels['acll'] = 'Taol sell';  
29 -$labels['aclr'] = 'Kemennadennoù lennet';  
30 -$labels['acls'] = 'Derc\'hel ar stad "Gwelet"';  
31 -$labels['aclw'] = 'Bannieloù skrivañ';  
32 -$labels['acli'] = 'Enlakaat (Eilañ an digoradur)';  
33 -$labels['aclp'] = 'Postañ';  
34 -$labels['aclc'] = 'Krouiñ isteuliadoù';  
35 -$labels['aclk'] = 'Krouiñ isteuliadoù';  
36 -$labels['acld'] = 'Dilemel kemennadennoù';  
37 -$labels['aclt'] = 'Dilemel kemennadennoù';  
38 -$labels['acle'] = 'Skarzhañ';  
39 -$labels['aclx'] = 'Dilemel an teuliad';  
40 -$labels['acla'] = 'Ardeiñ';  
41 -$labels['acln'] = 'Notennaouiñ kemennadennoù';  
42 -$labels['aclfull'] = 'Reoliadur a-bezh';  
43 -$labels['aclother'] = 'All';  
44 -$labels['aclread'] = 'Lenn';  
45 -$labels['aclwrite'] = 'Skrivañ';  
46 -$labels['acldelete'] = 'Dilemel';  
47 -$labels['shortacll'] = 'Teurel ur sell';  
48 -$labels['shortaclr'] = 'Lenn';  
49 -$labels['shortacls'] = 'Derc\'hel';  
50 -$labels['shortaclw'] = 'Skrivañ';  
51 -$labels['shortacli'] = 'Enlakaat';  
52 -$labels['shortaclp'] = 'Postañ';  
53 -$labels['shortaclc'] = 'Krouiñ';  
54 -$labels['shortaclk'] = 'Krouiñ';  
55 -$labels['shortacld'] = 'Dilemel';  
56 -$labels['shortaclt'] = 'Dilemel';  
57 -$labels['shortacle'] = 'Skarzhañ';  
58 -$labels['shortaclx'] = 'Dilemel an teuliad';  
59 -$labels['shortacla'] = 'Ardeiñ';  
60 -$labels['shortacln'] = 'Notennaouiñ';  
61 -$labels['shortaclother'] = 'Traoù all';  
62 -$labels['shortaclread'] = 'Lenn';  
63 -$labels['shortaclwrite'] = 'Skrivañ';  
64 -$labels['shortacldelete'] = 'Dilemel';  
65 -$labels['longacll'] = 'Gwelus eo an teuliad-se er rolloù ha gallout a reer bezañ koumanantet dezhañ';  
66 -$labels['longaclr'] = 'Gallout a reer digeriñ an teuliad-mañ evit e lenn';  
67 -$labels['longacls'] = 'Gallout a reer kemmañ ar bannieloù "Kemennadenn gwelet"';  
68 -$labels['longaclw'] = 'Gallout a reer kemmañ an bannieloù kemennadennoù hag ar gerioù-alc\'hwez, war-bouez "Gwelet" ha "Dilamet"';  
69 -$labels['longacli'] = 'Gallout a ra ar c\'hemennadennoù bezañ skrivet be eilet en teuliad';  
70 -$labels['longaclp'] = 'Gallout a reer postañ kemennadennoù d\'an teuliad-mañ';  
71 -$labels['longaclc'] = 'Gallout a reer krouiñ (pe adenvel) teuliadoù en teuliad war-eeun';  
72 -$labels['longaclk'] = 'Gallout a reer krouiñ (pe adenvel) teuliadoù en teuliad war-eeun';  
73 -$labels['longacld'] = 'Gallout a reer kemmañ ar banniel ""Kemennadenn dilamet"';  
74 -$labels['longaclt'] = 'Gallout a reer kemmañ ar banniel ""Kemennadenn dilamet"';  
75 -$labels['longacle'] = 'Gallout a reer skarzhañ ar c\'hemennadennoù';  
76 -$labels['longaclx'] = 'Gallout a ra bezañ dilamet pe adanvet an teuliad';  
77 -$labels['longacla'] = 'Gallout a reer kemmañ aotreoù haeziñ an teuliad';  
78 -$labels['longacln'] = 'Metaroadennoù rannet (notennoù) ar c\'hemennadennoù a c\'hell bezañ kemmet';  
79 -$labels['longaclfull'] = 'Reoliadur a-bezh, ardeiñ an teuliad en o zouez';  
80 -$labels['longaclread'] = 'Gallout a reer digeriñ an teuliad evit e lenn';  
81 -$labels['longaclwrite'] = 'Gallout a reer merkañ, skrivañ pe eilañ kemennadennoù d\'an teuliad';  
82 -$labels['longacldelete'] = 'Gallout a reer dilemel ar c\'hemennadennoù';  
83 -$labels['longaclother'] = 'Aotreoù haeziñ all';  
84 -$labels['ariasummaryacltable'] = 'Roll an aotreoù haeziñ';  
85 -$labels['arialabelaclactions'] = 'Roll ar gweredoù';  
86 -$labels['arialabelaclform'] = 'Aotreoù haeziñ a-berzh';  
87 -$messages['deleting'] = 'O tilemel an aotreoù haeziñ...';  
88 -$messages['saving'] = 'Oc\'h enrollañ an aotreoù haeziñ...';  
89 -$messages['updatesuccess'] = 'Kemmet an aotreoù haeziñ gant berzh';  
90 -$messages['deletesuccess'] = 'Dilamet an aotreoù haeziñ gant berzh';  
91 -$messages['createsuccess'] = 'Ouzhpennet an aotreoù haeziñ gant berzh';  
92 -$messages['updateerror'] = 'N\'haller ket hizivaat an aotreoù haeziñ';  
93 -$messages['deleteerror'] = 'N\'haller ket dilemel an aotreoù haeziñ';  
94 -$messages['createerror'] = 'N\'haller ket ouzhpennañ aotreoù haeziñ';  
95 -$messages['deleteconfirm'] = 'Sur oc\'h e fell deoc\'h dilemel aotreoù haeziñ an arveriaded diuzet?';  
96 -$messages['norights'] = 'Aotre ebet erspizet!';  
97 -$messages['nouser'] = 'Anv arveriad ebet erspizet!';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Razmjena';  
18 -$labels['myrights'] = 'Prava pristupa';  
19 -$labels['username'] = 'Korisnik:';  
20 -$labels['advanced'] = 'Napredni mod';  
21 -$labels['add'] = 'Dodaj';  
22 -$labels['newuser'] = 'Dodaj unos';  
23 -$labels['editperms'] = 'Uredi dozvole';  
24 -$labels['actions'] = 'Akcije za prava pristupa...';  
25 -$labels['anyone'] = 'Svi korisnici (bilo ko)';  
26 -$labels['anonymous'] = 'Gosti (anonimno)';  
27 -$labels['identifier'] = 'Identifikator';  
28 -$labels['acll'] = 'Pronađi';  
29 -$labels['aclr'] = 'Pročitaj poruke';  
30 -$labels['acls'] = 'Zadrži stanje pregleda';  
31 -$labels['aclw'] = 'Oznake za pisanje';  
32 -$labels['acli'] = 'Umetni (Kopiraj u)';  
33 -$labels['aclp'] = 'Objavi';  
34 -$labels['aclc'] = 'Napravi podfoldere';  
35 -$labels['aclk'] = 'Napravi podfoldere';  
36 -$labels['acld'] = 'Obriši poruke';  
37 -$labels['aclt'] = 'Obriši poruke';  
38 -$labels['acle'] = 'Izbriši';  
39 -$labels['aclx'] = 'Obriši folder';  
40 -$labels['acla'] = 'Administracija';  
41 -$labels['acln'] = 'Obilježi poruke';  
42 -$labels['aclfull'] = 'Puna kontrola';  
43 -$labels['aclother'] = 'Ostalo';  
44 -$labels['aclread'] = 'Pročitano';  
45 -$labels['aclwrite'] = 'Piši';  
46 -$labels['acldelete'] = 'Obriši';  
47 -$labels['shortacll'] = 'Pronađi';  
48 -$labels['shortaclr'] = 'Pročitano';  
49 -$labels['shortacls'] = 'Zadrži';  
50 -$labels['shortaclw'] = 'Piši';  
51 -$labels['shortacli'] = 'Umetni';  
52 -$labels['shortaclp'] = 'Objavi';  
53 -$labels['shortaclc'] = 'Kreiraj';  
54 -$labels['shortaclk'] = 'Kreiraj';  
55 -$labels['shortacld'] = 'Obriši';  
56 -$labels['shortaclt'] = 'Obriši';  
57 -$labels['shortacle'] = 'Izbriši';  
58 -$labels['shortaclx'] = 'Brisanje foldera';  
59 -$labels['shortacla'] = 'Administracija';  
60 -$labels['shortacln'] = 'Obilježli';  
61 -$labels['shortaclother'] = 'Ostalo';  
62 -$labels['shortaclread'] = 'Pročitano';  
63 -$labels['shortaclwrite'] = 'Piši';  
64 -$labels['shortacldelete'] = 'Obriši';  
65 -$labels['longacll'] = 'Ovaj folder je vidljiv u listama i moguće je izvršiti pretplatu na njega';  
66 -$labels['longaclr'] = 'Folder je moguće otvoriti radi čitanja';  
67 -$labels['longacls'] = 'Oznaka čitanja za poruke se može promijeniti';  
68 -$labels['longaclw'] = 'Oznake za poruke i ključne riječi je moguće promijeniti, osim za pregledano i obrisano';  
69 -$labels['longacli'] = 'Moguće je kopirati i zapisivati poruke u folder';  
70 -$labels['longaclp'] = 'Moguće je objavljivati poruke u ovaj folder';  
71 -$labels['longaclc'] = 'Moguće je kreirati (ili preimenovati) foldere diretno ispod ovog foldera';  
72 -$labels['longaclk'] = 'Moguće je kreirati (ili preimenovati) foldere diretno ispod ovog foldera';  
73 -$labels['longacld'] = 'Oznaka za obrisane poruke se može mijenjati';  
74 -$labels['longaclt'] = 'Oznaka za obrisane poruke se može mijenjati';  
75 -$labels['longacle'] = 'Poruke je moguće obrisati';  
76 -$labels['longaclx'] = 'Folder je moguće obrisati ili preimenovati';  
77 -$labels['longacla'] = 'Pristupna prava foldera je moguće promijeniti';  
78 -$labels['longacln'] = 'Dijeljeni podaci (obilježavanja) poruka mogu se mijenjati';  
79 -$labels['longaclfull'] = 'Puna kontrola uključujući i administraciju foldera';  
80 -$labels['longaclread'] = 'Folder je moguće otvoriti radi čitanja';  
81 -$labels['longaclwrite'] = 'Moguće je označavati, zapisivati i kopirati poruke u folder';  
82 -$labels['longacldelete'] = 'Moguće je obrisati poruke';  
83 -$labels['longaclother'] = 'Ostala prava pristupa';  
84 -$labels['ariasummaryacltable'] = 'Lista prava pristupa';  
85 -$labels['arialabelaclactions'] = 'Lista akcija';  
86 -$labels['arialabelaclform'] = 'Obrazac za prava pristupa';  
87 -$messages['deleting'] = 'Brišem prava pristupa...';  
88 -$messages['saving'] = 'Snimam prava pristupa...';  
89 -$messages['updatesuccess'] = 'Prava pristupa su uspješno promijenjena';  
90 -$messages['deletesuccess'] = 'Prava pristupa su uspješno obrisana';  
91 -$messages['createsuccess'] = 'Prava pristupa su uspješno dodana';  
92 -$messages['updateerror'] = 'Nije moguće ažurirati prava pristupa';  
93 -$messages['deleteerror'] = 'Nije moguće obrisati prava pristupa';  
94 -$messages['createerror'] = 'Nije moguće dodati prava pristupa';  
95 -$messages['deleteconfirm'] = 'Jeste li sigurni da želite ukloniti prava pristupa za odabrane korisnike?';  
96 -$messages['norights'] = 'Niste odabrali prava pristupa!';  
97 -$messages['nouser'] = 'Niste odabrali korisničko ime!';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Comparteix';  
18 -$labels['myrights'] = 'Permisos d\'accés';  
19 -$labels['username'] = 'Usuari:';  
20 -$labels['advanced'] = 'Mode Avançat';  
21 -$labels['add'] = 'Afegeix';  
22 -$labels['newuser'] = 'Afegeix una entrada';  
23 -$labels['editperms'] = 'Edita Permisos';  
24 -$labels['actions'] = 'Accions dels permisos d\'accés...';  
25 -$labels['anyone'] = 'Tots els usuaris (qualsevol)';  
26 -$labels['anonymous'] = 'Convidats (anònim)';  
27 -$labels['identifier'] = 'Identificador';  
28 -$labels['acll'] = 'Cerca';  
29 -$labels['aclr'] = 'Llegeix missatges';  
30 -$labels['acls'] = 'Conserva\'l com a llegit';  
31 -$labels['aclw'] = 'Marques d\'escriptura';  
32 -$labels['acli'] = 'Insereix (Copia dins)';  
33 -$labels['aclp'] = 'Envia l\'entrada';  
34 -$labels['aclc'] = 'Crea subcarpetes';  
35 -$labels['aclk'] = 'Crea subcarpetes';  
36 -$labels['acld'] = 'Suprimeix missatges';  
37 -$labels['aclt'] = 'Suprimeix missatges';  
38 -$labels['acle'] = 'Buida';  
39 -$labels['aclx'] = 'Suprimeix carpeta';  
40 -$labels['acla'] = 'Administra';  
41 -$labels['acln'] = 'Anota missatges';  
42 -$labels['aclfull'] = 'Control total';  
43 -$labels['aclother'] = 'Un altre';  
44 -$labels['aclread'] = 'Lectura';  
45 -$labels['aclwrite'] = 'Escriptura';  
46 -$labels['acldelete'] = 'Suprimeix';  
47 -$labels['shortacll'] = 'Cerca';  
48 -$labels['shortaclr'] = 'Lectura';  
49 -$labels['shortacls'] = 'Conserva';  
50 -$labels['shortaclw'] = 'Escriptura';  
51 -$labels['shortacli'] = 'Insereix';  
52 -$labels['shortaclp'] = 'Envia l\'entrada';  
53 -$labels['shortaclc'] = 'Crea';  
54 -$labels['shortaclk'] = 'Crea';  
55 -$labels['shortacld'] = 'Suprimeix';  
56 -$labels['shortaclt'] = 'Suprimeix';  
57 -$labels['shortacle'] = 'Buida';  
58 -$labels['shortaclx'] = 'Suprimeix carpeta';  
59 -$labels['shortacla'] = 'Administra';  
60 -$labels['shortacln'] = 'Anota';  
61 -$labels['shortaclother'] = 'Un altre';  
62 -$labels['shortaclread'] = 'Lectura';  
63 -$labels['shortaclwrite'] = 'Escriptura';  
64 -$labels['shortacldelete'] = 'Suprimeix';  
65 -$labels['longacll'] = 'La carpeta és visible a les llistes i s\'hi pot subscriure';  
66 -$labels['longaclr'] = 'La carpeta pot ser oberta per llegir';  
67 -$labels['longacls'] = 'Els missatges marcats com a Llegit poden ser canviats';  
68 -$labels['longaclw'] = 'Les marques i les paraules clau dels missatges poden ser canviats, excepte els Llegit i Suprimit';  
69 -$labels['longacli'] = 'Els missatges poden ser escrits i copiats a la carpeta';  
70 -$labels['longaclp'] = 'Els missatges poden ser enviats a aquesta carpeta';  
71 -$labels['longaclc'] = 'Es poden crear (or reanomenar) carpetes directament sota aquesta carpeta';  
72 -$labels['longaclk'] = 'Es poden crear (or reanomenar) carpetes directament sota aquesta carpeta';  
73 -$labels['longacld'] = 'Els missatges amb l\'indicador Suprimit poden ser canviats';  
74 -$labels['longaclt'] = 'Els missatges amb l\'indicador Suprimit poden ser canviats';  
75 -$labels['longacle'] = 'Els missatges poden ser purgats';  
76 -$labels['longaclx'] = 'La carpeta pot ser suprimida o reanomenada';  
77 -$labels['longacla'] = 'Els permisos d\'accés a la carpeta poden ser canviats';  
78 -$labels['longacln'] = 'Les metadades compartides dels missatges (anotacions) poden ser canviades';  
79 -$labels['longaclfull'] = 'Control total fins i tot la gestió de carpetes';  
80 -$labels['longaclread'] = 'La carpeta pot ser oberta per llegir';  
81 -$labels['longaclwrite'] = 'Els missatges poden ser marcats, escrits o copiats a la carpeta';  
82 -$labels['longacldelete'] = 'Els missatges poden ser suprimits';  
83 -$labels['longaclother'] = 'Altres drets d\'accés';  
84 -$labels['ariasummaryacltable'] = 'Llista els drets d\'accés';  
85 -$labels['arialabelaclactions'] = 'Llista les accions';  
86 -$labels['arialabelaclform'] = 'Formulari de drets d\'accés';  
87 -$messages['deleting'] = 'S\'estan suprimint els permisos d\'accés...';  
88 -$messages['saving'] = 'S\'estan desant els permisos d\'accés...';  
89 -$messages['updatesuccess'] = 'Els permisos d\'accés han estat canviats correctament';  
90 -$messages['deletesuccess'] = 'Els permisos d\'accés han estat suprimits correctament';  
91 -$messages['createsuccess'] = 'Els permisos d\'accés han estat afegits correctament';  
92 -$messages['updateerror'] = 'No s\'han pogut actualitzar els permisos d\'accés';  
93 -$messages['deleteerror'] = 'No s\'han pogut suprimir els permisos d\'accés';  
94 -$messages['createerror'] = 'No s\'han pogut afegir els permisos d\'accés';  
95 -$messages['deleteconfirm'] = 'Esteu segur de voler suprimir els permisos d\'accés de l\'usuari o usuaris seleccionats?';  
96 -$messages['norights'] = 'No s\'ha especificat cap permís';  
97 -$messages['nouser'] = 'No s\'ha especificat cap nom d\'usuari';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Sdílení';  
18 -$labels['myrights'] = 'Přístupová práva';  
19 -$labels['username'] = 'Uživatel:';  
20 -$labels['advanced'] = 'Pokročilý režim';  
21 -$labels['add'] = 'Přidej';  
22 -$labels['newuser'] = 'Přidat záznam';  
23 -$labels['editperms'] = 'Upravit oprávnění';  
24 -$labels['actions'] = 'Přístupové právo akce ...';  
25 -$labels['anyone'] = 'Všichni uživatelé (kdokoli)';  
26 -$labels['anonymous'] = 'Hosté (anonymní)';  
27 -$labels['identifier'] = 'Identifikátor';  
28 -$labels['acll'] = 'Vyhledat';  
29 -$labels['aclr'] = 'Číst zprávy';  
30 -$labels['acls'] = 'Ponechat stav Přečteno';  
31 -$labels['aclw'] = 'Zapsat označení';  
32 -$labels['acli'] = 'Vložit (Kopírovat do)';  
33 -$labels['aclp'] = 'Odeslat';  
34 -$labels['aclc'] = 'Vytvořit podsložky';  
35 -$labels['aclk'] = 'Vytvořit podsložky';  
36 -$labels['acld'] = 'Smazat zprávy';  
37 -$labels['aclt'] = 'Smazat zprávy';  
38 -$labels['acle'] = 'Vyprázdnit';  
39 -$labels['aclx'] = 'Smazat složku';  
40 -$labels['acla'] = 'Spravovat';  
41 -$labels['acln'] = 'Označit zprávy poznámkou';  
42 -$labels['aclfull'] = 'Plný přístup';  
43 -$labels['aclother'] = 'Ostatní';  
44 -$labels['aclread'] = 'Číst';  
45 -$labels['aclwrite'] = 'Zapsat';  
46 -$labels['acldelete'] = 'Smazat';  
47 -$labels['shortacll'] = 'Vyhledat';  
48 -$labels['shortaclr'] = 'Číst';  
49 -$labels['shortacls'] = 'Zachovat';  
50 -$labels['shortaclw'] = 'Zapsat';  
51 -$labels['shortacli'] = 'Vložit';  
52 -$labels['shortaclp'] = 'Odeslat';  
53 -$labels['shortaclc'] = 'Vytvořit';  
54 -$labels['shortaclk'] = 'Vytvořit';  
55 -$labels['shortacld'] = 'Smazat';  
56 -$labels['shortaclt'] = 'Smazat';  
57 -$labels['shortacle'] = 'Vyprázdnit';  
58 -$labels['shortaclx'] = 'Mazat složky';  
59 -$labels['shortacla'] = 'Spravovat';  
60 -$labels['shortacln'] = 'Označit poznámkou';  
61 -$labels['shortaclother'] = 'Ostatní';  
62 -$labels['shortaclread'] = 'Číst';  
63 -$labels['shortaclwrite'] = 'Zapsat';  
64 -$labels['shortacldelete'] = 'Smazat';  
65 -$labels['longacll'] = 'Složka je viditelná v seznamu a může být přihlášena';  
66 -$labels['longaclr'] = 'Složka může být otevřena pro čtení';  
67 -$labels['longacls'] = 'Označená zpráva byla změněna';  
68 -$labels['longaclw'] = 'Značky a klíčová slova u zpráv je možné měnit, kromě příznaku Přečteno a Smazáno';  
69 -$labels['longacli'] = 'Zpráva může být napsána nebo zkopírována do složky';  
70 -$labels['longaclp'] = 'Zpráva může být odeslána do této složky';  
71 -$labels['longaclc'] = 'Složka může být vytvořena (nebo přejmenována) přimo v této složce';  
72 -$labels['longaclk'] = 'Složka může být vytvořena (nebo přejmenována) přimo v této složce';  
73 -$labels['longacld'] = 'Příznak smazané zprávy může být změněn';  
74 -$labels['longaclt'] = 'Příznak smazané zprávy může být změněn';  
75 -$labels['longacle'] = 'Zpráva může být smazána';  
76 -$labels['longaclx'] = 'Složka může být smazána nebo přejmenována';  
77 -$labels['longacla'] = 'Přístupová práva složky mohou být změněna';  
78 -$labels['longacln'] = 'Zprávamy sdílené metadata (poznámky) mohou být změněny';  
79 -$labels['longaclfull'] = 'Plný přístup včetně správy složky';  
80 -$labels['longaclread'] = 'Složka může být otevřena pro čtení';  
81 -$labels['longaclwrite'] = 'Zpráva může být označena, napsána nebo zkopírována do složky';  
82 -$labels['longacldelete'] = 'Zprávy mohou být smazány';  
83 -$labels['longaclother'] = 'Jiná přístupová oprávnění';  
84 -$labels['ariasummaryacltable'] = 'Seznam oprávnění';  
85 -$labels['arialabelaclactions'] = 'Seznam akcí';  
86 -$labels['arialabelaclform'] = 'Formulář pro přístupová oprávnění';  
87 -$messages['deleting'] = 'Odstraňuji přístupová práva...';  
88 -$messages['saving'] = 'Ukládám přístupová práva...';  
89 -$messages['updatesuccess'] = 'Přístupová práva byla změněna';  
90 -$messages['deletesuccess'] = 'Přístupová práva byla odstraněna';  
91 -$messages['createsuccess'] = 'Přístupová práva byla přidána';  
92 -$messages['updateerror'] = 'Úprava přístupových práv se nezdařila';  
93 -$messages['deleteerror'] = 'Smazání přístupových práv se nezdařilo';  
94 -$messages['createerror'] = 'Přidání přístupových práv se nezdařilo';  
95 -$messages['deleteconfirm'] = 'Opravdu si přejete odstranit přístupová práva pro vybrané(ho) uživatele?';  
96 -$messages['norights'] = 'Nejsou specifikována žádná práva!';  
97 -$messages['nouser'] = 'Není specifikováno uživatelské jméno!';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Rhannu';  
18 -$labels['myrights'] = 'Hawliau Mynediad';  
19 -$labels['username'] = 'Defnyddiwr:';  
20 -$labels['advanced'] = 'Modd uwch';  
21 -$labels['add'] = 'Ychwanegu';  
22 -$labels['newuser'] = 'Ychwanegu cofnod';  
23 -$labels['editperms'] = 'Golygu hawliau';  
24 -$labels['actions'] = 'Gweithredoedd hawl mynediad...';  
25 -$labels['anyone'] = 'Pob defnyddiwr (unrhywun)';  
26 -$labels['anonymous'] = 'Gwestai (anhysbys)';  
27 -$labels['identifier'] = 'Dynodwr';  
28 -$labels['acll'] = 'Chwilio';  
29 -$labels['aclr'] = 'Darllen negeseuon';  
30 -$labels['acls'] = 'Cadw stad Gwelwyd';  
31 -$labels['aclw'] = 'Fflagiau ysgrifennu';  
32 -$labels['acli'] = 'Mewnosod (Copïo fewn i)';  
33 -$labels['aclp'] = 'Postio';  
34 -$labels['aclc'] = 'Creu is-ffolderi';  
35 -$labels['aclk'] = 'Creu is-ffolderi';  
36 -$labels['acld'] = 'Dileu negeseuon';  
37 -$labels['aclt'] = 'Dileu negeseuon';  
38 -$labels['acle'] = 'Dileu';  
39 -$labels['aclx'] = 'Dileu ffolder';  
40 -$labels['acla'] = 'Gweinyddu';  
41 -$labels['acln'] = 'Anodi negeseuon';  
42 -$labels['aclfull'] = 'Rheolaeth lawn';  
43 -$labels['aclother'] = 'Arall';  
44 -$labels['aclread'] = 'Darllen';  
45 -$labels['aclwrite'] = 'Ysgrifennu';  
46 -$labels['acldelete'] = 'Dileu';  
47 -$labels['shortacll'] = 'Chwilio';  
48 -$labels['shortaclr'] = 'Darllen';  
49 -$labels['shortacls'] = 'Cadw';  
50 -$labels['shortaclw'] = 'Ysgrifennu';  
51 -$labels['shortacli'] = 'Mewnosod';  
52 -$labels['shortaclp'] = 'Postio';  
53 -$labels['shortaclc'] = 'Creu';  
54 -$labels['shortaclk'] = 'Creu';  
55 -$labels['shortacld'] = 'Dileu';  
56 -$labels['shortaclt'] = 'Dileu';  
57 -$labels['shortacle'] = 'Dileu';  
58 -$labels['shortaclx'] = 'Dileu ffolder';  
59 -$labels['shortacla'] = 'Gweinyddu';  
60 -$labels['shortacln'] = 'Anodi';  
61 -$labels['shortaclother'] = 'Arall';  
62 -$labels['shortaclread'] = 'Darllen';  
63 -$labels['shortaclwrite'] = 'Ysgrifennu';  
64 -$labels['shortacldelete'] = 'Dileu';  
65 -$labels['longacll'] = 'Mae\'r ffolder hwn i\'w weld ar y rhestrau a mae\'n bosib tanysgrifio iddo';  
66 -$labels['longaclr'] = 'Gellir agor y ffolder hwn i\'w ddarllen';  
67 -$labels['longacls'] = 'Gellir newid y fflag negeseuon Gwelwyd';  
68 -$labels['longaclw'] = 'Gellir newid y fflagiau negeseuon a allweddeiriau, heblaw Gwelwyd a Dilëuwyd';  
69 -$labels['longacli'] = 'Gellir ysgrifennu neu copïo negeseuon i\'r ffolder';  
70 -$labels['longaclp'] = 'Gellir postio negeseuon i\'r ffolder hwn';  
71 -$labels['longaclc'] = 'Gellir creu (neu ail-enwi) ffolderi yn uniongyrchol o dan y ffolder hwn';  
72 -$labels['longaclk'] = 'Gellir creu (neu ail-enwi) ffolderi yn uniongyrchol o dan y ffolder hwn';  
73 -$labels['longacld'] = 'Gellir newid fflag neges Dileu';  
74 -$labels['longaclt'] = 'Gellir newid fflag neges Dileu';  
75 -$labels['longacle'] = 'Gellir gwaredu negeseuon';  
76 -$labels['longaclx'] = 'Gellir dileu neu ail-enwi\'r ffolder';  
77 -$labels['longacla'] = 'Gellir newid hawliau mynediad y ffolder';  
78 -$labels['longacln'] = 'Gellir newid negeseuon metadata (anodiadau) a rannwyd';  
79 -$labels['longaclfull'] = 'Rheolaeth lawn yn cynnwys rheolaeth ffolderi';  
80 -$labels['longaclread'] = 'Gellir agor y ffolder hwn i\'w ddarllen';  
81 -$labels['longaclwrite'] = 'Gellir nodi, ysgrifennu neu copïo negeseuon i\'r ffolder';  
82 -$labels['longacldelete'] = 'Gellir dileu negeseuon';  
83 -$labels['longaclother'] = 'Hawliau mynediad eraill';  
84 -$labels['ariasummaryacltable'] = 'Rhestr o hawliau mynediad';  
85 -$labels['arialabelaclactions'] = 'Rhestru gweithrediadau';  
86 -$labels['arialabelaclform'] = 'Ffurflen hawliau mynediad';  
87 -$messages['deleting'] = 'Yn dileu hawliau mynediad...';  
88 -$messages['saving'] = 'Yn cadw hawliau mynediad...';  
89 -$messages['updatesuccess'] = 'Wedi newid hawliau mynediad yn llwyddiannus';  
90 -$messages['deletesuccess'] = 'Wedi dileu hawliau mynediad yn llwyddiannus';  
91 -$messages['createsuccess'] = 'Wedi ychwanegu hawliau mynediad yn llwyddiannus';  
92 -$messages['updateerror'] = 'Methwyd diweddaru hawliau mynediad';  
93 -$messages['deleteerror'] = 'Methwyd dileu hawliau mynediad';  
94 -$messages['createerror'] = 'Methwyd ychwanegu hawliau mynediad';  
95 -$messages['deleteconfirm'] = 'Ydych chi\'n siwr eich bod am ddileu hawliau mynediad y defnyddiwr/wyr ddewiswyd?';  
96 -$messages['norights'] = 'Nid oes hawliau wedi eu nodi!';  
97 -$messages['nouser'] = 'Nid oes enw defnyddiwr wedi ei nodi!';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Deling';  
18 -$labels['myrights'] = 'Adgangrettigheder';  
19 -$labels['username'] = 'Bruger:';  
20 -$labels['advanced'] = 'Avanceret tilstand';  
21 -$labels['add'] = 'Tilføje';  
22 -$labels['newuser'] = 'Tilføj indgang';  
23 -$labels['editperms'] = 'Rediger tilladelser';  
24 -$labels['actions'] = 'Tilgangsrettigheder...';  
25 -$labels['anyone'] = 'Alle brugere';  
26 -$labels['anonymous'] = 'Gæst (anonym)';  
27 -$labels['identifier'] = 'Identifikator';  
28 -$labels['acll'] = 'Slå op';  
29 -$labels['aclr'] = 'Læs beskeder';  
30 -$labels['acls'] = 'Behold læst-status';  
31 -$labels['aclw'] = 'Skriv flag';  
32 -$labels['acli'] = 'Indsæt (kopier ind i)';  
33 -$labels['aclp'] = 'Send';  
34 -$labels['aclc'] = 'Opret undermapper';  
35 -$labels['aclk'] = 'Opret undermapper';  
36 -$labels['acld'] = 'Slet beskeder';  
37 -$labels['aclt'] = 'Slet beskeder';  
38 -$labels['acle'] = 'Udslet';  
39 -$labels['aclx'] = 'Slet mappe';  
40 -$labels['acla'] = 'Administrer';  
41 -$labels['acln'] = 'Annoter beskeder';  
42 -$labels['aclfull'] = 'Fuld kontrol';  
43 -$labels['aclother'] = 'Andet';  
44 -$labels['aclread'] = 'Læse';  
45 -$labels['aclwrite'] = 'Skrive';  
46 -$labels['acldelete'] = 'Slet';  
47 -$labels['shortacll'] = 'Slå op';  
48 -$labels['shortaclr'] = 'Læse';  
49 -$labels['shortacls'] = 'Behold';  
50 -$labels['shortaclw'] = 'Skrive';  
51 -$labels['shortacli'] = 'Indsæt';  
52 -$labels['shortaclp'] = 'Send';  
53 -$labels['shortaclc'] = 'Opret';  
54 -$labels['shortaclk'] = 'Opret';  
55 -$labels['shortacld'] = 'Slet';  
56 -$labels['shortaclt'] = 'Slet';  
57 -$labels['shortacle'] = 'Udslet';  
58 -$labels['shortaclx'] = 'Slet mappe';  
59 -$labels['shortacla'] = 'Administrer';  
60 -$labels['shortacln'] = 'Annoter';  
61 -$labels['shortaclother'] = 'Andet';  
62 -$labels['shortaclread'] = 'Læse';  
63 -$labels['shortaclwrite'] = 'Skrive';  
64 -$labels['shortacldelete'] = 'Slet';  
65 -$labels['longacll'] = 'Mappen er synlig på listen og kan abonneres på';  
66 -$labels['longaclr'] = 'Mappen kan åbnes for læsning';  
67 -$labels['longacls'] = 'Beskeders Læst-flag kan ændres';  
68 -$labels['longaclw'] = 'Beskeders flag og nøgleord kan ændres med undtagelse af Læst og Slettet';  
69 -$labels['longacli'] = 'Beskeder kan blive skrevet eller kopieret til mappen';  
70 -$labels['longaclp'] = 'Beskeder kan sendes til denne mappe';  
71 -$labels['longaclc'] = 'Mapper kan blive oprettet (eller omdøbt) direkte under denne mappe';  
72 -$labels['longaclk'] = 'Mapper kan blive oprettet (eller omdøbt) direkte under denne mappe';  
73 -$labels['longacld'] = 'Beskeders Slet-flag kan ændres';  
74 -$labels['longaclt'] = 'Beskeders Slet-flag kan ændres';  
75 -$labels['longacle'] = 'Beskeder kan slettes';  
76 -$labels['longaclx'] = 'Mappen kan blive slettet eller omdøbt';  
77 -$labels['longacla'] = 'Mappen adgangsrettigheder kan ændres';  
78 -$labels['longacln'] = 'Meddelte delte metadata (annoteringer) kan ændres';  
79 -$labels['longaclfull'] = 'Fuld kontrol inklusiv mappeadministration';  
80 -$labels['longaclread'] = 'Mappen kan åbnes for læsning';  
81 -$labels['longaclwrite'] = 'Beskeder kan blive markeret, skrevet eller kopieret til mappen';  
82 -$labels['longacldelete'] = 'Beskeder kan slettes';  
83 -$labels['longaclother'] = 'Andre adgangsrettigheder';  
84 -$labels['ariasummaryacltable'] = 'Liste over adgangsrettigheder';  
85 -$labels['arialabelaclactions'] = 'Liste handlinger';  
86 -$labels['arialabelaclform'] = 'Adgangsret form';  
87 -$messages['deleting'] = 'Slette rettigheder...';  
88 -$messages['saving'] = 'Gemme rettigheder...';  
89 -$messages['updatesuccess'] = 'Tilgangsrettighederne blev ændret';  
90 -$messages['deletesuccess'] = 'Sletterettigheder blev ændret';  
91 -$messages['createsuccess'] = 'Tilgangsrettigheder blev tilføjet';  
92 -$messages['updateerror'] = 'Kunne ikke opdatere adgangsrettigheder';  
93 -$messages['deleteerror'] = 'Kunne ikke slette tilgangsrettigheder';  
94 -$messages['createerror'] = 'Kunne ikke tilføje tilgangsrettigheder';  
95 -$messages['deleteconfirm'] = 'Er du sikker på, at du vil slette tilgangsrettigheder fra de(n) valgte bruger(e)?';  
96 -$messages['norights'] = 'Der er ikke specificeret nogle rettigheder!';  
97 -$messages['nouser'] = 'Der er ikke angiver et brugernavn!';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Freigabe';  
18 -$labels['myrights'] = 'Zugriffsrechte';  
19 -$labels['username'] = 'Benutzer:';  
20 -$labels['advanced'] = 'Expertenmodus';  
21 -$labels['add'] = 'Hinzufügen';  
22 -$labels['newuser'] = 'Eintrag hinzufügen';  
23 -$labels['editperms'] = 'Zugriffsrechte bearbeiten';  
24 -$labels['actions'] = 'Zugriffsrechte Aktionen...';  
25 -$labels['anyone'] = 'Alle Benutzer (anyone)';  
26 -$labels['anonymous'] = 'Gäste (anonymous)';  
27 -$labels['identifier'] = 'Bezeichnung';  
28 -$labels['acll'] = 'Sichtbar';  
29 -$labels['aclr'] = 'Nachrichten lesen';  
30 -$labels['acls'] = 'Lesestatus ändern';  
31 -$labels['aclw'] = 'Flags schreiben';  
32 -$labels['acli'] = 'Nachrichten hinzufügen';  
33 -$labels['aclp'] = 'Senden an';  
34 -$labels['aclc'] = 'Unterordner erstellen';  
35 -$labels['aclk'] = 'Unterordner erstellen';  
36 -$labels['acld'] = 'Nachrichten als gelöscht markieren';  
37 -$labels['aclt'] = 'Nachrichten als gelöscht markieren';  
38 -$labels['acle'] = 'Endgültig löschen';  
39 -$labels['aclx'] = 'Ordner löschen';  
40 -$labels['acla'] = 'Verwalten';  
41 -$labels['acln'] = 'Nachrichten auszeichnen';  
42 -$labels['aclfull'] = 'Vollzugriff';  
43 -$labels['aclother'] = 'Andere';  
44 -$labels['aclread'] = 'Lesen';  
45 -$labels['aclwrite'] = 'Schreiben';  
46 -$labels['acldelete'] = 'Löschen';  
47 -$labels['shortacll'] = 'Sichtbar';  
48 -$labels['shortaclr'] = 'Lesen';  
49 -$labels['shortacls'] = 'Behalte';  
50 -$labels['shortaclw'] = 'Schreiben';  
51 -$labels['shortacli'] = 'Hinzufügen';  
52 -$labels['shortaclp'] = 'Senden an';  
53 -$labels['shortaclc'] = 'Erstellen';  
54 -$labels['shortaclk'] = 'Erstellen';  
55 -$labels['shortacld'] = 'Löschen';  
56 -$labels['shortaclt'] = 'Löschen';  
57 -$labels['shortacle'] = 'Endgültig löschen';  
58 -$labels['shortaclx'] = 'Ordner löschen';  
59 -$labels['shortacla'] = 'Verwalten';  
60 -$labels['shortacln'] = 'Auszeichnen';  
61 -$labels['shortaclother'] = 'Andere';  
62 -$labels['shortaclread'] = 'Lesen';  
63 -$labels['shortaclwrite'] = 'Schreiben';  
64 -$labels['shortacldelete'] = 'Löschen';  
65 -$labels['longacll'] = 'Der Ordner ist sichtbar und kann abonniert werden';  
66 -$labels['longaclr'] = 'Der Ordnerinhalt kann gelesen werden';  
67 -$labels['longacls'] = 'Der Lesestatus von Nachrichten kann geändert werden';  
68 -$labels['longaclw'] = 'Alle Nachrichten-Flags und Schlüsselwörter ausser "Gelesen" und "Gelöscht" können geändert werden';  
69 -$labels['longacli'] = 'Nachrichten können in diesen Ordner kopiert oder verschoben werden';  
70 -$labels['longaclp'] = 'Nachrichten können an diesen Ordner gesendet werden';  
71 -$labels['longaclc'] = 'Unterordner können in diesem Ordner erstellt oder umbenannt werden';  
72 -$labels['longaclk'] = 'Unterordner können in diesem Ordner erstellt oder umbenannt werden';  
73 -$labels['longacld'] = 'Der "gelöscht" Status von Nachrichten kann geändert werden';  
74 -$labels['longaclt'] = 'Der "gelöscht" Status von Nachrichten kann geändert werden';  
75 -$labels['longacle'] = 'Als "gelöscht" markierte Nachrichten können entfernt werden';  
76 -$labels['longaclx'] = 'Der Ordner kann gelöscht oder umbenannt werden';  
77 -$labels['longacla'] = 'Die Zugriffsrechte des Ordners können geändert werden';  
78 -$labels['longacln'] = 'Geteilte Nachrichten-Auszeichnungen (Metadaten) können nicht geändert werden';  
79 -$labels['longaclfull'] = 'Vollzugriff inklusive Ordner-Verwaltung';  
80 -$labels['longaclread'] = 'Der Ordnerinhalt kann gelesen werden';  
81 -$labels['longaclwrite'] = 'Nachrichten können markiert, an den Ordner gesendet und in den Ordner kopiert oder verschoben werden';  
82 -$labels['longacldelete'] = 'Nachrichten können gelöscht werden';  
83 -$labels['longaclother'] = 'Andere Zugriffsrechte ';  
84 -$labels['ariasummaryacltable'] = 'Liste der Zugriffsrechte';  
85 -$labels['arialabelaclactions'] = 'Listen-Aktionen';  
86 -$labels['arialabelaclform'] = 'Zugriffsrechte (Formular)';  
87 -$messages['deleting'] = 'Zugriffsrechte werden entzogen...';  
88 -$messages['saving'] = 'Zugriffsrechte werden gespeichert...';  
89 -$messages['updatesuccess'] = 'Zugriffsrechte erfolgreich geändert';  
90 -$messages['deletesuccess'] = 'Zugriffsrechte erfolgreich entzogen';  
91 -$messages['createsuccess'] = 'Zugriffsrechte erfolgreich hinzugefügt';  
92 -$messages['updateerror'] = 'Zugriffsrechte konnten nicht geändert werden';  
93 -$messages['deleteerror'] = 'Zugriffsrechte konnten nicht entzogen werden';  
94 -$messages['createerror'] = 'Zugriffsrechte konnten nicht gewährt werden';  
95 -$messages['deleteconfirm'] = 'Sind Sie sicher, dass Sie die Zugriffsrechte den ausgewählten Benutzern entziehen möchten?';  
96 -$messages['norights'] = 'Es wurden keine Zugriffsrechte ausgewählt!';  
97 -$messages['nouser'] = 'Es wurde kein Benutzer ausgewählt!';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Freigabe';  
18 -$labels['myrights'] = 'Zugriffsrechte';  
19 -$labels['username'] = 'Benutzer:';  
20 -$labels['advanced'] = 'Erweiterter Modus';  
21 -$labels['add'] = 'Hinzufügen';  
22 -$labels['newuser'] = 'Eintrag hinzufügen';  
23 -$labels['editperms'] = 'Zugriffsrechte bearbeiten';  
24 -$labels['actions'] = 'Zugriffsrechteaktionen …';  
25 -$labels['anyone'] = 'Alle Benutzer (anyone)';  
26 -$labels['anonymous'] = 'Gäste (anonymous)';  
27 -$labels['identifier'] = 'Bezeichnung';  
28 -$labels['acll'] = 'Sichtbar';  
29 -$labels['aclr'] = 'Nachrichten lesen';  
30 -$labels['acls'] = 'Lesestatus ändern';  
31 -$labels['aclw'] = 'Flags schreiben';  
32 -$labels['acli'] = 'Nachrichten hinzufügen';  
33 -$labels['aclp'] = 'Senden an';  
34 -$labels['aclc'] = 'Unterordner erstellen';  
35 -$labels['aclk'] = 'Unterordner erstellen';  
36 -$labels['acld'] = 'Nachrichten als gelöscht markieren';  
37 -$labels['aclt'] = 'Nachrichten als gelöscht markieren';  
38 -$labels['acle'] = 'Endgültig löschen';  
39 -$labels['aclx'] = 'Ordner löschen';  
40 -$labels['acla'] = 'Verwalten';  
41 -$labels['acln'] = 'Nachrichten kommentieren';  
42 -$labels['aclfull'] = 'Vollzugriff';  
43 -$labels['aclother'] = 'Andere';  
44 -$labels['aclread'] = 'Lesen';  
45 -$labels['aclwrite'] = 'Schreiben';  
46 -$labels['acldelete'] = 'Löschen';  
47 -$labels['shortacll'] = 'Sichtbar';  
48 -$labels['shortaclr'] = 'Lesen';  
49 -$labels['shortacls'] = 'Lesestatus';  
50 -$labels['shortaclw'] = 'Schreiben';  
51 -$labels['shortacli'] = 'Hinzufügen';  
52 -$labels['shortaclp'] = 'Senden an';  
53 -$labels['shortaclc'] = 'Erstellen';  
54 -$labels['shortaclk'] = 'Erstellen';  
55 -$labels['shortacld'] = 'Löschen';  
56 -$labels['shortaclt'] = 'Löschen';  
57 -$labels['shortacle'] = 'Endgültig löschen';  
58 -$labels['shortaclx'] = 'Ordner löschen';  
59 -$labels['shortacla'] = 'Verwalten';  
60 -$labels['shortacln'] = 'Kommentieren';  
61 -$labels['shortaclother'] = 'Andere';  
62 -$labels['shortaclread'] = 'Lesen';  
63 -$labels['shortaclwrite'] = 'Schreiben';  
64 -$labels['shortacldelete'] = 'Löschen';  
65 -$labels['longacll'] = 'Der Ordner ist sichtbar und kann abonniert werden';  
66 -$labels['longaclr'] = 'Der Ordnerinhalt kann gelesen werden';  
67 -$labels['longacls'] = 'Der Lesestatus von Nachrichten kann geändert werden';  
68 -$labels['longaclw'] = 'Alle Nachrichten-Flags und Schlüsselwörter außer "Gelesen" und "Gelöscht" können geändert werden';  
69 -$labels['longacli'] = 'Nachrichten können in diesen Ordner kopiert oder verschoben werden';  
70 -$labels['longaclp'] = 'Nachrichten können an diesen Ordner gesendet werden';  
71 -$labels['longaclc'] = 'Unterordner können in diesem Ordner erstellt oder umbenannt werden';  
72 -$labels['longaclk'] = 'Unterordner können in diesem Ordner erstellt oder umbenannt werden';  
73 -$labels['longacld'] = 'Der "gelöscht" Status von Nachrichten kann geändert werden';  
74 -$labels['longaclt'] = 'Der "gelöscht" Status von Nachrichten kann geändert werden';  
75 -$labels['longacle'] = 'Als "gelöscht" markiert Nachrichten können gelöscht werden.';  
76 -$labels['longaclx'] = 'Der Ordner kann gelöscht oder umbenannt werden';  
77 -$labels['longacla'] = 'Die Zugriffsrechte des Ordners können geändert werden';  
78 -$labels['longacln'] = 'Nachrichten Metadaten (Vermerke) können geändert werden';  
79 -$labels['longaclfull'] = 'Vollzugriff inklusive Ordner-Verwaltung';  
80 -$labels['longaclread'] = 'Der Ordnerinhalt kann gelesen werden';  
81 -$labels['longaclwrite'] = 'Nachrichten können markiert, an den Ordner gesendet und in den Ordner kopiert oder verschoben werden';  
82 -$labels['longacldelete'] = 'Nachrichten können gelöscht werden';  
83 -$labels['longaclother'] = 'Andere Zugriffsrechte';  
84 -$labels['ariasummaryacltable'] = 'Liste von Zugriffsrechten';  
85 -$labels['arialabelaclactions'] = 'Aktionen anzeigen';  
86 -$labels['arialabelaclform'] = 'Zugriffsrechteformular';  
87 -$messages['deleting'] = 'Zugriffsrechte werden entzogen...';  
88 -$messages['saving'] = 'Zugriffsrechte werden gewährt...';  
89 -$messages['updatesuccess'] = 'Zugriffsrechte erfolgreich geändert';  
90 -$messages['deletesuccess'] = 'Zugriffsrechte erfolgreich entzogen';  
91 -$messages['createsuccess'] = 'Zugriffsrechte erfolgreich gewährt';  
92 -$messages['updateerror'] = 'Zugriffsrechte konnten nicht geändert werden';  
93 -$messages['deleteerror'] = 'Zugriffsrechte konnten nicht entzogen werden';  
94 -$messages['createerror'] = 'Zugriffsrechte konnten nicht gewährt werden';  
95 -$messages['deleteconfirm'] = 'Sind Sie sicher, daß Sie die Zugriffsrechte den ausgewählten Benutzern entziehen möchten?';  
96 -$messages['norights'] = 'Es wurden keine Zugriffsrechte ausgewählt!';  
97 -$messages['nouser'] = 'Es wurde kein Benutzer ausgewählt!';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Κοινή χρήση';  
18 -$labels['myrights'] = 'Δικαιώματα Πρόσβασης ';  
19 -$labels['username'] = 'Χρήστης:';  
20 -$labels['advanced'] = 'Προηγμένη λειτουργία';  
21 -$labels['add'] = 'Προσθήκη';  
22 -$labels['newuser'] = 'Προσθήκη καταχώρησης ';  
23 -$labels['editperms'] = 'Μεταβολή δικαιωμάτων';  
24 -$labels['actions'] = 'Ενέργειες δικαιωμάτων πρόσβασης...';  
25 -$labels['anyone'] = 'Όλοι οι χρήστες (οποιοσδήποτε)';  
26 -$labels['anonymous'] = 'Επισκέπτες (ανώνυμοι)';  
27 -$labels['identifier'] = 'Αναγνωριστικό';  
28 -$labels['acll'] = 'Αναζήτηση';  
29 -$labels['aclr'] = 'Διαβάστε τα μηνύματα ';  
30 -$labels['acls'] = 'Διατήρηση κατάστασης ανάγνωσης';  
31 -$labels['aclw'] = 'Ρυθμίσεις εγγραφής';  
32 -$labels['acli'] = 'Εισάγωγη (Αντιγραφή σε) ';  
33 -$labels['aclp'] = 'Καταχώρηση';  
34 -$labels['aclc'] = 'Δημιουργία υποφακέλων';  
35 -$labels['aclk'] = 'Δημιουργία υποφακέλων';  
36 -$labels['acld'] = 'Διαγραφή μηνυμάτων';  
37 -$labels['aclt'] = 'Διαγραφή μηνυμάτων';  
38 -$labels['acle'] = 'Απαλοιφή';  
39 -$labels['aclx'] = 'Διαγραφή φακέλου';  
40 -$labels['acla'] = 'Διαχείριση';  
41 -$labels['acln'] = 'Προσθήκη υπομνήματος στα μηνύματα';  
42 -$labels['aclfull'] = 'Πλήρης πρόσβαση';  
43 -$labels['aclother'] = 'Άλλο';  
44 -$labels['aclread'] = 'Ανάγνωση';  
45 -$labels['aclwrite'] = 'Εγγραφή';  
46 -$labels['acldelete'] = 'Διαγραφή';  
47 -$labels['shortacll'] = 'Αναζήτηση';  
48 -$labels['shortaclr'] = 'Ανάγνωση';  
49 -$labels['shortacls'] = 'Τήρηση';  
50 -$labels['shortaclw'] = 'Εγγραφή';  
51 -$labels['shortacli'] = 'Εισαγωγή';  
52 -$labels['shortaclp'] = 'Καταχώρηση';  
53 -$labels['shortaclc'] = 'Δημιουργία';  
54 -$labels['shortaclk'] = 'Δημιουργία';  
55 -$labels['shortacld'] = 'Διαγραφή';  
56 -$labels['shortaclt'] = 'Διαγραφή';  
57 -$labels['shortacle'] = 'Απαλοιφή';  
58 -$labels['shortaclx'] = 'Διαγραφή φακέλου';  
59 -$labels['shortacla'] = 'Διαχείριση';  
60 -$labels['shortacln'] = 'Προσθήκη υπομνήματος';  
61 -$labels['shortaclother'] = 'Άλλο';  
62 -$labels['shortaclread'] = 'Ανάγνωση';  
63 -$labels['shortaclwrite'] = 'Εγγραφή';  
64 -$labels['shortacldelete'] = 'Διαγραφή';  
65 -$labels['longacll'] = 'Ο φάκελος είναι ορατός στους καταλόγους και μπορείτε να εγγραφείτε σε αυτόν';  
66 -$labels['longaclr'] = 'Ο φάκελος μπορεί να προσπελαστεί για ανάγνωση ';  
67 -$labels['longacls'] = 'Η κατάσταση ανάγνωσης μηνυμάτων μπορεί να αλλαχθεί';  
68 -$labels['longaclw'] = 'Μπορούν να μεταβληθούν οι καταστάσεις μηνυμάτων και οι λέξεις κλειδιά, εκτός από τις καταστάσεις Ανάγνωσης και Διαγραφής';  
69 -$labels['longacli'] = 'Τα μηνύματα μπορούν να εγγραφούν ή να αντιγραφούν στον φάκελο ';  
70 -$labels['longaclp'] = 'Τα μηνύματα μπορούν να τοποθετηθούν σε αυτόν το φάκελο ';  
71 -$labels['longaclc'] = 'Μπορούν να δημιουργηθούν (ή να μετονομαστούν) φάκελοι ακριβώς κάτω από αυτόν τον φάκελο ';  
72 -$labels['longaclk'] = 'Μπορούν να δημιουργηθούν (ή να μετονομαστούν) φάκελοι ακριβώς κάτω από αυτόν τον φάκελο ';  
73 -$labels['longacld'] = 'Η κατάσταση διαγραφής μηνυμάτων μπορεί να μεταβληθεί';  
74 -$labels['longaclt'] = 'Η κατάσταση διαγραφής μηνυμάτων μπορεί να μεταβληθεί';  
75 -$labels['longacle'] = 'Τα μηνύματα μπορούν να απαλειφθούν';  
76 -$labels['longaclx'] = 'Ο φάκελος μπορεί να μετονομασθεί ή να διαγραφεί';  
77 -$labels['longacla'] = 'Τα δικαιώματα πρόσβασης στον φάκελο μπορούν να μεταβληθούν';  
78 -$labels['longacln'] = 'Το διαμοιραζόμενο υπόμνημα των μηνυμάτων είναι δυνατό να μεταβληθεί';  
79 -$labels['longaclfull'] = 'Πλήρης έλεγχος συμπεριλαμβανόμενης της διαχείρισης φακέλων';  
80 -$labels['longaclread'] = 'Ο φάκελος είναι δυνατό να προσπελαστεί για ανάγνωση';  
81 -$labels['longaclwrite'] = 'Τα μηνύματα μπορούν να σημαδεύονται, να εγγράφονται ή να αντιγράφονται στον φάκελο';  
82 -$labels['longacldelete'] = 'Τα μηνύματα μπορούν να διαγραφούν';  
83 -$labels['longaclother'] = 'Άλλα δικαιώματα πρόσβασης';  
84 -$labels['ariasummaryacltable'] = 'Λίστα δικαιωμάτων πρόσβασης';  
85 -$labels['arialabelaclactions'] = 'Λίστα ενεργειών';  
86 -$labels['arialabelaclform'] = 'Φόρμα δικαιωμάτων πρόσβασης';  
87 -$messages['deleting'] = 'Διαγραφή των δικαιωμάτων πρόσβασης...';  
88 -$messages['saving'] = 'Αποθήκευση δικαιώματων πρόσβασης...';  
89 -$messages['updatesuccess'] = 'Επιτυχής μεταβολή των δικαιωμάτων πρόσβασης';  
90 -$messages['deletesuccess'] = 'Επιτυχής διαγραφή των δικαιωμάτων πρόσβασης';  
91 -$messages['createsuccess'] = 'Επιτυχής προσθήκη δικαιωμάτων πρόσβασης';  
92 -$messages['updateerror'] = 'Δεν είναι δυνατή η ενημέρωση των δικαιωμάτων πρόσβασης';  
93 -$messages['deleteerror'] = 'Δεν είναι δυνατή η διαγραφή των δικαιωμάτων πρόσβασης ';  
94 -$messages['createerror'] = 'Δεν είναι δυνατή η προσθήκη δικαιωμάτων πρόσβασης ';  
95 -$messages['deleteconfirm'] = 'Είστε βέβαιοι ότι θέλετε να καταργήσετε τα δικαιώματα πρόσβασης του επιλεγμένου(ων) χρήστη(ών);';  
96 -$messages['norights'] = 'Κανένα δικαίωμα δεν έχει καθοριστεί!';  
97 -$messages['nouser'] = 'Το όνομα χρήστη δεν έχει καθοριστεί! ';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Sharing';  
18 -$labels['myrights'] = 'Access Rights';  
19 -$labels['username'] = 'User:';  
20 -$labels['advanced'] = 'Advanced mode';  
21 -$labels['add'] = 'Add';  
22 -$labels['newuser'] = 'Add entry';  
23 -$labels['editperms'] = 'Edit permissions';  
24 -$labels['actions'] = 'Access right actions...';  
25 -$labels['anyone'] = 'All users (anyone)';  
26 -$labels['anonymous'] = 'Guests (anonymous)';  
27 -$labels['identifier'] = 'Identifier';  
28 -$labels['acll'] = 'Lookup';  
29 -$labels['aclr'] = 'Read messages';  
30 -$labels['acls'] = 'Keep Seen state';  
31 -$labels['aclw'] = 'Write flags';  
32 -$labels['acli'] = 'Insert (Copy into)';  
33 -$labels['aclp'] = 'Post';  
34 -$labels['aclc'] = 'Create subfolders';  
35 -$labels['aclk'] = 'Create subfolders';  
36 -$labels['acld'] = 'Delete messages';  
37 -$labels['aclt'] = 'Delete messages';  
38 -$labels['acle'] = 'Expunge';  
39 -$labels['aclx'] = 'Delete folder';  
40 -$labels['acla'] = 'Administer';  
41 -$labels['acln'] = 'Annotate messages';  
42 -$labels['aclfull'] = 'Full control';  
43 -$labels['aclother'] = 'Other';  
44 -$labels['aclread'] = 'Read';  
45 -$labels['aclwrite'] = 'Write';  
46 -$labels['acldelete'] = 'Delete';  
47 -$labels['shortacll'] = 'Lookup';  
48 -$labels['shortaclr'] = 'Read';  
49 -$labels['shortacls'] = 'Keep';  
50 -$labels['shortaclw'] = 'Write';  
51 -$labels['shortacli'] = 'Insert';  
52 -$labels['shortaclp'] = 'Post';  
53 -$labels['shortaclc'] = 'Create';  
54 -$labels['shortaclk'] = 'Create';  
55 -$labels['shortacld'] = 'Delete';  
56 -$labels['shortaclt'] = 'Delete';  
57 -$labels['shortacle'] = 'Expunge';  
58 -$labels['shortaclx'] = 'Folder delete';  
59 -$labels['shortacla'] = 'Administer';  
60 -$labels['shortacln'] = 'Annotate';  
61 -$labels['shortaclother'] = 'Other';  
62 -$labels['shortaclread'] = 'Read';  
63 -$labels['shortaclwrite'] = 'Write';  
64 -$labels['shortacldelete'] = 'Delete';  
65 -$labels['longacll'] = 'The folder is visible on lists and can be subscribed to';  
66 -$labels['longaclr'] = 'The folder can be opened for reading';  
67 -$labels['longacls'] = 'Messages Seen flag can be changed';  
68 -$labels['longaclw'] = 'Messages flags and keywords can be changed, except Seen and Deleted';  
69 -$labels['longacli'] = 'Messages can be written or copied to the folder';  
70 -$labels['longaclp'] = 'Messages can be posted to this folder';  
71 -$labels['longaclc'] = 'Folders can be created (or renamed) directly under this folder';  
72 -$labels['longaclk'] = 'Folders can be created (or renamed) directly under this folder';  
73 -$labels['longacld'] = 'Messages Delete flag can be changed';  
74 -$labels['longaclt'] = 'Messages Delete flag can be changed';  
75 -$labels['longacle'] = 'Messages can be expunged';  
76 -$labels['longaclx'] = 'The folder can be deleted or renamed';  
77 -$labels['longacla'] = 'The folder access rights can be changed';  
78 -$labels['longacln'] = 'Messages shared metadata (annotations) can be changed';  
79 -$labels['longaclfull'] = 'Full control including folder administration';  
80 -$labels['longaclread'] = 'The folder can be opened for reading';  
81 -$labels['longaclwrite'] = 'Messages can be marked, written or copied to the folder';  
82 -$labels['longacldelete'] = 'Messages can be deleted';  
83 -$messages['deleting'] = 'Deleting access rights...';  
84 -$messages['saving'] = 'Saving access rights...';  
85 -$messages['updatesuccess'] = 'Successfully changed access rights';  
86 -$messages['deletesuccess'] = 'Successfully deleted access rights';  
87 -$messages['createsuccess'] = 'Successfully added access rights';  
88 -$messages['updateerror'] = 'Unable to update access rights';  
89 -$messages['deleteerror'] = 'Unable to delete access rights';  
90 -$messages['createerror'] = 'Unable to add access rights';  
91 -$messages['deleteconfirm'] = 'Are you sure, you want to remove access rights of selected user(s)?';  
92 -$messages['norights'] = 'No rights has been specified!';  
93 -$messages['nouser'] = 'No username has been specified!';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Sharing';  
18 -$labels['myrights'] = 'Access Rights';  
19 -$labels['username'] = 'User:';  
20 -$labels['advanced'] = 'Advanced mode';  
21 -$labels['add'] = 'Add';  
22 -$labels['newuser'] = 'Add entry';  
23 -$labels['editperms'] = 'Edit permissions';  
24 -$labels['actions'] = 'Access right actions...';  
25 -$labels['anyone'] = 'All users (anyone)';  
26 -$labels['anonymous'] = 'Guests (anonymous)';  
27 -$labels['identifier'] = 'Identifier';  
28 -$labels['acll'] = 'Look-up';  
29 -$labels['aclr'] = 'Read messages';  
30 -$labels['acls'] = 'Keep Seen state';  
31 -$labels['aclw'] = 'Write flags';  
32 -$labels['acli'] = 'Insert (copy into)';  
33 -$labels['aclp'] = 'Post';  
34 -$labels['aclc'] = 'Create sub-folders';  
35 -$labels['aclk'] = 'Create sub-folders';  
36 -$labels['acld'] = 'Delete messages';  
37 -$labels['aclt'] = 'Delete messages';  
38 -$labels['acle'] = 'Expunge';  
39 -$labels['aclx'] = 'Delete folder';  
40 -$labels['acla'] = 'Administer';  
41 -$labels['acln'] = 'Annotate messages';  
42 -$labels['aclfull'] = 'Full control';  
43 -$labels['aclother'] = 'Other';  
44 -$labels['aclread'] = 'Read';  
45 -$labels['aclwrite'] = 'Write';  
46 -$labels['acldelete'] = 'Delete';  
47 -$labels['shortacll'] = 'Look-up';  
48 -$labels['shortaclr'] = 'Read';  
49 -$labels['shortacls'] = 'Keep';  
50 -$labels['shortaclw'] = 'Write';  
51 -$labels['shortacli'] = 'Insert';  
52 -$labels['shortaclp'] = 'Post';  
53 -$labels['shortaclc'] = 'Create';  
54 -$labels['shortaclk'] = 'Create';  
55 -$labels['shortacld'] = 'Delete';  
56 -$labels['shortaclt'] = 'Delete';  
57 -$labels['shortacle'] = 'Expunge';  
58 -$labels['shortaclx'] = 'Folder delete';  
59 -$labels['shortacla'] = 'Administer';  
60 -$labels['shortacln'] = 'Annotate';  
61 -$labels['shortaclother'] = 'Other';  
62 -$labels['shortaclread'] = 'Read';  
63 -$labels['shortaclwrite'] = 'Write';  
64 -$labels['shortacldelete'] = 'Delete';  
65 -$labels['longacll'] = 'The folder is visible on lists and can be subscribed to.';  
66 -$labels['longaclr'] = 'The folder can be opened for reading';  
67 -$labels['longacls'] = 'Messages Seen flag can be changed';  
68 -$labels['longaclw'] = 'Messages flags and keywords can be changed, except Seen and Deleted.';  
69 -$labels['longacli'] = 'Messages can be written or copied to the folder';  
70 -$labels['longaclp'] = 'Messages can be posted to this folder';  
71 -$labels['longaclc'] = 'Folders can be created (or renamed) directly under this folder';  
72 -$labels['longaclk'] = 'Folders can be created (or renamed) directly under this folder';  
73 -$labels['longacld'] = 'Messages Delete flag can be changed';  
74 -$labels['longaclt'] = 'Messages Delete flag can be changed';  
75 -$labels['longacle'] = 'Messages can be expunged';  
76 -$labels['longaclx'] = 'The folder can be deleted or renamed';  
77 -$labels['longacla'] = 'The folder access rights can be changed';  
78 -$labels['longacln'] = 'Messages shared metadata (annotations) can be changed';  
79 -$labels['longaclfull'] = 'Full control including folder administration';  
80 -$labels['longaclread'] = 'The folder can be opened for reading';  
81 -$labels['longaclwrite'] = 'Messages can be marked, written or copied to the folder';  
82 -$labels['longacldelete'] = 'Messages can be deleted';  
83 -$labels['longaclother'] = 'Other access rights';  
84 -$labels['ariasummaryacltable'] = 'List of access rights';  
85 -$labels['arialabelaclactions'] = 'List actions';  
86 -$labels['arialabelaclform'] = 'Access rights form';  
87 -$messages['deleting'] = 'Deleting access rights...';  
88 -$messages['saving'] = 'Saving access rights...';  
89 -$messages['updatesuccess'] = 'Successfully changed access rights';  
90 -$messages['deletesuccess'] = 'Successfully deleted access rights';  
91 -$messages['createsuccess'] = 'Successfully added access rights';  
92 -$messages['updateerror'] = 'Unable to update access rights';  
93 -$messages['deleteerror'] = 'Unable to delete access rights';  
94 -$messages['createerror'] = 'Unable to add access rights';  
95 -$messages['deleteconfirm'] = 'Are you sure, you want to remove access rights of selected user(s)?';  
96 -$messages['norights'] = 'No rights has been specified!';  
97 -$messages['nouser'] = 'No username has been specified!';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Sharing';  
18 -$labels['myrights'] = 'Access Rights';  
19 -$labels['username'] = 'User:';  
20 -$labels['advanced'] = 'Advanced mode';  
21 -$labels['add'] = 'Add';  
22 -$labels['newuser'] = 'Add entry';  
23 -$labels['editperms'] = 'Edit permissions';  
24 -$labels['actions'] = 'Access right actions...';  
25 -$labels['anyone'] = 'All users (anyone)';  
26 -$labels['anonymous'] = 'Guests (anonymous)';  
27 -$labels['identifier'] = 'Identifier';  
28 -  
29 -$labels['acll'] = 'Lookup';  
30 -$labels['aclr'] = 'Read messages';  
31 -$labels['acls'] = 'Keep Seen state';  
32 -$labels['aclw'] = 'Write flags';  
33 -$labels['acli'] = 'Insert (Copy into)';  
34 -$labels['aclp'] = 'Post';  
35 -$labels['aclc'] = 'Create subfolders';  
36 -$labels['aclk'] = 'Create subfolders';  
37 -$labels['acld'] = 'Delete messages';  
38 -$labels['aclt'] = 'Delete messages';  
39 -$labels['acle'] = 'Expunge';  
40 -$labels['aclx'] = 'Delete folder';  
41 -$labels['acla'] = 'Administer';  
42 -$labels['acln'] = 'Annotate messages';  
43 -  
44 -$labels['aclfull'] = 'Full control';  
45 -$labels['aclother'] = 'Other';  
46 -$labels['aclread'] = 'Read';  
47 -$labels['aclwrite'] = 'Write';  
48 -$labels['acldelete'] = 'Delete';  
49 -  
50 -$labels['shortacll'] = 'Lookup';  
51 -$labels['shortaclr'] = 'Read';  
52 -$labels['shortacls'] = 'Keep';  
53 -$labels['shortaclw'] = 'Write';  
54 -$labels['shortacli'] = 'Insert';  
55 -$labels['shortaclp'] = 'Post';  
56 -$labels['shortaclc'] = 'Create';  
57 -$labels['shortaclk'] = 'Create';  
58 -$labels['shortacld'] = 'Delete';  
59 -$labels['shortaclt'] = 'Delete';  
60 -$labels['shortacle'] = 'Expunge';  
61 -$labels['shortaclx'] = 'Folder delete';  
62 -$labels['shortacla'] = 'Administer';  
63 -$labels['shortacln'] = 'Annotate';  
64 -  
65 -$labels['shortaclother'] = 'Other';  
66 -$labels['shortaclread'] = 'Read';  
67 -$labels['shortaclwrite'] = 'Write';  
68 -$labels['shortacldelete'] = 'Delete';  
69 -  
70 -$labels['longacll'] = 'The folder is visible on lists and can be subscribed to';  
71 -$labels['longaclr'] = 'The folder can be opened for reading';  
72 -$labels['longacls'] = 'Messages Seen flag can be changed';  
73 -$labels['longaclw'] = 'Messages flags and keywords can be changed, except Seen and Deleted';  
74 -$labels['longacli'] = 'Messages can be written or copied to the folder';  
75 -$labels['longaclp'] = 'Messages can be posted to this folder';  
76 -$labels['longaclc'] = 'Folders can be created (or renamed) directly under this folder';  
77 -$labels['longaclk'] = 'Folders can be created (or renamed) directly under this folder';  
78 -$labels['longacld'] = 'Messages Delete flag can be changed';  
79 -$labels['longaclt'] = 'Messages Delete flag can be changed';  
80 -$labels['longacle'] = 'Messages can be expunged';  
81 -$labels['longaclx'] = 'The folder can be deleted or renamed';  
82 -$labels['longacla'] = 'The folder access rights can be changed';  
83 -$labels['longacln'] = 'Messages shared metadata (annotations) can be changed';  
84 -  
85 -$labels['longaclfull'] = 'Full control including folder administration';  
86 -$labels['longaclread'] = 'The folder can be opened for reading';  
87 -$labels['longaclwrite'] = 'Messages can be marked, written or copied to the folder';  
88 -$labels['longacldelete'] = 'Messages can be deleted';  
89 -$labels['longaclother'] = 'Other access rights';  
90 -  
91 -$labels['ariasummaryacltable'] = 'List of access rights';  
92 -$labels['arialabelaclactions'] = 'List actions';  
93 -$labels['arialabelaclform'] = 'Access rights form';  
94 -  
95 -$messages['deleting'] = 'Deleting access rights...';  
96 -$messages['saving'] = 'Saving access rights...';  
97 -$messages['updatesuccess'] = 'Successfully changed access rights';  
98 -$messages['deletesuccess'] = 'Successfully deleted access rights';  
99 -$messages['createsuccess'] = 'Successfully added access rights';  
100 -$messages['updateerror'] = 'Unable to update access rights';  
101 -$messages['deleteerror'] = 'Unable to delete access rights';  
102 -$messages['createerror'] = 'Unable to add access rights';  
103 -$messages['deleteconfirm'] = 'Are you sure, you want to remove access rights of selected user(s)?';  
104 -$messages['norights'] = 'No rights has been specified!';  
105 -$messages['nouser'] = 'No username has been specified!';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Kunhavigado';  
18 -$labels['myrights'] = 'Atingrajtoj';  
19 -$labels['username'] = 'Uzanto:';  
20 -$labels['add'] = 'Aldoni';  
21 -$labels['newuser'] = 'Aldoni eron';  
22 -$labels['actions'] = 'Agoj de atingrajtoj...';  
23 -$labels['anyone'] = 'Ĉiuj uzantoj (iu ajn)';  
24 -$labels['anonymous'] = 'Gasto (sennome)';  
25 -$labels['identifier'] = 'Identigilo';  
26 -$labels['acll'] = 'Elserĉo';  
27 -$labels['aclr'] = 'Legi mesaĝojn';  
28 -$labels['acls'] = 'Manteni legitan staton';  
29 -$labels['acli'] = 'Enmeti (alglui)';  
30 -$labels['aclp'] = 'Afiŝi';  
31 -$labels['aclc'] = 'Krei subdosierujojn';  
32 -$labels['aclk'] = 'Krei subdosierujojn';  
33 -$labels['acld'] = 'Forigi mesaĝojn';  
34 -$labels['aclt'] = 'Forigi mesaĝojn';  
35 -$labels['aclx'] = 'Forigi dosierujon';  
36 -$labels['acla'] = 'Administri';  
37 -$labels['aclfull'] = 'Plena kontrolo';  
38 -$labels['aclother'] = 'Alia';  
39 -$labels['aclread'] = 'Legi';  
40 -$labels['aclwrite'] = 'Skribi';  
41 -$labels['acldelete'] = 'Forigi';  
42 -$labels['shortacll'] = 'Elserĉo';  
43 -$labels['shortaclr'] = 'Legi';  
44 -$labels['shortacls'] = 'Manteni';  
45 -$labels['shortaclw'] = 'Skribi';  
46 -$labels['shortacli'] = 'Enmeti';  
47 -$labels['shortaclp'] = 'Afiŝi';  
48 -$labels['shortaclc'] = 'Krei';  
49 -$labels['shortaclk'] = 'Krei';  
50 -$labels['shortacld'] = 'Forigi';  
51 -$labels['shortaclt'] = 'Forigi';  
52 -$labels['shortaclx'] = 'Forigo de dosierujo';  
53 -$labels['shortacla'] = 'Administri';  
54 -$labels['shortaclother'] = 'Alia';  
55 -$labels['shortaclread'] = 'Legi';  
56 -$labels['shortaclwrite'] = 'Skribi';  
57 -$labels['shortacldelete'] = 'Forigi';  
58 -$labels['longacll'] = 'La dosierujo videblas en listoj kaj oni povas aboni al ĝi';  
59 -$labels['longaclr'] = 'La dosierujo malfermeblas por legado';  
60 -$labels['longacli'] = 'Mesaĝoj skribeblas aŭ kopieblas en la dosierujo';  
61 -$labels['longaclp'] = 'Mesaĝoj afiŝeblas en ĉi tiu dosierujo';  
62 -$labels['longaclread'] = 'La dosierujo malfermeblas por legado';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Compartiendo';  
18 -$labels['myrights'] = 'Permisos de acceso';  
19 -$labels['username'] = 'Usuario:';  
20 -$labels['advanced'] = 'Modo avanzado';  
21 -$labels['add'] = 'Agregar';  
22 -$labels['newuser'] = 'Añadir entrada';  
23 -$labels['editperms'] = 'Editar permisos';  
24 -$labels['actions'] = 'Acciones de derecho de acceso...';  
25 -$labels['anyone'] = 'Todos los usuarios (cualquiera)';  
26 -$labels['anonymous'] = 'Invitados (anónimos)';  
27 -$labels['identifier'] = 'Identificador';  
28 -$labels['acll'] = 'Búsqueda';  
29 -$labels['aclr'] = 'Leer mensajes';  
30 -$labels['acls'] = 'Mantener estado de visto';  
31 -$labels['aclw'] = 'Etiquetas de escritura';  
32 -$labels['acli'] = 'Insertar (copiar a)';  
33 -$labels['aclp'] = 'Publicar';  
34 -$labels['aclc'] = 'Crear subcarpetas';  
35 -$labels['aclk'] = 'Crear subcarpetas';  
36 -$labels['acld'] = 'Eliminar mensajes';  
37 -$labels['aclt'] = 'Eliminar mensajes';  
38 -$labels['acle'] = 'Borrar';  
39 -$labels['aclx'] = 'Eliminar carpeta';  
40 -$labels['acla'] = 'Administrar';  
41 -$labels['acln'] = 'Anotar mensajes';  
42 -$labels['aclfull'] = 'Control total';  
43 -$labels['aclother'] = 'Otro';  
44 -$labels['aclread'] = 'Leer';  
45 -$labels['aclwrite'] = 'Escribir';  
46 -$labels['acldelete'] = 'Eliminar';  
47 -$labels['shortacll'] = 'Búsqueda';  
48 -$labels['shortaclr'] = 'Leer';  
49 -$labels['shortacls'] = 'Mantener';  
50 -$labels['shortaclw'] = 'Escribir';  
51 -$labels['shortacli'] = 'Insertar';  
52 -$labels['shortaclp'] = 'Publicar';  
53 -$labels['shortaclc'] = 'Crear';  
54 -$labels['shortaclk'] = 'Crear';  
55 -$labels['shortacld'] = 'Eliminar';  
56 -$labels['shortaclt'] = 'Eliminar';  
57 -$labels['shortacle'] = 'Borrar';  
58 -$labels['shortaclx'] = 'Eliminar carpeta';  
59 -$labels['shortacla'] = 'Administrar';  
60 -$labels['shortacln'] = 'Anotar';  
61 -$labels['shortaclother'] = 'Otro';  
62 -$labels['shortaclread'] = 'Leer';  
63 -$labels['shortaclwrite'] = 'Escribir';  
64 -$labels['shortacldelete'] = 'Eliminar';  
65 -$labels['longacll'] = 'La carpeta es visible en listas y se la puede suscribir';  
66 -$labels['longaclr'] = 'La carpeta puede ser abierta para lectura';  
67 -$labels['longacls'] = 'Etiqueta de mensajes leídos puede ser cambiada';  
68 -$labels['longaclw'] = 'Las etiquetas de mensajes y palabras clave puede ser cambiada, excepto Leídos y Eliminados';  
69 -$labels['longacli'] = 'Se pueden escribir o copiar mensajes a la carpeta';  
70 -$labels['longaclp'] = 'Los mensajes pueden ser publicados en esta carpeta';  
71 -$labels['longaclc'] = 'Las carpetas pueden ser creadas (o renombradas) directamente desde esta carpeta';  
72 -$labels['longaclk'] = 'Las carpetas pueden ser creadas (o renombradas) directamente desde esta carpeta';  
73 -$labels['longacld'] = 'La etiqueta de mensajes eliminados puede ser cambiada';  
74 -$labels['longaclt'] = 'La etiqueta de mensajes eliminados puede ser cambiada';  
75 -$labels['longacle'] = 'Los mensajes pueden ser borrados';  
76 -$labels['longaclx'] = 'La carpeta puede ser eliminada o renombrada';  
77 -$labels['longacla'] = 'Los derechos de acceso de la carpeta pueden ser cambiados';  
78 -$labels['longacln'] = 'Los metadatos compartidos de los mensajes (anotaciones) puede ser cambiado';  
79 -$labels['longaclfull'] = 'Control total incluyendo administración de carpetas';  
80 -$labels['longaclread'] = 'La carpeta puede ser abierta para lectura';  
81 -$labels['longaclwrite'] = 'Los mensajes pueden ser marcados, escritos o copiados a la carpeta';  
82 -$labels['longacldelete'] = 'Los mensajes pueden ser eliminados';  
83 -$labels['longaclother'] = 'Otros derechos de acceso';  
84 -$labels['ariasummaryacltable'] = 'Lista de derechos de acceso';  
85 -$labels['arialabelaclactions'] = 'Listar acciones';  
86 -$labels['arialabelaclform'] = 'Formulario de derechos de acceso';  
87 -$messages['deleting'] = 'Derechos de acceso de eliminación...';  
88 -$messages['saving'] = 'Guardando derechos de acceso...';  
89 -$messages['updatesuccess'] = 'Se han cambiado los derechos de acceso exitosamente';  
90 -$messages['deletesuccess'] = 'Se han eliminado los derechos de acceso exitosamente';  
91 -$messages['createsuccess'] = 'Se han agregado los derechos de acceso exitosamente';  
92 -$messages['updateerror'] = 'No es posible actualizar los derechos de acceso';  
93 -$messages['deleteerror'] = 'No es posible eliminar los derechos de acceso';  
94 -$messages['createerror'] = 'No es posible agregar los derechos de acceso';  
95 -$messages['deleteconfirm'] = '¿Estás seguro de que deseas eliminar los derechos de acceso a usuario(s) seleccionado(s)?';  
96 -$messages['norights'] = '¡No se hace especificado un derecho!';  
97 -$messages['nouser'] = '¡No se ha especificado un nombre de usuario!';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Compartiendo';  
18 -$labels['myrights'] = 'Permisos de acceso';  
19 -$labels['username'] = 'Usuario:';  
20 -$labels['advanced'] = 'Modo avanzado';  
21 -$labels['add'] = 'Agregar';  
22 -$labels['newuser'] = 'Agregar entrada';  
23 -$labels['editperms'] = 'Editar permisos';  
24 -$labels['actions'] = 'Acciones para los permisos de acceso...';  
25 -$labels['anyone'] = 'Todos los usuarios (cualquiera)';  
26 -$labels['anonymous'] = 'Invitado (anonimo)';  
27 -$labels['identifier'] = 'Identificacion';  
28 -$labels['acll'] = 'Buscar';  
29 -$labels['aclr'] = 'Leer mensajes';  
30 -$labels['acls'] = 'Mantener como visualizado';  
31 -$labels['aclw'] = 'Escribir marcadores';  
32 -$labels['acli'] = 'Insertar (Copiar en)';  
33 -$labels['aclp'] = 'Publicar';  
34 -$labels['aclc'] = 'Crear subcarpetas';  
35 -$labels['aclk'] = 'Crear subcarpetas';  
36 -$labels['acld'] = 'Eliminar mensajes';  
37 -$labels['aclt'] = 'Eliminar mensajes';  
38 -$labels['acle'] = 'Descartar';  
39 -$labels['aclx'] = 'Eliminar carpeta';  
40 -$labels['acla'] = 'Administrar';  
41 -$labels['acln'] = 'Anotar mensajes';  
42 -$labels['aclfull'] = 'Control total';  
43 -$labels['aclother'] = 'Otro';  
44 -$labels['aclread'] = 'Leer';  
45 -$labels['aclwrite'] = 'Escribir';  
46 -$labels['acldelete'] = 'Eliminar';  
47 -$labels['shortacll'] = 'Buscar';  
48 -$labels['shortaclr'] = 'Leer';  
49 -$labels['shortacls'] = 'Mantener';  
50 -$labels['shortaclw'] = 'Escribir';  
51 -$labels['shortacli'] = 'Insertar';  
52 -$labels['shortaclp'] = 'Publicar';  
53 -$labels['shortaclc'] = 'Crear';  
54 -$labels['shortaclk'] = 'Crear';  
55 -$labels['shortacld'] = 'Eliminar';  
56 -$labels['shortaclt'] = 'Eliminar';  
57 -$labels['shortacle'] = 'Descartar';  
58 -$labels['shortaclx'] = 'Borrado de carpeta';  
59 -$labels['shortacla'] = 'Administrar';  
60 -$labels['shortacln'] = 'Anotar';  
61 -$labels['shortaclother'] = 'Otro';  
62 -$labels['shortaclread'] = 'Leer';  
63 -$labels['shortaclwrite'] = 'Escribir';  
64 -$labels['shortacldelete'] = 'Eliminar';  
65 -$labels['longacll'] = 'La carpeta es visible en listas y es posible suscribirse a ella';  
66 -$labels['longaclr'] = 'La carpeta se puede abirir para lectura';  
67 -$labels['longacls'] = 'El marcador de Mensajes Vistos puede ser modificado';  
68 -$labels['longaclw'] = 'Los marcadores de mensajes y palabras clave se pueden modificar, excepto Visto y Eliminado';  
69 -$labels['longacli'] = 'En esta carpeta se pueden escribir o copiar mensajes';  
70 -$labels['longaclp'] = 'En esta carpeta se pueden publicar mensajes';  
71 -$labels['longaclc'] = 'Debajo de esta carpeta se puede crear (o renombrar) otras carpetas directamente';  
72 -$labels['longaclk'] = 'Debajo de esta carpeta se puede crear (o renombrar) otras carpetas directamente';  
73 -$labels['longacld'] = 'El marcador de Mensaje Eliminado puede ser modificado';  
74 -$labels['longaclt'] = 'El marcador de Mensaje Eliminado puede ser modificado';  
75 -$labels['longacle'] = 'Los mensajes pueden ser descartados';  
76 -$labels['longaclx'] = 'La carpeta puede ser eliminada o renombrada';  
77 -$labels['longacla'] = 'Los permisos de acceso de esta carpeta pueden ser modificados';  
78 -$labels['longacln'] = 'La metainformación de mensajes compartidos (anotaciones) puede ser cambiada';  
79 -$labels['longaclfull'] = 'Control total incluyendo la administracion de carpeta';  
80 -$labels['longaclread'] = 'La carpeta se puede abrir para lectura';  
81 -$labels['longaclwrite'] = 'En esta carpeta los mensajes pueden ser marcados, escritos o copiados';  
82 -$labels['longacldelete'] = 'Los mensajes se pueden eliminar';  
83 -$labels['longaclother'] = 'Otros permisos de acceso';  
84 -$labels['ariasummaryacltable'] = 'Listado de permisos de acceso';  
85 -$labels['arialabelaclactions'] = 'Listar acciones';  
86 -$labels['arialabelaclform'] = 'Formulario de permisos de acceso';  
87 -$messages['deleting'] = 'Eliminando permisos de acceso...';  
88 -$messages['saving'] = 'Salvando permisos de acceso...';  
89 -$messages['updatesuccess'] = 'Permisos de acceso modificados satisfactoriamente';  
90 -$messages['deletesuccess'] = 'Permisos de acceso eliminados correctamente';  
91 -$messages['createsuccess'] = 'Permisos de acceso agregados satisfactoriamente';  
92 -$messages['updateerror'] = 'No se pudieron actualizar los permisos de acceso';  
93 -$messages['deleteerror'] = 'No se pueden eliminar los permisos de acceso';  
94 -$messages['createerror'] = 'No se pueden agregar los permisos de acceso';  
95 -$messages['deleteconfirm'] = 'Estas seguro que queres remover los permisos de acceso a el/los usuario(s) seleccionado/s?';  
96 -$messages['norights'] = 'Ningun permiso ha sido especificado!';  
97 -$messages['nouser'] = 'Ningun nombre de usuario ha sido especificado!';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Compartir';  
18 -$labels['myrights'] = 'Permisos de acceso';  
19 -$labels['username'] = 'Usuario:';  
20 -$labels['advanced'] = 'Modo avanzado';  
21 -$labels['add'] = 'Añadir';  
22 -$labels['newuser'] = 'Añadir una entrada';  
23 -$labels['editperms'] = 'Editar permisos';  
24 -$labels['actions'] = 'Acciones sobre los permisos de acceso…';  
25 -$labels['anyone'] = 'Todos los usuarios (cualquiera)';  
26 -$labels['anonymous'] = 'Invitados (anónimo)';  
27 -$labels['identifier'] = 'Identificador';  
28 -$labels['acll'] = 'Búsqueda';  
29 -$labels['aclr'] = 'Leer mensajes';  
30 -$labels['acls'] = 'Mantener como "Leído';  
31 -$labels['aclw'] = 'Escribir etiquetas';  
32 -$labels['acli'] = 'Insertar (Copiar dentro)';  
33 -$labels['aclp'] = 'Enviar';  
34 -$labels['aclc'] = 'Crear subcarpetas';  
35 -$labels['aclk'] = 'Crear subcarpetas';  
36 -$labels['acld'] = 'Borrar mensajes';  
37 -$labels['aclt'] = 'Borrar mensajes';  
38 -$labels['acle'] = 'Expurgar';  
39 -$labels['aclx'] = 'Borrar carpeta';  
40 -$labels['acla'] = 'Administrar';  
41 -$labels['acln'] = 'Anotar mensajes';  
42 -$labels['aclfull'] = 'Control total';  
43 -$labels['aclother'] = 'Otro';  
44 -$labels['aclread'] = 'Leer';  
45 -$labels['aclwrite'] = 'Escribir';  
46 -$labels['acldelete'] = 'Borrar';  
47 -$labels['shortacll'] = 'Búsqueda';  
48 -$labels['shortaclr'] = 'Leer';  
49 -$labels['shortacls'] = 'Conservar';  
50 -$labels['shortaclw'] = 'Escribir';  
51 -$labels['shortacli'] = 'Insertar';  
52 -$labels['shortaclp'] = 'Enviar';  
53 -$labels['shortaclc'] = 'Crear';  
54 -$labels['shortaclk'] = 'Crear';  
55 -$labels['shortacld'] = 'Borrar';  
56 -$labels['shortaclt'] = 'Borrar';  
57 -$labels['shortacle'] = 'Expurgar';  
58 -$labels['shortaclx'] = 'Borrar carpeta';  
59 -$labels['shortacla'] = 'Administrar';  
60 -$labels['shortacln'] = 'Anotar';  
61 -$labels['shortaclother'] = 'Otro';  
62 -$labels['shortaclread'] = 'Leer';  
63 -$labels['shortaclwrite'] = 'Escribir';  
64 -$labels['shortacldelete'] = 'Borrar';  
65 -$labels['longacll'] = 'La carpeta es visible en las listas y es posible suscribirse a ella';  
66 -$labels['longaclr'] = 'Se puede abrir la carpeta para leer';  
67 -$labels['longacls'] = 'Se pueden cambiar los mensajes con la etiqueta "Leído';  
68 -$labels['longaclw'] = 'Las etiquetas de mensaje y las palabras clave se pueden cambiar, excepto "Leído" y "Borrado';  
69 -$labels['longacli'] = 'Se pueden escribir mensajes o copiarlos a la carpeta';  
70 -$labels['longaclp'] = 'Se pueden enviar mensajes a esta carpeta';  
71 -$labels['longaclc'] = 'Se pueden crear (o renombrar) carpetas directamente bajo esta carpeta';  
72 -$labels['longaclk'] = 'Se pueden crear (o renombrar) carpetas directamente bajo esta carpeta';  
73 -$labels['longacld'] = 'No se pueden cambiar los mensajes etiquetados como "Borrado';  
74 -$labels['longaclt'] = 'No se pueden cambiar los mensajes etiquetados como "Borrado';  
75 -$labels['longacle'] = 'No se pueden expurgar los mensajes';  
76 -$labels['longaclx'] = 'La carpeta se puede borrar o renombrar';  
77 -$labels['longacla'] = 'Se pueden cambiar los permisos de acceso';  
78 -$labels['longacln'] = 'Los metadatos compartidos de los mensajes (anotaciones) pueden cambiarse';  
79 -$labels['longaclfull'] = 'Control total, incluyendo la gestión de carpetas';  
80 -$labels['longaclread'] = 'Se puede abrir la carpeta para leer';  
81 -$labels['longaclwrite'] = 'Se pueden etiquetar, escribir o copiar mensajes a la carpeta';  
82 -$labels['longacldelete'] = 'Los mensajes se pueden borrar';  
83 -$labels['longaclother'] = 'Otros derechos de acceso';  
84 -$labels['ariasummaryacltable'] = 'Lista de derechos de acceso';  
85 -$labels['arialabelaclactions'] = 'Lista de acciones';  
86 -$labels['arialabelaclform'] = 'Formulario de derechos de acceso';  
87 -$messages['deleting'] = 'Borrando permisos de acceso…';  
88 -$messages['saving'] = 'Guardando permisos de acceso…';  
89 -$messages['updatesuccess'] = 'Se han cambiado los permisos de acceso';  
90 -$messages['deletesuccess'] = 'Se han borrado los permisos de acceso';  
91 -$messages['createsuccess'] = 'Se han añadido los permisos de acceso';  
92 -$messages['updateerror'] = 'No ha sido posible actualizar los derechos de acceso';  
93 -$messages['deleteerror'] = 'No se han podido borrar los permisos de acceso';  
94 -$messages['createerror'] = 'No se han podido añadir los permisos de acceso';  
95 -$messages['deleteconfirm'] = '¿Seguro que quiere borrar los permisos de acceso del usuairo seleccionado?';  
96 -$messages['norights'] = 'No se han especificado los permisos de acceso';  
97 -$messages['nouser'] = 'No se ha especificado un nombre de usuario';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Jagamine';  
18 -$labels['myrights'] = 'Ligipääsuõigused';  
19 -$labels['username'] = 'Kasutaja:';  
20 -$labels['advanced'] = 'laiendatud režiim';  
21 -$labels['add'] = 'Lisa';  
22 -$labels['newuser'] = 'Lisa sissekanne';  
23 -$labels['editperms'] = 'Muuda õigusi';  
24 -$labels['actions'] = 'Ligipääsuõiguste toimingud...';  
25 -$labels['anyone'] = 'Kõik kasutajad';  
26 -$labels['anonymous'] = 'Külalised (anonüümsed)';  
27 -$labels['identifier'] = 'Tuvastaja';  
28 -$labels['acll'] = 'Ülevaade';  
29 -$labels['aclr'] = 'Lugeda kirju';  
30 -$labels['acls'] = 'Hoia nähtud olekut';  
31 -$labels['aclw'] = 'Salvesta lipud';  
32 -$labels['acli'] = 'Sisesta (kopeeri)';  
33 -$labels['aclp'] = 'Postita';  
34 -$labels['aclc'] = 'Luua alamkaustu';  
35 -$labels['aclk'] = 'Luua alamkaustu';  
36 -$labels['acld'] = 'Kustutada kirju';  
37 -$labels['aclt'] = 'Kustutada kirju';  
38 -$labels['acle'] = 'Eemalda';  
39 -$labels['aclx'] = 'Kustutada kausta';  
40 -$labels['acla'] = 'Administreerida';  
41 -$labels['acln'] = 'Annoteeri kirja';  
42 -$labels['aclfull'] = 'Täis kontroll';  
43 -$labels['aclother'] = 'Muu';  
44 -$labels['aclread'] = 'Loe';  
45 -$labels['aclwrite'] = 'Kirjuta';  
46 -$labels['acldelete'] = 'Kustuta';  
47 -$labels['shortacll'] = 'Ülevaade';  
48 -$labels['shortaclr'] = 'Loe';  
49 -$labels['shortacls'] = 'Säilita';  
50 -$labels['shortaclw'] = 'Kirjuta';  
51 -$labels['shortacli'] = 'Lisa';  
52 -$labels['shortaclp'] = 'Postita';  
53 -$labels['shortaclc'] = 'Loo';  
54 -$labels['shortaclk'] = 'Loo';  
55 -$labels['shortacld'] = 'Kustuta';  
56 -$labels['shortaclt'] = 'Kustuta';  
57 -$labels['shortacle'] = 'Eemalda';  
58 -$labels['shortaclx'] = 'Kausta kustutamine';  
59 -$labels['shortacla'] = 'Administreerida';  
60 -$labels['shortacln'] = 'Annoteeri';  
61 -$labels['shortaclother'] = 'Muu';  
62 -$labels['shortaclread'] = 'Loe';  
63 -$labels['shortaclwrite'] = 'Kirjuta';  
64 -$labels['shortacldelete'] = 'Kustuta';  
65 -$labels['longacll'] = 'See kaust on nimekirjas nähtav ja seda saab tellida';  
66 -$labels['longaclr'] = 'Kausta saab lugemiseks avada';  
67 -$labels['longacls'] = 'Kirja loetuse lippu saab muuta';  
68 -$labels['longaclw'] = 'Kirja lippe ja otsingusõnu saab muuta, väljaarvatud loetud ja kustutatud';  
69 -$labels['longacli'] = 'Kirju saab salvestada ja kopeerida antud kausta';  
70 -$labels['longaclp'] = 'Kirju saab postitada antud kausta';  
71 -$labels['longaclc'] = 'Kaustasi saab luua (või ümber nimetada) otse siia kausta alla.';  
72 -$labels['longaclk'] = 'Kaustu saab luua (või ümber nimetada) otse siia kausta alla';  
73 -$labels['longacld'] = 'Kirja kustutamis lippu saab muuta';  
74 -$labels['longaclt'] = 'Kirja kustutamis lippu saab muuta';  
75 -$labels['longacle'] = 'Kirju saab eemaldada';  
76 -$labels['longaclx'] = 'Seda kausta ei saa kustutada ega ümber nimetada';  
77 -$labels['longacla'] = 'Selle kausta ligipääsuõigusi saab muuta';  
78 -$labels['longacln'] = 'Kirja jagatud metainfot (annotatsioonid) saab muuta';  
79 -$labels['longaclfull'] = 'Täielik kontroll koos kaustade haldamisega';  
80 -$labels['longaclread'] = 'Kausta saab lugemiseks avada';  
81 -$labels['longaclwrite'] = 'Kirju saab märgistada, salvestada või kopeerida kausta';  
82 -$labels['longacldelete'] = 'Kirju saab kustutada';  
83 -$labels['longaclother'] = 'Muud ligipääsu õigused';  
84 -$labels['ariasummaryacltable'] = 'Nimekir ligipääsu õigustest';  
85 -$labels['arialabelaclactions'] = 'Näita tegevusi';  
86 -$labels['arialabelaclform'] = 'Ligipääsu õiguste vorm';  
87 -$messages['deleting'] = 'Ligipääsuõiguste kustutamine...';  
88 -$messages['saving'] = 'Ligipääsuõiguste salvestamine...';  
89 -$messages['updatesuccess'] = 'Ligipääsuõigused on muudetud';  
90 -$messages['deletesuccess'] = 'Ligipääsuõigused on kustutatud';  
91 -$messages['createsuccess'] = 'Ligipääsuõigused on lisatud';  
92 -$messages['updateerror'] = 'Ligipääsuõiguste uuendamine nurjus';  
93 -$messages['deleteerror'] = 'Ligipääsuõiguste kustutamine nurjus';  
94 -$messages['createerror'] = 'Ligipääsuõiguste andmine nurjus';  
95 -$messages['deleteconfirm'] = 'Oled sa kindel, et sa soovid valitudkasutaja(te) õiguseid kustutada?';  
96 -$messages['norights'] = 'Õigusi pole määratud!';  
97 -$messages['nouser'] = 'Kasutajanime pole määratud!';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Partekatzen';  
18 -$labels['myrights'] = 'Sarbide-eskubideak';  
19 -$labels['username'] = 'Erabiltzailea:';  
20 -$labels['advanced'] = 'Modu aurreratua';  
21 -$labels['add'] = 'Gehitu';  
22 -$labels['newuser'] = 'Gehitu sarrera';  
23 -$labels['editperms'] = 'Editatu baimenak';  
24 -$labels['actions'] = 'Sarbide-eskubideen ekintzak...';  
25 -$labels['anyone'] = 'Erabiltzaile guztiak (edozein)';  
26 -$labels['anonymous'] = 'Gonbidatuak (anonimo)';  
27 -$labels['identifier'] = 'Identifikatzailea';  
28 -$labels['acll'] = 'Bilatu';  
29 -$labels['aclr'] = 'Irakurri mezuak';  
30 -$labels['acls'] = 'Mantendu ikusita egoera';  
31 -$labels['aclw'] = 'Idatzi banderak';  
32 -$labels['acli'] = 'Txertatu (kopiatu barnean)';  
33 -$labels['aclp'] = 'Posta';  
34 -$labels['aclc'] = 'Sortu azpikarpetak';  
35 -$labels['aclk'] = 'Sortu azpikarpetak';  
36 -$labels['acld'] = 'Ezabatu mezuak';  
37 -$labels['aclt'] = 'Ezabatu mezuak';  
38 -$labels['acle'] = 'Kendu';  
39 -$labels['aclx'] = 'Ezabatu karpeta';  
40 -$labels['acla'] = 'Administratu';  
41 -$labels['acln'] = 'Idatzi mezuak';  
42 -$labels['aclfull'] = 'Kontrol osoa';  
43 -$labels['aclother'] = 'Beste';  
44 -$labels['aclread'] = 'Irakurri';  
45 -$labels['aclwrite'] = 'Idatzi';  
46 -$labels['acldelete'] = 'Ezabatu';  
47 -$labels['shortacll'] = 'Bilatu';  
48 -$labels['shortaclr'] = 'Irakurri';  
49 -$labels['shortacls'] = 'Mantendu';  
50 -$labels['shortaclw'] = 'Idatzi';  
51 -$labels['shortacli'] = 'Txertatu';  
52 -$labels['shortaclp'] = 'Bidali';  
53 -$labels['shortaclc'] = 'Sortu';  
54 -$labels['shortaclk'] = 'Sortu';  
55 -$labels['shortacld'] = 'Ezabatu';  
56 -$labels['shortaclt'] = 'Ezabatu';  
57 -$labels['shortacle'] = 'Kendu';  
58 -$labels['shortaclx'] = 'Ezabatu karpeta';  
59 -$labels['shortacla'] = 'Administratu';  
60 -$labels['shortacln'] = 'Idatzi';  
61 -$labels['shortaclother'] = 'Beste';  
62 -$labels['shortaclread'] = 'Irakurri';  
63 -$labels['shortaclwrite'] = 'Idatzi';  
64 -$labels['shortacldelete'] = 'Ezabatu';  
65 -$labels['longacll'] = 'Karpeta hau zerrendan ikusgai dago eta harpidetzen ahal zara';  
66 -$labels['longaclr'] = 'Karpeta ireki daiteke irakurtzeko';  
67 -$labels['longacls'] = 'Mezuen ikusita bandera aldatu daiteke';  
68 -$labels['longaclw'] = 'Mezuen banderak eta gako-hitzak alda daitezke, ikusita eta ezabatuta salbu';  
69 -$labels['longacli'] = 'Mezuak karpetara idatzi edo kopiatu daitezke';  
70 -$labels['longaclp'] = 'Mezuak bidali daitezke karpeta honetara';  
71 -$labels['longaclc'] = 'Karpetak sor daitezke (edo berrizendatu) zuzenean karpeta honetan';  
72 -$labels['longaclk'] = 'Karpetak sor daitezke (edo berrizendatu) karpeta honetan';  
73 -$labels['longacld'] = 'Mezuen ezabatu bandera alda daiteke';  
74 -$labels['longaclt'] = 'Mezuen ezabatu bandera alda daiteke';  
75 -$labels['longacle'] = 'Mezuak betiko ezaba daitezke';  
76 -$labels['longaclx'] = 'Karpeta ezaba edo berrizenda daiteke';  
77 -$labels['longacla'] = 'Karpetaren sarbide eskubideak alda daitezke';  
78 -$labels['longacln'] = 'Partekatutatko mezuen metadatuak (oharrak) alda daitezke';  
79 -$labels['longaclfull'] = 'Kontrol osoa, karpetaren administrazioa barne';  
80 -$labels['longaclread'] = 'Karpeta ireki daiteke irakurtzeko';  
81 -$labels['longaclwrite'] = 'Mezuak marka, idatzi edo kopia daitezke karpetara';  
82 -$labels['longacldelete'] = 'Mezuak ezaba daitezke';  
83 -$labels['longaclother'] = 'Beste sarbide-eskubideak';  
84 -$labels['ariasummaryacltable'] = 'Sarbide-eskubideen zerrenda';  
85 -$labels['arialabelaclactions'] = 'Zerrendatu ekintzak';  
86 -$labels['arialabelaclform'] = 'Sarbide-eskubideen formularioa';  
87 -$messages['deleting'] = 'Sarbide-eskubideak ezabatzen...';  
88 -$messages['saving'] = 'Sarbide-eskubideak gordetzen...';  
89 -$messages['updatesuccess'] = 'Sarbide-eskubideak ongi aldatu dira';  
90 -$messages['deletesuccess'] = 'Sarbide-eskubideak ongi ezabatu dira';  
91 -$messages['createsuccess'] = 'Sarbide-eskubideak ongi gehitu dira';  
92 -$messages['updateerror'] = 'Ezin dira eguneratu sarbide-eskubideak';  
93 -$messages['deleteerror'] = 'Ezin dira ezabatu sarbide-eskubideak';  
94 -$messages['createerror'] = 'Ezin dira gehitu sarbide-eskubideak';  
95 -$messages['deleteconfirm'] = 'Seguru zaude hautatutako erabiltzaile(ar)en sarbide-eskubideak ezabatu nahi duzula?';  
96 -$messages['norights'] = 'Eskubideak ez dira zehaztu!';  
97 -$messages['nouser'] = 'Erabiltzaile-izana ez da zehaztu!';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'اشتراک گذاری';  
18 -$labels['username'] = 'کاربر:';  
19 -$labels['add'] = 'افزودن';  
20 -$labels['newuser'] = 'افزودن مدخل';  
21 -$labels['aclw'] = 'نوشتن نشانه ها';  
22 -$labels['aclp'] = 'ارسال';  
23 -$labels['acla'] = 'مدیر';  
24 -$labels['aclfull'] = 'کنترل کامل';  
25 -$labels['aclother'] = 'دیگر';  
26 -$labels['aclread'] = 'خواندن';  
27 -$labels['acldelete'] = 'حذف';  
28 -$labels['shortaclr'] = 'خواندن';  
29 -$labels['shortaclp'] = 'ارسال';  
30 -$labels['shortaclc'] = 'ایجاد کردن';  
31 -$labels['shortaclk'] = 'ایجاد کردن';  
32 -$labels['shortacld'] = 'حذف';  
33 -$labels['shortaclt'] = 'حذف';  
34 -$labels['shortacla'] = 'مدیر';  
35 -$labels['shortaclother'] = 'دیگر';  
36 -$labels['shortaclread'] = 'خواندن';  
37 -$labels['shortacldelete'] = 'حذف';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'اشتراک‌گذاری';  
18 -$labels['myrights'] = 'حقوق دسترسی';  
19 -$labels['username'] = 'کاربر:';  
20 -$labels['advanced'] = 'حالت پیشرفته';  
21 -$labels['add'] = 'افزودن';  
22 -$labels['newuser'] = 'افزودن ورودی';  
23 -$labels['editperms'] = 'ویرایش مجوزها';  
24 -$labels['actions'] = 'فعالیت‌های حق دسترسی...';  
25 -$labels['anyone'] = 'همه‌ی کاربران (هر کسی)';  
26 -$labels['anonymous'] = 'مهمان‌ها (ناشناس)';  
27 -$labels['identifier'] = 'شناساگر';  
28 -$labels['acll'] = 'یافتن';  
29 -$labels['aclr'] = 'پیام‌های خوانده شده';  
30 -$labels['acls'] = 'نگه داشتن حالت بازدید';  
31 -$labels['aclw'] = 'پرچم‌های نوشتن';  
32 -$labels['acli'] = 'وارد کردن (رونوشت در)';  
33 -$labels['aclp'] = 'نوشته';  
34 -$labels['aclc'] = 'ایجاد زیرپوشه‌ها';  
35 -$labels['aclk'] = 'ایجاد زیرپوشه‌ها';  
36 -$labels['acld'] = 'حذف پیام‌ها';  
37 -$labels['aclt'] = 'حذف پیام‌ها';  
38 -$labels['acle'] = 'پاک کردن';  
39 -$labels['aclx'] = 'حذف پوشه';  
40 -$labels['acla'] = 'اداره کردن';  
41 -$labels['acln'] = 'حاشیه نویسی پیام ها';  
42 -$labels['aclfull'] = 'کنترل کامل';  
43 -$labels['aclother'] = 'دیگر';  
44 -$labels['aclread'] = 'خواندن';  
45 -$labels['aclwrite'] = 'نوشتن';  
46 -$labels['acldelete'] = 'حذف کردن';  
47 -$labels['shortacll'] = 'یافتن';  
48 -$labels['shortaclr'] = 'خواندن';  
49 -$labels['shortacls'] = 'نگه داشتن';  
50 -$labels['shortaclw'] = 'نوشتن';  
51 -$labels['shortacli'] = 'جاگذارى';  
52 -$labels['shortaclp'] = 'پست کردن';  
53 -$labels['shortaclc'] = 'ایجاد';  
54 -$labels['shortaclk'] = 'ایجاد';  
55 -$labels['shortacld'] = 'حذف';  
56 -$labels['shortaclt'] = 'حذف';  
57 -$labels['shortacle'] = 'پاک کردن';  
58 -$labels['shortaclx'] = 'حذف پوشه';  
59 -$labels['shortacla'] = 'اداره کردن';  
60 -$labels['shortacln'] = 'حاشیه نویسی';  
61 -$labels['shortaclother'] = 'دیگر';  
62 -$labels['shortaclread'] = 'خواندن';  
63 -$labels['shortaclwrite'] = 'نوشتن';  
64 -$labels['shortacldelete'] = 'حذف کردن';  
65 -$labels['longacll'] = 'پوشه در فهرست‌ها قابل مشاهده است و می‌تواند مشترک آن شد';  
66 -$labels['longaclr'] = 'پوشه می‌تواند برای خواندن باز شود';  
67 -$labels['longacls'] = 'پرچم بازدید پیام‌ها می‌تواند تغییر داده شود';  
68 -$labels['longaclw'] = 'پرچم و کلیدواژه پیام‌ها می‌تواند تغییر داده شود، به غیر از بازدید و حذف';  
69 -$labels['longacli'] = 'پیام‌ها می‌توانند کپی یا نوشته شوند به پوشه';  
70 -$labels['longaclp'] = 'پیام‌ها می‌توانند پست شوند به این پوشه';  
71 -$labels['longaclc'] = 'پوشه‌ها می‌توانند ایجاد شوند (تغییر نام داد شوند) به طور مستقیم در این پوشه';  
72 -$labels['longaclk'] = 'پوشه‌ها می‌توانند ایجاد شوند (تغییر نام داد شوند) به طور مستقیم در این پوشه';  
73 -$labels['longacld'] = 'پرچم حذف پیام‌ها می‌تواند تغییر داده شود';  
74 -$labels['longaclt'] = 'پرچم حذف پیام‌ها می‌تواند تغییر داده شود';  
75 -$labels['longacle'] = 'پیام‌ها می‌توانند حذف شوند';  
76 -$labels['longaclx'] = 'پوشه می‌تواند حذف یا تغییر نام داده شود';  
77 -$labels['longacla'] = 'حقوق دسترسی پوشه می‌تواند تغییر داده شود';  
78 -$labels['longacln'] = 'اطلاعات متا اشتراک گذاشته شده پیام‌ها (حاشیه‌ها) می‌تواند تغییر داده شوند';  
79 -$labels['longaclfull'] = 'کنترل کامل شما مدیریت پوشه';  
80 -$labels['longaclread'] = 'پوشه می‌تواند برای خواندن باز شود';  
81 -$labels['longaclwrite'] = 'پیام‌ها می‌توانند علامتگذاری، نوشته و یا کپی شوند در پوشه';  
82 -$labels['longacldelete'] = 'پیام‌ها می‌توانند حذف شوند';  
83 -$labels['longaclother'] = 'قوانین دسترسی دیگر';  
84 -$labels['ariasummaryacltable'] = 'فهرست قوانین دسترسی';  
85 -$labels['arialabelaclactions'] = 'فهرست کنش‌ها';  
86 -$labels['arialabelaclform'] = 'فرم قوانین دسترسی';  
87 -$messages['deleting'] = 'حذف کردن حقوق دسترسی...';  
88 -$messages['saving'] = 'ذخیره حقوق دسترسی...';  
89 -$messages['updatesuccess'] = 'حقوق دسترسی با کام‌یابی تغییر کردند';  
90 -$messages['deletesuccess'] = 'حقوق دسترسی با کام‌یابی حذف شدند';  
91 -$messages['createsuccess'] = 'حقوق دسترسی با کام‌یابی اضافه شدند';  
92 -$messages['updateerror'] = 'ناتوانی در روزآمد کردن حقوق دسترسی';  
93 -$messages['deleteerror'] = 'ناتوانی در حذف حقوق دسترسی';  
94 -$messages['createerror'] = 'ناتوانی در اضافه کردن حقوق دسترسی';  
95 -$messages['deleteconfirm'] = 'آیا شما مطمئن هستید که می‌خواهید حقوق دسترسی را برای کاربر(ان) انتخاب شده حذف نمایید؟';  
96 -$messages['norights'] = 'هیچ حقی مشخص نشده است!';  
97 -$messages['nouser'] = 'هیج نام‌کاربری‌ای مشخص نشده است!';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Jakaminen';  
18 -$labels['myrights'] = 'Käyttöoikeudet';  
19 -$labels['username'] = 'Käyttäjä:';  
20 -$labels['advanced'] = 'Edistynyt tila';  
21 -$labels['add'] = 'Lisää';  
22 -$labels['newuser'] = 'LIsää kohde';  
23 -$labels['editperms'] = 'Muokkaa oikeuksia';  
24 -$labels['actions'] = 'Käyttöoikeuksien toiminnot...';  
25 -$labels['anyone'] = 'Kaikki käyttäjät (kuka tahansa)';  
26 -$labels['anonymous'] = 'Vieraat (anonyymit)';  
27 -$labels['identifier'] = 'Tunniste';  
28 -$labels['aclr'] = 'Lue viestit';  
29 -$labels['acls'] = 'Säilytä Luettu-tila';  
30 -$labels['aclc'] = 'Luo alikansioita';  
31 -$labels['aclk'] = 'Luo alikansioita';  
32 -$labels['acld'] = 'Poista viestejä';  
33 -$labels['aclt'] = 'Poista viestejä';  
34 -$labels['acle'] = 'Tiivistä';  
35 -$labels['aclx'] = 'Poista kansio';  
36 -$labels['acla'] = 'Hallitse';  
37 -$labels['aclfull'] = 'Täydet käyttöoikeudet';  
38 -$labels['aclother'] = 'Muu';  
39 -$labels['aclread'] = 'Luku';  
40 -$labels['aclwrite'] = 'Kirjoitus';  
41 -$labels['acldelete'] = 'Poisto';  
42 -$labels['shortaclr'] = 'Lue';  
43 -$labels['shortacls'] = 'Säilytä';  
44 -$labels['shortaclw'] = 'Kirjoitus';  
45 -$labels['shortacli'] = 'Lisää';  
46 -$labels['shortaclc'] = 'Luo';  
47 -$labels['shortaclk'] = 'Luo';  
48 -$labels['shortacld'] = 'Poista';  
49 -$labels['shortaclt'] = 'Poista';  
50 -$labels['shortacle'] = 'Tiivistä';  
51 -$labels['shortaclx'] = 'Kansion poisto';  
52 -$labels['shortacla'] = 'Hallitse';  
53 -$labels['shortaclother'] = 'Muu';  
54 -$labels['shortaclread'] = 'Luku';  
55 -$labels['shortaclwrite'] = 'Kirjoitus';  
56 -$labels['shortacldelete'] = 'Poisto';  
57 -$labels['longaclr'] = 'Kansion voi avata lukua varten';  
58 -$labels['longaclp'] = 'Viestejä voidaan lähettää tähän kansioon';  
59 -$labels['longaclc'] = 'Kansioita voidaan luoda (tai uudelleennimetä) suoraan tämän kansion alle';  
60 -$labels['longaclk'] = 'Kansioita voidaan luoda (tai uudelleennimetä) suoraan tämän kansion alle';  
61 -$labels['longacle'] = 'Viestit voidaan tiivistää';  
62 -$labels['longaclx'] = 'Kansio voidaan poistaa tai nimetä uudelleen';  
63 -$labels['longacla'] = 'Kansion käyttöoikeuksia voi muuttaa';  
64 -$labels['longaclread'] = 'Kansion voi avata lukua varten';  
65 -$labels['longacldelete'] = 'Viestit voidaan poistaa';  
66 -$labels['longaclother'] = 'Muut käyttöoikeudet';  
67 -$labels['ariasummaryacltable'] = 'Lista käyttöoikeuksista';  
68 -$labels['arialabelaclactions'] = 'Listatoiminnot';  
69 -$messages['deleting'] = 'Poistetaan käyttöoikeuksia...';  
70 -$messages['saving'] = 'Tallennetaan käyttöoikeuksia...';  
71 -$messages['updatesuccess'] = 'Käyttöoikeuksia muutettiin onnistuneesti';  
72 -$messages['deletesuccess'] = 'Käyttöoikeuksia poistettiin onnistuneesti';  
73 -$messages['createsuccess'] = 'Käyttöoikeuksia lisättiin onnistuneesti';  
74 -$messages['updateerror'] = 'Käyttöoikeuksien päivitys epäonnistui';  
75 -$messages['deleteerror'] = 'Käyttöoikeuksien poistaminen epäonnistui';  
76 -$messages['createerror'] = 'Käyttöoikeuksien lisääminen epäonnistui';  
77 -$messages['deleteconfirm'] = 'Oletko varma että haluat poistaa oikeudet valituilta käyttäjiltä?';  
78 -$messages['norights'] = 'Oikeuksia ei ole määritelty!';  
79 -$messages['nouser'] = 'Käyttäjänimeä ei ole määritelty!';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Deiling';  
18 -$labels['myrights'] = 'Atgongdar-rættindi';  
19 -$labels['username'] = 'Brúkari:';  
20 -$labels['advanced'] = 'Víðkað útgáva';  
21 -$labels['add'] = 'Legg aftrat';  
22 -$labels['newuser'] = 'Legg inn';  
23 -$labels['editperms'] = 'Broyt atgonguloyvi';  
24 -$labels['actions'] = 'Stillingar til atgongu-rættindi';  
25 -$labels['anyone'] = 'Allir brúkarir (øll)';  
26 -$labels['anonymous'] = 'Gestir (dulnevnd)';  
27 -$labels['identifier'] = 'dátuheiti';  
28 -$labels['acll'] = 'Slá upp';  
29 -$labels['aclr'] = 'Les boð';  
30 -$labels['acls'] = 'Varveit lisna støðu';  
31 -$labels['aclw'] = 'Hvít Fløgg';  
32 -$labels['acli'] = 'Set inn (Copy into)';  
33 -$labels['aclp'] = 'Send';  
34 -$labels['aclc'] = 'Ger undurmappur';  
35 -$labels['aclk'] = 'Ger undurmappur';  
36 -$labels['acld'] = 'Strika boð';  
37 -$labels['aclt'] = 'Strika boð';  
38 -$labels['acle'] = 'Strika út';  
39 -$labels['aclx'] = 'Strika mappu';  
40 -$labels['acla'] = 'Umsit';  
41 -$labels['acln'] = 'Viðmerk boð';  
42 -$labels['aclfull'] = 'Full stýring';  
43 -$labels['aclother'] = 'Annað';  
44 -$labels['aclread'] = 'Les';  
45 -$labels['aclwrite'] = 'Skriva';  
46 -$labels['acldelete'] = 'Strika';  
47 -$labels['shortacll'] = 'Leita';  
48 -$labels['shortaclr'] = 'Les';  
49 -$labels['shortacls'] = 'Varveit';  
50 -$labels['shortaclw'] = 'Skriva';  
51 -$labels['shortacli'] = 'Legg inn';  
52 -$labels['shortaclp'] = 'Send';  
53 -$labels['shortaclc'] = 'Stovna';  
54 -$labels['shortaclk'] = 'Stovna';  
55 -$labels['shortacld'] = 'Strika';  
56 -$labels['shortaclt'] = 'Strika';  
57 -$labels['shortacle'] = 'Strika út';  
58 -$labels['shortaclx'] = 'Strika mappu';  
59 -$labels['shortacla'] = 'Umsit';  
60 -$labels['shortacln'] = 'Viðmerk';  
61 -$labels['shortaclother'] = 'Annað';  
62 -$labels['shortaclread'] = 'Les';  
63 -$labels['shortaclwrite'] = 'Skriva';  
64 -$labels['shortacldelete'] = 'Strika';  
65 -$labels['longacll'] = 'Mappan er sjónlig á listum og til ber at tekna seg fyri hana';  
66 -$labels['longaclr'] = 'Mappan kann verða opna til lesná';  
67 -$labels['longacls'] = 'Viðmerki ið vísur á lisin boð kann broytast';  
68 -$labels['longaclw'] = 'Boð viðmerki og lyklaorð kunnu øll broytast, undantikið Sæð og Strika';  
69 -$labels['longacli'] = 'Boð kunnu verða skriva og flutt til eina aðra mappu';  
70 -$labels['longaclp'] = 'Boð kunnu verða send til hesa mappu';  
71 -$labels['longaclc'] = 'Mappur kunnu verða stovnaðar (ella umdoyptar) beinleiðis undir hesu mappu';  
72 -$labels['longaclk'] = 'Mappur kunnu verða stovnaðar (ella umdoyptar) beinleiðis undir hesu mappu';  
73 -$labels['longacld'] = 'Viðmerki ið vísur á strika boð kann broytast';  
74 -$labels['longaclt'] = 'Viðmerki ið vísur á strika boð kann broytast';  
75 -$labels['longacle'] = 'Boð kunnu verða strika út';  
76 -$labels['longaclx'] = 'Mappan kann verða strika ella umdoypt';  
77 -$labels['longacla'] = 'Atgongdu-rættindini til hesa mappu kunnu broytast';  
78 -$labels['longacln'] = '"Metadata" (viðmerking) av boðum kann broytast';  
79 -$labels['longaclfull'] = 'Full stýring, írokna mappu-umsiting';  
80 -$labels['longaclread'] = 'Mappan kann latast upp til lesná';  
81 -$labels['longaclwrite'] = 'Boð kunnu verða viðmerkt, skriva ella avritast til mappuna';  
82 -$labels['longacldelete'] = 'Boð kunnu verða strikað';  
83 -$labels['longaclother'] = 'Aðrar heimildir';  
84 -$labels['ariasummaryacltable'] = 'Listi yvir brúkara heimildum';  
85 -$labels['arialabelaclactions'] = 'Vís gerðir';  
86 -$labels['arialabelaclform'] = 'Heimilda frymil';  
87 -$messages['deleting'] = 'Strikar atgongu-rættindi...';  
88 -$messages['saving'] = 'Goymur atgongu-rættindi...';  
89 -$messages['updatesuccess'] = 'Atgongu-rættindi broytt væleyndað';  
90 -$messages['deletesuccess'] = 'Atgongu-rættindi strika væleyndað';  
91 -$messages['createsuccess'] = 'Atgongu-rættindi stovna væleyndað';  
92 -$messages['updateerror'] = 'Til ber ikki at dagføra atgongu-rættindi';  
93 -$messages['deleteerror'] = 'Til ber ikki at strika atgongu-rættindi';  
94 -$messages['createerror'] = 'Til ber ikki at leggja aftrat atgongu-rættindi';  
95 -$messages['deleteconfirm'] = 'Ert tú vís/ur í at tú ynskir at strika atgongu-rættindini hjá valdum brúkar(um)?';  
96 -$messages['norights'] = 'Eingi rættindi tilskilað!';  
97 -$messages['nouser'] = 'Einki brúkaranavn var tilskilað!';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Partage';  
18 -$labels['myrights'] = 'Droits d’accès';  
19 -$labels['username'] = 'Utilisateur :';  
20 -$labels['advanced'] = 'Mode avancé';  
21 -$labels['add'] = 'Ajouter';  
22 -$labels['newuser'] = 'Ajouter une entrée';  
23 -$labels['editperms'] = 'Modifier les permissions';  
24 -$labels['actions'] = 'Actions des droits d’accès…';  
25 -$labels['anyone'] = 'Tous les utilisateurs (n’importe qui)';  
26 -$labels['anonymous'] = 'Invités (anonyme)';  
27 -$labels['identifier'] = 'Identifiant';  
28 -$labels['acll'] = 'Consultation';  
29 -$labels['aclr'] = 'Lire les courriels';  
30 -$labels['acls'] = 'Garder l’état « vu »';  
31 -$labels['aclw'] = 'Drapeaux d’écriture';  
32 -$labels['acli'] = 'Insérer (copier dans)';  
33 -$labels['aclp'] = 'Publier';  
34 -$labels['aclc'] = 'Créer des sous-dossiers';  
35 -$labels['aclk'] = 'Créer des sous-dossiers';  
36 -$labels['acld'] = 'Supprimer des courriels';  
37 -$labels['aclt'] = 'Supprimer des courriels';  
38 -$labels['acle'] = 'Purger';  
39 -$labels['aclx'] = 'Supprimer un dossier';  
40 -$labels['acla'] = 'Administrer';  
41 -$labels['acln'] = 'Annoter les courriels';  
42 -$labels['aclfull'] = 'Contrôle total';  
43 -$labels['aclother'] = 'Autre';  
44 -$labels['aclread'] = 'Lecture';  
45 -$labels['aclwrite'] = 'Écriture';  
46 -$labels['acldelete'] = 'Supprimer';  
47 -$labels['shortacll'] = 'Consultation';  
48 -$labels['shortaclr'] = 'Lecture';  
49 -$labels['shortacls'] = 'Conserver';  
50 -$labels['shortaclw'] = 'Écriture';  
51 -$labels['shortacli'] = 'Insérer';  
52 -$labels['shortaclp'] = 'Publier';  
53 -$labels['shortaclc'] = 'Créer';  
54 -$labels['shortaclk'] = 'Créer';  
55 -$labels['shortacld'] = 'Supprimer';  
56 -$labels['shortaclt'] = 'Supprimer';  
57 -$labels['shortacle'] = 'Purger';  
58 -$labels['shortaclx'] = 'Suppression de dossier';  
59 -$labels['shortacla'] = 'Administrer';  
60 -$labels['shortacln'] = 'Annoter';  
61 -$labels['shortaclother'] = 'Autre';  
62 -$labels['shortaclread'] = 'Lecture';  
63 -$labels['shortaclwrite'] = 'Écriture';  
64 -$labels['shortacldelete'] = 'Supprimer';  
65 -$labels['longacll'] = 'Ce dossier est visible dans les listes et on peut s’y abonner';  
66 -$labels['longaclr'] = 'Le dossier peut-être ouvert en lecture';  
67 -$labels['longacls'] = 'Le drapeau Vu des courriels peut-être changée';  
68 -$labels['longaclw'] = 'Les drapeaux et mots-clés des courriels peuvent être changés, sauf pour Vu et Supprimé';  
69 -$labels['longacli'] = 'Les courriels peuvent-être écrits ou copiés dans le dossier';  
70 -$labels['longaclp'] = 'Les courriels peuvent-être publiés dans ce dossier';  
71 -$labels['longaclc'] = 'Les dossiers peuvent-être créés (ou renommés) directement depuis ce dossier';  
72 -$labels['longaclk'] = 'Les dossiers peuvent-être créés (ou renommés) directement depuis ce dossier';  
73 -$labels['longacld'] = 'Le drapeau de suppression des courriels peut-être modifiée';  
74 -$labels['longaclt'] = 'Le drapeau de suppression des courriels peut-être modifiée';  
75 -$labels['longacle'] = 'Les courriels peuvent-être purgés';  
76 -$labels['longaclx'] = 'Le dossier peut-être supprimé ou renommé';  
77 -$labels['longacla'] = 'Les droits d’accès du dossier peuvent être modifiés';  
78 -$labels['longacln'] = 'Les métadonnées partagées des courriels (annotations) peuvent être changées';  
79 -$labels['longaclfull'] = 'Contrôle total, incluant l’administration des dossiers';  
80 -$labels['longaclread'] = 'Le dossier peut-être ouvert en lecture';  
81 -$labels['longaclwrite'] = 'Les courriels peuvent-être marqués, écrits ou copiés dans ce dossier';  
82 -$labels['longacldelete'] = 'Les courriels peuvent être supprimés';  
83 -$labels['longaclother'] = 'Autres droits d’accès';  
84 -$labels['ariasummaryacltable'] = 'Liste de droits d’accès';  
85 -$labels['arialabelaclactions'] = 'Actions de listage';  
86 -$labels['arialabelaclform'] = 'Formulaire de droits d’accès';  
87 -$messages['deleting'] = 'Suppression des droits d’accès…';  
88 -$messages['saving'] = 'Enregistrement des droits d’accès…';  
89 -$messages['updatesuccess'] = 'Les droits d’accès ont été changés avec succès';  
90 -$messages['deletesuccess'] = 'Les droits d’accès ont été supprimés avec succès';  
91 -$messages['createsuccess'] = 'Les droits d’accès ont été ajoutés avec succès';  
92 -$messages['updateerror'] = 'Impossible de mettre à jour les droits d’accès';  
93 -$messages['deleteerror'] = 'Impossible de supprimer les droits d’accès';  
94 -$messages['createerror'] = 'Impossible d’ajouter des droits d’accès';  
95 -$messages['deleteconfirm'] = 'Êtes-vous certain de vouloir retirer les droits d’accès des utilisateurs sélectionnés ?';  
96 -$messages['norights'] = 'Aucun droit n’a été indiqué';  
97 -$messages['nouser'] = 'Aucun nom d’utilisateur n’a été indiqué';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Dielen';  
18 -$labels['myrights'] = 'Tagong Rjochten';  
19 -$labels['username'] = 'Brûker:';  
20 -$labels['advanced'] = 'Avansearre modus';  
21 -$labels['add'] = 'Tafoegje';  
22 -$labels['newuser'] = 'Ynfier taheakje';  
23 -$labels['editperms'] = 'Bewurkje tagongsrjochten';  
24 -$labels['actions'] = 'Tagong aksjes...';  
25 -$labels['anyone'] = 'Alle brûkers (eltsenien)';  
26 -$labels['anonymous'] = 'Gasten (anonym)';  
27 -$labels['identifier'] = 'Identifikator';  
28 -$labels['acll'] = 'Opsykje';  
29 -$labels['aclr'] = 'Lêzen berjochten';  
30 -$labels['acls'] = 'Bewarje Sjoen steat';  
31 -$labels['aclw'] = 'Skriuw flaggen';  
32 -$labels['acli'] = 'Ynfoegje (Kopiearje yn)';  
33 -$labels['aclp'] = 'Pleatse';  
34 -$labels['aclc'] = 'Underlizzende mappen oanmeitsje';  
35 -$labels['aclk'] = 'Underlizzende mappen oanmeitsje';  
36 -$labels['acld'] = 'Berjochten wiskje';  
37 -$labels['aclt'] = 'Berjochten wiskje';  
38 -$labels['acle'] = 'Level';  
39 -$labels['aclx'] = 'Map ferwiderje';  
40 -$labels['acla'] = 'Beheare';  
41 -$labels['acln'] = 'Annotate berjochten';  
42 -$labels['aclfull'] = 'Folsleine kontrôle';  
43 -$labels['aclother'] = 'Oars';  
44 -$labels['aclread'] = 'Lêze';  
45 -$labels['aclwrite'] = 'Skriuwe';  
46 -$labels['acldelete'] = 'Ferwiderje';  
47 -$labels['shortacll'] = 'Opsykje';  
48 -$labels['shortaclr'] = 'Lêze';  
49 -$labels['shortacls'] = 'Hâlde';  
50 -$labels['shortaclw'] = 'Skriuwe';  
51 -$labels['shortacli'] = 'Ynfoegje';  
52 -$labels['shortaclp'] = 'Pleatse';  
53 -$labels['shortaclc'] = 'Oanmeitsje';  
54 -$labels['shortaclk'] = 'Oanmeitsje';  
55 -$labels['shortacld'] = 'Ferwiderje';  
56 -$labels['shortaclt'] = 'Ferwiderje';  
57 -$labels['shortacle'] = 'Level';  
58 -$labels['shortaclx'] = 'Map ferwiderje';  
59 -$labels['shortacla'] = 'Beheare';  
60 -$labels['shortaclother'] = 'Oars';  
61 -$labels['shortaclread'] = 'Lêze';  
62 -$labels['shortaclwrite'] = 'Skriuwe';  
63 -$labels['shortacldelete'] = 'Ferwiderje';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Comhroinnt';  
18 -$labels['myrights'] = 'Cearta rochtana';  
19 -$labels['username'] = 'An tÚsáideoir:';  
20 -$labels['advanced'] = 'Mód le hardroghanna';  
21 -$labels['add'] = 'Cuir leis';  
22 -$labels['newuser'] = 'Cuir iontráil leis';  
23 -$labels['editperms'] = 'Cuir na ceadanna in eagar';  
24 -$labels['actions'] = 'Gníomhartha maidir le cearta rochtana...';  
25 -$labels['anyone'] = 'Gach duine';  
26 -$labels['anonymous'] = 'Aíonna (gan ainm)';  
27 -$labels['identifier'] = 'Aitheantóir';  
28 -$labels['acll'] = 'Cuardaigh';  
29 -$labels['aclr'] = 'Léigh teachtaireachtaí';  
30 -$labels['acls'] = 'Coinnigh an staid Feicthe';  
31 -$labels['aclw'] = 'Scríobh bratacha';  
32 -$labels['acli'] = 'Ionsáigh (macasamhlaigh isteach ann)';  
33 -$labels['aclp'] = 'Foilsigh';  
34 -$labels['aclc'] = 'Cruthaigh fófhillteáin';  
35 -$labels['aclk'] = 'Cruthaigh fofhillteáin';  
36 -$labels['acld'] = 'Scrios teachtaireachtaí';  
37 -$labels['aclt'] = 'Scrios teachtaireachtaí';  
38 -$labels['acle'] = 'Scrios';  
39 -$labels['aclx'] = 'Scrios an fillteán';  
40 -$labels['acla'] = 'Riar';  
41 -$labels['acln'] = 'Cuir nótaí le teachtaireachtaí';  
42 -$labels['aclfull'] = 'Smacht iomlán';  
43 -$labels['aclother'] = 'Eile';  
44 -$labels['aclread'] = 'Léite';  
45 -$labels['aclwrite'] = ' Cum';  
46 -$labels['acldelete'] = 'Scrios';  
47 -$labels['shortacll'] = 'Féach';  
48 -$labels['shortaclr'] = 'Léite';  
49 -$labels['shortacls'] = 'Coinnigh';  
50 -$labels['shortaclw'] = 'Cum';  
51 -$labels['shortacli'] = 'Ionsáigh';  
52 -$labels['shortaclp'] = 'Foilsigh';  
53 -$labels['shortaclc'] = 'Cruthaigh';  
54 -$labels['shortaclk'] = 'Cruthaigh';  
55 -$labels['shortacld'] = 'Scrios';  
56 -$labels['shortaclt'] = 'Scrios';  
57 -$labels['shortacle'] = 'Bain den liosta';  
58 -$labels['shortaclx'] = 'Scrios an fillteán';  
59 -$labels['shortacla'] = 'Riaraigh';  
60 -$labels['shortacln'] = 'Cuir nóta leis';  
61 -$labels['shortaclother'] = 'Eile';  
62 -$labels['shortaclread'] = 'Léite';  
63 -$labels['shortaclwrite'] = 'Scríobh';  
64 -$labels['shortacldelete'] = 'Scrios';  
65 -$labels['longacll'] = 'Tá an fillteán infheicthe ar liostaí agus is féidir sintiúis leis a ghlacadh';  
66 -$labels['longaclr'] = 'Is féidir an fillteán a oscailt chun é a léam';  
67 -$labels['longacls'] = 'Is féidir bratach Teachtaireachtaí Feicthe a athrú';  
68 -$labels['longaclw'] = 'Is féidir bratacha agus treoirfhocail na dteachtaireachtaí a athrú, cé is moite de Feicthe agus Scriosta';  
69 -$labels['longacli'] = 'Is féidir teachtaireachtaí a scríobh nó a mhacasamhlú chuig an bhfillteán';  
70 -$labels['longaclp'] = 'Is féidir teachtaireachtaí a fhoilsiú chuig an bhfillteán seo';  
71 -$labels['longaclc'] = 'Is féidir fillteáin a chruthú (nó iad a athainmniú) go díreach faoin bhfillteán sin';  
72 -$labels['longaclk'] = 'Is féidir fillteáin a chruthú (nó iad a athainmniú) go díreach faoin bhfillteán sin';  
73 -$labels['longacld'] = 'Is féidir bratach Scrios Teachétaireachtaí a athrú';  
74 -$labels['longaclt'] = 'Is féidir bratach Scrios Teachétaireachtaí a athrú';  
75 -$labels['longacle'] = 'Is féidir teachtaireachtaí a bhaint de';  
76 -$labels['longaclx'] = 'Is féidir an fillteán seo a scriosadh nó é athainmniú';  
77 -$labels['longacla'] = 'Is féidir cearta rochtana an fhillteáin a athrú';  
78 -$labels['longacln'] = 'Is féidir meiteashonraí comhroinnte na dteachtaireachtaí (nótaí mínithe) a athrú';  
79 -$labels['longaclfull'] = 'Smacht iomlán lena n-áirítear riar an fhillteáin';  
80 -$labels['longaclread'] = 'Is féidir an fillteán a oscailt chun é a léamh';  
81 -$labels['longaclwrite'] = 'Is féidir teachtaireachtaí a rianú, a scríobh nó a mhacasamhlú chuig an bhfillteán';  
82 -$labels['longacldelete'] = 'Is féidir teachtaireachtaí a scriosadh';  
83 -$labels['longaclother'] = 'Cearta rochtana eile';  
84 -$labels['ariasummaryacltable'] = 'Liosta de na cearta rochtana';  
85 -$labels['arialabelaclactions'] = 'Sonraigh na gníomhartha';  
86 -$labels['arialabelaclform'] = 'Cearta rochtana ó';  
87 -$messages['deleting'] = 'Ag scriosadh cearta rochtana...';  
88 -$messages['saving'] = 'Ag taisceadh cearta rochtana...';  
89 -$messages['updatesuccess'] = 'Athraíodh go rathúil na cearta rochtana';  
90 -$messages['deletesuccess'] = 'Scriosadh go rathúil na cearta rochtana';  
91 -$messages['createsuccess'] = 'Cuireadh na cearta rochtana go rathúil leis';  
92 -$messages['updateerror'] = 'Ní féidir na cearta rochtana a nuashonrú';  
93 -$messages['deleteerror'] = 'Ní féidir na cearta rochtana a scriosadh';  
94 -$messages['createerror'] = 'Ní féidir cearta rochtana a chur leis';  
95 -$messages['deleteconfirm'] = 'An bhfuil tú cinnte gur mian leat na cearta rochtana a bhaint den úsáideoir(í) roghnaithe?';  
96 -$messages['norights'] = 'Níor sonraíodh aon chearta!';  
97 -$messages['nouser'] = 'Níor sonraíodh aon ainm úsáideora!';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Compartindo';  
18 -$labels['myrights'] = 'Permisos de acceso';  
19 -$labels['username'] = 'Utente:';  
20 -$labels['advanced'] = 'Modo avanzado';  
21 -$labels['add'] = 'Engadir';  
22 -$labels['newuser'] = 'Engadir entrada';  
23 -$labels['editperms'] = 'Editar permisos';  
24 -$labels['actions'] = 'Accións sobre os Permisos de acceso...';  
25 -$labels['anyone'] = 'Todas as persoas usuarias (calquera)';  
26 -$labels['anonymous'] = 'Persoas convidadas (anónimo)';  
27 -$labels['identifier'] = 'Identificador';  
28 -$labels['acll'] = 'Bloquear';  
29 -$labels['aclr'] = 'Ler mensaxes';  
30 -$labels['acls'] = 'Manter estado actividade';  
31 -$labels['aclw'] = 'Marcas de lectura';  
32 -$labels['acli'] = 'Engadir (Copiar en)';  
33 -$labels['aclp'] = 'Envío';  
34 -$labels['aclc'] = 'Crear subcartafoles';  
35 -$labels['aclk'] = 'Crear subcartafoles';  
36 -$labels['acld'] = 'Borrar mensaxes';  
37 -$labels['aclt'] = 'Borrar mensaxes';  
38 -$labels['acle'] = 'Expurga';  
39 -$labels['aclx'] = 'Eliminar cartafol';  
40 -$labels['acla'] = 'Administrar';  
41 -$labels['acln'] = 'Crear anotacións para as mensaxes';  
42 -$labels['aclfull'] = 'Control total';  
43 -$labels['aclother'] = 'Outros';  
44 -$labels['aclread'] = 'Lectura';  
45 -$labels['aclwrite'] = 'Escritura';  
46 -$labels['acldelete'] = 'Borrado';  
47 -$labels['shortacll'] = 'Buscar';  
48 -$labels['shortaclr'] = 'Ler';  
49 -$labels['shortacls'] = 'Manter';  
50 -$labels['shortaclw'] = 'Escribir';  
51 -$labels['shortacli'] = 'Inserir';  
52 -$labels['shortaclp'] = 'Publicar';  
53 -$labels['shortaclc'] = 'Crear';  
54 -$labels['shortaclk'] = 'Crear';  
55 -$labels['shortacld'] = 'Eliminar';  
56 -$labels['shortaclt'] = 'Eliminar';  
57 -$labels['shortacle'] = 'Expurga';  
58 -$labels['shortaclx'] = 'Eliminar cartafol';  
59 -$labels['shortacla'] = 'Administrar';  
60 -$labels['shortacln'] = 'Crear anotación';  
61 -$labels['shortaclother'] = 'Outros';  
62 -$labels['shortaclread'] = 'Lectura';  
63 -$labels['shortaclwrite'] = 'Escritura';  
64 -$labels['shortacldelete'] = 'Eliminar';  
65 -$labels['longacll'] = 'O cartafol é visíbel e pode ser subscrito';  
66 -$labels['longaclr'] = 'Pódese abrir o cartafol para lectura';  
67 -$labels['longacls'] = 'Pódese mudar o marcador de Mensaxes Enviadas';  
68 -$labels['longaclw'] = 'Pódense mudar marcadores e palabras chave agás Vistas e Borradas';  
69 -$labels['longacli'] = 'Pódense escreber ou copiar as mensaxes a este cartafol';  
70 -$labels['longaclp'] = 'Pódense enviar as mensaxes a este cartafol';  
71 -$labels['longaclc'] = 'Pódense crear (ou renomear) os cartafoles directamente baixo deste cartafol';  
72 -$labels['longaclk'] = 'Pódense crear (ou renomear) os cartafoles directamente baixo deste cartafol';  
73 -$labels['longacld'] = 'Pódense mudar as mensaxes coa marca Eliminar';  
74 -$labels['longaclt'] = 'Pódense mudar as mensaxes coa marca Eliminar';  
75 -$labels['longacle'] = 'As mensaxes poden ser expurgadas';  
76 -$labels['longaclx'] = 'Pódese borrar ou renomear o cartafol';  
77 -$labels['longacla'] = 'Pódense mudar os permisos de acceso ao cartafol';  
78 -$labels['longacln'] = 'Pódense trocar as anotacións das mensaxes';  
79 -$labels['longaclfull'] = 'Control total inclúe administración de cartafoles';  
80 -$labels['longaclread'] = 'Pódese abrir o cartafol para lectura';  
81 -$labels['longaclwrite'] = 'Pódense marcar, escribir ou copiar as mensaxes no cartafol';  
82 -$labels['longacldelete'] = 'Pódense borrar as mensaxes';  
83 -$labels['longaclother'] = 'Outros dereitos de acceso';  
84 -$labels['ariasummaryacltable'] = 'Lista de dereitos de acceso';  
85 -$labels['arialabelaclactions'] = 'Accións de lista';  
86 -$labels['arialabelaclform'] = 'Formulario de dereitos de acceso';  
87 -$messages['deleting'] = 'Borrando permisos de acceso...';  
88 -$messages['saving'] = 'Gardando permisos de acceso...';  
89 -$messages['updatesuccess'] = 'Mudados con éxito os permisos de acceso';  
90 -$messages['deletesuccess'] = 'Borrados con éxito os permisos de acceso';  
91 -$messages['createsuccess'] = 'Engadidos con éxito os permisos de acceso';  
92 -$messages['updateerror'] = 'Non se poden actualizar os permisos de acceso';  
93 -$messages['deleteerror'] = 'Non se poden borrar os permisos de acceso';  
94 -$messages['createerror'] = 'Non se poden engadir permisos de acceso';  
95 -$messages['deleteconfirm'] = 'De certo que queres eliminar os permisos de acceso da(s) persoa(s) usuaria(s) escollida(s)?';  
96 -$messages['norights'] = 'Non se especificaron permisos!';  
97 -$messages['nouser'] = 'Non se especificou o nome da persoa usuaria!';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'שיתוף';  
18 -$labels['myrights'] = 'זכויות גישה';  
19 -$labels['username'] = 'משתמש:';  
20 -$labels['advanced'] = 'מצב מתקדם';  
21 -$labels['add'] = 'הוספה';  
22 -$labels['newuser'] = 'הוסף ערך';  
23 -$labels['editperms'] = 'עריכת הרשאות';  
24 -$labels['actions'] = 'פעולות על זכויות גישה...';  
25 -$labels['anyone'] = 'כל המשתמשים (כל אחד)';  
26 -$labels['anonymous'] = 'אורחים (אנונימי)';  
27 -$labels['identifier'] = 'מזהה';  
28 -$labels['acll'] = 'חיפוש';  
29 -$labels['aclr'] = 'קריאת הודעות';  
30 -$labels['acls'] = 'שמירה על סטטוס נראה';  
31 -$labels['aclw'] = 'דגלי כתיבה';  
32 -$labels['acli'] = 'הוספה בין ערכים (העתקה לתוך)';  
33 -$labels['aclp'] = 'פרסום';  
34 -$labels['aclc'] = 'יצירת תת־תיקיות';  
35 -$labels['aclk'] = 'יצירת תת־תיקיות';  
36 -$labels['acld'] = 'מחיקת הודעות';  
37 -$labels['aclt'] = 'מחיקת הודעות';  
38 -$labels['acle'] = 'ניקוי רשומות שבוטלו';  
39 -$labels['aclx'] = 'מחיקת תיקיה';  
40 -$labels['acla'] = 'מנהל';  
41 -$labels['acln'] = 'הוספה של הערת תיוג להודעות';  
42 -$labels['aclfull'] = 'שליטה מלאה';  
43 -$labels['aclother'] = 'אחר';  
44 -$labels['aclread'] = 'קריאה';  
45 -$labels['aclwrite'] = 'כתיבה';  
46 -$labels['acldelete'] = 'מחיקה';  
47 -$labels['shortacll'] = 'חיפוש';  
48 -$labels['shortaclr'] = 'קריאה';  
49 -$labels['shortacls'] = 'להשאיר';  
50 -$labels['shortaclw'] = 'כתיבה';  
51 -$labels['shortacli'] = 'הוספה בין ערכים';  
52 -$labels['shortaclp'] = 'פרסום';  
53 -$labels['shortaclc'] = 'יצירה';  
54 -$labels['shortaclk'] = 'יצירה';  
55 -$labels['shortacld'] = 'מחיקה';  
56 -$labels['shortaclt'] = 'מחיקה';  
57 -$labels['shortacle'] = 'ניקוי רשומות שבוטלו';  
58 -$labels['shortaclx'] = 'מחיקת תיקיה';  
59 -$labels['shortacla'] = 'מנהל';  
60 -$labels['shortacln'] = 'הוספה של הערת תיוג';  
61 -$labels['shortaclother'] = 'אחר';  
62 -$labels['shortaclread'] = 'קריאה';  
63 -$labels['shortaclwrite'] = 'כתיבה';  
64 -$labels['shortacldelete'] = 'מחיקה';  
65 -$labels['longacll'] = 'התיקיה תראה ברשימות וניתן יהיה להרשם אליה';  
66 -$labels['longaclr'] = 'ניתן לפתוח את התיקיה ולקרוא בה';  
67 -$labels['longacls'] = 'ניתן לשנות דגל נראה בהודעות';  
68 -$labels['longaclw'] = 'ניתן לשנות דגלים ומילות מפתח בהודעות, למעט נראה ונמחק';  
69 -$labels['longacli'] = 'ניתן לכתוב הודעות לתיקיה או למוחקן';  
70 -$labels['longaclp'] = 'ניתן לפרסם הודעות לתוך תיקיה זו';  
71 -$labels['longaclc'] = 'ניתן ליצור (או לשנות שם) תיקיות, ישירות תחת תיקיה זו';  
72 -$labels['longaclk'] = 'ניתן ליצור (או לשנות שם) תיקיות, ישירות תחת תיקיה זו';  
73 -$labels['longacld'] = 'ניתן לשנות דגל נמחק של הודעות';  
74 -$labels['longaclt'] = 'ניתן לשנות דגל נמחק של הודעות';  
75 -$labels['longacle'] = 'ניתן לנקות הודעות שסומנו כמבוטלות';  
76 -$labels['longaclx'] = 'ניתן למחוק תיקיה זו או לשנות שמה';  
77 -$labels['longacla'] = 'ניתן לשנות זכויות גישה של תיקיה זו';  
78 -$labels['longacln'] = 'ניתן לשנות הערות תיוג המשותפות להודעות';  
79 -$labels['longaclfull'] = 'שליטה מלאה כולל ניהול התיקיה';  
80 -$labels['longaclread'] = 'ניתן לפתוח את התיקיה ולקרוא בה';  
81 -$labels['longaclwrite'] = 'ניתן לסמן, לכתוב או להעתיק הודעות לתיקיה זו';  
82 -$labels['longacldelete'] = 'ניתן למחוק הודעות';  
83 -$labels['longaclother'] = 'זכויות גישה אחרות';  
84 -$labels['ariasummaryacltable'] = 'רשימת זכויות גישה';  
85 -$labels['arialabelaclactions'] = 'רשימת פעולות';  
86 -$labels['arialabelaclform'] = 'טופס זכויות גישה';  
87 -$messages['deleting'] = 'זכויות גישה נמחקות...';  
88 -$messages['saving'] = 'זכויות גישה נשמרות...';  
89 -$messages['updatesuccess'] = 'זכויות גישה שונו בהצלחה';  
90 -$messages['deletesuccess'] = 'זכויות גישה נמחקו בהצלחה';  
91 -$messages['createsuccess'] = 'זכויות גישה נוספו בהצלחה';  
92 -$messages['updateerror'] = 'לא ניתן לעדכן הרשאות גישה';  
93 -$messages['deleteerror'] = 'לא ניתן למחוק זכויות גישה';  
94 -$messages['createerror'] = 'לא ניתן להוסיף זכויות גישה';  
95 -$messages['deleteconfirm'] = 'האם ודאי שברצונך להסיר זכויות גישה של המשתמש(ים) שנבחרו?';  
96 -$messages['norights'] = 'לא צוינו זכויות גישה כלשהן !';  
97 -$messages['nouser'] = 'לא צוין שם משתמש כלשהו!';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -  
18 -$labels['acldelete'] = 'मिटा';  
19 -$labels['shortaclc'] = 'बनाऐं';  
20 -$labels['shortaclk'] = 'बनाऐं';  
21 -$labels['shortacld'] = 'मिटा';  
22 -$labels['shortaclt'] = 'मिटा';  
23 -$labels['shortacldelete'] = 'मिटा';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Dijeljenje';  
18 -$labels['myrights'] = 'Prava pristupa';  
19 -$labels['username'] = 'Korisnik:';  
20 -$labels['advanced'] = 'Napredni način';  
21 -$labels['add'] = 'Dodaj';  
22 -$labels['newuser'] = 'Dodaj unos/pravilo';  
23 -$labels['editperms'] = 'Uredi dozvole';  
24 -$labels['actions'] = 'Akcije prava pristupa...';  
25 -$labels['anyone'] = 'Svi korisnici (anyone)';  
26 -$labels['anonymous'] = 'Gosti (anonymous)';  
27 -$labels['identifier'] = 'Identifikator';  
28 -$labels['acll'] = 'Pretraga';  
29 -$labels['aclr'] = 'Pročitaj poruke';  
30 -$labels['acls'] = 'Zadrži u stanju "Viđeno"';  
31 -$labels['aclw'] = 'Zapiši oznake';  
32 -$labels['acli'] = 'Umetni (kopiraj u)';  
33 -$labels['aclp'] = 'Pošalji';  
34 -$labels['aclc'] = 'Napravi podmapu';  
35 -$labels['aclk'] = 'Napravi podmapu';  
36 -$labels['acld'] = 'Obriši poruke';  
37 -$labels['aclt'] = 'Obriši poruke';  
38 -$labels['acle'] = 'Trajno obriši';  
39 -$labels['aclx'] = 'Obriši mapu';  
40 -$labels['acla'] = 'Administriraj';  
41 -$labels['acln'] = 'Zabilježi poruke';  
42 -$labels['aclfull'] = 'Potpuna kontrola';  
43 -$labels['aclother'] = 'Drugo';  
44 -$labels['aclread'] = 'Čitanje';  
45 -$labels['aclwrite'] = 'Pisanje';  
46 -$labels['acldelete'] = 'Obriši';  
47 -$labels['shortacll'] = 'Pretraži';  
48 -$labels['shortaclr'] = 'Čitaj';  
49 -$labels['shortacls'] = 'Zadrži';  
50 -$labels['shortaclw'] = 'Piši';  
51 -$labels['shortacli'] = 'Umetni';  
52 -$labels['shortaclp'] = 'Pošalji';  
53 -$labels['shortaclc'] = 'Stvori';  
54 -$labels['shortaclk'] = 'Stvori';  
55 -$labels['shortacld'] = 'Obriši';  
56 -$labels['shortaclt'] = 'Obriši';  
57 -$labels['shortacle'] = 'Trajno obriši';  
58 -$labels['shortaclx'] = 'Obriši mapu';  
59 -$labels['shortacla'] = 'Administriraj';  
60 -$labels['shortacln'] = 'Zabilježi';  
61 -$labels['shortaclother'] = 'Drugo';  
62 -$labels['shortaclread'] = 'Čitanje';  
63 -$labels['shortaclwrite'] = 'Pisanje';  
64 -$labels['shortacldelete'] = 'Brisanje';  
65 -$labels['longacll'] = 'Mapa je vidljiva u listi i može se na nju pretplatiti';  
66 -$labels['longaclr'] = 'Mapa može biti otvorena za čitanje';  
67 -$labels['longacls'] = 'Oznaku "Viđeno" je moguće mijenjati u porukama';  
68 -$labels['longaclw'] = 'Oznake i ključne riječi, osim oznaka "Viđeno" i "Obrisano", se mogu mijenjati';  
69 -$labels['longacli'] = 'Poruke mogu biti pohranjene ili kopirane u mapu';  
70 -$labels['longaclp'] = 'Poruke mogu biti postavljene u mapu';  
71 -$labels['longaclc'] = 'Mape pod ovom mapom se mogu stvarati (i preimenovati)';  
72 -$labels['longaclk'] = 'Mape pod ovom mapom se mogu stvarati (i preimenovati)';  
73 -$labels['longacld'] = 'Oznaku "Obrisano" je moguće mijenjati u porukama';  
74 -$labels['longaclt'] = 'Oznaku "Obrisano" je moguće mijenjati u porukama';  
75 -$labels['longacle'] = 'Poruke mogu biti izbrisane';  
76 -$labels['longaclx'] = 'Mapa može biti obrisana ili preimenovana';  
77 -$labels['longacla'] = 'Prava pristupa nad mapom se mogu mijenjati';  
78 -$labels['longaclfull'] = 'Potpuna kontrola uključujući administraciju mapa';  
79 -$labels['longaclread'] = 'Mapa može biti otvorena za čitanje';  
80 -$labels['longaclwrite'] = 'Poruke mogu biti označene, pohranjene ili kopirane u mapu';  
81 -$labels['longacldelete'] = 'Poruke mogu biti obrisane';  
82 -$labels['longaclother'] = 'Ostala prava pristupa';  
83 -$labels['ariasummaryacltable'] = 'Popis prava pristupa';  
84 -$labels['arialabelaclactions'] = 'Popis radnji';  
85 -$labels['arialabelaclform'] = 'Obrazac prava pristupa';  
86 -$messages['deleting'] = 'Brišem prava pristupa...';  
87 -$messages['saving'] = 'Pohranjujem prava pristupa';  
88 -$messages['updatesuccess'] = 'Prava pristupa uspješno promjenjena';  
89 -$messages['deletesuccess'] = 'Prava pristupa uspješno obrisana';  
90 -$messages['createsuccess'] = 'Prava pristupa uspješno dodana';  
91 -$messages['updateerror'] = 'Ne mogu pohraniti vCard';  
92 -$messages['deleteerror'] = 'Ne mogu obrisati prava pristupa';  
93 -$messages['createerror'] = 'Ne mogu dodati prava pristupa';  
94 -$messages['deleteconfirm'] = 'Jeste li sigurni da želite obrisati prava pristupa za odabranog korisnika(e)?';  
95 -$messages['norights'] = 'Nije navedeno pravo pristupa!';  
96 -$messages['nouser'] = 'Nije navedeno korisničko ime!';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Megosztás';  
18 -$labels['myrights'] = 'Hozzáférési jogok';  
19 -$labels['username'] = 'Felhasználó:';  
20 -$labels['advanced'] = 'Haladó mód';  
21 -$labels['add'] = 'Hozzáadás';  
22 -$labels['newuser'] = 'Elem hozzáadása';  
23 -$labels['editperms'] = 'Jogosultságok szerkesztése';  
24 -$labels['actions'] = 'Hozzáférési jogok müveletei..';  
25 -$labels['anyone'] = 'Minden felhasználó (bárki)';  
26 -$labels['anonymous'] = 'Vendégek (névtelen)';  
27 -$labels['identifier'] = 'Azonosító';  
28 -$labels['acll'] = 'Keresés';  
29 -$labels['aclr'] = 'Üzenetek olvasása';  
30 -$labels['acls'] = 'Olvasottsági állapot megtartása';  
31 -$labels['aclw'] = 'Üzenet jelölése';  
32 -$labels['acli'] = 'Beillesztés (Bemásolás)';  
33 -$labels['aclp'] = 'Bejegyzés';  
34 -$labels['aclc'] = 'Almappa létrehozás';  
35 -$labels['aclk'] = 'Almappa létrehozás';  
36 -$labels['acld'] = 'Üzenetek törlése';  
37 -$labels['aclt'] = 'Üzenetek törlése';  
38 -$labels['acle'] = 'Törölt üzenetek eltávolítása';  
39 -$labels['aclx'] = 'Mappa törlés';  
40 -$labels['acla'] = 'Adminisztrátor';  
41 -$labels['acln'] = 'Üzenetekhez címkézés';  
42 -$labels['aclfull'] = 'Teljes hozzáférés';  
43 -$labels['aclother'] = 'Egyéb';  
44 -$labels['aclread'] = 'Olvasás';  
45 -$labels['aclwrite'] = 'Írás';  
46 -$labels['acldelete'] = 'Törlés';  
47 -$labels['shortacll'] = 'Keresés';  
48 -$labels['shortaclr'] = 'Olvasás';  
49 -$labels['shortacls'] = 'Megtartás';  
50 -$labels['shortaclw'] = 'Írás';  
51 -$labels['shortacli'] = 'Beszúrás';  
52 -$labels['shortaclp'] = 'Bejegyzés';  
53 -$labels['shortaclc'] = 'Létrehozás';  
54 -$labels['shortaclk'] = 'Létrehozás';  
55 -$labels['shortacld'] = 'Törlés';  
56 -$labels['shortaclt'] = 'Törlés';  
57 -$labels['shortacle'] = 'Törölt üzenetek eltávolítása';  
58 -$labels['shortaclx'] = 'Mappa törlése';  
59 -$labels['shortacla'] = 'Adminisztrátor';  
60 -$labels['shortacln'] = 'Cimkézés';  
61 -$labels['shortaclother'] = 'Egyéb';  
62 -$labels['shortaclread'] = 'Olvasás';  
63 -$labels['shortaclwrite'] = 'Írás';  
64 -$labels['shortacldelete'] = 'Törlés';  
65 -$labels['longacll'] = 'A mappa látható a listán és fel tudsz rá iratkozni.';  
66 -$labels['longaclr'] = 'A mappa olvasásra megnyitható';  
67 -$labels['longacls'] = 'Az üzenet megtekintési állapota módosítható';  
68 -$labels['longaclw'] = 'Az üzenetek jelölései és kulcsszavai módosíthatóak, kivéve az olvasottsági állapotot és az üzenet törölt állapotát.';  
69 -$labels['longacli'] = 'Üzenetek irhatóak és máolshatóak a mappába.';  
70 -$labels['longaclp'] = 'Ebbe a mappába tudsz üzeneteket tenni.';  
71 -$labels['longaclc'] = 'Mappák létrehozhazóak (átnevezhetőek) ez alatt a mappa alatt.';  
72 -$labels['longaclk'] = 'Mappák létrehozhazóak (átnevezhetőek) ez alatt a mappa alatt.';  
73 -$labels['longacld'] = 'Üzenet törölve jelző módositható.';  
74 -$labels['longaclt'] = 'Üzenet törölve jelző módositható.';  
75 -$labels['longacle'] = 'Az üzenetek véglegesen eltávolíthatóak';  
76 -$labels['longaclx'] = 'A mappa törölhető vagy átnevezhető';  
77 -$labels['longacla'] = 'A mappa hozzáférési jogai módosíthatóak';  
78 -$labels['longacln'] = 'Üzenetek megosztott metaadatai(cimkéi) módosíthatoak';  
79 -$labels['longaclfull'] = 'Teljes hozzáférés beleértve a mappák kezelését';  
80 -$labels['longaclread'] = 'A mappa olvasásra megnyitható';  
81 -$labels['longaclwrite'] = 'Az üzenetek megjelölhetök, irhatók és másolhatók ebbe a mappába';  
82 -$labels['longacldelete'] = 'Az üzenetek törölhetőek';  
83 -$labels['longaclother'] = 'Egyébb hozzáférési jogok';  
84 -$labels['ariasummaryacltable'] = 'Hozzáférési jogok listája';  
85 -$labels['arialabelaclactions'] = 'Listázási müveletek';  
86 -$labels['arialabelaclform'] = 'Hozzáférési jogok űrlap';  
87 -$messages['deleting'] = 'Hozzáférési jogok törlése...';  
88 -$messages['saving'] = 'Hozzáférési jogok mentése...';  
89 -$messages['updatesuccess'] = 'A hozzáférési jogok sikeresen módosultak.';  
90 -$messages['deletesuccess'] = 'A hozzáférési jogok törlése sikeresen megtörtént.';  
91 -$messages['createsuccess'] = 'A hozzáférési jogok hozzáadása sikeresen megtörtént.';  
92 -$messages['updateerror'] = 'Nem sikerült módosítani a hozzáférési jogokat.';  
93 -$messages['deleteerror'] = 'Nem sikerült törölni a hozzáférési jogokat.';  
94 -$messages['createerror'] = 'Nem sikerült a hozzáférési jogok hozzáadása';  
95 -$messages['deleteconfirm'] = 'Biztosan eltávolítja a kiválasztott felhasználó(k) hozzáférési jogait?';  
96 -$messages['norights'] = 'Nincsennek jogok megadva.';  
97 -$messages['nouser'] = 'A felhasználónév nincs megadva.';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Կիսվել';  
18 -$labels['myrights'] = 'Մուտքի իրավունքներ';  
19 -$labels['username'] = 'Օգտատեր`';  
20 -$labels['advanced'] = 'Առաջադեմ ռեժիմ';  
21 -$labels['add'] = 'Ավելացնել';  
22 -$labels['newuser'] = 'Ավելացնել գրառում';  
23 -$labels['editperms'] = 'Խմբագրել թույլտվությունները';  
24 -$labels['actions'] = 'Մուտքի իրավունքների գործողություններ…';  
25 -$labels['anyone'] = 'Բոլոր օգտվողները (ցանկացած)';  
26 -$labels['anonymous'] = 'Հյուրերը (անանուն)';  
27 -$labels['identifier'] = 'Նկարագրիչ';  
28 -$labels['acll'] = 'Փնտրում';  
29 -$labels['aclr'] = 'Կարդալ հաղորդագրությունները';  
30 -$labels['acls'] = 'Պահպանել դիտման կարգավիճակը';  
31 -$labels['aclw'] = 'Գրառման նշումներ';  
32 -$labels['acli'] = 'Ներդնել (Պատճենել ներս)';  
33 -$labels['aclp'] = 'Հրապարակել';  
34 -$labels['aclc'] = 'Ստեղծել ենթապանակներ';  
35 -$labels['aclk'] = 'Ստեղծել ենթապանակներ';  
36 -$labels['acld'] = 'Ջնջել հաղորդագրությունները';  
37 -$labels['aclt'] = 'Ջնջել հաղորդագրությունները';  
38 -$labels['acle'] = 'Հեռացնել';  
39 -$labels['aclx'] = 'Ջնջել պանակը';  
40 -$labels['acla'] = 'Կառավարել';  
41 -$labels['acln'] = 'Ծանոթագրել հաղորդագրությունները';  
42 -$labels['aclfull'] = 'Լրիվ վերահսկում';  
43 -$labels['aclother'] = 'Այլ';  
44 -$labels['aclread'] = 'Կարդալ';  
45 -$labels['aclwrite'] = 'Գրել';  
46 -$labels['acldelete'] = 'Ջնջել';  
47 -$labels['shortacll'] = 'Փնտրում';  
48 -$labels['shortaclr'] = 'Կարդալ';  
49 -$labels['shortacls'] = 'Պահել';  
50 -$labels['shortaclw'] = 'Գրել';  
51 -$labels['shortacli'] = 'Ներդնել';  
52 -$labels['shortaclp'] = 'Հրապարակել';  
53 -$labels['shortaclc'] = 'Ստեղծել';  
54 -$labels['shortaclk'] = 'Ստեղծել';  
55 -$labels['shortacld'] = 'Ջնջել';  
56 -$labels['shortaclt'] = 'Ջնջել';  
57 -$labels['shortacle'] = 'Հեռացնել';  
58 -$labels['shortaclx'] = 'Պանակի ջնջում';  
59 -$labels['shortacla'] = 'Կառավարել';  
60 -$labels['shortacln'] = 'Ծանոթագրել';  
61 -$labels['shortaclother'] = 'Այլ';  
62 -$labels['shortaclread'] = 'Կարդալ';  
63 -$labels['shortaclwrite'] = 'Գրել';  
64 -$labels['shortacldelete'] = 'Ջնջել';  
65 -$labels['longacll'] = 'Պանակը երևում է ցուցակներում և նրան հնարավոր է բաժանորդագրվել';  
66 -$labels['longaclr'] = 'Պանակը կարող է բացվել ընթերցման համար';  
67 -$labels['longacls'] = 'Տեսված հաղորդագրությունների նշումը կարող է փոփոխվել';  
68 -$labels['longaclw'] = 'Հաղորդագրությունների նշումները և հիմնաբառերը կարող են փոփոխվել, բացառությամբ Տեսած և Ջնջված նշումների';  
69 -$labels['longacli'] = 'Հաղորդագրությունները կարող են գրվել և պատճենվել պանակի մեջ';  
70 -$labels['longaclp'] = 'Հաղորդագրությունները կարող են հրապարակվել այս պանակում';  
71 -$labels['longaclc'] = 'Պանակները կարող են ստեղծվել (կամ վերանվանվել) այս պանակում';  
72 -$labels['longaclk'] = 'Պանակները կարող են ստեղծվել (կամ վերանվանվել) այս պանակում';  
73 -$labels['longacld'] = 'Հաղորդագրությունների Ջնջել նշումը կարող է փոփոխվել';  
74 -$labels['longaclt'] = 'Հաղորդագրությունների Ջնջել նշումը կարող է փոփոխվել';  
75 -$labels['longacle'] = 'Հաղորդագրությունները կարող են հեռացվել';  
76 -$labels['longaclx'] = 'Պանակը կարող է ջնջվել կամ վերանվանվել';  
77 -$labels['longacla'] = 'Պանակի մուտքի իրավունքները կարող են փոփոխվել';  
78 -$labels['longacln'] = 'Հաղորդագրությունների բաշխված տվյալները (ծանոթագրությունները) կարող են փոփոխվել';  
79 -$labels['longaclfull'] = 'Լրիվ վերահսկում ներառյալ պանակների կառավարումը';  
80 -$labels['longaclread'] = 'Պանակը կարող է բացվել ընթերցման համար';  
81 -$labels['longaclwrite'] = 'Հաղորդագրությունները կարող են նշվել, ստեղծվել և պատճենվել այս պանակում';  
82 -$labels['longacldelete'] = 'Հաղորդագրությունները կարող են ջնջվել';  
83 -$labels['longaclother'] = 'Մուտքի այլ իրավունքները';  
84 -$labels['ariasummaryacltable'] = 'Մուտքի իրավունքների ցուցակը';  
85 -$labels['arialabelaclactions'] = 'Գործողությունների ցուցակը';  
86 -$labels['arialabelaclform'] = 'Մուտքի իրավունքների բլանկ';  
87 -$messages['deleting'] = 'Ջնջվում են մուտքի իրավունքները…';  
88 -$messages['saving'] = 'Պահպանվում են մուտքի իրավունքները…';  
89 -$messages['updatesuccess'] = 'Մուտքի իրավունքները բարեհաջող փոփոխվեցին։';  
90 -$messages['deletesuccess'] = 'Մուտքի իրավունքները բարեհաջող ջնջվեցին։';  
91 -$messages['createsuccess'] = 'Մուտքի իրավունքները բարեհաջող ավելացվեցվին։';  
92 -$messages['updateerror'] = 'Մուտքի իրավունքների թարմացումը անջատել';  
93 -$messages['deleteerror'] = 'Մուտքի իրավունքները ջնջումը ձախողվեց։';  
94 -$messages['createerror'] = 'Մուտքի իրավունքները ավելացումը ձախողվեց։';  
95 -$messages['deleteconfirm'] = 'Դուք վստա՞հ էք, որ ցանկանում եք նշված օգտվողներին զրկել մուտքի իրավունքներից։';  
96 -$messages['norights'] = 'Ոչ մի իրավունք չի՛ նշվել։';  
97 -$messages['nouser'] = 'Օգտվողի անունը չի՛ նշվել։';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Uso in commun';  
18 -$labels['myrights'] = 'Derectos de accesso';  
19 -$labels['username'] = 'Usator:';  
20 -$labels['advanced'] = 'Modo avantiate';  
21 -$labels['add'] = 'Adder';  
22 -$labels['newuser'] = 'Adder entrata';  
23 -$labels['editperms'] = 'Modificar permissiones';  
24 -$labels['actions'] = 'Actiones de derecto de accesso...';  
25 -$labels['anyone'] = 'Tote le usatores (non importa qui)';  
26 -$labels['anonymous'] = 'Hospites (anonyme)';  
27 -$labels['identifier'] = 'Identificator';  
28 -$labels['acll'] = 'Cercar';  
29 -$labels['aclr'] = 'Leger messages';  
30 -$labels['acls'] = 'Retener le stato Vidite';  
31 -$labels['aclw'] = 'Signales de scriptura';  
32 -$labels['acli'] = 'Inserer (copiar in)';  
33 -$labels['aclp'] = 'Inviar';  
34 -$labels['aclc'] = 'Crear subdossieres';  
35 -$labels['aclk'] = 'Crear subdossieres';  
36 -$labels['acld'] = 'Deler messages';  
37 -$labels['aclt'] = 'Deler messages';  
38 -$labels['acle'] = 'Expunger';  
39 -$labels['aclx'] = 'Deler dossier';  
40 -$labels['acla'] = 'Administrar';  
41 -$labels['acln'] = 'Annotar messages';  
42 -$labels['aclfull'] = 'Controlo total';  
43 -$labels['aclother'] = 'Altere';  
44 -$labels['aclread'] = 'Leger';  
45 -$labels['aclwrite'] = 'Scriber';  
46 -$labels['acldelete'] = 'Deler';  
47 -$labels['shortacll'] = 'Cercar';  
48 -$labels['shortaclr'] = 'Leger';  
49 -$labels['shortacls'] = 'Retener';  
50 -$labels['shortaclw'] = 'Scriber';  
51 -$labels['shortacli'] = 'Inserer';  
52 -$labels['shortaclp'] = 'Inviar';  
53 -$labels['shortaclc'] = 'Crear';  
54 -$labels['shortaclk'] = 'Crear';  
55 -$labels['shortacld'] = 'Deler';  
56 -$labels['shortaclt'] = 'Deler';  
57 -$labels['shortacle'] = 'Expunger';  
58 -$labels['shortaclx'] = 'Deletion de dossier';  
59 -$labels['shortacla'] = 'Administrar';  
60 -$labels['shortacln'] = 'Annotar';  
61 -$labels['shortaclother'] = 'Altere';  
62 -$labels['shortaclread'] = 'Leger';  
63 -$labels['shortaclwrite'] = 'Scriber';  
64 -$labels['shortacldelete'] = 'Deler';  
65 -$labels['longacll'] = 'Le dossier es visibile in listas e on pote subscriber se a illo';  
66 -$labels['longaclr'] = 'Le dossier pote esser aperite pro lectura';  
67 -$labels['longacls'] = 'Le signal "Vidite" de messages pote esser cambiate';  
68 -$labels['longaclw'] = 'Le signales e parolas-clave de messages pote esser cambiate, excepte "Vidite" e "Delite"';  
69 -$labels['longacli'] = 'Messages pote esser scribite o copiate al dossier';  
70 -$labels['longaclp'] = 'Messages pote esser inviate a iste dossier';  
71 -$labels['longaclc'] = 'Dossieres pote esser create (o renominate) directemente sub iste dossier';  
72 -$labels['longaclk'] = 'Dossieres pote esser create (o renominate) directemente sub iste dossier';  
73 -$labels['longacld'] = 'Le signal "Deler" de messages pote esser cambiate';  
74 -$labels['longaclt'] = 'Le signal "Deler" de messages pote esser cambiate';  
75 -$labels['longacle'] = 'Messages pote esser expungite';  
76 -$labels['longaclx'] = 'Le dossier pote esser delite o renominate';  
77 -$labels['longacla'] = 'Le derectos de accesso del dossier pote esser cambiate';  
78 -$labels['longacln'] = 'Le metadatos commun (annotationes) de messages pote esser cambiate';  
79 -$labels['longaclfull'] = 'Controlo total incluse le administration de dossieres';  
80 -$labels['longaclread'] = 'Le dossier pote esser aperite pro lectura';  
81 -$labels['longaclwrite'] = 'Messages pote esser marcate, scribite o copiate al dossier';  
82 -$labels['longacldelete'] = 'Messages pote esser delite';  
83 -$labels['longaclother'] = 'Altere derectos de accesso';  
84 -$labels['ariasummaryacltable'] = 'Lista de derectos de accesso';  
85 -$labels['arialabelaclactions'] = 'Listar actiones';  
86 -$labels['arialabelaclform'] = 'Formulario de derectos de accesso';  
87 -$messages['deleting'] = 'A deler derectos de accesso...';  
88 -$messages['saving'] = 'A salveguardar derectos de accesso...';  
89 -$messages['updatesuccess'] = 'Le derectos de accesso ha essite cambiate';  
90 -$messages['deletesuccess'] = 'Le derectos de accesso ha essite delite';  
91 -$messages['createsuccess'] = 'Le derectos de accesso ha essite addite';  
92 -$messages['updateerror'] = 'Impossibile actualisar le derectos de accesso';  
93 -$messages['deleteerror'] = 'Impossibile deler derectos de accesso';  
94 -$messages['createerror'] = 'Impossibile adder derectos de accesso';  
95 -$messages['deleteconfirm'] = 'Es vos secur de voler remover le derectos de accesso del usator(es) seligite?';  
96 -$messages['norights'] = 'Nulle derecto ha essite specificate.';  
97 -$messages['nouser'] = 'Nulle nomine de usator ha essite specificate.';  
1 -<?php  
2 -  
3 -/*  
4 - +-----------------------------------------------------------------------+  
5 - | Localization file of the Roundcube Webmail ACL plugin |  
6 - | |  
7 - | Copyright (C) The Roundcube Dev Team |  
8 - | |  
9 - | Licensed under the GNU General Public License version 3 or |  
10 - | any later version with exceptions for skins & plugins. |  
11 - | See the README file for a full license statement. |  
12 - +-----------------------------------------------------------------------+  
13 -  
14 - For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/  
15 -*/  
16 -  
17 -$labels['sharing'] = 'Berbagi';  
18 -$labels['myrights'] = 'Hak Akses';  
19 -$labels['username'] = 'Pengguna:';  
20 -$labels['advanced'] = 'Mode Lanjut';  
21 -$labels['add'] = 'Tambah';  
22 -$labels['newuser'] = 'Tambahkan entri';  
23 -$labels['editperms'] = 'Ubah izin';  
24 -$labels['actions'] = 'Aksi hak akses...';  
25 -$labels['anyone'] = 'Semua pengguna (siapa saja)';  
26 -$labels['anonymous'] = 'Para tamu (anonim)';  
27 -$labels['identifier'] = 'Yang mengidentifikasi';  
28 -$labels['acll'] = 'Cari';  
29 -$labels['aclr'] = 'Baca pesan';  
30 -$labels['acls'] = 'Jaga status terbaca';  
31 -$labels['aclw'] = 'Membuat tanda';  
32 -$labels['acli'] = 'Sisipkan (Salin kedalam)';  
33 -$labels['aclp'] = 'Tulisan';  
34 -$labels['aclc'] = 'Buat subfolder';  
35 -$labels['aclk'] = 'Buat subfolder';  
36 -$labels['acld'] = 'Hapus pesan';  
37 -$labels['aclt'] = 'Hapus pesan';  
38 -$labels['acle'] = 'Menghapus';  
39 -$labels['aclx'] = 'Hapus folder';  
40 -$labels['acla'] = 'Kelola';  
41 -$labels['acln'] = 'Berikan keterangan pesan';  
42 -$labels['aclfull'] = 'Kendali penuh';  
43 -$labels['aclother'] = 'Lainnya';  
44 -$labels['aclread'] = 'Baca';  
45 -$labels['aclwrite'] = 'Tulis';  
46 -$labels['acldelete'] = 'Hapus';  
47 -$labels['shortacll'] = 'Cari';  
48 -$labels['shortaclr'] = 'Baca';  
49 -$labels['shortacls'] = 'Simpan';  
50 -$labels['shortaclw'] = 'Tulis';  
51 -$labels['shortacli'] = 'Sisipkan';  
52 -$labels['shortaclp'] = 'Tulisan';  
53 -$labels['shortaclc'] = 'Buat';  
54 -$labels['shortaclk'] = 'Buat';  
55 -$labels['shortacld'] = 'Hapus';  
56 -$labels['shortaclt'] = 'Hapus';  
57 -$labels['shortacle'] = 'Buang';  
58 -$labels['shortaclx'] = 'Hapus folder';  
59 -$labels['shortacla'] = 'Kelola';  
60 -$labels['shortacln'] = 'Berikan keterangan';  
61 -$labels['shortaclother'] = 'Lainnya';  
62 -$labels['shortaclread'] = 'Baca';  
63 -$labels['shortaclwrite'] = 'Tulis';  
64 -$labels['shortacldelete'] = 'Hapus';  
65 -$labels['longacll'] = 'Folder terlihat di daftar dan dapat dijadikan langganan';  
66 -$labels['longaclr'] = 'Folder dapat dibuka untuk dibaca';  
67 -$labels['longacls'] = 'Tanda pesan terbaca dapat diubah';  
68 -$labels['longaclw'] = 'Tanda pesan dan kata kunci dapat diubah, kecuali Terbaca dan Terhapus';  
69 -$labels['longacli'] = 'Pesan dapat ditulis atau disalin kedalam folder';  
70 -$labels['longaclp'] = 'Pesan dapat dikirim ke folder ini';  
71 -$labels['longaclc'] = 'Folder dapat dibuat (atau diubah namanya) langsung dari folder ini';  
72 -$labels['longaclk'] = 'Folder dapat dibuat (atau diubah namanya) langsung dari folder ini';  
73 -$labels['longacld'] = 'Tanda hapus pesan dapat diubah';  
74 -$labels['longaclt'] = 'Tanda hapus pesan dapat diubah';  
75 -$labels['longacle'] = 'Pesan dapat dibuang';  
76 -$labels['longaclx'] = 'Folder dapat dihapus atau diubah namanya';  
77 -$labels['longacla'] = 'Hak akses folder dapat diubah';  
78 -$labels['longacln'] = 'Metadata pesan bersama (penjelasan) dapat diubah';  
79 -$labels['longaclfull'] = 'Kendali penuh penuh termasuk administrasi';  
80 -$labels['longaclread'] = 'Folder dapat dibuka untuk dibaca';  
81 -$labels['longaclwrite'] = 'Pesan dapat ditandai, ditulis atau disalin kedalam folder';  
82 -$labels['longacldelete'] = 'Pesan dapat dihapus';  
83 -$labels['longaclother'] = 'Hak akses lainnya';  
84 -$labels['ariasummaryacltable'] = 'Daftar hak akses';  
85 -$labels['arialabelaclactions'] = 'Aksi daftar';  
86 -$labels['arialabelaclform'] = 'Formulir hak akses';  
87 -$messages['deleting'] = 'Menghapus hak akses...';  
88 -$messages['saving'] = 'Menyimpan hak akses...';  
89 -$messages['updatesuccess'] = 'Hak akses berhasil diubah';  
90 -$messages['deletesuccess'] = 'Hak akses berhasil dihapus';  
91 -$messages['createsuccess'] = 'Hak akses berhasil ditambahkan';  
92 -$messages['updateerror'] = 'Tidak dapat memperbaharui hak akses';  
93 -$messages['deleteerror'] = 'Tidak dapat menghapus hak akses';  
94 -$messages['createerror'] = 'Tidak dapat menambah hak akses';  
95 -$messages['deleteconfirm'] = 'Apakah Anda yakin ingin menghapus hak akses dari user terpilih?';  
96 -$messages['norights'] = 'Hak belum ditentukan!';  
97 -$messages['nouser'] = 'Username belum ditentukan!';