750ca4a6d878e06fd03e36a8d711c25c426a6827
[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 the 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_team' => 'Create Team',
48 'menu.profile' => 'Profile',
49 'menu.time' => 'Time',
50 'menu.expenses' => 'Expenses',
51 'menu.reports' => 'Reports',
52 'menu.charts' => 'Charts',
53 'menu.projects' => 'Projects',
54 'menu.tasks' => 'Tasks',
55 'menu.users' => 'Users',
56 'menu.teams' => 'Teams',
57 'menu.export' => 'Export',
58 'menu.clients' => 'Clients',
59 'menu.options' => 'Options',
60
61 // Footer - strings on the bottom of most pages.
62 'footer.contribute_msg' => 'You can contribute to Time Tracker in different ways.',
63 'footer.credits' => 'Credits',
64 'footer.license' => 'License',
65 'footer.improve' => 'Contribute', // Translators: this could mean "Improve", if it makes better sense in your language.
66                                   // This is a link to a webpage that describes how to contribute to the project.
67
68 // Error messages.
69 'error.access_denied' => 'Access denied.',
70 'error.sys' => 'System error.',
71 'error.db' => 'Database error.',
72 'error.field' => 'Incorrect "{0}" data.',
73 'error.empty' => 'Field "{0}" is empty.',
74 'error.not_equal' => 'Field "{0}" is not equal to field "{1}".',
75 'error.interval' => 'Field "{0}" must be greater than "{1}".',
76 'error.project' => 'Select project.',
77 'error.task' => 'Select task.',
78 'error.client' => 'Select client.',
79 'error.report' => 'Select report.',
80 'error.auth' => 'Incorrect login or password.',
81 'error.user_exists' => 'User with this login already exists.',
82 'error.project_exists' => 'Project with this name already exists.',
83 'error.task_exists' => 'Task with this name already exists.',
84 'error.client_exists' => 'Client with this name already exists.',
85 'error.invoice_exists' => 'Invoice with this number already exists.',
86 'error.no_invoiceable_items' => 'There are no invoiceable items.',
87 'error.no_login' => 'No user with this login.',
88 'error.no_teams' => 'Your database is empty. Login as admin and create a new team.',
89 'error.upload' => 'File upload error.',
90 'error.range_locked' => 'Date range is locked.',
91 'error.mail_send' => 'Error sending mail.',
92 'error.no_email' => 'No email associated with this login.',
93 'error.uncompleted_exists' => 'Uncompleted entry already exists. Close or delete it.',
94 'error.goto_uncompleted' => 'Go to uncompleted entry.',
95 'error.overlap' => 'Time interval overlaps with existing records.',
96 'error.future_date' => 'Date is in future.',
97
98 // Labels for buttons.
99 'button.login' => 'Login',
100 'button.now' => 'Now',
101 'button.save' => 'Save',
102 'button.copy' => 'Copy',
103 'button.cancel' => 'Cancel',
104 'button.submit' => 'Submit',
105 'button.add_user' => 'Add user',
106 'button.add_project' => 'Add project',
107 'button.add_task' => 'Add task',
108 'button.add_client' => 'Add client',
109 'button.add_invoice' => 'Add invoice',
110 'button.add_option' => 'Add option',
111 'button.add' => 'Add',
112 'button.generate' => 'Generate',
113 'button.reset_password' => 'Reset password',
114 'button.send' => 'Send',
115 'button.send_by_email' => 'Send by e-mail',
116 'button.create_team' => 'Create team',
117 'button.export' => 'Export team',
118 'button.import' => 'Import team',
119 'button.close' => 'Close',
120 'button.stop' => 'Stop',
121
122 // Labels for controls on forms. Labels in this section are used on multiple forms.
123 'label.team_name' => 'Team name',
124 'label.address' => 'Address',
125 'label.currency' => 'Currency',
126 'label.manager_name' => 'Manager name',
127 'label.manager_login' => 'Manager login',
128 'label.person_name' => 'Name',
129 'label.thing_name' => 'Name',
130 'label.login' => 'Login',
131 'label.password' => 'Password',
132 'label.confirm_password' => 'Confirm password',
133 'label.email' => 'Email',
134 'label.date' => 'Date',
135 'label.start_date' => 'Start date',
136 'label.end_date' => 'End date',
137 'label.user' => 'User',
138 'label.users' => 'Users',
139 'label.client' => 'Client',
140 'label.clients' => 'Clients',
141 'label.option' => 'Option',
142 'label.invoice' => 'Invoice',
143 'label.project' => 'Project',
144 'label.projects' => 'Projects',
145 'label.task' => 'Task',
146 'label.tasks' => 'Tasks',
147 'label.description' => 'Description',
148 'label.start' => 'Start',
149 'label.finish' => 'Finish',
150 'label.duration' => 'Duration',
151 'label.note' => 'Note',
152 'label.item' => 'Item',
153 'label.cost' => 'Cost',
154 'label.day_total' => 'Day total',
155 'label.week_total' => 'Week total',
156 'label.month_total' => 'Month total',
157 'label.today' => 'Today',
158 'label.total_hours' => 'Total hours',
159 'label.total_cost' => 'Total cost',
160 'label.view' => 'View',
161 'label.edit' => 'Edit',
162 'label.delete' => 'Delete',
163 'label.configure' => 'Configure',
164 'label.select_all' => 'Select all',
165 'label.select_none' => 'Deselect all',
166 'label.id' => 'ID',
167 'label.language' => 'Language',
168 'label.decimal_mark' => 'Decimal mark',
169 'label.date_format' => 'Date format',
170 'label.time_format' => 'Time format',
171 'label.week_start' => 'First day of week',
172 'label.comment' => 'Comment',
173 'label.status' => 'Status',
174 'label.tax' => 'Tax',
175 'label.subtotal' => 'Subtotal',
176 'label.total' => 'Total',
177 'label.client_name' => 'Client name',
178 'label.client_address' => 'Client address',
179 'label.or' => 'or',
180 'label.error' => 'Error',
181 'label.ldap_hint' => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
182 'label.required_fields' => '* - required fields',
183 'label.on_behalf' => 'on behalf of',
184 'label.role_manager' => '(manager)',
185 'label.role_comanager' => '(co-manager)',
186 'label.role_admin' => '(administrator)',
187 'label.page' => 'Page',
188 'label.condition' => 'Condition',
189 // Labels for plugins (extensions to Time Tracker that provide additional features).
190 'label.custom_fields' => 'Custom fields',
191 'label.monthly_quotas' => 'Monthly quotas',
192 'label.type' => 'Type',
193 'label.type_dropdown' => 'dropdown',
194 'label.type_text' => 'text',
195 'label.required' => 'Required',
196 'label.fav_report' => 'Favorite report',
197 'label.cron_schedule' => 'Cron schedule',
198 'label.what_is_it' => 'What is it?',
199 'label.expense' => 'Expense',
200 'label.quantity' => 'Quantity',
201
202 // Form titles.
203 'title.login' => 'Login',
204 'title.teams' => 'Teams',
205 'title.create_team' => 'Creating Team',
206 'title.edit_team' => 'Editing Team',
207 'title.delete_team' => 'Deleting Team',
208 'title.reset_password' => 'Resetting Password',
209 'title.change_password' => 'Changing Password',
210 'title.time' => 'Time',
211 'title.edit_time_record' => 'Editing Time Record',
212 'title.delete_time_record' => 'Deleting Time Record',
213 'title.expenses' => 'Expenses',
214 'title.edit_expense' => 'Editing Expense Item',
215 'title.delete_expense' => 'Deleting Expense Item',
216 'title.predefined_expenses' => 'Predefined Expenses',
217 'title.add_predefined_expense' => 'Adding Predefined Expense',
218 'title.edit_predefined_expense' => 'Editing Predefined Expense',
219 'title.delete_predefined_expense' => 'Deleting Predefined Expense',
220 'title.reports' => 'Reports',
221 'title.report' => 'Report',
222 'title.send_report' => 'Sending Report',
223 'title.invoice' => 'Invoice',
224 'title.send_invoice' => 'Sending Invoice',
225 'title.charts' => 'Charts',
226 'title.projects' => 'Projects',
227 'title.add_project' => 'Adding Project',
228 'title.edit_project' => 'Editing Project',
229 'title.delete_project' => 'Deleting Project',
230 'title.tasks' => 'Tasks',
231 'title.add_task' => 'Adding Task',
232 'title.edit_task' => 'Editing Task',
233 'title.delete_task' => 'Deleting Task',
234 'title.users' => 'Users',
235 'title.add_user' => 'Adding User',
236 'title.edit_user' => 'Editing User',
237 'title.delete_user' => 'Deleting User',
238 'title.clients' => 'Clients',
239 'title.add_client' => 'Adding Client',
240 'title.edit_client' => 'Editing Client',
241 'title.delete_client' => 'Deleting Client',
242 'title.invoices' => 'Invoices',
243 'title.add_invoice' => 'Adding Invoice',
244 'title.view_invoice' => 'Viewing Invoice',
245 'title.delete_invoice' => 'Deleting Invoice',
246 'title.notifications' => 'Notifications',
247 'title.add_notification' => 'Adding Notification',
248 'title.edit_notification' => 'Editing Notification',
249 'title.delete_notification' => 'Deleting Notification',
250 'title.monthly_quotas' => 'Monthly Quotas',
251 'title.export' => 'Exporting Team Data',
252 'title.import' => 'Importing Team Data',
253 'title.options' => 'Options',
254 'title.profile' => 'Profile',
255 'title.cf_custom_fields' => 'Custom Fields',
256 'title.cf_add_custom_field' => 'Adding Custom Field',
257 'title.cf_edit_custom_field' => 'Editing Custom Field',
258 'title.cf_delete_custom_field' => 'Deleting Custom Field',
259 'title.cf_dropdown_options' => 'Dropdown Options',
260 'title.cf_add_dropdown_option' => 'Adding Option',
261 'title.cf_edit_dropdown_option' => 'Editing Option',
262 'title.cf_delete_dropdown_option' => 'Deleting Option',
263 // NOTE TO TRANSLATORS: Locking is a feature to lock records from modifications (ex: weekly on Mondays we lock all previous weeks).
264 // It is also a name for the Locking plugin on the Team profile page.
265 'title.locking' => 'Locking',
266
267 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
268 // Strings that are used in a single form must go to the specific form section.
269 'dropdown.all' => '--- all ---',
270 'dropdown.no' => '--- no ---',
271 // NOTE TO TRANSLATORS: dropdown.this_day does not necessarily means "today". It means a specific ("this") day selected on calendar. See Charts.
272 'dropdown.this_day' => 'this day',
273 'dropdown.this_week' => 'this week',
274 'dropdown.last_week' => 'last week',
275 'dropdown.this_month' => 'this month',
276 'dropdown.last_month' => 'last month',
277 'dropdown.this_year' => 'this year',
278 'dropdown.all_time' => 'all time',
279 'dropdown.projects' => 'projects',
280 'dropdown.tasks' => 'tasks',
281 'dropdown.clients' => 'clients',
282 'dropdown.select' => '--- select ---',
283 'dropdown.select_invoice' => '--- select invoice ---',
284 'dropdown.status_active' => 'active',
285 'dropdown.status_inactive' => 'inactive',
286 'dropdown.delete'=>'delete',
287 'dropdown.do_not_delete'=>'do not delete',
288
289 // 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.
290 // One exception is for closely related forms such as "Time" and "Editing Time Record" with similar controls. In such cases
291 // a string can be defined on the main form and used on related forms. The reasoning for this is to make translation effort easier.
292 // Strings that are used on multiple unrelated forms should be placed in shared sections such as label.<stringname>, etc.
293
294 // Login form. See example at https://timetracker.anuko.com/login.php.
295 'form.login.forgot_password' => 'Forgot password?',
296 '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.',
297
298 // Resetting Password form. See example at https://timetracker.anuko.com/password_reset.php.
299 'form.reset_password.message' => 'Password reset request sent by email.',
300 'form.reset_password.email_subject' => 'Anuko Time Tracker password reset request',
301 'form.reset_password.email_body' => "Dear User,\n\nSomeone, possibly you, 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",
302
303 // Changing Password form. See example at https://timetracker.anuko.com/password_change.php?ref=1.
304 'form.change_password.tip' => 'Type new password and click on Save.',
305
306 // Time form. See example at https://timetracker.anuko.com/time.php.
307 'form.time.duration_format' => '(hh:mm or 0.0h)',
308 'form.time.billable' => 'Billable',
309 'form.time.uncompleted' => 'Uncompleted',
310 'form.time.remaining_quota' => 'Remaining quota',
311 'form.time.over_quota' => 'Over quota',
312
313 // Editing Time Record form. See example at https://timetracker.anuko.com/time_edit.php (get there by editing an uncompleted time record).
314 'form.time_edit.uncompleted' => 'This record was saved with only start time. It is not an error.',
315
316 // Reports form. See example at https://timetracker.anuko.com/reports.php
317 'form.reports.save_as_favorite' => 'Save as favorite',
318 'form.reports.confirm_delete' => 'Are you sure you want to delete this favorite report?',
319 'form.reports.include_records' => 'Include records',
320 'form.reports.include_billable' => 'billable',
321 'form.reports.include_not_billable' => 'not billable',
322 'form.reports.include_invoiced' => 'invoiced',
323 'form.reports.include_not_invoiced' => 'not invoiced',
324 'form.reports.select_period' => 'Select time period',
325 'form.reports.set_period' => 'or set dates',
326 'form.reports.show_fields' => 'Show fields',
327 'form.reports.group_by' => 'Group by',
328 'form.reports.group_by_no' => '--- no grouping ---',
329 'form.reports.group_by_date' => 'date',
330 'form.reports.group_by_user' => 'user',
331 'form.reports.group_by_client' => 'client',
332 'form.reports.group_by_project' => 'project',
333 'form.reports.group_by_task' => 'task',
334 'form.reports.totals_only' => 'Totals only',
335
336 // Report form. See example at https://timetracker.anuko.com/report.php
337 // (after generating a report at https://timetracker.anuko.com/reports.php).
338 'form.report.export' => 'Export',
339
340 // Invoice form. See example at https://timetracker.anuko.com/invoice.php
341 // (you can get to this form after generating a report).
342 'form.invoice.number' => 'Invoice number',
343 'form.invoice.person' => 'Person',
344 'form.invoice.invoice_to_delete' => 'Invoice to delete',
345 'form.invoice.invoice_entries' => 'Invoice entries',
346
347 // Charts form. See example at https://timetracker.anuko.com/charts.php
348 'form.charts.interval' => 'Interval',
349 'form.charts.chart' => 'Chart',
350
351 // Projects form. See example at https://timetracker.anuko.com/projects.php
352 'form.projects.active_projects' => 'Active Projects',
353 'form.projects.inactive_projects' => 'Inactive Projects',
354
355 // Tasks form. See example at https://timetracker.anuko.com/tasks.php
356 'form.tasks.active_tasks' => 'Active Tasks',
357 'form.tasks.inactive_tasks' => 'Inactive Tasks',
358
359 // Users form. See example at https://timetracker.anuko.com/users.php
360 'form.users.active_users' => 'Active Users',
361 'form.users.inactive_users' => 'Inactive Users',
362 'form.users.uncompleted_entry' => 'User has an uncompleted time entry',
363 'form.users.role' => 'Role',
364 'form.users.manager' => 'Manager',
365 'form.users.comanager' => 'Co-manager',
366 'form.users.rate' => 'Rate',
367 'form.users.default_rate' => 'Default hourly rate',
368
369 // Client delete form. See example at https://timetracker.anuko.com/client_delete.php
370 'form.client.client_to_delete' => 'Client to delete',
371 'form.client.client_entries' => 'Client entries',
372
373 // Clients form. See example at https://timetracker.anuko.com/clients.php
374 'form.clients.active_clients' => 'Active Clients',
375 'form.clients.inactive_clients' => 'Inactive Clients',
376
377 // Strings for Exporting Team Data form. See example at https://timetracker.anuko.com/export.php
378 'form.export.hint' => 'You can export all team data into an xml file. It could be useful if you are migrating data to your own server.',
379 'form.export.compression' => 'Compression',
380 'form.export.compression_none' => 'none',
381 'form.export.compression_bzip' => 'bzip',
382
383 // Strings for Importing Team Data form. See example at https://timetracker.anuko.com/imort.php (login as admin first).
384 'form.import.hint' => 'Import team data from an xml file.',
385 'form.import.file' => 'Select file',
386 'form.import.success' => 'Import completed successfully.',
387
388 // Teams form. See example at https://timetracker.anuko.com/admin_teams.php (login as admin first).
389 'form.teams.hint' =>  'Create a new team by creating a new team manager account.<br>You can also import team data from an xml file from another Anuko Time Tracker server (no login collisions are allowed).',
390
391 // Profile form. See example at https://timetracker.anuko.com/profile_edit.php.
392 'form.profile.12_hours' => '12 hours',
393 'form.profile.24_hours' => '24 hours',
394 'form.profile.tracking_mode' => 'Tracking mode',
395 'form.profile.mode_time' => 'time',
396 'form.profile.mode_projects' => 'projects',
397 'form.profile.mode_projects_and_tasks' => 'projects and tasks',
398 'form.profile.record_type' => 'Record type',
399 'form.profile.uncompleted_indicators' => 'Uncompleted indicators',
400 'form.profile.uncompleted_indicators_none' => 'do not show',
401 'form.profile.uncompleted_indicators_show' => 'show',
402 'form.profile.type_all' => 'all',
403 'form.profile.type_start_finish' => 'start and finish',
404 'form.profile.type_duration' => 'duration',
405 'form.profile.plugins' => 'Plugins',
406
407 // Mail form. See example at https://timetracker.anuko.com/report_send.php when emailing a report.
408 'form.mail.from' => 'From',
409 'form.mail.to' => 'To',
410 'form.mail.cc' => 'Cc',
411 'form.mail.subject' => 'Subject',
412 'form.mail.report_subject' => 'Time Tracker Report',
413 '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.',
414 'form.mail.report_sent' => 'Report sent.',
415 'form.mail.invoice_sent' => 'Invoice sent.',
416
417 // Quotas configuration form.
418 'form.quota.year' => 'Year',
419 'form.quota.month' => 'Month',
420 'form.quota.quota' => 'Quota',
421 'form.quota.workday_hours' => 'Hours in a work day',
422 'form.quota.hint' => 'If values are empty, quotas are calculated automatically based on workday hours and holidays.',
423 );