Some more work in translations.
[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 // TODO: translate the following.
52 // 'menu.time' => 'Time',
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' => 'Users',
61 'menu.teams' => 'Equips',
62 // TODO: translate the following.
63 // 'menu.export' => 'Export',
64 // 'menu.clients' => 'Clients',
65 // 'menu.options' => 'Options',
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' => 'Selleccionar projecte.',
86 // TODO: translate the following.
87 // 'error.task' => 'Select task.',
88 // 'error.client' => 'Select client.',
89 // 'error.report' => 'Select report.',
90 // 'error.record' => 'Select record.',
91 'error.auth' => 'Usuari o parula de pas incorrecta.',
92 // TODO: translate the following.
93 // 'error.user_exists' => 'User with this login already exists.',
94 'error.project_exists' => 'Ja existeix un projecte amb aquest nom.',
95 // TODO: translate the following.
96 // 'error.task_exists' => 'Task with this name already exists.',
97 // 'error.client_exists' => 'Client with this name already exists.',
98 // 'error.invoice_exists' => 'Invoice with this number already exists.',
99 // 'error.no_invoiceable_items' => 'There are no invoiceable items.',
100 // 'error.no_login' => 'No user with this login.',
101 // 'error.no_teams' => 'Your database is empty. Login as admin and create a new team.',
102 'error.upload' => 'Error pujant l\\\'arxiu.',
103 // TODO: translate the following.
104 // 'error.range_locked' => 'Date range is locked.',
105 // 'error.mail_send' => 'Error sending mail.',
106 // 'error.no_email' => 'No email associated with this login.',
107 // 'error.uncompleted_exists' => 'Uncompleted entry already exists. Close or delete it.',
108 // 'error.goto_uncompleted' => 'Go to uncompleted entry.',
109 // 'error.overlap' => 'Time interval overlaps with existing records.',
110 // 'error.future_date' => 'Date is in future.',
111
112 // Labels for buttons.
113 'button.login' => 'Iniciar sessió',
114 'button.now' => 'Ara',
115 'button.save' => 'Guardar',
116 // TODO: translate the following.
117 // 'button.copy' => 'Copy',
118 'button.cancel' => 'Cancel·lar',
119 'button.submit' => 'Enviar',
120 'button.add_user' => 'Agregar usuari',
121 'button.add_project' => 'Agregar projecte',
122 // TODO: translate the following.
123 // 'button.add_task' => 'Add task',
124 'button.add_client' => 'Agregar client',
125 // TODO: translate the following.
126 // 'button.add_invoice' => 'Add invoice',
127 // 'button.add_option' => 'Add option',
128 'button.add' => 'Agregar',
129 'button.generate' => 'Generar',
130 // TODO: translate the following.
131 // 'button.reset_password' => 'Reset password',
132 'button.send' => 'Enviar',
133 'button.send_by_email' => 'Enviar per correu',
134 'button.create_team' => 'Crear grup',
135 'button.export' => 'Exportar grup',
136 'button.import' => 'Importar grup',
137 // TODO: translate the following.
138 // 'button.close' => 'Close',
139 // 'button.stop' => 'Stop',
140
141 // Labels for controls on forms. Labels in this section are used on multiple forms.
142 // TODO: translate the following.
143 // 'label.team_name' => 'Team name',
144 // 'label.address' => 'Address',
145 'label.currency' => 'Moneda',
146 // TODO: translate the following.
147 // 'label.manager_name' => 'Manager name',
148 // 'label.manager_login' => 'Manager login',
149 'label.person_name' => 'Nom',
150 'label.thing_name' => 'Nom',
151 // TODO: translate the following.
152 // 'label.login' => 'Login',
153 'label.password' => 'Paraula de pas',
154 'label.confirm_password' => 'Confirmar paraula de pas',
155 'label.email' => 'E-mail',
156 'label.cc' => 'Cc',
157 // TODO: translate the following.
158 // 'label.bcc' => 'Bcc',
159 'label.subject' => 'Assumpte',
160 'label.date' => 'Data',
161 // TODO: translate the following.
162 // 'label.start_date' => 'Start date',
163 // 'label.end_date' => 'End date',
164 // 'label.user' => 'User',
165 // 'label.users' => 'Users',
166 // 'label.client' => 'Client',
167 // 'label.clients' => 'Clients',
168 // 'label.option' => 'Option',
169 // 'label.invoice' => 'Invoice',
170 // 'label.project' => 'Project',
171 // 'label.projects' => 'Projects',
172 // 'label.task' => 'Task',
173 // 'label.tasks' => 'Tasks',
174 // 'label.description' => 'Description',
175 // 'label.start' => 'Start',
176 // 'label.finish' => 'Finish',
177 // 'label.duration' => 'Duration',
178 // 'label.note' => 'Note',
179 // 'label.notes' => 'Notes',
180 // 'label.item' => 'Item',
181 // 'label.cost' => 'Cost',
182 // 'label.day_total' => 'Day total',
183 // 'label.week_total' => 'Week total',
184 // 'label.month_total' => 'Month total',
185 // 'label.today' => 'Today',
186 // 'label.total_hours' => 'Total hours',
187 // 'label.total_cost' => 'Total cost',
188 // 'label.view' => 'View',
189 'label.edit' => 'Modificar',
190 'label.delete' => 'Eliminar',
191 // TODO: translate the following.
192 // 'label.configure' => 'Configure',
193 // 'label.select_all' => 'Select all',
194 // 'label.select_none' => 'Deselect all',
195 // 'label.day_view' => 'Day view',
196 // 'label.week_view' => 'Week view',
197 // 'label.id' => 'ID',
198 // 'label.language' => 'Language',
199 // 'label.decimal_mark' => 'Decimal mark',
200 // 'label.date_format' => 'Date format',
201 // 'label.time_format' => 'Time format',
202 // 'label.week_start' => 'First day of week',
203 // 'label.comment' => 'Comment',
204 // 'label.status' => 'Status',
205 // 'label.tax' => 'Tax',
206 // 'label.subtotal' => 'Subtotal',
207 // 'label.total' => 'Total',
208 // 'label.client_name' => 'Client name',
209 // 'label.client_address' => 'Client address',
210 // 'label.or' => 'or',
211 // 'label.error' => 'Error',
212 // 'label.ldap_hint' => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
213 // 'label.required_fields' => '* - required fields',
214 'label.on_behalf' => 'a nom de',
215 'label.role_manager' => '(manejador)',
216 'label.role_comanager' => '(auxiliar del manejador)',
217 'label.role_admin' => '(administrador)',
218 // TODO: translate the following.
219 // 'label.page' => 'Page',
220 // 'label.condition' => 'Condition',
221 // 'label.yes' => 'yes',
222 // 'label.no' => 'no',
223 // Labels for plugins (extensions to Time Tracker that provide additional features).
224 // TODO: translate the following.
225 // 'label.custom_fields' => 'Custom fields',
226 // 'label.monthly_quotas' => 'Monthly quotas',
227 // 'label.type' => 'Type',
228 // 'label.type_dropdown' => 'dropdown',
229 // 'label.type_text' => 'text',
230 // 'label.required' => 'Required',
231 'label.fav_report' => 'Report favorit',
232 // TODO: translate the following.
233 // 'label.cron_schedule' => 'Cron schedule',
234 // 'label.what_is_it' => 'What is it?',
235 // 'label.expense' => 'Expense',
236 // 'label.quantity' => 'Quantity',
237 // 'label.paid_status' => 'Paid status',
238 // 'label.paid' => 'Paid',
239 // 'label.mark_paid' => 'Mark paid',
240 // 'label.week_note' => 'Week note',
241 // 'label.week_list' => 'Week list',
242
243 // Form titles.
244 'title.login' => 'Sessió iniciada',
245 // TODO: translate the following.
246 // 'title.teams' => 'Teams',
247 // 'title.create_team' => 'Creating Team',
248 // 'title.edit_team' => 'Editing Team',
249 // 'title.delete_team' => 'Deleting Team',
250 'title.reset_password' => 'Restablir paraula de pas',
251 // TODO: translate the following.
252 // 'title.change_password' => 'Changing Password',
253 // 'title.time' => 'Time',
254 // 'title.edit_time_record' => 'Editing Time Record',
255 // 'title.delete_time_record' => 'Deleting Time Record',
256 // 'title.expenses' => 'Expenses',
257 // 'title.edit_expense' => 'Editing Expense Item',
258 // 'title.delete_expense' => 'Deleting Expense Item',
259 // 'title.predefined_expenses' => 'Predefined Expenses',
260 // 'title.add_predefined_expense' => 'Adding Predefined Expense',
261 // 'title.edit_predefined_expense' => 'Editing Predefined Expense',
262 // 'title.delete_predefined_expense' => 'Deleting Predefined Expense',
263 'title.reports' => 'Informes',
264 'title.report' => 'Informe',
265 // TODO: translate the following.
266 // 'title.send_report' => 'Sending Report',
267 // 'title.invoice' => 'Invoice',
268 // 'title.send_invoice' => 'Sending Invoice',
269 // 'title.charts' => 'Charts',
270 // 'title.projects' => 'Projects',
271 // 'title.add_project' => 'Adding Project',
272 // 'title.edit_project' => 'Editing Project',
273 // 'title.delete_project' => 'Deleting Project',
274 // 'title.tasks' => 'Tasks',
275 // 'title.add_task' => 'Adding Task',
276 // 'title.edit_task' => 'Editing Task',
277 // 'title.delete_task' => 'Deleting Task',
278 // 'title.users' => 'Users',
279 // 'title.add_user' => 'Adding User',
280 // 'title.edit_user' => 'Editing User',
281 // 'title.delete_user' => 'Deleting User',
282 // 'title.clients' => 'Clients',
283 // 'title.add_client' => 'Adding Client',
284 // 'title.edit_client' => 'Editing Client',
285 // 'title.delete_client' => 'Deleting Client',
286 // 'title.invoices' => 'Invoices',
287 // 'title.add_invoice' => 'Adding Invoice',
288 // 'title.view_invoice' => 'Viewing Invoice',
289 // 'title.delete_invoice' => 'Deleting Invoice',
290 // 'title.notifications' => 'Notifications',
291 // 'title.add_notification' => 'Adding Notification',
292 // 'title.edit_notification' => 'Editing Notification',
293 // 'title.delete_notification' => 'Deleting Notification',
294 // 'title.monthly_quotas' => 'Monthly Quotas',
295 // 'title.export' => 'Exporting Team Data',
296 // 'title.import' => 'Importing Team Data',
297 // 'title.options' => 'Options',
298 // 'title.profile' => 'Profile',
299 // 'title.cf_custom_fields' => 'Custom Fields',
300 // 'title.cf_add_custom_field' => 'Adding Custom Field',
301 // 'title.cf_edit_custom_field' => 'Editing Custom Field',
302 // 'title.cf_delete_custom_field' => 'Deleting Custom Field',
303 // 'title.cf_dropdown_options' => 'Dropdown Options',
304 // 'title.cf_add_dropdown_option' => 'Adding Option',
305 // 'title.cf_edit_dropdown_option' => 'Editing Option',
306 // 'title.cf_delete_dropdown_option' => 'Deleting Option',
307 // NOTE TO TRANSLATORS: Locking is a feature to lock records from modifications (ex: weekly on Mondays we lock all previous weeks).
308 // It is also a name for the Locking plugin on the Team profile page.
309 // 'title.locking' => 'Locking',
310 // 'title.week_view' => 'Week View',
311
312 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
313 // Strings that are used in a single form must go to the specific form section.
314 // TODO: translate the following.
315 // 'dropdown.all' => '--- all ---',
316 // 'dropdown.no' => '--- no ---',
317 // 'dropdown.current_day' => 'today',
318 // 'dropdown.previous_day' => 'yesterday',
319 // 'dropdown.selected_day' => 'day',
320 // 'dropdown.current_week' => 'this week',
321 // 'dropdown.previous_week' => 'previous week',
322 // 'dropdown.selected_week' => 'week',
323 // 'dropdown.current_month' => 'this month',
324 // 'dropdown.previous_month' => 'previous month',
325 // 'dropdown.selected_month' => 'month',
326 // 'dropdown.current_year' => 'this year',
327 // 'dropdown.previous_year' => 'previous year',
328 // 'dropdown.selected_year' => 'year',
329 // 'dropdown.all_time' => 'all time',
330 // 'dropdown.projects' => 'projects',
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 // TODO: translate the following.
344 // 'form.login.forgot_password' => 'Forgot password?',
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 'form.reset_password.message' => 'S\\\'ha enviat la petició de restablir paraula de pas.',
349 'form.reset_password.email_subject' => 'Sol·licitud de restabliment de la paraula de pas de Anuko Time Tracker',
350 // TODO: translate the following.
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
354
355 // TODO: refactoring ongoing down from here.
356
357 // Changing Password form. See example at https://timetracker.anuko.com/password_change.php?ref=1.
358 'form.change_password.tip' => 'Per restablir la paraula de pas, si us plau escrigui-la i faci clic en guardar.',
359
360 // Time form. See example at https://timetracker.anuko.com/time.php.
361 // TODO: translate the following.
362 // 'form.time.duration_format' => '(hh:mm or 0.0h)',
363 // 'form.time.billable' => 'Billable',
364 // 'form.time.uncompleted' => 'Uncompleted',
365 // 'form.time.remaining_quota' => 'Remaining quota',
366 // 'form.time.over_quota' => 'Over quota',
367
368 // Editing Time Record form. See example at https://timetracker.anuko.com/time_edit.php (get there by editing an uncompleted time record).
369 // TODO: translate the following.
370 // 'form.time_edit.uncompleted' => 'This record was saved with only start time. It is not an error.',
371
372 // Week view form. See example at https://timetracker.anuko.com/week.php.
373 // 'form.week.new_entry' => 'New entry',
374
375 // Reports form. See example at https://timetracker.anuko.com/reports.php
376 'form.reports.save_as_favorite' => 'Guardar com a favorit',
377 // TODO: translate the following.
378 // 'form.reports.confirm_delete' => 'Are you sure you want to delete this favorite report?',
379 // 'form.reports.include_billable' => 'billable',
380 // 'form.reports.include_not_billable' => 'not billable',
381 // 'form.reports.include_invoiced' => 'invoiced',
382 // 'form.reports.include_not_invoiced' => 'not invoiced',
383 // 'form.reports.select_period' => 'Select time period',
384 // 'form.reports.set_period' => 'or set dates',
385 // 'form.reports.show_fields' => 'Show fields',
386 // 'form.reports.group_by' => 'Group by',
387 // 'form.reports.group_by_no' => '--- no grouping ---',
388 'form.reports.group_by_date' => 'data',
389 // TODO: translate the following.
390 // 'form.reports.group_by_user' => 'user',
391 // 'form.reports.group_by_client' => 'client',
392 'form.reports.group_by_project' => 'projecte',
393 // TODO: translate the following.
394 // 'form.reports.group_by_task' => 'task',
395 // 'form.reports.totals_only' => 'Totals only',
396
397 // TODO: the entire section from here to bottom needs refactoring.
398
399 // administrator form
400 "form.admin.duty_text" => '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 e-mail).',
401
402 "form.admin.change_pass" => 'Canviar la paraula de pas de l\\\'administrador de compte',
403 "form.admin.profile.title" => 'Grups',
404 "form.admin.profile.noprofiles" => 'La seva base de dades està buida. Iniciï sessió com a administrador i creï un nou grup.',
405 "form.admin.profile.comment" => 'Eliminar grup',
406 "form.admin.profile.th.id" => 'Identificació',
407 "form.admin.profile.th.active" => 'Actiu',
408
409 // my time form attributes
410 "form.mytime.title" => 'El meu temps',
411 "form.mytime.edit_title" => 'Modificant l\\\'historial de temps',
412 "form.mytime.del_str" => 'Eliminant l\\\'historial de temps',
413 "form.mytime.time_form" => ' (hh:mm)',
414 "form.mytime.date" => 'Data',
415 "form.mytime.project" => 'Projecte',
416 "form.mytime.activity" => 'Activitat',
417 "form.mytime.start" => 'Inici',
418 "form.mytime.finish" => 'Fi',
419 "form.mytime.duration" => 'Durada',
420 "form.mytime.note" => 'Nota',
421 "form.mytime.behalf" => 'Treball del dia per a',
422 "form.mytime.daily" => 'Treball diari',
423 "form.mytime.total" => 'Hores totals: ',
424 "form.mytime.th.project" => 'Projecte',
425 "form.mytime.th.activity" => 'Activitat',
426 "form.mytime.th.start" => 'Inici',
427 "form.mytime.th.finish" => 'Fi',
428 "form.mytime.th.duration" => 'Durada',
429 "form.mytime.th.note" => 'Nota',
430 "form.mytime.del_yes" => 'L\\\'historial de temps s\\\'ha eliminat amb èxit',
431 "form.mytime.no_finished_rec" => 'Aquest historial s\\\'ha guardat únicament amb l\\\'hora d\\\'inici. Aixó no és un error. Finalitzi sessió si ho necessita.',
432 "form.mytime.billable" => 'facturable',
433
434 // profile form attributes
435 // Note to translators: we need a more accurate translation of form.profile.create_title
436 "form.profile.create_title" => 'Crear un nou compte de manejador',
437 "form.profile.edit_title" => 'Modificant perfil',
438
439 // people form attributes
440 "form.people.ppl_str" => 'Persones',
441 "form.people.createu_str" => 'Creant nou usuari',
442 "form.people.edit_str" => 'Modificant usuari',
443 "form.people.del_str" => 'Eliminant usuari',
444 "form.people.th.email" => 'e-mail',
445 "form.people.th.role" => 'Rol',
446 "form.people.th.status" => 'Estat',
447 "form.people.th.project" => 'Projecte',
448 "form.people.th.rate" => 'Taxa',
449 "form.people.manager" => 'Manejador',
450 "form.people.comanager" => 'Auxiliar del manejador',
451 "form.people.empl" => 'Usuari',
452
453 "form.people.rate" => 'Taxa per defecte en hores',
454 "form.people.comanager" => 'Auxiliar del manejador',
455 "form.people.projects" => 'Projectes',
456
457 // projects form attributes
458 "form.project.proj_title" => 'Projectes',
459 "form.project.edit_str" => 'Modificant projecte',
460 "form.project.add_str" => 'Agregant nou projecte',
461 "form.project.del_str" => 'Eliminant projecte',
462
463 // activities form attributes
464 "form.activity.project" => 'Projecte',
465
466 // report attributes
467 "form.report.from" => 'Data d\\\'inici',
468 "form.report.to" => 'Data de fi',
469 "form.report.groupby_user" => 'Usuari',
470 "form.report.groupby_project" => 'Projecte',
471 "form.report.duration" => 'Durada',
472 "form.report.start" => 'Inici',
473 "form.report.finish" => 'Fi',
474 "form.report.note" => 'Nota',
475 "form.report.project" => 'Projecte',
476 "form.report.totals_only" => 'Només totals',
477 "form.report.total" => 'Hores Totals',
478 "form.report.th.empllist" => 'Usuari',
479 "form.report.th.date" => 'Data',
480 "form.report.th.project" => 'Projecte',
481 "form.report.th.start" => 'Inici',
482 "form.report.th.finish" => 'Fi',
483 "form.report.th.duration" => 'Durada',
484 "form.report.th.note" => 'Nota',
485
486 // charts form attributes
487 // Note to translators: form.charts.title needs to be translated.
488 // 'form.charts.title' => 'charts',
489
490 // mail form attributes
491 "form.mail.from" => 'De',
492 "form.mail.to" => 'Per a',
493 "form.mail.comment" => 'Comentari',
494 "form.mail.above" => 'Enviar aquest report por e-mail',
495 // Note to translators: this string needs to be translated.
496 // "form.mail.footer_str" => '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.',
497 "form.mail.sending_str" => '<b>Missatge enviat</b>',
498
499 // invoice attributes
500 "form.invoice.title" => 'Factura',
501 "form.invoice.caption" => 'Factura',
502 "form.invoice.above" => 'Informació addicional per factura',
503 "form.invoice.select_cust" => 'Seleccioni el client',
504 "form.invoice.fillform" => 'Empleni els camps',
505 "form.invoice.date" => 'Data',
506 "form.invoice.number" => 'Número de factura',
507 "form.invoice.tax" => 'Impost',
508 "form.invoice.comment" => 'Comentari ',
509 "form.invoice.th.username" => 'Persona',
510 "form.invoice.th.time" => 'Hores',
511 "form.invoice.th.rate" => 'Taxa',
512 "form.invoice.th.summ" => 'Quantitat',
513 "form.invoice.subtotal" => 'Subtotal',
514 "form.invoice.customer" => 'Client',
515 "form.invoice.mailinv_above" => 'Enviar aquesta factura per e-mail',
516 "form.invoice.sending_str" => '<b>Factura enviada</b>',
517
518 "form.migration.zip" => 'Comprimir',
519 "form.migration.file" => 'Sel·leccioni l\\\'arxiu',
520 "form.migration.import.title" => 'Importar dades',
521 "form.migration.import.success" => 'Importació finalitzada amb èxit',
522 "form.migration.import.text" => 'Importar dades del grup des d\\\'un arxiu xml',
523 "form.migration.export.title" => 'Exportar dades',
524 "form.migration.export.success" => 'Exportació finalitzada amb èxit',
525 "form.migration.export.text" => '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.',
526
527 "form.client.title" => 'Clients',
528 "form.client.add_title" => 'Agregar client',
529 "form.client.edit_title" => 'Modificar client',
530 "form.client.del_title" => 'Eliminar client',
531 "form.client.tax" => 'Impost',
532 "form.client.comment" => 'Comentari ',
533
534 // miscellaneous strings
535 "forward.forgot_password" => '¿Ha oblidat la seva paraula de pas?',
536 "forward.edit" => 'Modificar',
537 "forward.delete" => 'Eliminar',
538 "forward.tocsvfile" => 'Exportar dades a un arxiu .csv',
539 "forward.geninvoice" => 'Generar factura',
540 "forward.change" => 'Configurar clients',
541
542 // strings inside contols on forms
543 "controls.select.project" => '--- Sel·leccionar projecte ---',
544 "controls.select.activity" => '--- Sel·leccionar activitat ---',
545 "controls.select.client" => '--- Sel·leccionar client ---',
546 "controls.project_bind" => '--- Tots ---',
547 "controls.all" => '--- Tots ---',
548 "controls.notbind" => '--- No ---',
549 "controls.per_tm" => 'Aquest mes',
550 "controls.per_lm" => 'El mes passat',
551 "controls.per_tw" => 'Aquestat setmana',
552 "controls.per_lw" => 'La setmana passada',
553 "controls.per_td" => 'Aquest dia',
554 "controls.per_lw" => 'La setmana passada',
555 "controls.sel_period" => '--- Seleccionar període de temps ---',
556 "controls.sel_groupby" => '--- No agrupar ---',
557 "controls.inc_billable" => 'facturable',
558 "controls.inc_nbillable" => 'no facturable',
559
560 // labels
561 "label.chart.period" => 'gràfica por període',
562
563 "label.time_noentry" => 'Sense entrada',
564 "label.req_fields" => '* camps requerits',
565 "label.sel_project" => 'Seleccionar projecte',
566 "label.sel_tp" => 'Seleccionar període de temps',
567 "label.set_tp" => 'o establir dates',
568 "label.fields" => 'Mostrar camps',
569 "label.group_title" => 'Agrupar per',
570 "label.include_title" => 'include records',
571 "label.inv_str" => 'Factura',
572 "label.set_empl" => 'Seleccionar usuaris',
573 "label.sel_all" => 'Seleccionar tots',
574 "label.sel_none" => 'Treure totes las seleccions',
575 "label.or" => 'o',
576 "label.disable" => 'Deshabilitar',
577 "label.enable" => 'Habilitar',
578 "label.filter" => 'Filtrar',
579 "label.timeweek" => 'total setmanal',
580 );