Work in progress on roles. Implemented role delete.
[timetracker.git] / WEB-INF / resources / ca.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 = 'Català';
33 $i18n_months = array('Gener', 'Febrer', 'Març', 'Abril', 'Maig', 'Juny', 'Juliol', 'Agost', 'Setembre', 'Octubre', 'Novembre', 'Desembre');
34 $i18n_weekdays = array('Diumenge', 'Dilluns', 'Dimarts', 'Dimecres', 'Dijous', 'Divendres', 'Dissabte');
35 $i18n_weekdays_short = array('Dg', 'Dl', 'Dm', 'Dc', 'Dj', 'Dv', 'Ds');
36 // format mm/dd
37 $i18n_holidays = array('01/01', '01/16', '02/20', '03/29', '07/04', '09/04', '10/09', '11/11', '11/23', '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' => 'Iniciar sessió',
44 'menu.logout' => 'Finalitzar sessió',
45 // TODO: translate the following.
46 // 'menu.forum' => 'Forum',
47 'menu.help' => 'Ajuda',
48 // TODO: translate the following.
49 // 'menu.create_team' => 'Create Team',
50 'menu.profile' => 'Perfil',
51 'menu.time' => 'Temps',
52 // TODO: translate the following.
53 // 'menu.expenses' => 'Expenses',
54 'menu.reports' => 'Informes',
55 // TODO: translate the following.
56 // 'menu.charts' => 'Charts',
57 'menu.projects' => 'Projectes',
58 // TODO: translate the following.
59 // 'menu.tasks' => 'Tasks',
60 'menu.users' => 'Usuaris',
61 'menu.teams' => 'Grups',
62 // TODO: translate the following.
63 // 'menu.export' => 'Export',
64 'menu.clients' => 'Clients',
65 'menu.options' => 'Opcions',
66
67 // Footer - strings on the bottom of most pages.
68 // TODO: translate the following.
69 // 'footer.contribute_msg' => 'You can contribute to Time Tracker in different ways.',
70 // 'footer.credits' => 'Credits',
71 // 'footer.license' => 'License',
72 // 'footer.improve' => 'Contribute', // Translators: this could mean "Improve", if it makes better sense in your language.
73                                      // This is a link to a webpage that describes how to contribute to the project.
74
75 // Error messages.
76 // TODO: translate the following.
77 // 'error.access_denied' => 'Access denied.',
78 // 'error.sys' => 'System error.',
79 'error.db' => 'Error de la base de dades.',
80 'error.field' => 'Dada "{0}" incorrecta.',
81 'error.empty' => 'L\\\'Arxiu "{0}" està buit.',
82 'error.not_equal' => 'L\\\'Arxiu "{0}" no és igual al arxiu "{1}".',
83 // TODO: translate the following.
84 // 'error.interval' => 'Field "{0}" must be greater than "{1}".',
85 'error.project' => 'Sel·leccionar projecte.',
86 // TODO: translate the following.
87 // 'error.task' => 'Select task.',
88 'error.client' => 'Sel·leccionar client.',
89 // TODO: translate the following.
90 // 'error.report' => 'Select report.',
91 // 'error.record' => 'Select record.',
92 'error.auth' => 'Usuari o parula de pas incorrecta.',
93 // TODO: translate the following.
94 // 'error.user_exists' => 'User with this login already exists.',
95 'error.project_exists' => 'Ja existeix un projecte amb aquest nom.',
96 // TODO: translate the following.
97 // 'error.task_exists' => 'Task with this name already exists.',
98 // 'error.client_exists' => 'Client with this name already exists.',
99 // 'error.invoice_exists' => 'Invoice with this number already exists.',
100 // 'error.no_invoiceable_items' => 'There are no invoiceable items.',
101 // 'error.no_login' => 'No user with this login.',
102 'error.no_teams' => 'La seva base de dades està buida. Iniciï sessió com a administrador i creï un nou grup.',
103 'error.upload' => 'Error pujant l\\\'arxiu.',
104 // TODO: translate the following.
105 // 'error.range_locked' => 'Date range is locked.',
106 // 'error.mail_send' => 'Error sending mail.',
107 // 'error.no_email' => 'No email associated with this login.',
108 // 'error.uncompleted_exists' => 'Uncompleted entry already exists. Close or delete it.',
109 // 'error.goto_uncompleted' => 'Go to uncompleted entry.',
110 // 'error.overlap' => 'Time interval overlaps with existing records.',
111 // 'error.future_date' => 'Date is in future.',
112
113 // Labels for buttons.
114 'button.login' => 'Iniciar sessió',
115 'button.now' => 'Ara',
116 'button.save' => 'Guardar',
117 'button.copy' => 'Copiar',
118 'button.cancel' => 'Cancel·lar',
119 'button.submit' => 'Enviar',
120 'button.add' => 'Agregar',
121 'button.generate' => 'Generar',
122 // TODO: translate the following.
123 // 'button.reset_password' => 'Reset password',
124 'button.send' => 'Enviar',
125 'button.send_by_email' => 'Enviar per correu',
126 'button.create_team' => 'Crear grup',
127 'button.export' => 'Exportar grup',
128 'button.import' => 'Importar grup',
129 // TODO: translate the following.
130 // 'button.close' => 'Close',
131 // 'button.stop' => 'Stop',
132
133 // Labels for controls on forms. Labels in this section are used on multiple forms.
134 // TODO: translate the following.
135 // 'label.team_name' => 'Team name',
136 // 'label.address' => 'Address',
137 'label.currency' => 'Moneda',
138 // TODO: translate the following.
139 // 'label.manager_name' => 'Manager name',
140 // 'label.manager_login' => 'Manager login',
141 'label.person_name' => 'Nom',
142 'label.thing_name' => 'Nom',
143 // TODO: translate the following.
144 // 'label.login' => 'Login',
145 'label.password' => 'Paraula de pas',
146 'label.confirm_password' => 'Confirmar paraula de pas',
147 'label.email' => 'E-mail',
148 'label.cc' => 'Cc',
149 // TODO: translate the following.
150 // 'label.bcc' => 'Bcc',
151 'label.subject' => 'Assumpte',
152 'label.date' => 'Data',
153 'label.start_date' => 'Data d\\\'inici',
154 'label.end_date' => 'Data de fi',
155 'label.user' => 'Usuari',
156 'label.users' => 'Usuaris',
157 // TODO: translate the following.
158 // 'label.roles' => 'Roles',
159 'label.client' => 'Client',
160 'label.clients' => 'Clients',
161 'label.option' => 'Opció',
162 'label.invoice' => 'Factura',
163 'label.project' => 'Projecte',
164 'label.projects' => 'Projectes',
165 // TODO: translate the following.
166 // 'label.task' => 'Task',
167 // 'label.tasks' => 'Tasks',
168 // 'label.description' => 'Description',
169 'label.start' => 'Inici',
170 'label.finish' => 'Fi',
171 'label.duration' => 'Durada',
172 'label.note' => 'Nota',
173 'label.notes' => 'Notes',
174 // TODO: translate the following.
175 // 'label.item' => 'Item',
176 // 'label.cost' => 'Cost',
177 // 'label.day_total' => 'Day total',
178 // 'label.week_total' => 'Week total',
179 // 'label.month_total' => 'Month total',
180 'label.today' => 'Avui',
181 // 'label.view' => 'View',
182 'label.edit' => 'Modificar',
183 'label.delete' => 'Eliminar',
184 'label.configure' => 'Configurar',
185 'label.select_all' => 'Seleccionar tots',
186 'label.select_none' => 'Treure totes las seleccions',
187 // TODO: translate the following.
188 // 'label.day_view' => 'Day view',
189 // 'label.week_view' => 'Week view',
190 // 'label.id' => 'ID',
191 // 'label.language' => 'Language',
192 // 'label.decimal_mark' => 'Decimal mark',
193 // 'label.date_format' => 'Date format',
194 // 'label.time_format' => 'Time format',
195 // 'label.week_start' => 'First day of week',
196 'label.comment' => 'Comentari',
197 'label.status' => 'Estat',
198 'label.tax' => 'Impost',
199 'label.subtotal' => 'Subtotal',
200 'label.total' => 'Total',
201 // TODO: translate the following.
202 // 'label.client_name' => 'Client name',
203 // 'label.client_address' => 'Client address',
204 'label.or' => 'o',
205 // TODO: translate the following.
206 // 'label.error' => 'Error',
207 // 'label.ldap_hint' => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
208 'label.required_fields' => '* camps requerits',
209 'label.on_behalf' => 'a nom de',
210 'label.role_manager' => '(manejador)',
211 'label.role_comanager' => '(auxiliar del manejador)',
212 'label.role_admin' => '(administrador)',
213 // TODO: translate the following.
214 // 'label.page' => 'Page',
215 // 'label.condition' => 'Condition',
216 // 'label.yes' => 'yes',
217 // 'label.no' => 'no',
218 // Labels for plugins (extensions to Time Tracker that provide additional features).
219 // TODO: translate the following.
220 // 'label.custom_fields' => 'Custom fields',
221 // 'label.monthly_quotas' => 'Monthly quotas',
222 // 'label.type' => 'Type',
223 // 'label.type_dropdown' => 'dropdown',
224 // 'label.type_text' => 'text',
225 // 'label.required' => 'Required',
226 'label.fav_report' => 'Report favorit',
227 // TODO: translate the following.
228 // 'label.cron_schedule' => 'Cron schedule',
229 // 'label.what_is_it' => 'What is it?',
230 // 'label.expense' => 'Expense',
231 'label.quantity' => 'Quantitat',
232 // TODO: translate the following.
233 // 'label.paid_status' => 'Paid status',
234 // 'label.paid' => 'Paid',
235 // 'label.mark_paid' => 'Mark paid',
236 // 'label.week_note' => 'Week note',
237 // 'label.week_list' => 'Week list',
238
239 // Form titles.
240 // TODO: Improve titles for consistency, so that each title explains correctly what each
241 // page is about and is "consistent" from page to page, meaning that correct grammar is used everywhere.
242 // Compare with English file to see how it is done there and do Catalan titles similarly.
243 // Specifically: Agregant vs Agregar, etc.
244 'title.login' => 'Sessió iniciada',
245 'title.teams' => 'Grups',
246 // TODO: translate the following.
247 // 'title.create_team' => 'Creating Team',
248 // 'title.edit_team' => 'Editing Team',
249 'title.delete_team' => 'Eliminar grup',
250 'title.reset_password' => 'Restablir paraula de pas',
251 // TODO: translate the following.
252 // 'title.change_password' => 'Changing Password',
253 'title.time' => 'Temps',
254 'title.edit_time_record' => 'Modificant l\\\'historial de temps',
255 'title.delete_time_record' => 'Eliminant l\\\'historial de temps',
256 // TODO: translate the following.
257 // 'title.expenses' => 'Expenses',
258 // 'title.edit_expense' => 'Editing Expense Item',
259 // 'title.delete_expense' => 'Deleting Expense Item',
260 // 'title.predefined_expenses' => 'Predefined Expenses',
261 // 'title.add_predefined_expense' => 'Adding Predefined Expense',
262 // 'title.edit_predefined_expense' => 'Editing Predefined Expense',
263 // 'title.delete_predefined_expense' => 'Deleting Predefined Expense',
264 'title.reports' => 'Informes',
265 'title.report' => 'Informe',
266 // TODO: translate the following.
267 // 'title.send_report' => 'Sending Report',
268 'title.invoice' => 'Factura',
269 // TODO: translate the following.
270 // 'title.send_invoice' => 'Sending Invoice',
271 // 'title.charts' => 'Charts',
272 'title.projects' => 'Projectes',
273 'title.add_project' => 'Agregant projecte',
274 'title.edit_project' => 'Modificant projecte',
275 'title.delete_project' => 'Eliminant projecte',
276 // TODO: translate the following.
277 // 'title.tasks' => 'Tasks',
278 // 'title.add_task' => 'Adding Task',
279 // 'title.edit_task' => 'Editing Task',
280 // 'title.delete_task' => 'Deleting Task',
281 'title.users' => 'Usuaris',
282 'title.add_user' => 'Agregant usuari',
283 'title.edit_user' => 'Modificant usuari',
284 'title.delete_user' => 'Eliminant usuari',
285 // TODO: translate the following.
286 // 'title.roles' => 'Roles',
287 // 'title.add_role' => 'Adding Role',
288 // 'title.edit_role' => 'Editing Role',
289 // 'title.delete_role' => 'Deleting Role',
290 'title.clients' => 'Clients',
291 'title.add_client' => 'Agregar client',
292 'title.edit_client' => 'Modificar client',
293 'title.delete_client' => 'Eliminar client',
294 'title.invoices' => 'Factures',
295 // TODO: translate the following.
296 // 'title.add_invoice' => 'Adding Invoice',
297 // 'title.view_invoice' => 'Viewing Invoice',
298 // 'title.delete_invoice' => 'Deleting Invoice',
299 // 'title.notifications' => 'Notifications',
300 // 'title.add_notification' => 'Adding Notification',
301 // 'title.edit_notification' => 'Editing Notification',
302 // 'title.delete_notification' => 'Deleting Notification',
303 // 'title.monthly_quotas' => 'Monthly Quotas',
304 // 'title.export' => 'Exporting Team Data',
305 // 'title.import' => 'Importing Team Data',
306 'title.options' => 'Opcions',
307 'title.profile' => 'Perfil',
308 // TODO: translate the following.
309 // 'title.cf_custom_fields' => 'Custom Fields',
310 // 'title.cf_add_custom_field' => 'Adding Custom Field',
311 // 'title.cf_edit_custom_field' => 'Editing Custom Field',
312 // 'title.cf_delete_custom_field' => 'Deleting Custom Field',
313 // 'title.cf_dropdown_options' => 'Dropdown Options',
314 // 'title.cf_add_dropdown_option' => 'Adding Option',
315 // 'title.cf_edit_dropdown_option' => 'Editing Option',
316 // 'title.cf_delete_dropdown_option' => 'Deleting Option',
317 // NOTE TO TRANSLATORS: Locking is a feature to lock records from modifications (ex: weekly on Mondays we lock all previous weeks).
318 // It is also a name for the Locking plugin on the Team profile page.
319 // 'title.locking' => 'Locking',
320 // 'title.week_view' => 'Week View',
321
322 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
323 // Strings that are used in a single form must go to the specific form section.
324 'dropdown.all' => '--- tots ---',
325 'dropdown.no' => '--- no ---',
326 'dropdown.current_day' => 'avui',
327 'dropdown.previous_day' => 'ahir',
328 'dropdown.selected_day' => 'dia',
329 'dropdown.current_week' => 'aquestat setmana',
330 'dropdown.previous_week' => 'la setmana passada',
331 'dropdown.selected_week' => 'setmana',
332 'dropdown.current_month' => 'aquest mes',
333 'dropdown.previous_month' => 'el mes passat',
334 'dropdown.selected_month' => 'mes',
335 // TODO: translate the following.
336 // 'dropdown.current_year' => 'this year',
337 // 'dropdown.previous_year' => 'previous year',
338 // 'dropdown.selected_year' => 'year',
339 // 'dropdown.all_time' => 'all time',
340 'dropdown.projects' => 'projectes',
341 // TODO: translate the following.
342 // 'dropdown.tasks' => 'tasks',
343 'dropdown.clients' => 'clients',
344 // TODO: translate the following.
345 // 'dropdown.select' => '--- select ---',
346 // 'dropdown.select_invoice' => '--- select invoice ---',
347 'dropdown.status_active' => 'actiu',
348 // TODO: translate the following.
349 // 'dropdown.status_inactive' => 'inactive',
350 // 'dropdown.delete' => 'delete',
351 // 'dropdown.do_not_delete' => 'do not delete',
352 // 'dropdown.paid' => 'paid',
353 // 'dropdown.not_paid' => 'not paid',
354
355 // Login form. See example at https://timetracker.anuko.com/login.php.
356 'form.login.forgot_password' => '¿Ha oblidat la seva paraula de pas?',
357 // TODO: translate the following.
358 // '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.',
359
360 // Resetting Password form. See example at https://timetracker.anuko.com/password_reset.php.
361 'form.reset_password.message' => 'S\\\'ha enviat la petició de restablir paraula de pas.', // TODO: add "by email" to match the English string.
362 'form.reset_password.email_subject' => 'Sol·licitud de restabliment de la paraula de pas de Anuko Time Tracker',
363 // TODO: translate the following.
364 // '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",
365
366 // Changing Password form. See example at https://timetracker.anuko.com/password_change.php?ref=1.
367 'form.change_password.tip' => 'Per restablir la paraula de pas, si us plau escrigui-la i faci clic en guardar.',
368
369 // Time form. See example at https://timetracker.anuko.com/time.php.
370 'form.time.duration_format' => '(hh:mm o 0.0h)',
371 'form.time.billable' => 'Facturable',
372 // TODO: translate the following.
373 // 'form.time.uncompleted' => 'Uncompleted',
374 // 'form.time.remaining_quota' => 'Remaining quota',
375 // 'form.time.over_quota' => 'Over quota',
376
377 // Editing Time Record form. See example at https://timetracker.anuko.com/time_edit.php (get there by editing an uncompleted time record).
378 'form.time_edit.uncompleted' => 'Aquest historial s\\\'ha guardat únicament amb l\\\'hora d\\\'inici. Aixó no és un error.',
379
380 // Week view form. See example at https://timetracker.anuko.com/week.php.
381 // TODO: translate the following.
382 // 'form.week.new_entry' => 'New entry',
383
384 // Reports form. See example at https://timetracker.anuko.com/reports.php
385 'form.reports.save_as_favorite' => 'Guardar com a favorit',
386 // TODO: translate the following.
387 // 'form.reports.confirm_delete' => 'Are you sure you want to delete this favorite report?',
388 'form.reports.include_billable' => 'facturable',
389 'form.reports.include_not_billable' => 'no facturable',
390 // TODO: translate the following.
391 // 'form.reports.include_invoiced' => 'invoiced',
392 // 'form.reports.include_not_invoiced' => 'not invoiced',
393 'form.reports.select_period' => 'Seleccionar període de temps',
394 'form.reports.set_period' => 'o establir dates',
395 'form.reports.show_fields' => 'Mostrar camps',
396 'form.reports.group_by' => 'Agrupar per',
397 'form.reports.group_by_no' => '--- no agrupar ---',
398 'form.reports.group_by_date' => 'data',
399 'form.reports.group_by_user' => 'usuari',
400 // TODO: translate the following.
401 // 'form.reports.group_by_client' => 'client',
402 'form.reports.group_by_project' => 'projecte',
403 // TODO: translate the following.
404 // 'form.reports.group_by_task' => 'task',
405 'form.reports.totals_only' => 'Només totals',
406
407 // Report form. See example at https://timetracker.anuko.com/report.php
408 // (after generating a report at https://timetracker.anuko.com/reports.php).
409 'form.report.export' => 'Exportar',
410 // TODO: translate the following.
411 // 'form.report.assign_to_invoice' => 'Assign to invoice',
412
413 // Invoice form. See example at https://timetracker.anuko.com/invoice.php
414 // (you can get to this form after generating a report).
415 'form.invoice.number' => 'Número de factura',
416 'form.invoice.person' => 'Persona',
417
418 // Deleting Invoice form. See example at https://timetracker.anuko.com/invoice_delete.php
419 // TODO: translate the following.
420 // 'form.invoice.invoice_to_delete' => 'Invoice to delete',
421 // 'form.invoice.invoice_entries' => 'Invoice entries',
422 // 'form.invoice.confirm_deleting_entries' => 'Please confirm deleting invoice entries from Time Tracker.',
423
424 // Charts form. See example at https://timetracker.anuko.com/charts.php
425 // TODO: translate the following.
426 // 'form.charts.interval' => 'Interval',
427 // 'form.charts.chart' => 'Chart',
428
429 // Projects form. See example at https://timetracker.anuko.com/projects.php
430 // TODO: translate the following.
431 // 'form.projects.active_projects' => 'Active Projects',
432 // 'form.projects.inactive_projects' => 'Inactive Projects',
433
434 // Tasks form. See example at https://timetracker.anuko.com/tasks.php
435 // TODO: translate the following.
436 // 'form.tasks.active_tasks' => 'Active Tasks',
437 // 'form.tasks.inactive_tasks' => 'Inactive Tasks',
438
439 // Users form. See example at https://timetracker.anuko.com/users.php
440 // TODO: translate the following.
441 // 'form.users.active_users' => 'Active Users',
442 // 'form.users.inactive_users' => 'Inactive Users',
443 // 'form.users.uncompleted_entry' => 'User has an uncompleted time entry',
444 'form.users.role' => 'Rol',
445 'form.users.manager' => 'Manejador',
446 'form.users.comanager' => 'Auxiliar del manejador',
447 'form.users.rate' => 'Taxa',
448 'form.users.default_rate' => 'Taxa per defecte per hora',
449
450 // Roles form. See example at https://timetracker.anuko.com/roles.php
451 // TODO: translate the following.
452 // 'form.roles.active_roles' => 'Active Roles',
453 // 'form.roles.inactive_roles' => 'Inactive Roles',
454 // 'form.roles.rights' => 'Rights',
455
456 // Clients form. See example at https://timetracker.anuko.com/clients.php
457 // TODO: translate the following.
458 // 'form.clients.active_clients' => 'Active Clients',
459 // 'form.clients.inactive_clients' => 'Inactive Clients',
460
461 // Deleting Client form. See example at https://timetracker.anuko.com/client_delete.php
462 // TODO: translate the following.
463 // 'form.client.client_to_delete' => 'Client to delete',
464 // 'form.client.client_entries' => 'Client entries',
465
466 // Exporting Team Data form. See example at https://timetracker.anuko.com/export.php
467 'form.export.hint' => 'Vosté pot exportar totes les dades del grup dins d\\\'un archivo xml. Això pot ser útil si necessita migrar dades al seu propi servidor.',
468 'form.export.compression' => 'Compressió',
469 // TODO: translate the following.
470 // 'form.export.compression_none' => 'none',
471 // 'form.export.compression_bzip' => 'bzip',
472
473 // Importing Team Data form. See example at https://timetracker.anuko.com/imort.php (login as admin first).
474 'form.import.hint' => 'Importar dades del grup des d\\\'un arxiu xml.',
475 'form.import.file' => 'Sel·leccioni l\\\'arxiu',
476 'form.import.success' => 'Importació finalitzada amb èxit.',
477
478 // Teams form. See example at https://timetracker.anuko.com/admin_teams.php (login as admin first).
479 'form.teams.hint' => 'Crear un nou grup, creant un nou compte del manejador de l\\\'equip.<br>També pot importar dades de grups, d\\\'un arxiu xml d\\\'un altre servidor Anuko Time Tracker (no està permès col·lisions de login).',
480
481 // Profile form. See example at https://timetracker.anuko.com/profile_edit.php.
482 // TODO: translate the following.
483 // 'form.profile.12_hours' => '12 hours',
484 // 'form.profile.24_hours' => '24 hours',
485 // 'form.profile.show_holidays' => 'Show holidays',
486 // 'form.profile.tracking_mode' => 'Tracking mode',
487 // 'form.profile.mode_time' => 'time',
488 // 'form.profile.mode_projects' => 'projects',
489 // 'form.profile.mode_projects_and_tasks' => 'projects and tasks',
490 // 'form.profile.record_type' => 'Record type',
491 // 'form.profile.type_all' => 'all',
492 // 'form.profile.type_start_finish' => 'start and finish',
493 // 'form.profile.type_duration' => 'duration',
494 // 'form.profile.punch_mode' => 'Punch mode',
495 // 'form.profile.allow_overlap' => 'Allow overlap',
496 // 'form.profile.future_entries' => 'Future entries',
497 // 'form.profile.uncompleted_indicators' => 'Uncompleted indicators',
498 // 'form.profile.plugins' => 'Plugins',
499
500 // Mail form. See example at https://timetracker.anuko.com/report_send.php when emailing a report.
501 'form.mail.from' => 'De',
502 'form.mail.to' => 'Per a',
503 // TODO: translate the following.
504 // 'form.mail.report_subject' => 'Time Tracker Report',
505 // '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.',
506 // 'form.mail.report_sent' => 'Report sent.',
507 'form.mail.invoice_sent' => 'Factura enviada.',
508
509 // Quotas configuration form.
510 // TODO: translate the following.
511 // 'form.quota.year' => 'Year',
512 // 'form.quota.month' => 'Month',
513 // 'form.quota.quota' => 'Quota',
514 // 'form.quota.workday_hours' => 'Hours in work day',
515 // 'form.quota.hint' => 'If values are empty, quotas are calculated automatically based on workday hours and holidays.',
516
517 // Roles and rights. These strings are used in multiple places. Grouped here to provide consistent translations.
518 // TODO: translate the following.
519 // 'role.user.label' => 'User',
520 // 'role.user.low_case_label' => 'user',
521 // 'role.user.description' => 'A regular member without management rights.',
522 // 'role.client.label' => 'Client',
523 // 'role.client.low_case_label' => 'client',
524 // 'role.client.description' => 'A client can view its own reports, charts, and invoices.',
525 // 'role.supervisor.label' => 'Supervisor',
526 // 'role.supervisor.low_case_label' => 'supervisor',
527 // 'role.supervisor.description' => 'A person with a small set of management rights.',
528 // 'role.comanager.label' => 'Co-manager',
529 // 'role.comanager.low_case_label' => 'co-manager',
530 // 'role.comanager.description' => 'A person with a big set of management functions.',
531 // 'role.manager.label' => 'Manager',
532 // 'role.manager.low_case_label' => 'manager',
533 // 'role.manager.description' => 'Group manager. Can do most of things for a group.',
534 // 'role.top_manager.label' => 'Top manager',
535 // 'role.top_manager.low_case_label' => 'top manager',
536 // 'role.top_manager.description' => 'Top group manager. Can do everything in a tree of groups.',
537 // 'role.admin.label' => 'Administrator',
538 // 'role.admin.low_case_label' => 'administrator',
539 // 'role.admin.description' => 'Site adminsitrator.',
540 );