Introduced title.subgroups in translation files.
[timetracker.git] / WEB-INF / resources / en.lang.php
1 <?php
2 // +----------------------------------------------------------------------+
3 // | Anuko Time Tracker
4 // +----------------------------------------------------------------------+
5 // | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
6 // +----------------------------------------------------------------------+
7 // | LIBERAL FREEWARE LICENSE: This source code document may be used
8 // | by anyone for any purpose, and freely redistributed alone or in
9 // | combination with other software, provided that the license is obeyed.
10 // |
11 // | There are only two ways to violate the license:
12 // |
13 // | 1. To redistribute this code in source form, with the copyright
14 // |    notice or license removed or altered. (Distributing in compiled
15 // |    forms without embedded copyright notices is permitted).
16 // |
17 // | 2. To redistribute modified versions of this code in *any* form
18 // |    that bears insufficient indications that the modifications are
19 // |    not the work of the original author(s).
20 // |
21 // | This license applies to this document only, not any other software
22 // | that it may be combined with.
23 // |
24 // +----------------------------------------------------------------------+
25 // | Contributors:
26 // | https://www.anuko.com/time_tracker/credits.htm
27 // +----------------------------------------------------------------------+
28
29 // Note: escape apostrophes with THREE backslashes, like here:  choisir l\\\'option.
30 // Other characters (such as double-quotes in http links, etc.) do not have to be escaped.
31
32 $i18n_language = 'English';
33 $i18n_months = array('January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December');
34 $i18n_weekdays = array('Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday');
35 $i18n_weekdays_short = array('Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa');
36 // format mm/dd
37 $i18n_holidays = array('01/01', '01/16', '02/20', '05/28', '07/04', '09/03', '10/10', '11/11', '11/24', '12/25');
38
39 $i18n_key_words = array(
40
41 // Menus - short selection strings that are displayed on top of application web pages.
42 // Example: https://timetracker.anuko.com (black menu on top).
43 'menu.login' => 'Login',
44 'menu.logout' => 'Logout',
45 'menu.forum' => 'Forum',
46 'menu.help' => 'Help',
47 'menu.create_group' => 'Create Group',
48 'menu.profile' => 'Profile',
49 'menu.group' => 'Group',
50 'menu.subgroups' => 'Subgroups',
51 'menu.plugins' => 'Plugins',
52 'menu.time' => 'Time',
53 'menu.expenses' => 'Expenses',
54 'menu.reports' => 'Reports',
55 'menu.charts' => 'Charts',
56 'menu.projects' => 'Projects',
57 'menu.tasks' => 'Tasks',
58 'menu.users' => 'Users',
59 'menu.groups' => 'Groups',
60 'menu.export' => 'Export',
61 'menu.clients' => 'Clients',
62 'menu.options' => 'Options',
63
64 // Footer - strings on the bottom of most pages.
65 'footer.contribute_msg' => 'You can contribute to Time Tracker in different ways.',
66 'footer.credits' => 'Credits',
67 'footer.license' => 'License',
68 'footer.improve' => 'Contribute', // Translators: this could mean "Improve", if it makes better sense in your language.
69                                   // This is a link to a webpage that describes how to contribute to the project.
70
71 // Error messages.
72 'error.access_denied' => 'Access denied.',
73 'error.sys' => 'System error.',
74 'error.db' => 'Database error.',
75 'error.feature_disabled' => 'Feature is disabled.',
76 'error.field' => 'Incorrect "{0}" data.',
77 'error.empty' => 'Field "{0}" is empty.',
78 'error.not_equal' => 'Field "{0}" is not equal to field "{1}".',
79 'error.interval' => 'Field "{0}" must be greater than "{1}".',
80 'error.project' => 'Select project.',
81 'error.task' => 'Select task.',
82 'error.client' => 'Select client.',
83 'error.report' => 'Select report.',
84 'error.record' => 'Select record.',
85 'error.auth' => 'Incorrect login or password.',
86 'error.user_exists' => 'User with this login already exists.',
87 'error.object_exists' => 'Object with this name already exists.',
88 'error.project_exists' => 'Project with this name already exists.',
89 'error.task_exists' => 'Task with this name already exists.',
90 'error.client_exists' => 'Client with this name already exists.',
91 'error.invoice_exists' => 'Invoice with this number already exists.',
92 'error.role_exists' => 'Role with this rank already exists.',
93 'error.no_invoiceable_items' => 'There are no invoiceable items.',
94 'error.no_login' => 'No user with this login.',
95 'error.no_groups' => 'Your database is empty. Login as admin and create a new group.',
96 'error.upload' => 'File upload error.',
97 'error.range_locked' => 'Date range is locked.',
98 'error.mail_send' => 'Error sending mail. Use MAIL_SMTP_DEBUG for diagnostics.',
99 'error.no_email' => 'No email associated with this login.',
100 'error.uncompleted_exists' => 'Uncompleted entry already exists. Close or delete it.',
101 'error.goto_uncompleted' => 'Go to uncompleted entry.',
102 'error.overlap' => 'Time interval overlaps with existing records.',
103 'error.future_date' => 'Date is in future.',
104 'error.xml' => 'Error in XML file at line %d: %s.',
105 'error.cannot_import' => 'Cannot import: %s.',
106 'error.format' => 'Invalid file format.',
107
108 // Labels for buttons.
109 'button.login' => 'Login',
110 'button.now' => 'Now',
111 'button.save' => 'Save',
112 'button.copy' => 'Copy',
113 'button.cancel' => 'Cancel',
114 'button.submit' => 'Submit',
115 'button.add' => 'Add',
116 'button.delete' => 'Delete',
117 'button.generate' => 'Generate',
118 'button.reset_password' => 'Reset password',
119 'button.send' => 'Send',
120 'button.send_by_email' => 'Send by e-mail',
121 'button.create_group' => 'Create group',
122 'button.export' => 'Export group',
123 'button.import' => 'Import group',
124 'button.close' => 'Close',
125 'button.stop' => 'Stop',
126
127 // Labels for controls on forms. Labels in this section are used on multiple forms.
128 'label.group_name' => 'Group name',
129 'label.address' => 'Address',
130 'label.currency' => 'Currency',
131 'label.manager_name' => 'Manager name',
132 'label.manager_login' => 'Manager login',
133 'label.person_name' => 'Name',
134 'label.thing_name' => 'Name',
135 'label.login' => 'Login',
136 'label.password' => 'Password',
137 'label.confirm_password' => 'Confirm password',
138 'label.email' => 'Email',
139 'label.cc' => 'Cc',
140 'label.bcc' => 'Bcc',
141 'label.subject' => 'Subject',
142 'label.date' => 'Date',
143 'label.start_date' => 'Start date',
144 'label.end_date' => 'End date',
145 'label.user' => 'User',
146 'label.users' => 'Users',
147 'label.group' => 'Group',
148 'label.subgroups' => 'Subgroups',
149 'label.roles' => 'Roles',
150 'label.client' => 'Client',
151 'label.clients' => 'Clients',
152 'label.option' => 'Option',
153 'label.invoice' => 'Invoice',
154 'label.project' => 'Project',
155 'label.projects' => 'Projects',
156 'label.task' => 'Task',
157 'label.tasks' => 'Tasks',
158 'label.description' => 'Description',
159 'label.start' => 'Start',
160 'label.finish' => 'Finish',
161 'label.duration' => 'Duration',
162 'label.note' => 'Note',
163 'label.notes' => 'Notes',
164 'label.item' => 'Item',
165 'label.cost' => 'Cost',
166 'label.ip' => 'IP',
167 'label.day_total' => 'Day total',
168 'label.week_total' => 'Week total',
169 'label.month_total' => 'Month total',
170 'label.today' => 'Today',
171 'label.view' => 'View',
172 'label.edit' => 'Edit',
173 'label.delete' => 'Delete',
174 'label.configure' => 'Configure',
175 'label.select_all' => 'Select all',
176 'label.select_none' => 'Deselect all',
177 'label.day_view' => 'Day view',
178 'label.week_view' => 'Week view',
179 'label.id' => 'ID',
180 'label.language' => 'Language',
181 'label.decimal_mark' => 'Decimal mark',
182 'label.date_format' => 'Date format',
183 'label.time_format' => 'Time format',
184 'label.week_start' => 'First day of week',
185 'label.comment' => 'Comment',
186 'label.status' => 'Status',
187 'label.tax' => 'Tax',
188 'label.subtotal' => 'Subtotal',
189 'label.total' => 'Total',
190 'label.client_name' => 'Client name',
191 'label.client_address' => 'Client address',
192 'label.or' => 'or',
193 'label.error' => 'Error',
194 'label.ldap_hint' => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
195 'label.required_fields' => '* - required fields',
196 'label.on_behalf' => 'on behalf of',
197 'label.role_manager' => '(manager)',
198 'label.role_comanager' => '(co-manager)',
199 'label.role_admin' => '(administrator)',
200 'label.page' => 'Page',
201 'label.condition' => 'Condition',
202 'label.yes' => 'yes',
203 'label.no' => 'no',
204 // Labels for plugins (extensions to Time Tracker that provide additional features).
205 'label.custom_fields' => 'Custom fields',
206 'label.monthly_quotas' => 'Monthly quotas',
207 'label.type' => 'Type',
208 'label.type_dropdown' => 'dropdown',
209 'label.type_text' => 'text',
210 'label.required' => 'Required',
211 'label.fav_report' => 'Favorite report',
212 'label.schedule' => 'Schedule',
213 'label.what_is_it' => 'What is it?',
214 'label.expense' => 'Expense',
215 'label.quantity' => 'Quantity',
216 'label.paid_status' => 'Paid status',
217 'label.paid' => 'Paid',
218 'label.mark_paid' => 'Mark paid',
219 'label.week_note' => 'Week note',
220 'label.week_list' => 'Week list',
221 'label.work_units' => 'Work units',
222 'label.work_units_short' => 'Units',
223 'label.totals_only' => 'Totals only',
224
225 // Form titles.
226 'title.login' => 'Login',
227 'title.groups' => 'Groups',
228 'title.subgroups' => 'Subgroups',
229 'title.create_group' => 'Creating Group',
230 'title.edit_group' => 'Editing Group',
231 'title.delete_group' => 'Deleting Group',
232 'title.reset_password' => 'Resetting Password',
233 'title.change_password' => 'Changing Password',
234 'title.time' => 'Time',
235 'title.edit_time_record' => 'Editing Time Record',
236 'title.delete_time_record' => 'Deleting Time Record',
237 'title.expenses' => 'Expenses',
238 'title.edit_expense' => 'Editing Expense Item',
239 'title.delete_expense' => 'Deleting Expense Item',
240 'title.predefined_expenses' => 'Predefined Expenses',
241 'title.add_predefined_expense' => 'Adding Predefined Expense',
242 'title.edit_predefined_expense' => 'Editing Predefined Expense',
243 'title.delete_predefined_expense' => 'Deleting Predefined Expense',
244 'title.reports' => 'Reports',
245 'title.report' => 'Report',
246 'title.send_report' => 'Sending Report',
247 'title.invoice' => 'Invoice',
248 'title.send_invoice' => 'Sending Invoice',
249 'title.charts' => 'Charts',
250 'title.projects' => 'Projects',
251 'title.add_project' => 'Adding Project',
252 'title.edit_project' => 'Editing Project',
253 'title.delete_project' => 'Deleting Project',
254 'title.tasks' => 'Tasks',
255 'title.add_task' => 'Adding Task',
256 'title.edit_task' => 'Editing Task',
257 'title.delete_task' => 'Deleting Task',
258 'title.users' => 'Users',
259 'title.add_user' => 'Adding User',
260 'title.edit_user' => 'Editing User',
261 'title.delete_user' => 'Deleting User',
262 'title.roles' => 'Roles',
263 'title.add_role' => 'Adding Role',
264 'title.edit_role' => 'Editing Role',
265 'title.delete_role' => 'Deleting Role',
266 'title.clients' => 'Clients',
267 'title.add_client' => 'Adding Client',
268 'title.edit_client' => 'Editing Client',
269 'title.delete_client' => 'Deleting Client',
270 'title.invoices' => 'Invoices',
271 'title.add_invoice' => 'Adding Invoice',
272 'title.view_invoice' => 'Viewing Invoice',
273 'title.delete_invoice' => 'Deleting Invoice',
274 'title.notifications' => 'Notifications',
275 'title.add_notification' => 'Adding Notification',
276 'title.edit_notification' => 'Editing Notification',
277 'title.delete_notification' => 'Deleting Notification',
278 'title.monthly_quotas' => 'Monthly Quotas',
279 'title.export' => 'Exporting Group Data',
280 'title.import' => 'Importing Group Data',
281 'title.options' => 'Options',
282 'title.profile' => 'Profile',
283 'title.group' => 'Group Settings',
284 'title.plugins' => 'Plugins',
285 'title.cf_custom_fields' => 'Custom Fields',
286 'title.cf_add_custom_field' => 'Adding Custom Field',
287 'title.cf_edit_custom_field' => 'Editing Custom Field',
288 'title.cf_delete_custom_field' => 'Deleting Custom Field',
289 'title.cf_dropdown_options' => 'Dropdown Options',
290 'title.cf_add_dropdown_option' => 'Adding Option',
291 'title.cf_edit_dropdown_option' => 'Editing Option',
292 'title.cf_delete_dropdown_option' => 'Deleting Option',
293 // NOTE TO TRANSLATORS: Locking is a feature to lock records from modifications (ex: weekly on Mondays we lock all previous weeks).
294 // It is also a name for the Locking plugin on the group settings page.
295 'title.locking' => 'Locking',
296 'title.week_view' => 'Week View',
297 'title.swap_roles' => 'Swapping Roles',
298 'title.work_units' => 'Work Units',
299
300 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
301 // Strings that are used in a single form must go to the specific form section.
302 'dropdown.all' => '--- all ---',
303 'dropdown.no' => '--- no ---',
304 'dropdown.current_day' => 'today',
305 'dropdown.previous_day' => 'yesterday',
306 'dropdown.selected_day' => 'day',
307 'dropdown.current_week' => 'this week',
308 'dropdown.previous_week' => 'previous week',
309 'dropdown.selected_week' => 'week',
310 'dropdown.current_month' => 'this month',
311 'dropdown.previous_month' => 'previous month',
312 'dropdown.selected_month' => 'month',
313 'dropdown.current_year' => 'this year',
314 'dropdown.previous_year' => 'previous year',
315 'dropdown.selected_year' => 'year',
316 'dropdown.all_time' => 'all time',
317 'dropdown.projects' => 'projects',
318 'dropdown.tasks' => 'tasks',
319 'dropdown.clients' => 'clients',
320 'dropdown.select' => '--- select ---',
321 'dropdown.select_invoice' => '--- select invoice ---',
322 'dropdown.status_active' => 'active',
323 'dropdown.status_inactive' => 'inactive',
324 'dropdown.delete' => 'delete',
325 'dropdown.do_not_delete' => 'do not delete',
326 'dropdown.paid' => 'paid',
327 'dropdown.not_paid' => 'not paid',
328
329 // Below is a section for strings that are used on individual forms. When a string is used only on one form it should be placed here.
330 // One exception is for closely related forms such as "Time" and "Editing Time Record" with similar controls. In such cases
331 // a string can be defined on the main form and used on related forms. The reasoning for this is to make translation effort easier.
332 // Strings that are used on multiple unrelated forms should be placed in shared sections such as label.<stringname>, etc.
333
334 // Login form. See example at https://timetracker.anuko.com/login.php.
335 'form.login.forgot_password' => 'Forgot password?',
336 'form.login.about' => 'Anuko <a href="https://www.anuko.com/lp/tt_2.htm" target="_blank">Time Tracker</a> is a simple, easy to use, open source time tracking system.',
337
338 // Resetting Password form. See example at https://timetracker.anuko.com/password_reset.php.
339 'form.reset_password.message' => 'Password reset request sent by email.',
340 'form.reset_password.email_subject' => 'Anuko Time Tracker password reset request',
341 'form.reset_password.email_body' => "Dear User,\n\nSomeone from IP %s requested your Anuko Time Tracker password reset. Please visit this link if you want to reset your password.\n\n%s\n\nAnuko Time Tracker is a simple, easy to use, open source time tracking system. Visit https://www.anuko.com for more information.\n\n",
342
343 // Changing Password form. See example at https://timetracker.anuko.com/password_change.php?ref=1.
344 'form.change_password.tip' => 'Type new password and click on Save.',
345
346 // Time form. See example at https://timetracker.anuko.com/time.php.
347 'form.time.duration_format' => '(hh:mm or 0.0h)',
348 'form.time.billable' => 'Billable',
349 'form.time.uncompleted' => 'Uncompleted',
350 'form.time.remaining_quota' => 'Remaining quota',
351 'form.time.over_quota' => 'Over quota',
352
353 // Editing Time Record form. See example at https://timetracker.anuko.com/time_edit.php (get there by editing an uncompleted time record).
354 'form.time_edit.uncompleted' => 'This record was saved with only start time. It is not an error.',
355
356 // Week view form. See example at https://timetracker.anuko.com/week.php.
357 'form.week.new_entry' => 'New entry',
358
359 // Reports form. See example at https://timetracker.anuko.com/reports.php
360 'form.reports.save_as_favorite' => 'Save as favorite',
361 'form.reports.confirm_delete' => 'Are you sure you want to delete this favorite report?',
362 'form.reports.include_billable' => 'billable',
363 'form.reports.include_not_billable' => 'not billable',
364 'form.reports.include_invoiced' => 'invoiced',
365 'form.reports.include_not_invoiced' => 'not invoiced',
366 'form.reports.select_period' => 'Select time period',
367 'form.reports.set_period' => 'or set dates',
368 'form.reports.show_fields' => 'Show fields',
369 'form.reports.group_by' => 'Group by',
370 'form.reports.group_by_no' => '--- no grouping ---',
371 'form.reports.group_by_date' => 'date',
372 'form.reports.group_by_user' => 'user',
373 'form.reports.group_by_client' => 'client',
374 'form.reports.group_by_project' => 'project',
375 'form.reports.group_by_task' => 'task',
376
377 // Report form. See example at https://timetracker.anuko.com/report.php
378 // (after generating a report at https://timetracker.anuko.com/reports.php).
379 'form.report.export' => 'Export',
380 'form.report.assign_to_invoice' => 'Assign to invoice',
381
382 // Invoice form. See example at https://timetracker.anuko.com/invoice.php
383 // (you can get to this form after generating a report).
384 'form.invoice.number' => 'Invoice number',
385 'form.invoice.person' => 'Person',
386
387 // Deleting Invoice form. See example at https://timetracker.anuko.com/invoice_delete.php
388 'form.invoice.invoice_to_delete' => 'Invoice to delete',
389 'form.invoice.invoice_entries' => 'Invoice entries',
390 'form.invoice.confirm_deleting_entries' => 'Please confirm deleting invoice entries from Time Tracker.',
391
392 // Charts form. See example at https://timetracker.anuko.com/charts.php
393 'form.charts.interval' => 'Interval',
394 'form.charts.chart' => 'Chart',
395
396 // Projects form. See example at https://timetracker.anuko.com/projects.php
397 'form.projects.active_projects' => 'Active Projects',
398 'form.projects.inactive_projects' => 'Inactive Projects',
399
400 // Tasks form. See example at https://timetracker.anuko.com/tasks.php
401 'form.tasks.active_tasks' => 'Active Tasks',
402 'form.tasks.inactive_tasks' => 'Inactive Tasks',
403
404 // Users form. See example at https://timetracker.anuko.com/users.php
405 'form.users.active_users' => 'Active Users',
406 'form.users.inactive_users' => 'Inactive Users',
407 'form.users.uncompleted_entry' => 'User has an uncompleted time entry',
408 'form.users.role' => 'Role',
409 'form.users.manager' => 'Manager',
410 'form.users.comanager' => 'Co-manager',
411 'form.users.rate' => 'Rate',
412 'form.users.default_rate' => 'Default hourly rate',
413
414 // Editing User form. See example at https://timetracker.anuko.com/user_edit.php
415 'form.user_edit.swap_roles' => 'Swap roles',
416
417  // Roles form. See example at https://timetracker.anuko.com/roles.php
418 'form.roles.active_roles' => 'Active Roles',
419 'form.roles.inactive_roles' => 'Inactive Roles',
420 'form.roles.rank' => 'Rank',
421 'form.roles.rights' => 'Rights',
422 'form.roles.assigned' => 'Assigned',
423 'form.roles.not_assigned' => 'Not assigned',
424
425 // Clients form. See example at https://timetracker.anuko.com/clients.php
426 'form.clients.active_clients' => 'Active Clients',
427 'form.clients.inactive_clients' => 'Inactive Clients',
428
429 // Deleting Client form. See example at https://timetracker.anuko.com/client_delete.php
430 'form.client.client_to_delete' => 'Client to delete',
431 'form.client.client_entries' => 'Client entries',
432
433 // Exporting Group Data form. See example at https://timetracker.anuko.com/export.php
434 'form.export.hint' => 'You can export all group data into an xml file. It could be useful if you are migrating data to your own server.',
435 'form.export.compression' => 'Compression',
436 'form.export.compression_none' => 'none',
437 'form.export.compression_bzip' => 'bzip',
438
439 // Importing Group Data form. See example at https://timetracker.anuko.com/import.php (login as admin first).
440 'form.import.hint' => 'Import group data from an xml file.',
441 'form.import.file' => 'Select file',
442 'form.import.success' => 'Import completed successfully.',
443
444 // Groups form. See example at https://timetracker.anuko.com/admin_groups.php (login as admin first).
445 'form.groups.hint' => 'Create a new group by creating a new group manager account.<br>You can also import group data from an xml file from another Anuko Time Tracker server (no login collisions are allowed).',
446
447 // Group Settings form. See example at https://timetracker.anuko.com/group_edit.php.
448 'form.group_edit.12_hours' => '12 hours',
449 'form.group_edit.24_hours' => '24 hours',
450 'form.group_edit.show_holidays' => 'Show holidays',
451 'form.group_edit.tracking_mode' => 'Tracking mode',
452 'form.group_edit.mode_time' => 'time',
453 'form.group_edit.mode_projects' => 'projects',
454 'form.group_edit.mode_projects_and_tasks' => 'projects and tasks',
455 'form.group_edit.record_type' => 'Record type',
456 'form.group_edit.type_all' => 'all',
457 'form.group_edit.type_start_finish' => 'start and finish',
458 'form.group_edit.type_duration' => 'duration',
459 'form.group_edit.punch_mode' => 'Punch mode',
460 'form.group_edit.allow_overlap' => 'Allow overlap',
461 'form.group_edit.future_entries' => 'Future entries',
462 'form.group_edit.uncompleted_indicators' => 'Uncompleted indicators',
463 'form.group_edit.allow_ip' => 'Allow IP',
464
465 // Deleting Group form. See example at https://timetracker.anuko.com/delete_group.php
466 'form.group_delete.hint' => 'Are you sure you want to delete the entire group?',
467
468 // Mail form. See example at https://timetracker.anuko.com/report_send.php when emailing a report.
469 'form.mail.from' => 'From',
470 'form.mail.to' => 'To',
471 'form.mail.report_subject' => 'Time Tracker Report',
472 'form.mail.footer' => 'Anuko Time Tracker is a simple, easy to use, open source<br>time tracking system. Visit <a href="https://www.anuko.com">www.anuko.com</a> for more information.',
473 'form.mail.report_sent' => 'Report sent.',
474 'form.mail.invoice_sent' => 'Invoice sent.',
475
476 // Quotas configuration form. See example at https://timetracker.anuko.com/quotas.php after enabling Monthly quotas plugin.
477 'form.quota.year' => 'Year',
478 'form.quota.month' => 'Month',
479 'form.quota.quota' => 'Quota',
480 'form.quota.workday_hours' => 'Hours in work day',
481 'form.quota.hint' => 'If values are empty, quotas are calculated automatically based on workday hours and holidays.',
482
483 // Swap roles form. See example at https://timetracker.anuko.com/swap_roles.php.
484 'form.swap.hint' => 'Demote yourself to a lower role by swapping roles with someone else. This cannot be undone.',
485 'form.swap.swap_with' => 'Swap roles with',
486
487 // Work Units configuration form. See example at https://timetracker.anuko.com/work_units.php after enabling Work units plugin.
488 'form.work_units.minutes_in_unit' => 'Minutes in unit',
489 'form.work_units.1st_unit_threshold' => '1st unit threshold',
490
491 // Roles and rights. These strings are used in multiple places. Grouped here to provide consistent translations.
492 'role.user.label' => 'User',
493 'role.user.low_case_label' => 'user',
494 'role.user.description' => 'A regular member without management rights.',
495 'role.client.label' => 'Client',
496 'role.client.low_case_label' => 'client',
497 'role.client.description' => 'A client can view its own reports, charts, and invoices.',
498 'role.supervisor.label' => 'Supervisor',
499 'role.supervisor.low_case_label' => 'supervisor',
500 'role.supervisor.description' => 'A person with a small set of management rights.',
501 'role.comanager.label' => 'Co-manager',
502 'role.comanager.low_case_label' => 'co-manager',
503 'role.comanager.description' => 'A person with a big set of management functions.',
504 'role.manager.label' => 'Manager',
505 'role.manager.low_case_label' => 'manager',
506 'role.manager.description' => 'Group manager. Can do most of things for a group.',
507 'role.top_manager.label' => 'Top manager',
508 'role.top_manager.low_case_label' => 'top manager',
509 'role.top_manager.description' => 'Top group manager. Can do everything in a tree of groups.',
510 'role.admin.label' => 'Administrator',
511 'role.admin.low_case_label' => 'administrator',
512 'role.admin.description' => 'Site adminsitrator.',
513 );