6aeed5ed3c51a760faf52ff6e4834da07e7854eb
[timetracker.git] / WEB-INF / resources / pt.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 // Note to translators: Please use proper capitalization rules for your language.
33
34 $i18n_language = 'Português';
35 $i18n_months = array('Janeiro', 'Fevereiro', 'Março', 'Abril', 'Maio', 'Junho', 'Julho', 'Augosto', 'Setembro', 'Outubro', 'Novembro', 'Dezembro');
36 $i18n_weekdays = array('Domingo', 'Segunda-feira', 'Terça-feira', 'Quarta-feira', 'Quinta-feira', 'Sexta-feira', 'Sábado');
37 $i18n_weekdays_short = array('Dom', 'Seg', 'Ter', 'Qua', 'Qui', 'Sex', 'Sab');
38 // format mm/dd
39 $i18n_holidays = array('01/01', '02/24', '04/10', '04/12', '04/25', '05/01', '06/10', '06/11', '08/15', '10/05', '01/11', '12/01', '12/08', '12/25');
40
41 $i18n_key_words = array(
42
43 // Menus - short selection strings that are displayed on top of application web pages.
44 // Example: https://timetracker.anuko.com (black menu on top).
45 'menu.login' => 'Login',
46 'menu.logout' => 'Logout',
47 // TODO: translate the following.
48 // 'menu.forum' => 'Forum',
49 'menu.help' => 'Ajuda',
50 // TODO: translate the following.
51 // 'menu.create_team' => 'Create Team',
52 'menu.profile' => 'Perfil',
53 'menu.time' => 'Tempo',
54 // TODO: translate the following.
55 // 'menu.expenses' => 'Expenses',
56 'menu.reports' => 'Relatórios',
57 // TODO: translate the following.
58 'menu.charts' => 'Charts',
59 'menu.projects' => 'Projetos',
60 // TODO: translate the following.
61 // 'menu.tasks' => 'Tasks',
62 'menu.users' => 'Usuários',
63 // TODO: translate the following.
64 // 'menu.teams' => 'Teams',
65 // 'menu.export' => 'Export',
66 // 'menu.clients' => 'Clients',
67 'menu.options' => 'Opções',
68
69 // Footer - strings on the bottom of most pages.
70 // TODO: translate the following.
71 // 'footer.contribute_msg' => 'You can contribute to Time Tracker in different ways.',
72 // 'footer.credits' => 'Credits',
73 // 'footer.license' => 'License',
74 // 'footer.improve' => 'Contribute', // Translators: this could mean "Improve", if it makes better sense in your language.
75                                      // This is a link to a webpage that describes how to contribute to the project.
76
77 // Error messages.
78 // TODO: translate the following.
79 // 'error.access_denied' => 'Access denied.',
80 // 'error.sys' => 'System error.',
81 // 'error.db' => 'Database error.',
82 // 'error.field' => 'Incorrect "{0}" data.',
83 // 'error.empty' => 'Field "{0}" is empty.',
84 // 'error.not_equal' => 'Field "{0}" is not equal to field "{1}".',
85 // 'error.interval' => 'Field "{0}" must be greater than "{1}".',
86 'error.project' => 'Selecione projeto.',
87 // TODO: translate the following.
88 // 'error.task' => 'Select task.',
89 // 'error.client' => 'Select client.',
90 // 'error.report' => 'Select report.',
91 // 'error.record' => 'Select record.',
92 // 'error.auth' => 'Incorrect login or password.',
93 // 'error.user_exists' => 'User with this login already exists.',
94 // 'error.project_exists' => 'Project with this name already exists.',
95 // 'error.task_exists' => 'Task with this name already exists.',
96 // 'error.client_exists' => 'Client with this name already exists.',
97 // 'error.invoice_exists' => 'Invoice with this number already exists.',
98 // 'error.no_invoiceable_items' => 'There are no invoiceable items.',
99 // 'error.no_login' => 'No user with this login.',
100 // 'error.no_teams' => 'Your database is empty. Login as admin and create a new team.',
101 // 'error.upload' => 'File upload error.',
102 // 'error.range_locked' => 'Date range is locked.',
103 // 'error.mail_send' => 'Error sending mail.',
104 // 'error.no_email' => 'No email associated with this login.',
105 // 'error.uncompleted_exists' => 'Uncompleted entry already exists. Close or delete it.',
106 // 'error.goto_uncompleted' => 'Go to uncompleted entry.',
107 // 'error.overlap' => 'Time interval overlaps with existing records.',
108 // 'error.future_date' => 'Date is in future.',
109
110 // Labels for buttons.
111 'button.login' => 'Login',
112 'button.now' => 'Hoje',
113 'button.save' => 'Salvar',
114 // TODO: translate the following.
115 // 'button.copy' => 'Copy',
116 'button.cancel' => 'Cancelar',
117 'button.submit' => 'Submeter',
118 'button.add' => 'Adicionar',
119 // TODO: translate the following.
120 // 'button.generate' => 'Generate',
121 // 'button.reset_password' => 'Reset password',
122 'button.send' => 'Enviar',
123 'button.send_by_email' => 'Enviar por e-mail',
124 // TODO: translate the following.
125 // 'button.create_team' => 'Create team',
126 // 'button.export' => 'Export team',
127 // 'button.import' => 'Import team',
128 // 'button.close' => 'Close',
129 // 'button.stop' => 'Stop',
130
131 // Labels for controls on forms. Labels in this section are used on multiple forms.
132 // TODO: translate the following.
133 // 'label.team_name' => 'Team name',
134 // 'label.address' => 'Address',
135 // 'label.currency' => 'Currency',
136 // 'label.manager_name' => 'Manager name',
137 // 'label.manager_login' => 'Manager login',
138 'label.person_name' => 'Nome',
139 'label.thing_name' => 'Nome',
140 // TODO: translate the following.
141 // 'label.login' => 'Login',
142 'label.password' => 'Senha',
143 'label.confirm_password' => 'Confirme a senha',
144 'label.email' => 'E-mail',
145 // TODO: translate the following.
146 // 'label.cc' => 'Cc',
147 // 'label.bcc' => 'Bcc',
148 'label.subject' => 'Assunto',
149 'label.date' => 'Data',
150 'label.start_date' => 'Data inicial',
151 'label.end_date' => 'Data final',
152 'label.user' => 'Usuário',
153 'label.users' => 'Usuários',
154 // TODO: translate the following.
155 // 'label.roles' => 'Roles',
156 // 'label.client' => 'Client',
157 // 'label.clients' => 'Clients',
158 // 'label.option' => 'Option',
159 // 'label.invoice' => 'Invoice',
160 'label.project' => 'Projeto',
161 'label.projects' => 'Projetos',
162 // TODO: translate the following.
163 // 'label.task' => 'Task',
164 // 'label.tasks' => 'Tasks',
165 // 'label.description' => 'Description',
166 'label.start' => 'Início',
167 'label.finish' => 'Fim',
168 'label.duration' => 'Duração',
169 'label.note' => 'Anotação',
170 'label.notes' => 'Anotações',
171 // TODO: translate the following.
172 // 'label.item' => 'Item',
173 // 'label.cost' => 'Cost',
174 // 'label.day_total' => 'Day total',
175 // 'label.week_total' => 'Week total',
176 // 'label.month_total' => 'Month total',
177 // 'label.today' => 'Today',
178 // 'label.view' => 'View',
179 'label.edit' => 'Editar',
180 'label.delete' => 'Apagar',
181 // TODO: translate the following.
182 // 'label.configure' => 'Configure',
183 // 'label.select_all' => 'Select all',
184 // 'label.select_none' => 'Deselect all',
185 // 'label.day_view' => 'Day view',
186 // 'label.week_view' => 'Week view',
187 // 'label.id' => 'ID',
188 // 'label.language' => 'Language',
189 // 'label.decimal_mark' => 'Decimal mark',
190 // 'label.date_format' => 'Date format',
191 // 'label.time_format' => 'Time format',
192 // 'label.week_start' => 'First day of week',
193 'label.comment' => 'Comentário',
194 'label.status' => 'Status',
195 // TODO: translate the following.
196 // 'label.tax' => 'Tax',
197 // 'label.subtotal' => 'Subtotal',
198 // 'label.total' => 'Total',
199 // 'label.client_name' => 'Client name',
200 // 'label.client_address' => 'Client address',
201 'label.or' => 'ou',
202 // TODO: translate the following.
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' => '* campos obrigatórios',
206 // TODO: translate the following.
207 // 'label.on_behalf' => 'on behalf of',
208 'label.role_manager' => '(gerente)',
209 // TODO: translate the following.
210 // 'label.role_comanager' => '(co-manager)',
211 // 'label.role_admin' => '(administrator)',
212 // 'label.page' => 'Page',
213 // 'label.condition' => 'Condition',
214 // 'label.yes' => 'yes',
215 // 'label.no' => 'no',
216 // Labels for plugins (extensions to Time Tracker that provide additional features).
217 // TODO: translate the following.
218 // 'label.custom_fields' => 'Custom fields',
219 // 'label.monthly_quotas' => 'Monthly quotas',
220 // 'label.type' => 'Type',
221 // 'label.type_dropdown' => 'dropdown',
222 // 'label.type_text' => 'text',
223 // 'label.required' => 'Required',
224 // 'label.fav_report' => 'Favorite report',
225 // 'label.cron_schedule' => 'Cron schedule',
226 // 'label.what_is_it' => 'What is it?',
227 // 'label.expense' => 'Expense',
228 // 'label.quantity' => 'Quantity',
229 // 'label.paid_status' => 'Paid status',
230 // 'label.paid' => 'Paid',
231 // 'label.mark_paid' => 'Mark paid',
232 // 'label.week_note' => 'Week note',
233 // 'label.week_list' => 'Week list',
234
235 // Form titles.
236 'title.login' => 'Login',
237 // TODO: translate the following.
238 // 'title.teams' => 'Teams',
239 // 'title.create_team' => 'Creating Team',
240 // 'title.edit_team' => 'Editing Team',
241 // 'title.delete_team' => 'Deleting Team',
242 // 'title.reset_password' => 'Resetting Password',
243 // 'title.change_password' => 'Changing Password',
244 // 'title.time' => 'Time',
245 // 'title.edit_time_record' => 'Editing Time Record',
246 // 'title.delete_time_record' => 'Deleting Time Record',
247 // 'title.expenses' => 'Expenses',
248 // 'title.edit_expense' => 'Editing Expense Item',
249 // 'title.delete_expense' => 'Deleting Expense Item',
250 // 'title.predefined_expenses' => 'Predefined Expenses',
251 // 'title.add_predefined_expense' => 'Adding Predefined Expense',
252 // 'title.edit_predefined_expense' => 'Editing Predefined Expense',
253 // 'title.delete_predefined_expense' => 'Deleting Predefined Expense',
254 'title.reports' => 'Relatórios',
255 'title.report' => 'Relatório',
256 // TODO: translate the following.
257 // 'title.send_report' => 'Sending Report',
258 // 'title.invoice' => 'Invoice',
259 // 'title.send_invoice' => 'Sending Invoice',
260 // 'title.charts' => 'Charts',
261 'title.projects' => 'Projetos',
262 'title.add_project' => 'Adicionando projeto',
263 'title.edit_project' => 'Editando projeto',
264 'title.delete_project' => 'Apagando projeto',
265 // TODO: translate the following.
266 // 'title.tasks' => 'Tasks',
267 // 'title.add_task' => 'Adding Task',
268 // 'title.edit_task' => 'Editing Task',
269 // 'title.delete_task' => 'Deleting Task',
270 'title.users' => 'Usuários',
271 'title.add_user' => 'Adicionando usuário',
272 'title.edit_user' => 'Editando usuário',
273 'title.delete_user' => 'Apagando usuário',
274 // TODO: translate the following.
275 // 'title.roles' => 'Roles',
276 // 'title.add_role' => 'Adding Role',
277 // 'title.edit_role' => 'Editing Role',
278 // 'title.delete_role' => 'Deleting Role',
279 // 'title.clients' => 'Clients',
280 // 'title.add_client' => 'Adding Client',
281 // 'title.edit_client' => 'Editing Client',
282 // 'title.delete_client' => 'Deleting Client',
283 // 'title.invoices' => 'Invoices',
284 // 'title.add_invoice' => 'Adding Invoice',
285 // 'title.view_invoice' => 'Viewing Invoice',
286 // 'title.delete_invoice' => 'Deleting Invoice',
287 // 'title.notifications' => 'Notifications',
288 // 'title.add_notification' => 'Adding Notification',
289 // 'title.edit_notification' => 'Editing Notification',
290 // 'title.delete_notification' => 'Deleting Notification',
291 // 'title.monthly_quotas' => 'Monthly Quotas',
292 // 'title.export' => 'Exporting Team Data',
293 // 'title.import' => 'Importing Team Data',
294 'title.options' => 'Opções',
295 'title.profile' => 'Perfil',
296 // TODO: translate the following.
297 // 'title.cf_custom_fields' => 'Custom Fields',
298 // 'title.cf_add_custom_field' => 'Adding Custom Field',
299 // 'title.cf_edit_custom_field' => 'Editing Custom Field',
300 // 'title.cf_delete_custom_field' => 'Deleting Custom Field',
301 // 'title.cf_dropdown_options' => 'Dropdown Options',
302 // 'title.cf_add_dropdown_option' => 'Adding Option',
303 // 'title.cf_edit_dropdown_option' => 'Editing Option',
304 // 'title.cf_delete_dropdown_option' => 'Deleting Option',
305 // NOTE TO TRANSLATORS: Locking is a feature to lock records from modifications (ex: weekly on Mondays we lock all previous weeks).
306 // It is also a name for the Locking plugin on the Team profile page.
307 // 'title.locking' => 'Locking',
308 // 'title.week_view' => 'Week View',
309
310 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
311 // Strings that are used in a single form must go to the specific form section.
312 // TODO: translate the following.
313 // 'dropdown.all' => '--- all ---',
314 // 'dropdown.no' => '--- no ---',
315 // 'dropdown.current_day' => 'today',
316 // 'dropdown.previous_day' => 'yesterday',
317 // 'dropdown.selected_day' => 'day',
318 'dropdown.current_week' => 'esta semana',
319 'dropdown.previous_week' => 'última semana',
320 'dropdown.selected_week' => 'semana',
321 'dropdown.current_month' => 'este mês',
322 'dropdown.previous_month' => 'último mês',
323 'dropdown.selected_month' => 'mês',
324 // TODO: translate the following.
325 // 'dropdown.current_year' => 'this year',
326 // 'dropdown.previous_year' => 'previous year',
327 // 'dropdown.selected_year' => 'year',
328 // 'dropdown.all_time' => 'all time',
329 'dropdown.projects' => 'projetos',
330 // TODO: translate the following.
331 // 'dropdown.tasks' => 'tasks',
332 // 'dropdown.clients' => 'clients',
333 // 'dropdown.select' => '--- select ---',
334 // 'dropdown.select_invoice' => '--- select invoice ---',
335 // 'dropdown.status_active' => 'active',
336 // 'dropdown.status_inactive' => 'inactive',
337 // 'dropdown.delete' => 'delete',
338 // 'dropdown.do_not_delete' => 'do not delete',
339 // 'dropdown.paid' => 'paid',
340 // 'dropdown.not_paid' => 'not paid',
341
342 // Login form. See example at https://timetracker.anuko.com/login.php.
343 'form.login.forgot_password' => 'Esqueceu a senha?',
344 // TODO: translate the following.
345 // '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.',
346
347 // Resetting Password form. See example at https://timetracker.anuko.com/password_reset.php.
348 // TODO: translate the following.
349 // 'form.reset_password.message' => 'Password reset request sent by email.',
350 // 'form.reset_password.email_subject' => 'Anuko Time Tracker password reset request',
351 // '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",
352
353 // Changing Password form. See example at https://timetracker.anuko.com/password_change.php?ref=1.
354 // TODO: translate the following.
355 // 'form.change_password.tip' => 'Type new password and click on Save.',
356
357 // Time form. See example at https://timetracker.anuko.com/time.php.
358 // TODO: translate the following.
359 // 'form.time.duration_format' => '(hh:mm or 0.0h)',
360 // 'form.time.billable' => 'Billable',
361 // 'form.time.uncompleted' => 'Uncompleted',
362 // 'form.time.remaining_quota' => 'Remaining quota',
363 // 'form.time.over_quota' => 'Over quota',
364
365 // Editing Time Record form. See example at https://timetracker.anuko.com/time_edit.php (get there by editing an uncompleted time record).
366 // TODO: translate the following.
367 // 'form.time_edit.uncompleted' => 'This record was saved with only start time. It is not an error.',
368
369 // Week view form. See example at https://timetracker.anuko.com/week.php.
370 // TODO: translate the following.
371 // 'form.week.new_entry' => 'New entry',
372
373 // Reports form. See example at https://timetracker.anuko.com/reports.php
374 // TODO: translate the following.
375 // 'form.reports.save_as_favorite' => 'Save as favorite',
376 // 'form.reports.confirm_delete' => 'Are you sure you want to delete this favorite report?',
377 // 'form.reports.include_billable' => 'billable',
378 // 'form.reports.include_not_billable' => 'not billable',
379 // 'form.reports.include_invoiced' => 'invoiced',
380 // 'form.reports.include_not_invoiced' => 'not invoiced',
381 'form.reports.select_period' => 'Selecione o período de tempo',
382 'form.reports.set_period' => 'ou selecionar datas',
383 'form.reports.show_fields' => 'Exibir campos',
384 // 'form.reports.group_by' => 'Group by',
385 // 'form.reports.group_by_no' => '--- no grouping ---',
386 // 'form.reports.group_by_date' => 'date',
387 // 'form.reports.group_by_user' => 'user',
388 // 'form.reports.group_by_client' => 'client',
389 // 'form.reports.group_by_project' => 'project',
390 // 'form.reports.group_by_task' => 'task',
391 // 'form.reports.totals_only' => 'Totals only',
392
393 // Report form. See example at https://timetracker.anuko.com/report.php
394 // (after generating a report at https://timetracker.anuko.com/reports.php).
395 // TODO: translate the following.
396 // 'form.report.export' => 'Export',
397 // 'form.report.assign_to_invoice' => 'Assign to invoice',
398
399 // Invoice form. See example at https://timetracker.anuko.com/invoice.php
400 // (you can get to this form after generating a report).
401 // TODO: translate the following.
402 // 'form.invoice.number' => 'Invoice number',
403 // 'form.invoice.person' => 'Person',
404
405 // Deleting Invoice form. See example at https://timetracker.anuko.com/invoice_delete.php
406 // 'form.invoice.invoice_to_delete' => 'Invoice to delete',
407 // 'form.invoice.invoice_entries' => 'Invoice entries',
408 // 'form.invoice.confirm_deleting_entries' => 'Please confirm deleting invoice entries from Time Tracker.',
409
410 // Charts form. See example at https://timetracker.anuko.com/charts.php
411 // TODO: translate the following.
412 // 'form.charts.interval' => 'Interval',
413 // 'form.charts.chart' => 'Chart',
414
415 // Projects form. See example at https://timetracker.anuko.com/projects.php
416 // TODO: translate the following.
417 // 'form.projects.active_projects' => 'Active Projects',
418 // 'form.projects.inactive_projects' => 'Inactive Projects',
419
420 // Tasks form. See example at https://timetracker.anuko.com/tasks.php
421 // TODO: translate the following.
422 // 'form.tasks.active_tasks' => 'Active Tasks',
423 // 'form.tasks.inactive_tasks' => 'Inactive Tasks',
424
425 // Users form. See example at https://timetracker.anuko.com/users.php
426 // TODO: translate the following.
427 // 'form.users.active_users' => 'Active Users',
428 // 'form.users.inactive_users' => 'Inactive Users',
429 // 'form.users.uncompleted_entry' => 'User has an uncompleted time entry',
430 // 'form.users.role' => 'Role',
431 'form.users.manager' => 'Gerente',
432 // TODO: translate the following.
433 // 'form.users.comanager' => 'Co-manager',
434 // 'form.users.rate' => 'Rate',
435 // 'form.users.default_rate' => 'Default hourly rate',
436
437 // Roles form. See example at https://timetracker.anuko.com/roles.php
438 // TODO: translate the following.
439 // 'form.roles.active_roles' => 'Active Roles',
440 // 'form.roles.inactive_roles' => 'Inactive Roles',
441 // 'form.roles.rights' => 'Rights',
442
443 // Clients form. See example at https://timetracker.anuko.com/clients.php
444 // TODO: translate the following.
445 // 'form.clients.active_clients' => 'Active Clients',
446 // 'form.clients.inactive_clients' => 'Inactive Clients',
447
448 // Deleting Client form. See example at https://timetracker.anuko.com/client_delete.php
449 // TODO: translate the following.
450 // 'form.client.client_to_delete' => 'Client to delete',
451 // 'form.client.client_entries' => 'Client entries',
452
453 // Exporting Team Data form. See example at https://timetracker.anuko.com/export.php
454 // TODO: translate the following.
455 // '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.',
456 // 'form.export.compression' => 'Compression',
457 // 'form.export.compression_none' => 'none',
458 // 'form.export.compression_bzip' => 'bzip',
459
460 // Importing Team Data form. See example at https://timetracker.anuko.com/imort.php (login as admin first).
461 // TODO: translate the following.
462 // 'form.import.hint' => 'Import team data from an xml file.',
463 // 'form.import.file' => 'Select file',
464 // 'form.import.success' => 'Import completed successfully.',
465
466 // Teams form. See example at https://timetracker.anuko.com/admin_teams.php (login as admin first).
467 // TODO: translate the following.
468 // '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).',
469
470 // Profile form. See example at https://timetracker.anuko.com/profile_edit.php.
471 // TODO: translate the following.
472 // 'form.profile.12_hours' => '12 hours',
473 // 'form.profile.24_hours' => '24 hours',
474 // 'form.profile.show_holidays' => 'Show holidays',
475 // 'form.profile.tracking_mode' => 'Tracking mode',
476 // 'form.profile.mode_time' => 'time',
477 // 'form.profile.mode_projects' => 'projects',
478 // 'form.profile.mode_projects_and_tasks' => 'projects and tasks',
479 // 'form.profile.record_type' => 'Record type',
480 // 'form.profile.type_all' => 'all',
481 // 'form.profile.type_start_finish' => 'start and finish',
482 // 'form.profile.type_duration' => 'duration',
483 // 'form.profile.punch_mode' => 'Punch mode',
484 // 'form.profile.allow_overlap' => 'Allow overlap',
485 // 'form.profile.future_entries' => 'Future entries',
486 // 'form.profile.uncompleted_indicators' => 'Uncompleted indicators',
487 // 'form.profile.plugins' => 'Plugins',
488
489 // Mail form. See example at https://timetracker.anuko.com/report_send.php when emailing a report.
490 'form.mail.from' => 'De',
491 'form.mail.to' => 'Para',
492 // TODO: translate the following.
493 // 'form.mail.report_subject' => 'Time Tracker Report',
494 // '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.',
495 // 'form.mail.report_sent' => 'Report sent.',
496 // 'form.mail.invoice_sent' => 'Invoice sent.',
497
498 // Quotas configuration form.
499 // TODO: translate the following.
500 // 'form.quota.year' => 'Year',
501 // 'form.quota.month' => 'Month',
502 // 'form.quota.quota' => 'Quota',
503 // 'form.quota.workday_hours' => 'Hours in work day',
504 // 'form.quota.hint' => 'If values are empty, quotas are calculated automatically based on workday hours and holidays.',
505
506 // Roles and rights. These strings are used in multiple places. Grouped here to provide consistent translations.
507 // TODO: translate the following.
508 // 'role.user.label' => 'User',
509 // 'role.user.low_case_label' => 'user',
510 // 'role.user.description' => 'A regular member without management rights.',
511 // 'role.client.label' => 'Client',
512 // 'role.client.low_case_label' => 'client',
513 // 'role.client.description' => 'A client can view its own reports, charts, and invoices.',
514 // 'role.supervisor.label' => 'Supervisor',
515 // 'role.supervisor.low_case_label' => 'supervisor',
516 // 'role.supervisor.description' => 'A person with a small set of management rights.',
517 // 'role.comanager.label' => 'Co-manager',
518 // 'role.comanager.low_case_label' => 'co-manager',
519 // 'role.comanager.description' => 'A person with a big set of management functions.',
520 // 'role.manager.label' => 'Manager',
521 // 'role.manager.low_case_label' => 'manager',
522 // 'role.manager.description' => 'Group manager. Can do most of things for a group.',
523 // 'role.top_manager.label' => 'Top manager',
524 // 'role.top_manager.low_case_label' => 'top manager',
525 // 'role.top_manager.description' => 'Top group manager. Can do everything in a tree of groups.',
526 // 'role.admin.label' => 'Administrator',
527 // 'role.admin.low_case_label' => 'administrator',
528 // 'role.admin.description' => 'Site adminsitrator.',
529 );