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