Introduced form.group_edit.copy_warning 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.invoice_exists' => 'Invoice with this number already exists.',
89 'error.role_exists' => 'Role with this rank already exists.',
90 'error.no_invoiceable_items' => 'There are no invoiceable items.',
91 'error.no_login' => 'No user with this login.',
92 'error.no_groups' => 'Your database is empty. Login as admin and create a new group.',
93 'error.upload' => 'File upload error.',
94 'error.range_locked' => 'Date range is locked.',
95 'error.mail_send' => 'Error sending mail. Use MAIL_SMTP_DEBUG for diagnostics.',
96 'error.no_email' => 'No email associated with this login.',
97 'error.uncompleted_exists' => 'Uncompleted entry already exists. Close or delete it.',
98 'error.goto_uncompleted' => 'Go to uncompleted entry.',
99 'error.overlap' => 'Time interval overlaps with existing records.',
100 'error.future_date' => 'Date is in future.',
101 'error.xml' => 'Error in XML file at line %d: %s.',
102 'error.cannot_import' => 'Cannot import: %s.',
103 'error.format' => 'Invalid file format.',
104
105 // Warning messages.
106 'warn.sure' => 'Are you sure?',
107
108 // Success messages.
109 'msg.success' => 'Operation completed successfully.',
110
111 // Labels for buttons.
112 'button.login' => 'Login',
113 'button.now' => 'Now',
114 'button.save' => 'Save',
115 'button.copy' => 'Copy',
116 'button.cancel' => 'Cancel',
117 'button.submit' => 'Submit',
118 'button.add' => 'Add',
119 'button.delete' => 'Delete',
120 'button.generate' => 'Generate',
121 'button.reset_password' => 'Reset password',
122 'button.send' => 'Send',
123 'button.send_by_email' => 'Send by e-mail',
124 'button.create_group' => 'Create group',
125 'button.export' => 'Export group',
126 'button.import' => 'Import group',
127 'button.close' => 'Close',
128 'button.stop' => 'Stop',
129
130 // Labels for controls on forms. Labels in this section are used on multiple forms.
131 'label.group_name' => 'Group name',
132 'label.address' => 'Address',
133 'label.currency' => 'Currency',
134 'label.manager_name' => 'Manager name',
135 'label.manager_login' => 'Manager login',
136 'label.person_name' => 'Name',
137 'label.thing_name' => 'Name',
138 'label.login' => 'Login',
139 'label.password' => 'Password',
140 'label.confirm_password' => 'Confirm password',
141 'label.email' => 'Email',
142 'label.cc' => 'Cc',
143 'label.bcc' => 'Bcc',
144 'label.subject' => 'Subject',
145 'label.date' => 'Date',
146 'label.start_date' => 'Start date',
147 'label.end_date' => 'End date',
148 'label.user' => 'User',
149 'label.users' => 'Users',
150 'label.group' => 'Group',
151 'label.subgroups' => 'Subgroups',
152 'label.roles' => 'Roles',
153 'label.client' => 'Client',
154 'label.clients' => 'Clients',
155 'label.option' => 'Option',
156 'label.invoice' => 'Invoice',
157 'label.project' => 'Project',
158 'label.projects' => 'Projects',
159 'label.task' => 'Task',
160 'label.tasks' => 'Tasks',
161 'label.description' => 'Description',
162 'label.start' => 'Start',
163 'label.finish' => 'Finish',
164 'label.duration' => 'Duration',
165 'label.note' => 'Note',
166 'label.notes' => 'Notes',
167 'label.item' => 'Item',
168 'label.cost' => 'Cost',
169 'label.ip' => 'IP',
170 'label.day_total' => 'Day total',
171 'label.week_total' => 'Week total',
172 'label.month_total' => 'Month total',
173 'label.today' => 'Today',
174 'label.view' => 'View',
175 'label.edit' => 'Edit',
176 'label.delete' => 'Delete',
177 'label.configure' => 'Configure',
178 'label.select_all' => 'Select all',
179 'label.select_none' => 'Deselect all',
180 'label.day_view' => 'Day view',
181 'label.week_view' => 'Week view',
182 'label.id' => 'ID',
183 'label.language' => 'Language',
184 'label.decimal_mark' => 'Decimal mark',
185 'label.date_format' => 'Date format',
186 'label.time_format' => 'Time format',
187 'label.week_start' => 'First day of week',
188 'label.comment' => 'Comment',
189 'label.status' => 'Status',
190 'label.tax' => 'Tax',
191 'label.subtotal' => 'Subtotal',
192 'label.total' => 'Total',
193 'label.client_name' => 'Client name',
194 'label.client_address' => 'Client address',
195 'label.or' => 'or',
196 'label.error' => 'Error',
197 'label.ldap_hint' => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
198 'label.required_fields' => '* - required fields',
199 'label.on_behalf' => 'on behalf of',
200 'label.role_manager' => '(manager)',
201 'label.role_comanager' => '(co-manager)',
202 'label.role_admin' => '(administrator)',
203 'label.page' => 'Page',
204 'label.condition' => 'Condition',
205 'label.yes' => 'yes',
206 'label.no' => 'no',
207 // Labels for plugins (extensions to Time Tracker that provide additional features).
208 'label.custom_fields' => 'Custom fields',
209 'label.monthly_quotas' => 'Monthly quotas',
210 'label.type' => 'Type',
211 'label.type_dropdown' => 'dropdown',
212 'label.type_text' => 'text',
213 'label.required' => 'Required',
214 'label.fav_report' => 'Favorite report',
215 'label.schedule' => 'Schedule',
216 'label.what_is_it' => 'What is it?',
217 'label.expense' => 'Expense',
218 'label.quantity' => 'Quantity',
219 'label.paid_status' => 'Paid status',
220 'label.paid' => 'Paid',
221 'label.mark_paid' => 'Mark paid',
222 'label.week_note' => 'Week note',
223 'label.week_list' => 'Week list',
224 'label.work_units' => 'Work units',
225 'label.work_units_short' => 'Units',
226 'label.totals_only' => 'Totals only',
227
228 // Form titles.
229 'title.error' => 'Error',
230 'title.success' => 'Success',
231 'title.login' => 'Login',
232 'title.groups' => 'Groups',
233 'title.subgroups' => 'Subgroups',
234 'title.add_group' => 'Adding Group',
235 'title.edit_group' => 'Editing Group',
236 'title.delete_group' => 'Deleting Group',
237 'title.reset_password' => 'Resetting Password',
238 'title.change_password' => 'Changing Password',
239 'title.time' => 'Time',
240 'title.edit_time_record' => 'Editing Time Record',
241 'title.delete_time_record' => 'Deleting Time Record',
242 'title.expenses' => 'Expenses',
243 'title.edit_expense' => 'Editing Expense Item',
244 'title.delete_expense' => 'Deleting Expense Item',
245 'title.predefined_expenses' => 'Predefined Expenses',
246 'title.add_predefined_expense' => 'Adding Predefined Expense',
247 'title.edit_predefined_expense' => 'Editing Predefined Expense',
248 'title.delete_predefined_expense' => 'Deleting Predefined Expense',
249 'title.reports' => 'Reports',
250 'title.report' => 'Report',
251 'title.send_report' => 'Sending Report',
252 'title.invoice' => 'Invoice',
253 'title.send_invoice' => 'Sending Invoice',
254 'title.charts' => 'Charts',
255 'title.projects' => 'Projects',
256 'title.add_project' => 'Adding Project',
257 'title.edit_project' => 'Editing Project',
258 'title.delete_project' => 'Deleting Project',
259 'title.tasks' => 'Tasks',
260 'title.add_task' => 'Adding Task',
261 'title.edit_task' => 'Editing Task',
262 'title.delete_task' => 'Deleting Task',
263 'title.users' => 'Users',
264 'title.add_user' => 'Adding User',
265 'title.edit_user' => 'Editing User',
266 'title.delete_user' => 'Deleting User',
267 'title.roles' => 'Roles',
268 'title.add_role' => 'Adding Role',
269 'title.edit_role' => 'Editing Role',
270 'title.delete_role' => 'Deleting Role',
271 'title.clients' => 'Clients',
272 'title.add_client' => 'Adding Client',
273 'title.edit_client' => 'Editing Client',
274 'title.delete_client' => 'Deleting Client',
275 'title.invoices' => 'Invoices',
276 'title.add_invoice' => 'Adding Invoice',
277 'title.view_invoice' => 'Viewing Invoice',
278 'title.delete_invoice' => 'Deleting Invoice',
279 'title.notifications' => 'Notifications',
280 'title.add_notification' => 'Adding Notification',
281 'title.edit_notification' => 'Editing Notification',
282 'title.delete_notification' => 'Deleting Notification',
283 'title.monthly_quotas' => 'Monthly Quotas',
284 'title.export' => 'Exporting Group Data',
285 'title.import' => 'Importing Group Data',
286 'title.options' => 'Options',
287 'title.profile' => 'Profile',
288 'title.plugins' => 'Plugins',
289 'title.cf_custom_fields' => 'Custom Fields',
290 'title.cf_add_custom_field' => 'Adding Custom Field',
291 'title.cf_edit_custom_field' => 'Editing Custom Field',
292 'title.cf_delete_custom_field' => 'Deleting Custom Field',
293 'title.cf_dropdown_options' => 'Dropdown Options',
294 'title.cf_add_dropdown_option' => 'Adding Option',
295 'title.cf_edit_dropdown_option' => 'Editing Option',
296 'title.cf_delete_dropdown_option' => 'Deleting Option',
297 // NOTE TO TRANSLATORS: Locking is a feature to lock records from modifications (ex: weekly on Mondays we lock all previous weeks).
298 // It is also a name for the Locking plugin on the group settings page.
299 'title.locking' => 'Locking',
300 'title.week_view' => 'Week View',
301 'title.swap_roles' => 'Swapping Roles',
302 'title.work_units' => 'Work Units',
303
304 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
305 // Strings that are used in a single form must go to the specific form section.
306 'dropdown.all' => '--- all ---',
307 'dropdown.no' => '--- no ---',
308 'dropdown.current_day' => 'today',
309 'dropdown.previous_day' => 'yesterday',
310 'dropdown.selected_day' => 'day',
311 'dropdown.current_week' => 'this week',
312 'dropdown.previous_week' => 'previous week',
313 'dropdown.selected_week' => 'week',
314 'dropdown.current_month' => 'this month',
315 'dropdown.previous_month' => 'previous month',
316 'dropdown.selected_month' => 'month',
317 'dropdown.current_year' => 'this year',
318 'dropdown.previous_year' => 'previous year',
319 'dropdown.selected_year' => 'year',
320 'dropdown.all_time' => 'all time',
321 'dropdown.projects' => 'projects',
322 'dropdown.tasks' => 'tasks',
323 'dropdown.clients' => 'clients',
324 'dropdown.select' => '--- select ---',
325 'dropdown.select_invoice' => '--- select invoice ---',
326 'dropdown.status_active' => 'active',
327 'dropdown.status_inactive' => 'inactive',
328 'dropdown.delete' => 'delete',
329 'dropdown.do_not_delete' => 'do not delete',
330 'dropdown.paid' => 'paid',
331 'dropdown.not_paid' => 'not paid',
332
333 // 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.
334 // One exception is for closely related forms such as "Time" and "Editing Time Record" with similar controls. In such cases
335 // a string can be defined on the main form and used on related forms. The reasoning for this is to make translation effort easier.
336 // Strings that are used on multiple unrelated forms should be placed in shared sections such as label.<stringname>, etc.
337
338 // Login form. See example at https://timetracker.anuko.com/login.php.
339 'form.login.forgot_password' => 'Forgot password?',
340 '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.',
341
342 // Resetting Password form. See example at https://timetracker.anuko.com/password_reset.php.
343 'form.reset_password.message' => 'Password reset request sent by email.',
344 'form.reset_password.email_subject' => 'Anuko Time Tracker password reset request',
345 '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",
346
347 // Changing Password form. See example at https://timetracker.anuko.com/password_change.php?ref=1.
348 'form.change_password.tip' => 'Type new password and click on Save.',
349
350 // Time form. See example at https://timetracker.anuko.com/time.php.
351 'form.time.duration_format' => '(hh:mm or 0.0h)',
352 'form.time.billable' => 'Billable',
353 'form.time.uncompleted' => 'Uncompleted',
354 'form.time.remaining_quota' => 'Remaining quota',
355 'form.time.over_quota' => 'Over quota',
356
357 // Editing Time Record form. See example at https://timetracker.anuko.com/time_edit.php (get there by editing an uncompleted time record).
358 'form.time_edit.uncompleted' => 'This record was saved with only start time. It is not an error.',
359
360 // Week view form. See example at https://timetracker.anuko.com/week.php.
361 'form.week.new_entry' => 'New entry',
362
363 // Reports form. See example at https://timetracker.anuko.com/reports.php
364 'form.reports.save_as_favorite' => 'Save as favorite',
365 'form.reports.confirm_delete' => 'Are you sure you want to delete this favorite report?',
366 'form.reports.include_billable' => 'billable',
367 'form.reports.include_not_billable' => 'not billable',
368 'form.reports.include_invoiced' => 'invoiced',
369 'form.reports.include_not_invoiced' => 'not invoiced',
370 'form.reports.select_period' => 'Select time period',
371 'form.reports.set_period' => 'or set dates',
372 'form.reports.show_fields' => 'Show fields',
373 'form.reports.group_by' => 'Group by',
374 'form.reports.group_by_no' => '--- no grouping ---',
375 'form.reports.group_by_date' => 'date',
376 'form.reports.group_by_user' => 'user',
377 'form.reports.group_by_client' => 'client',
378 'form.reports.group_by_project' => 'project',
379 'form.reports.group_by_task' => 'task',
380
381 // Report form. See example at https://timetracker.anuko.com/report.php
382 // (after generating a report at https://timetracker.anuko.com/reports.php).
383 'form.report.export' => 'Export',
384 'form.report.assign_to_invoice' => 'Assign to invoice',
385
386 // Invoice form. See example at https://timetracker.anuko.com/invoice.php
387 // (you can get to this form after generating a report).
388 'form.invoice.number' => 'Invoice number',
389 'form.invoice.person' => 'Person',
390
391 // Deleting Invoice form. See example at https://timetracker.anuko.com/invoice_delete.php
392 'form.invoice.invoice_to_delete' => 'Invoice to delete',
393 'form.invoice.invoice_entries' => 'Invoice entries',
394 'form.invoice.confirm_deleting_entries' => 'Please confirm deleting invoice entries from Time Tracker.',
395
396 // Charts form. See example at https://timetracker.anuko.com/charts.php
397 'form.charts.interval' => 'Interval',
398 'form.charts.chart' => 'Chart',
399
400 // Projects form. See example at https://timetracker.anuko.com/projects.php
401 'form.projects.active_projects' => 'Active Projects',
402 'form.projects.inactive_projects' => 'Inactive Projects',
403
404 // Tasks form. See example at https://timetracker.anuko.com/tasks.php
405 'form.tasks.active_tasks' => 'Active Tasks',
406 'form.tasks.inactive_tasks' => 'Inactive Tasks',
407
408 // Users form. See example at https://timetracker.anuko.com/users.php
409 'form.users.active_users' => 'Active Users',
410 'form.users.inactive_users' => 'Inactive Users',
411 'form.users.uncompleted_entry' => 'User has an uncompleted time entry',
412 'form.users.role' => 'Role',
413 'form.users.manager' => 'Manager',
414 'form.users.comanager' => 'Co-manager',
415 'form.users.rate' => 'Rate',
416 'form.users.default_rate' => 'Default hourly rate',
417
418 // Editing User form. See example at https://timetracker.anuko.com/user_edit.php
419 'form.user_edit.swap_roles' => 'Swap roles',
420
421  // Roles form. See example at https://timetracker.anuko.com/roles.php
422 'form.roles.active_roles' => 'Active Roles',
423 'form.roles.inactive_roles' => 'Inactive Roles',
424 'form.roles.rank' => 'Rank',
425 'form.roles.rights' => 'Rights',
426 'form.roles.assigned' => 'Assigned',
427 'form.roles.not_assigned' => 'Not assigned',
428
429 // Clients form. See example at https://timetracker.anuko.com/clients.php
430 'form.clients.active_clients' => 'Active Clients',
431 'form.clients.inactive_clients' => 'Inactive Clients',
432
433 // Deleting Client form. See example at https://timetracker.anuko.com/client_delete.php
434 'form.client.client_to_delete' => 'Client to delete',
435 'form.client.client_entries' => 'Client entries',
436
437 // Exporting Group Data form. See example at https://timetracker.anuko.com/export.php
438 '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.',
439 'form.export.compression' => 'Compression',
440 'form.export.compression_none' => 'none',
441 'form.export.compression_bzip' => 'bzip',
442
443 // Importing Group Data form. See example at https://timetracker.anuko.com/import.php (login as admin first).
444 'form.import.hint' => 'Import group data from an xml file.',
445 'form.import.file' => 'Select file',
446 'form.import.success' => 'Import completed successfully.',
447
448 // Groups form. See example at https://timetracker.anuko.com/admin_groups.php (login as admin first).
449 '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).',
450
451 // Group Settings form. See example at https://timetracker.anuko.com/group_edit.php.
452 'form.group_edit.12_hours' => '12 hours',
453 'form.group_edit.24_hours' => '24 hours',
454 'form.group_edit.show_holidays' => 'Show holidays',
455 'form.group_edit.tracking_mode' => 'Tracking mode',
456 'form.group_edit.mode_time' => 'time',
457 'form.group_edit.mode_projects' => 'projects',
458 'form.group_edit.mode_projects_and_tasks' => 'projects and tasks',
459 'form.group_edit.record_type' => 'Record type',
460 'form.group_edit.type_all' => 'all',
461 'form.group_edit.type_start_finish' => 'start and finish',
462 'form.group_edit.type_duration' => 'duration',
463 'form.group_edit.punch_mode' => 'Punch mode',
464 'form.group_edit.allow_overlap' => 'Allow overlap',
465 'form.group_edit.future_entries' => 'Future entries',
466 'form.group_edit.uncompleted_indicators' => 'Uncompleted indicators',
467 'form.group_edit.copy_warning' => 'Warn on copy',
468 'form.group_edit.allow_ip' => 'Allow IP',
469
470 // Deleting Group form. See example at https://timetracker.anuko.com/delete_group.php
471 'form.group_delete.hint' => 'Are you sure you want to delete the entire group?',
472
473 // Mail form. See example at https://timetracker.anuko.com/report_send.php when emailing a report.
474 'form.mail.from' => 'From',
475 'form.mail.to' => 'To',
476 'form.mail.report_subject' => 'Time Tracker Report',
477 '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.',
478 'form.mail.report_sent' => 'Report sent.',
479 'form.mail.invoice_sent' => 'Invoice sent.',
480
481 // Quotas configuration form. See example at https://timetracker.anuko.com/quotas.php after enabling Monthly quotas plugin.
482 'form.quota.year' => 'Year',
483 'form.quota.month' => 'Month',
484 'form.quota.quota' => 'Quota',
485 'form.quota.workday_hours' => 'Hours in work day',
486 'form.quota.hint' => 'If values are empty, quotas are calculated automatically based on workday hours and holidays.',
487
488 // Swap roles form. See example at https://timetracker.anuko.com/swap_roles.php.
489 'form.swap.hint' => 'Demote yourself to a lower role by swapping roles with someone else. This cannot be undone.',
490 'form.swap.swap_with' => 'Swap roles with',
491
492 // Work Units configuration form. See example at https://timetracker.anuko.com/work_units.php after enabling Work units plugin.
493 'form.work_units.minutes_in_unit' => 'Minutes in unit',
494 'form.work_units.1st_unit_threshold' => '1st unit threshold',
495
496 // Roles and rights. These strings are used in multiple places. Grouped here to provide consistent translations.
497 'role.user.label' => 'User',
498 'role.user.low_case_label' => 'user',
499 'role.user.description' => 'A regular member without management rights.',
500 'role.client.label' => 'Client',
501 'role.client.low_case_label' => 'client',
502 'role.client.description' => 'A client can view its own reports, charts, and invoices.',
503 'role.supervisor.label' => 'Supervisor',
504 'role.supervisor.low_case_label' => 'supervisor',
505 'role.supervisor.description' => 'A person with a small set of management rights.',
506 'role.comanager.label' => 'Co-manager',
507 'role.comanager.low_case_label' => 'co-manager',
508 'role.comanager.description' => 'A person with a big set of management functions.',
509 'role.manager.label' => 'Manager',
510 'role.manager.low_case_label' => 'manager',
511 'role.manager.description' => 'Group manager. Can do most of things for a group.',
512 'role.top_manager.label' => 'Top manager',
513 'role.top_manager.low_case_label' => 'top manager',
514 'role.top_manager.description' => 'Top group manager. Can do everything in a tree of groups.',
515 'role.admin.label' => 'Administrator',
516 'role.admin.low_case_label' => 'administrator',
517 'role.admin.description' => 'Site adminsitrator.',
518 );