Aleksander Machniak
2013-10-09 9377edc497ae17014df1fcd124d220151a4882b0
commit | author | age
48e9c1 1 <?php
T 2
49437c 3 /*
TB 4  +-----------------------------------------------------------------------+
de2009 5  | plugins/acl/localization/<lang>.inc                                   |
49437c 6  |                                                                       |
TB 7  | Localization file of the Roundcube Webmail ACL plugin                 |
8e50ae 8  | Copyright (C) 2012-2013, The Roundcube Dev Team                       |
49437c 9  |                                                                       |
TB 10  | Licensed under the GNU General Public License version 3 or            |
11  | any later version with exceptions for skins & plugins.                |
12  | See the README file for a full license statement.                     |
13  |                                                                       |
14  +-----------------------------------------------------------------------+
15
16  For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/
17 */
18
48e9c1 19 $labels['sharing'] = 'Sharing';
T 20 $labels['myrights'] = 'Access Rights';
21 $labels['username'] = 'User:';
22 $labels['advanced'] = 'advanced mode';
23 $labels['newuser'] = 'Add entry';
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
43 $labels['aclfull'] = 'Full control';
44 $labels['aclother'] = 'Other';
45 $labels['aclread'] = 'Read';
46 $labels['aclwrite'] = 'Write';
47 $labels['acldelete'] = 'Delete';
48
49 $labels['shortacll'] = 'Lookup';
50 $labels['shortaclr'] = 'Read';
51 $labels['shortacls'] = 'Keep';
52 $labels['shortaclw'] = 'Write';
53 $labels['shortacli'] = 'Insert';
54 $labels['shortaclp'] = 'Post';
55 $labels['shortaclc'] = 'Create';
56 $labels['shortaclk'] = 'Create';
57 $labels['shortacld'] = 'Delete';
58 $labels['shortaclt'] = 'Delete';
59 $labels['shortacle'] = 'Expunge';
60 $labels['shortaclx'] = 'Folder delete';
61 $labels['shortacla'] = 'Administer';
62
63 $labels['shortaclother'] = 'Other';
64 $labels['shortaclread'] = 'Read';
65 $labels['shortaclwrite'] = 'Write';
66 $labels['shortacldelete'] = 'Delete';
67
68 $labels['longacll'] = 'The folder is visible on lists and can be subscribed to';
69 $labels['longaclr'] = 'The folder can be opened for reading';
70 $labels['longacls'] = 'Messages Seen flag can be changed';
71 $labels['longaclw'] = 'Messages flags and keywords can be changed, except Seen and Deleted';
72 $labels['longacli'] = 'Messages can be written or copied to the folder';
73 $labels['longaclp'] = 'Messages can be posted to this folder';
74 $labels['longaclc'] = 'Folders can be created (or renamed) directly under this folder';
75 $labels['longaclk'] = 'Folders can be created (or renamed) directly under this folder';
76 $labels['longacld'] = 'Messages Delete flag can be changed';
77 $labels['longaclt'] = 'Messages Delete flag can be changed';
78 $labels['longacle'] = 'Messages can be expunged';
79 $labels['longaclx'] = 'The folder can be deleted or renamed';
80 $labels['longacla'] = 'The folder access rights can be changed';
81
82 $labels['longaclfull'] = 'Full control including folder administration';
83 $labels['longaclread'] = 'The folder can be opened for reading';
84 $labels['longaclwrite'] = 'Messages can be marked, written or copied to the folder';
85 $labels['longacldelete'] = 'Messages can be deleted';
86
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';
4f8b50 92 $messages['updateerror'] = 'Unable to update access rights';
48e9c1 93 $messages['deleteerror'] = 'Unable to delete access rights';
T 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!';
98
99 ?>