|
1 /* |
|
2 * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between |
|
3 * Version 1.1.1 |
|
4 * Copyright (C) 2006-2007 Dan Fuhry |
|
5 * |
|
6 * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License |
|
7 * as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. |
|
8 * |
|
9 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied |
|
10 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details. |
|
11 */ |
|
12 |
|
13 // This is the main language file for Enano. Feel free to use it as a base for your own translations. |
|
14 // All text in this file before the first left curly brace and all text after the last curly brace will |
|
15 // be trimmed. So you can use a limited amount of Javascript in this so that the language can be imported |
|
16 // via Javascript as well. |
|
17 |
|
18 var enano_lang = { |
|
19 categories: [ |
|
20 'adm', 'acl', 'adminusers' |
|
21 ], |
|
22 strings: { |
|
23 meta: { |
|
24 adm: 'Administration panel nav menu', |
|
25 acl: 'Access control list editor', |
|
26 adminusers: 'ACP: User management' |
|
27 }, |
|
28 adm: { |
|
29 cat_general: 'General', |
|
30 cat_content: 'Content', |
|
31 cat_appearance: 'Appearance', |
|
32 cat_users: 'Users', |
|
33 cat_security: 'Security', |
|
34 cat_plugins: 'Plugin configuration', |
|
35 |
|
36 page_general_config: 'General configuration', |
|
37 page_file_uploads: 'File uploads', |
|
38 page_file_types: 'Allowed file types', |
|
39 page_plugins: 'Manage plugins', |
|
40 page_db_backup: 'Backup database', |
|
41 |
|
42 page_manager: 'Manage pages', |
|
43 page_editor: 'Edit page content', |
|
44 page_pg_groups: 'Manage page groups', |
|
45 |
|
46 page_themes: 'Manage themes', |
|
47 |
|
48 page_users: 'Manage users', |
|
49 page_user_groups: 'Edit user groups', |
|
50 page_coppa: 'COPPA support', |
|
51 page_mass_email: 'Mass e-mail', |
|
52 |
|
53 page_security_log: 'Security log', |
|
54 page_ban_control: 'Ban control', |
|
55 |
|
56 btn_home: 'Administration panel home', |
|
57 btn_logout: 'Log out of admin panel', |
|
58 btn_keepalive_off: 'Turn on keep-alive', |
|
59 btn_keepalive_on: 'Turn off keep-alive', |
|
60 btn_keepalive_about: 'About keep-alive', |
|
61 btn_keepalive_loading: 'Loading keep-alive button...', |
|
62 |
|
63 err_not_auth_title: 'Error: Not authenticated', |
|
64 err_not_auth_body: 'It looks like your administration session is invalid or you are not authorized to access this administration page. Please <a href="%login_link%">re-authenticate</a> to continue.', |
|
65 }, |
|
66 acl: { |
|
67 err_access_denied: 'You are not authorized to view or edit access control lists.', |
|
68 err_missing_template: 'It seems that (a) the file acledit.tpl is missing from this theme, and (b) the JSON response is working.', |
|
69 err_user_not_found: 'The username you entered was not found.', |
|
70 err_bad_group_id: 'The group ID you submitted is not valid.', |
|
71 err_demo: 'Editing access control lists is disabled in the administration demo.', |
|
72 err_zero_list: 'Supplied rule list has a length of zero', |
|
73 err_pleaseselect_targettype: 'Please select a target type.', |
|
74 err_pleaseselect_username: 'Please enter a username.', |
|
75 |
|
76 radio_usergroup: 'A usergroup', |
|
77 radio_user: 'A specific user', |
|
78 radio_scope_thispage: 'Only this page', |
|
79 radio_scope_wholesite: 'The entire website', |
|
80 radio_scope_pagegroup: 'A group of pages', |
|
81 |
|
82 lbl_scope: 'What should this access rule control?', |
|
83 lbl_welcome_title: 'Manage page access', |
|
84 lbl_welcome_body: 'Please select who should be affected by this access rule.', |
|
85 lbl_editwin_title_create: 'Create access rule', |
|
86 lbl_editwin_title_edit: 'Editing permissions', |
|
87 lbl_editwin_body: 'This panel allows you to edit what the %target_type% "<b>%target%</b>" can do on <b>%scope_type%</b>. Unless you set a permission to "Deny", these permissions may be overridden by other rules.', |
|
88 lbl_deleterule: 'Delete this rule', |
|
89 lbl_save_success_title: 'Permissions updated', |
|
90 lbl_save_success_body: 'The permissions for %target_name% on this page have been updated successfully. If you changed permissions that affect your user account, you may not see changes until you reload the page.', |
|
91 lbl_delete_success_title: 'Rule deleted', |
|
92 lbl_delete_success_body: 'The access rules for %target_name% on this page have been deleted.', |
|
93 lbl_field_deny: 'Deny', |
|
94 lbl_field_disallow: 'Disallow', |
|
95 lbl_field_wikimode: 'Wiki mode', |
|
96 lbl_field_allow: 'Allow', |
|
97 lbl_help: '<p><b>Permission types:</b></p><ul><li><b>Allow</b> means that the user is allowed to access the item</li><li><b>Wiki mode</b> means the user can access the item if wiki mode is active (per-page wiki mode is taken into account)</li><li><b>Disallow</b> means the user is denied access unless something allows it.</li><li><b>Deny</b> means that the user is denied access to the item. This setting overrides all other permissions.</li></ul>', |
|
98 |
|
99 scope_type_wholesite: 'this entire site', |
|
100 scope_type_thispage: 'this page', |
|
101 scope_type_pagegroup: 'this group of pages', |
|
102 |
|
103 target_type_user: 'user', |
|
104 target_type_group: 'group', |
|
105 |
|
106 msg_guest_howto: 'To edit permissions for guests, select "a specific user", and enter Anonymous as the username.', |
|
107 msg_deleterule_confirm: 'Do you really want to delete this rule?', |
|
108 msg_closeacl_confirm: 'Do you really want to close the ACL manager?', |
|
109 |
|
110 btn_success_dismiss: 'dismiss', |
|
111 btn_success_close: 'close manager', |
|
112 btn_deleterule: 'Delete rule', |
|
113 btn_createrule: 'Create rule', |
|
114 btn_returnto_editor: 'Return to ACL editor', |
|
115 btn_returnto_userscope: 'Return to user/scope selection', |
|
116 }, |
|
117 adminusers: { |
|
118 avatar_heading: 'Avatar settings', |
|
119 avatar_image_none: 'This user does not currently have an avatar.', |
|
120 avatar_lbl_change: 'Change avatar:', |
|
121 avatar_lbl_keep: 'Keep current setting', |
|
122 avatar_lbl_remove: 'Delete this user\'s avatar', |
|
123 avatar_lbl_set_http: 'Replace avatar using a new image from a URL', |
|
124 avatar_lbl_set_file: 'Replace avatar using a new image from my computer', |
|
125 } |
|
126 } |
|
127 }; |
|
128 |
|
129 // All done! :-) |
|
130 |