Mercurial > hg > rc1
comparison plugins/acl/localization/en_US.inc @ 0:1e000243b222
vanilla 1.3.3 distro, I hope
author | Charlie Root |
---|---|
date | Thu, 04 Jan 2018 15:50:29 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:1e000243b222 |
---|---|
1 <?php | |
2 | |
3 /* | |
4 +-----------------------------------------------------------------------+ | |
5 | plugins/acl/localization/<lang>.inc | | |
6 | | | |
7 | Localization file of the Roundcube Webmail ACL plugin | | |
8 | Copyright (C) 2012-2013, The Roundcube Dev Team | | |
9 | | | |
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 | |
19 $labels['sharing'] = 'Sharing'; | |
20 $labels['myrights'] = 'Access Rights'; | |
21 $labels['username'] = 'User:'; | |
22 $labels['advanced'] = 'Advanced mode'; | |
23 $labels['newuser'] = 'Add entry'; | |
24 $labels['editperms'] = 'Edit permissions'; | |
25 $labels['actions'] = 'Access right actions...'; | |
26 $labels['anyone'] = 'All users (anyone)'; | |
27 $labels['anonymous'] = 'Guests (anonymous)'; | |
28 $labels['identifier'] = 'Identifier'; | |
29 | |
30 $labels['acll'] = 'Lookup'; | |
31 $labels['aclr'] = 'Read messages'; | |
32 $labels['acls'] = 'Keep Seen state'; | |
33 $labels['aclw'] = 'Write flags'; | |
34 $labels['acli'] = 'Insert (Copy into)'; | |
35 $labels['aclp'] = 'Post'; | |
36 $labels['aclc'] = 'Create subfolders'; | |
37 $labels['aclk'] = 'Create subfolders'; | |
38 $labels['acld'] = 'Delete messages'; | |
39 $labels['aclt'] = 'Delete messages'; | |
40 $labels['acle'] = 'Expunge'; | |
41 $labels['aclx'] = 'Delete folder'; | |
42 $labels['acla'] = 'Administer'; | |
43 $labels['acln'] = 'Annotate messages'; | |
44 | |
45 $labels['aclfull'] = 'Full control'; | |
46 $labels['aclother'] = 'Other'; | |
47 $labels['aclread'] = 'Read'; | |
48 $labels['aclwrite'] = 'Write'; | |
49 $labels['acldelete'] = 'Delete'; | |
50 | |
51 $labels['shortacll'] = 'Lookup'; | |
52 $labels['shortaclr'] = 'Read'; | |
53 $labels['shortacls'] = 'Keep'; | |
54 $labels['shortaclw'] = 'Write'; | |
55 $labels['shortacli'] = 'Insert'; | |
56 $labels['shortaclp'] = 'Post'; | |
57 $labels['shortaclc'] = 'Create'; | |
58 $labels['shortaclk'] = 'Create'; | |
59 $labels['shortacld'] = 'Delete'; | |
60 $labels['shortaclt'] = 'Delete'; | |
61 $labels['shortacle'] = 'Expunge'; | |
62 $labels['shortaclx'] = 'Folder delete'; | |
63 $labels['shortacla'] = 'Administer'; | |
64 $labels['shortacln'] = 'Annotate'; | |
65 | |
66 $labels['shortaclother'] = 'Other'; | |
67 $labels['shortaclread'] = 'Read'; | |
68 $labels['shortaclwrite'] = 'Write'; | |
69 $labels['shortacldelete'] = 'Delete'; | |
70 | |
71 $labels['longacll'] = 'The folder is visible on lists and can be subscribed to'; | |
72 $labels['longaclr'] = 'The folder can be opened for reading'; | |
73 $labels['longacls'] = 'Messages Seen flag can be changed'; | |
74 $labels['longaclw'] = 'Messages flags and keywords can be changed, except Seen and Deleted'; | |
75 $labels['longacli'] = 'Messages can be written or copied to the folder'; | |
76 $labels['longaclp'] = 'Messages can be posted to this folder'; | |
77 $labels['longaclc'] = 'Folders can be created (or renamed) directly under this folder'; | |
78 $labels['longaclk'] = 'Folders can be created (or renamed) directly under this folder'; | |
79 $labels['longacld'] = 'Messages Delete flag can be changed'; | |
80 $labels['longaclt'] = 'Messages Delete flag can be changed'; | |
81 $labels['longacle'] = 'Messages can be expunged'; | |
82 $labels['longaclx'] = 'The folder can be deleted or renamed'; | |
83 $labels['longacla'] = 'The folder access rights can be changed'; | |
84 $labels['longacln'] = 'Messages shared metadata (annotations) can be changed'; | |
85 | |
86 $labels['longaclfull'] = 'Full control including folder administration'; | |
87 $labels['longaclread'] = 'The folder can be opened for reading'; | |
88 $labels['longaclwrite'] = 'Messages can be marked, written or copied to the folder'; | |
89 $labels['longacldelete'] = 'Messages can be deleted'; | |
90 $labels['longaclother'] = 'Other access rights'; | |
91 | |
92 $labels['ariasummaryacltable'] = 'List of access rights'; | |
93 $labels['arialabelaclactions'] = 'List actions'; | |
94 $labels['arialabelaclform'] = 'Access rights form'; | |
95 | |
96 $messages['deleting'] = 'Deleting access rights...'; | |
97 $messages['saving'] = 'Saving access rights...'; | |
98 $messages['updatesuccess'] = 'Successfully changed access rights'; | |
99 $messages['deletesuccess'] = 'Successfully deleted access rights'; | |
100 $messages['createsuccess'] = 'Successfully added access rights'; | |
101 $messages['updateerror'] = 'Unable to update access rights'; | |
102 $messages['deleteerror'] = 'Unable to delete access rights'; | |
103 $messages['createerror'] = 'Unable to add access rights'; | |
104 $messages['deleteconfirm'] = 'Are you sure, you want to remove access rights of selected user(s)?'; | |
105 $messages['norights'] = 'No rights has been specified!'; | |
106 $messages['nouser'] = 'No username has been specified!'; | |
107 | |
108 ?> |