More recycling.
[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 // TODO: translate the following.
119 // 'button.add_user' => 'Add user',
120 'button.add_project' => 'Adicionar projeto',
121 // TODO: translate the following.
122 // 'button.add_task' => 'Add task',
123 // 'button.add_client' => 'Add client',
124 // 'button.add_invoice' => 'Add invoice',
125 // 'button.add_option' => 'Add option',
126 'button.add' => 'Adicionar',
127 // TODO: translate the following.
128 // 'button.generate' => 'Generate',
129 // 'button.reset_password' => 'Reset password',
130 'button.send' => 'Enviar',
131 'button.send_by_email' => 'Enviar por e-mail',
132 // TODO: translate the following.
133 // 'button.create_team' => 'Create team',
134 // 'button.export' => 'Export team',
135 // 'button.import' => 'Import team',
136 // 'button.close' => 'Close',
137 // 'button.stop' => 'Stop',
138
139 // Labels for controls on forms. Labels in this section are used on multiple forms.
140 // TODO: translate the following.
141 // 'label.team_name' => 'Team name',
142 // 'label.address' => 'Address',
143 // 'label.currency' => 'Currency',
144 // 'label.manager_name' => 'Manager name',
145 // 'label.manager_login' => 'Manager login',
146 'label.person_name' => 'Nome',
147 'label.thing_name' => 'Nome',
148 // TODO: translate the following.
149 // 'label.login' => 'Login',
150 'label.password' => 'Senha',
151 'label.confirm_password' => 'Confirme a senha',
152 'label.email' => 'E-mail',
153 // TODO: translate the following.
154 // 'label.cc' => 'Cc',
155 // 'label.bcc' => 'Bcc',
156 'label.subject' => 'Assunto',
157 'label.date' => 'Data',
158 'label.start_date' => 'Data inicial',
159 'label.end_date' => 'Data final',
160 'label.user' => 'Usuário',
161 'label.users' => 'Usuários',
162 // TODO: translate the following.
163 // 'label.client' => 'Client',
164 // 'label.clients' => 'Clients',
165 // 'label.option' => 'Option',
166 // 'label.invoice' => 'Invoice',
167 'label.project' => 'Projeto',
168 'label.projects' => 'Projetos',
169 // TODO: translate the following.
170 // 'label.task' => 'Task',
171 // 'label.tasks' => 'Tasks',
172 // 'label.description' => 'Description',
173 'label.start' => 'Início',
174 'label.finish' => 'Fim',
175 'label.duration' => 'Duração',
176 'label.note' => 'Anotação',
177 'label.notes' => 'Anotações',
178 // TODO: translate the following.
179 // 'label.item' => 'Item',
180 // 'label.cost' => 'Cost',
181 // 'label.day_total' => 'Day total',
182 // 'label.week_total' => 'Week total',
183 // 'label.month_total' => 'Month total',
184 // 'label.today' => 'Today',
185 // 'label.total_hours' => 'Total hours',
186 // 'label.total_cost' => 'Total cost',
187 // 'label.view' => 'View',
188 'label.edit' => 'Editar',
189 'label.delete' => 'Apagar',
190 // TODO: translate the following.
191 // 'label.configure' => 'Configure',
192 // 'label.select_all' => 'Select all',
193 // 'label.select_none' => 'Deselect all',
194 // 'label.day_view' => 'Day view',
195 // 'label.week_view' => 'Week view',
196 // 'label.id' => 'ID',
197 // 'label.language' => 'Language',
198 // 'label.decimal_mark' => 'Decimal mark',
199 // 'label.date_format' => 'Date format',
200 // 'label.time_format' => 'Time format',
201 // 'label.week_start' => 'First day of week',
202 'label.comment' => 'Comentário',
203 'label.status' => 'Status',
204 // TODO: translate the following.
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' => 'ou',
211 // TODO: translate the following.
212 // 'label.error' => 'Error',
213 // 'label.ldap_hint' => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
214 'label.required_fields' => '* campos obrigatórios',
215 // TODO: translate the following.
216 // 'label.on_behalf' => 'on behalf of',
217 'label.role_manager' => '(gerente)',
218 // TODO: translate the following.
219 // 'label.role_comanager' => '(co-manager)',
220 // 'label.role_admin' => '(administrator)',
221 // 'label.page' => 'Page',
222 // 'label.condition' => 'Condition',
223 // 'label.yes' => 'yes',
224 // 'label.no' => 'no',
225 // Labels for plugins (extensions to Time Tracker that provide additional features).
226 // TODO: translate the following.
227 // 'label.custom_fields' => 'Custom fields',
228 // 'label.monthly_quotas' => 'Monthly quotas',
229 // 'label.type' => 'Type',
230 // 'label.type_dropdown' => 'dropdown',
231 // 'label.type_text' => 'text',
232 // 'label.required' => 'Required',
233 // 'label.fav_report' => 'Favorite report',
234 // 'label.cron_schedule' => 'Cron schedule',
235 // 'label.what_is_it' => 'What is it?',
236 // 'label.expense' => 'Expense',
237 // 'label.quantity' => 'Quantity',
238 // 'label.paid_status' => 'Paid status',
239 // 'label.paid' => 'Paid',
240 // 'label.mark_paid' => 'Mark paid',
241 // 'label.week_note' => 'Week note',
242 // 'label.week_list' => 'Week list',
243
244 // Form titles.
245 'title.login' => 'Login',
246 // TODO: translate the following.
247 // 'title.teams' => 'Teams',
248 // 'title.create_team' => 'Creating Team',
249 // 'title.edit_team' => 'Editing Team',
250 // 'title.delete_team' => 'Deleting Team',
251 // 'title.reset_password' => 'Resetting Password',
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' => 'Relatórios',
264 // TODO: translate the following.
265 // 'title.report' => 'Report',
266 // 'title.send_report' => 'Sending Report',
267 // 'title.invoice' => 'Invoice',
268 // 'title.send_invoice' => 'Sending Invoice',
269 // 'title.charts' => 'Charts',
270 'title.projects' => 'Projetos',
271 'title.add_project' => 'Adicionando projeto',
272 'title.edit_project' => 'Editando projeto',
273 'title.delete_project' => 'Apagando projeto',
274 // TODO: translate the following.
275 // 'title.tasks' => 'Tasks',
276 // 'title.add_task' => 'Adding Task',
277 // 'title.edit_task' => 'Editing Task',
278 // 'title.delete_task' => 'Deleting Task',
279 'title.users' => 'Usuários',
280 'title.add_user' => 'Adicionando usuário',
281 'title.edit_user' => 'Editando usuário',
282 'title.delete_user' => 'Apagando usuário',
283 // 'title.clients' => 'Clients',
284 // 'title.add_client' => 'Adding Client',
285 // 'title.edit_client' => 'Editing Client',
286 // 'title.delete_client' => 'Deleting Client',
287 // 'title.invoices' => 'Invoices',
288 // 'title.add_invoice' => 'Adding Invoice',
289 // 'title.view_invoice' => 'Viewing Invoice',
290 // 'title.delete_invoice' => 'Deleting Invoice',
291 // 'title.notifications' => 'Notifications',
292 // 'title.add_notification' => 'Adding Notification',
293 // 'title.edit_notification' => 'Editing Notification',
294 // 'title.delete_notification' => 'Deleting Notification',
295 // 'title.monthly_quotas' => 'Monthly Quotas',
296 // 'title.export' => 'Exporting Team Data',
297 // 'title.import' => 'Importing Team Data',
298 // 'title.options' => 'Options',
299 // 'title.profile' => 'Profile',
300 // 'title.cf_custom_fields' => 'Custom Fields',
301 // 'title.cf_add_custom_field' => 'Adding Custom Field',
302 // 'title.cf_edit_custom_field' => 'Editing Custom Field',
303 // 'title.cf_delete_custom_field' => 'Deleting Custom Field',
304 // 'title.cf_dropdown_options' => 'Dropdown Options',
305 // 'title.cf_add_dropdown_option' => 'Adding Option',
306 // 'title.cf_edit_dropdown_option' => 'Editing Option',
307 // 'title.cf_delete_dropdown_option' => 'Deleting Option',
308 // NOTE TO TRANSLATORS: Locking is a feature to lock records from modifications (ex: weekly on Mondays we lock all previous weeks).
309 // It is also a name for the Locking plugin on the Team profile page.
310 // 'title.locking' => 'Locking',
311 // 'title.week_view' => 'Week View',
312
313 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
314 // Strings that are used in a single form must go to the specific form section.
315 // TODO: translate the following.
316 // 'dropdown.all' => '--- all ---',
317 // 'dropdown.no' => '--- no ---',
318 // 'dropdown.current_day' => 'today',
319 // 'dropdown.previous_day' => 'yesterday',
320 // 'dropdown.selected_day' => 'day',
321 // 'dropdown.current_week' => 'this week',
322 // 'dropdown.previous_week' => 'previous week',
323 // 'dropdown.selected_week' => 'week',
324 // 'dropdown.current_month' => 'this month',
325 // 'dropdown.previous_month' => 'previous month',
326 // 'dropdown.selected_month' => 'month',
327 // 'dropdown.current_year' => 'this year',
328 // 'dropdown.previous_year' => 'previous year',
329 // 'dropdown.selected_year' => 'year',
330 // 'dropdown.all_time' => 'all time',
331 'dropdown.projects' => 'projetos',
332 // TODO: translate the following.
333 // 'dropdown.tasks' => 'tasks',
334 // 'dropdown.clients' => 'clients',
335 // 'dropdown.select' => '--- select ---',
336 // 'dropdown.select_invoice' => '--- select invoice ---',
337 // 'dropdown.status_active' => 'active',
338 // 'dropdown.status_inactive' => 'inactive',
339 // 'dropdown.delete'=>'delete',
340 // 'dropdown.do_not_delete'=>'do not delete',
341 // 'dropdown.paid' => 'paid',
342 // 'dropdown.not_paid' => 'not paid',
343
344 // Login form. See example at https://timetracker.anuko.com/login.php.
345 'form.login.forgot_password' => 'Esqueceu a senha?',
346 // TODO: translate the following.
347 // '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.',
348
349 // Resetting Password form. See example at https://timetracker.anuko.com/password_reset.php.
350 // TODO: translate the following.
351 // 'form.reset_password.message' => 'Password reset request sent by email.',
352 // 'form.reset_password.email_subject' => 'Anuko Time Tracker password reset request',
353 // '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",
354
355 // Changing Password form. See example at https://timetracker.anuko.com/password_change.php?ref=1.
356 // TODO: translate the following.
357 // 'form.change_password.tip' => 'Type new password and click on Save.',
358
359 // Time form. See example at https://timetracker.anuko.com/time.php.
360 // TODO: translate the following.
361 // 'form.time.duration_format' => '(hh:mm or 0.0h)',
362 // 'form.time.billable' => 'Billable',
363 // 'form.time.uncompleted' => 'Uncompleted',
364 // 'form.time.remaining_quota' => 'Remaining quota',
365 // 'form.time.over_quota' => 'Over quota',
366
367 // Editing Time Record form. See example at https://timetracker.anuko.com/time_edit.php (get there by editing an uncompleted time record).
368 // TODO: translate the following.
369 // 'form.time_edit.uncompleted' => 'This record was saved with only start time. It is not an error.',
370
371 // Week view form. See example at https://timetracker.anuko.com/week.php.
372 // TODO: translate the following.
373 // 'form.week.new_entry' => 'New entry',
374
375 // Reports form. See example at https://timetracker.anuko.com/reports.php
376 // TODO: translate the following.
377 // 'form.reports.save_as_favorite' => 'Save as favorite',
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' => 'Selecione o período de tempo',
384 'form.reports.set_period' => 'ou selecionar datas',
385 'form.reports.show_fields' => 'Exibir campos',
386 // 'form.reports.group_by' => 'Group by',
387 // 'form.reports.group_by_no' => '--- no grouping ---',
388 // 'form.reports.group_by_date' => 'date',
389 // 'form.reports.group_by_user' => 'user',
390 // 'form.reports.group_by_client' => 'client',
391 // 'form.reports.group_by_project' => 'project',
392 // 'form.reports.group_by_task' => 'task',
393 // 'form.reports.totals_only' => 'Totals only',
394
395 // Report form. See example at https://timetracker.anuko.com/report.php
396 // (after generating a report at https://timetracker.anuko.com/reports.php).
397 // TODO: translate the following.
398 // 'form.report.export' => 'Export',
399 // 'form.report.assign_to_invoice' => 'Assign to invoice',
400
401 // Invoice form. See example at https://timetracker.anuko.com/invoice.php
402 // (you can get to this form after generating a report).
403 // TODO: translate the following.
404 // 'form.invoice.number' => 'Invoice number',
405 // 'form.invoice.person' => 'Person',
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
426
427 // TODO: refactoring ongoing down from here.
428
429 // password reminder form attributes
430 "form.fpass.send_pass_str" => 'senha foi enviada',
431 "form.fpass.send_pass_subj" => 'Sua senha do Anuko Time Tracker',
432
433 // administrator form
434 "form.admin.options" => 'opções',
435
436 // my time form attributes
437 "form.mytime.title" => 'adicionar período',
438 "form.mytime.total" => 'horas totais: ',
439 "form.mytime.del_yes" => 'o período registrado foi apagado com sucesso',
440
441 // profile form attributes
442 // Note to translators: we need a more accurate translation of form.profile.create_title
443 "form.profile.create_title" => 'criar nova conta de gerência',
444 "form.profile.edit_title" => 'editando perfil',
445
446 // people form attributes
447 "form.people.th.role" => 'regra',
448 "form.people.manager" => 'gerente',
449
450 // report attributes
451 "form.report.title" => 'relatórios',
452 "form.report.total" => 'horas totais',
453
454 // mail form attributes
455 "form.mail.from" => 'de',
456 "form.mail.to" => 'para',
457 "form.mail.above" => 'enviar este relatório por e-mail',
458 // Note to translators: the strings below must be translated
459 // "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.',
460 // "form.mail.sending_str" => '<b>the message has been sent</b>',
461
462 "controls.per_tm" => 'este mês',
463 "controls.per_lm" => 'último mês',
464 "controls.per_tw" => 'esta semana',
465 "controls.per_lw" => 'última semana',
466 );