Usability improvement of the monthly quota config form.
[timetracker.git] / WEB-INF / resources / ro.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 = 'Română';
35 $i18n_months = array('Ianuarie', 'Februarie', 'Martie', 'Aprilie', 'Mai', 'Iunie', 'Iulie', 'August', 'Septembrie', 'Octombrie', 'Noiembrie', 'Decembrie');
36 $i18n_weekdays = array('Duminica', 'Luni', 'Marti', 'Miercuri', 'Joi', 'Vineri', 'Sambata');
37 $i18n_weekdays_short = array('Du', 'Lu', 'Ma', 'Mi', 'Jo', 'Vi', 'Sa');
38 // format mm/dd
39 $i18n_holidays = array('01/01', '01/02', '04/19', '04/20', '05/01', '06/07', '06/08', '08/15', '12/01', '12/25', '12/26');
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' => 'Autentificare',
46 'menu.logout' => 'Iesire',
47 // TODO: translate the following.
48 // 'menu.forum' => 'Forum',
49 'menu.help' => 'Ajutor',
50 // TODO: translate the following.
51 // 'menu.create_team' => 'Create Team',
52 'menu.profile' => 'Profil',
53 'menu.time' => 'Timpul',
54 // TODO: translate the following.
55 // 'menu.expenses' => 'Expenses',
56 'menu.reports' => 'Rapoarte',
57 // TODO: translate the following.
58 // 'menu.charts' => 'Charts',
59 'menu.projects' => 'Proiecte',
60 // TODO: translate the following.
61 // 'menu.tasks' => 'Tasks',
62 // 'menu.users' => 'Users',
63 'menu.teams' => 'Echipe',
64 // TODO: translate the following.
65 // 'menu.export' => 'Export',
66 'menu.clients' => 'Clienti',
67 // TODO: translate the following.
68 // 'menu.options' => 'Options',
69
70 // Footer - strings on the bottom of most pages.
71 // TODO: translate the following.
72 // 'footer.contribute_msg' => 'You can contribute to Time Tracker in different ways.',
73 // 'footer.credits' => 'Credits',
74 // 'footer.license' => 'License',
75 // 'footer.improve' => 'Contribute', // Translators: this could mean "Improve", if it makes better sense in your language.
76                                      // This is a link to a webpage that describes how to contribute to the project.
77
78 // Error messages.
79 // TODO: translate the following.
80 // 'error.access_denied' => 'Access denied.',
81 // 'error.sys' => 'System error.',
82 'error.db' => 'Eroare baza de date.',
83 // TODO: translate the following.
84 // 'error.field' => 'Incorrect "{0}" data.',
85 'error.empty' => 'Campul "{0}" este gol.',
86 'error.not_equal' => 'Campul "{0}" nu este egal cu campul "{1}".',
87 // TODO: translate the following.
88 // 'error.interval' => 'Field "{0}" must be greater than "{1}".',
89 'error.project' => 'Selecteaza proiect.',
90 // TODO: translate the following.
91 // 'error.task' => 'Select task.',
92 // 'error.client' => 'Select client.',
93 // 'error.report' => 'Select report.',
94 // 'error.record' => 'Select record.',
95
96
97
98 // TODO: refactoring ongoing down from here.
99
100 'error.auth' => 'nume de utilizator sau parola incorecta',
101 // Note to translators: this string needs to be translated.
102 // 'error.user_exists' => 'user with this login already exists',
103 'error.project_exists' => 'proiectul cu acest nume exista deja',
104 // TODO: translate the following.
105 // 'error.task_exists' => 'Task with this name already exists.',
106 // 'error.client_exists' => 'Client with this name already exists.',
107 // Note to translators: this string needs to be properly translated (e-mail replaced with login).
108 // 'error.no_login' => 'nu exista utilizator cu acest email',
109 'error.upload' => 'eroare la upload-ul fisierului',
110 // TODO: translate the following.
111 // 'error.range_locked' => 'Date range is locked.',
112 // 'error.mail_send' => 'error sending mail',
113 // 'error.no_email' => 'no email associated with this login',
114 // 'error.uncompleted_exists' => 'uncompleted entry already exists. close or delete it.',
115 // 'error.goto_uncompleted' => 'go to uncompleted entry.',
116
117 // Labels for buttons.
118 'button.login' => 'autentifica',
119 'button.now' => 'acum',
120 'button.save' => 'salveaza',
121 'button.delete' => 'sterge',
122 'button.cancel' => 'renunta',
123 'button.submit' => 'trimite',
124 'button.add_user' => 'adauga utilizator',
125 'button.add_project' => 'adauga proiect',
126 'button.add_activity' => 'adauga activitate',
127 'button.add_client' => 'adauga client',
128 'button.add' => 'adauga',
129 'button.generate' => 'genereaza',
130 // Note to translators: button.reset_password needs an improved translation.
131 // 'button.reset_password' => 'reset password',
132 'button.send' => 'trimite',
133 'button.send_by_email' => 'trimite pe e-mail',
134 // TODO: button.create_team needs an improved translation.
135 'button.create_team' => 'adauga echipa noua',
136 'button.export' => 'exporta echipa',
137 'button.import' => 'importa echipa',
138 'button.apply' => 'aplica',
139
140 // labels for controls on various forms
141 // TODO: translate label.team_name
142 // 'label.team_name' => 'team name',
143 'label.currency' => 'moneda',
144 // TODO: translate label.manager_name and label.manager_login.
145 // 'label.manager_name' => 'manager name',
146 // 'label.manager_login' => 'manager login',
147 'label.password' => 'parola',
148 'label.confirm_password' => 'confirma parola',
149 'label.email' => 'E-mail',
150 'label.cc' => 'Copie',
151 // TODO: translate the following.
152 // 'label.bcc' => 'Bcc',
153 'label.subject' => 'Subiect',
154 'label.total' => 'total',
155 // TODO: translate the following.
156 // 'label.page' => 'Page',
157 // 'label.condition' => 'Condition',
158 // 'label.yes' => 'yes',
159 // 'label.no' => 'no',
160
161 // Form titles.
162 // TODO: the entire title section is missing here. See the English file.
163
164 "form.filter.project" => 'proiect',
165 "form.filter.filter" => 'rapoarte favorite',
166 "form.filter.filter_new" => 'salveaza ca favorit',
167 // Note to translators: the string below is missing and must be added and translated 
168 // "form.filter.filter_confirm_delete" => 'are you sure you want to delete this favorite report?',
169
170 // login form attributes
171 "form.login.title" => 'autentificare',
172 "form.login.login" => 'autentifica', 
173
174 // password reminder form attributes
175 "form.fpass.title" => 'reseteaza parola',
176 "form.fpass.login" => 'autentifica', 
177 "form.fpass.send_pass_str" => 'cererea de resetare a parolei a fost trimisa',
178 "form.fpass.send_pass_subj" => 'Anuko Time Tracker - cerere de resetare a parolei',
179 // Note to translators: the ending of this string below needs to be translated.
180 "form.fpass.send_pass_body" => "Draga Utilizator,\n\nCineva, posibil tu, a cerut resetarea parolei pentru contul Anuko Time Tracker. Te rog, viziteaza acesta legatura daca doresti sa iti resetezi parola.\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",
181 "form.fpass.reset_comment" => "pentru resetarea parolei introdu-o si da click pe salveaza",
182
183 // administrator form
184 "form.admin.title" => 'administrator',
185 "form.admin.duty_text" => 'adauga o noua echipa prin adaugarea unui nou cont de tip manager.<br>deasemeni poti importa datele despre echipa dintr-un fisier xml generat de un alt server Anuko Time Tracker  (nu sunt permise duplicate pentru emailuri).',
186
187 "form.admin.change_pass" => 'schimba parola contului de administrator',
188 "form.admin.profile.title" => 'echipe',
189 "form.admin.profile.noprofiles" => 'baza de date este goala. intra ca admin si adauga o noua echipa.',
190 "form.admin.profile.comment" => 'sterge echipa',
191 "form.admin.profile.th.id" => 'id',
192 "form.admin.profile.th.name" => 'nunme',
193 "form.admin.profile.th.edit" => 'editeaza',
194 "form.admin.profile.th.del" => 'sterge',
195 "form.admin.profile.th.active" => 'activ',
196 // Note to translators: the strings below are missing and must be added and translated 
197 // "form.admin.options" => 'options',
198 // "form.admin.custom_date_format" => "date format",
199 // "form.admin.custom_time_format" => "time format",
200 // "form.admin.start_week" => "first day of week",
201
202 // my time form attributes
203 "form.mytime.title" => 'timpul meu',
204 "form.mytime.edit_title" => 'editarea inregistrarii timpului',
205 "form.mytime.del_str" => 'stergerea inregistrarii timpului',
206 "form.mytime.time_form" => ' (hh:mm)',
207 "form.mytime.date" => 'data',
208 "form.mytime.project" => 'proiect',
209 "form.mytime.activity" => 'activitate',
210 "form.mytime.start" => 'inceput',
211 "form.mytime.finish" => 'sfarsit',
212 "form.mytime.duration" => 'durata',
213 "form.mytime.note" => 'nota',
214 "form.mytime.behalf" => 'activitatea zilnica pentru',
215 "form.mytime.daily" => 'activitatea zilnica',
216 "form.mytime.total" => 'ore total: ',
217 "form.mytime.th.project" => 'proiect',
218 "form.mytime.th.activity" => 'activitate',
219 "form.mytime.th.start" => 'inceput',
220 "form.mytime.th.finish" => 'sfarsit',
221 "form.mytime.th.duration" => 'durata',
222 "form.mytime.th.note" => 'nota',
223 "form.mytime.th.edit" => 'editeaza',
224 "form.mytime.th.delete" => 'sterge',
225 "form.mytime.del_yes" => 'inregistrarea timului a fost stearsa cu succes',
226 "form.mytime.no_finished_rec" => 'aceasta inregistrare a fost salvata numei cu timpul de inceput. nu este o eroare. poti parasi aplicatia daca este nevoie.',
227 // Note to translators: the strings below are missing and must be added and translated 
228 // "form.mytime.billable" => 'billable',
229 // "form.mytime.warn_tozero_rec" => 'this time record must be deleted because this time period is locked',
230 // "form.mytime.uncompleted" => 'uncompleted',
231
232 // profile form attributes
233 // Note to translators: we need a more accurate translation of form.profile.create_title
234 "form.profile.create_title" => 'creazaun nou cont de tip manager',
235 "form.profile.edit_title" => 'editeaza profilul',
236 "form.profile.name" => 'nume',
237 // Note to translators: the string below is missing and must be added and translated 
238 // "form.profile.login" => 'login',
239
240 // Note to translators: the strings below are missing and must be added and translated 
241 // "form.profile.showchart" => 'show pie charts',
242 // "form.profile.lang" => 'language',
243 // "form.profile.custom_date_format" => "date format",
244 // "form.profile.custom_time_format" => "time format",
245 // "form.profile.default_format" => "(default)",
246 // "form.profile.start_week" => "first day of week",
247
248 // people form attributes
249 "form.people.ppl_str" => 'persoane',
250 "form.people.createu_str" => 'adaugare untilizator nou',
251 "form.people.edit_str" => 'editare utilizator',
252 "form.people.del_str" => 'stergee utilizator',
253 "form.people.th.name" => 'nume',
254 // Note to translators: the string below is missing and must be added and translated 
255 // "form.people.th.login" => 'login',
256 "form.people.th.role" => 'functie',
257 "form.people.th.edit" => 'editeaza',
258 "form.people.th.del" => 'sterge',
259 "form.people.th.status" => 'stare',
260 "form.people.th.project" => 'proiect',
261 "form.people.th.rate" => 'rata',
262 "form.people.manager" => 'manager',
263 "form.people.comanager" => 'comanager',
264 "form.people.empl" => 'utilizator',
265 "form.people.name" => 'nume',
266 // Note to translators: "form.people.login" => 'e-mail', // email has been changed to login
267
268 "form.people.rate" => 'pret pe ora implicit',
269 "form.people.comanager" => 'co-manager',
270 "form.people.projects" => 'proiecte',
271
272 // projects form attributes
273 "form.project.proj_title" => 'proiecte',
274 "form.project.edit_str" => 'editare proiect',
275 "form.project.add_str" => 'adauagre proiect nou',
276 "form.project.del_str" => 'stergere proiect',
277 "form.project.th.name" => 'nume',
278 "form.project.th.edit" => 'editeaza',
279 "form.project.th.del" => 'sterge',
280 "form.project.name" => 'nume',
281
282 // activities form attributes
283 "form.activity.act_title" => 'activitati',
284 "form.activity.add_title" => 'adaugare activitate noua',
285 "form.activity.edit_str" => 'editare activitate',
286 "form.activity.del_str" => 'stergere activitate',
287 "form.activity.name" => 'nume',
288 "form.activity.project" => 'proiect',
289 "form.activity.th.name" => 'nume',
290 "form.activity.th.project" => 'proiect',
291 "form.activity.th.edit" => 'editare',
292 "form.activity.th.del" => 'stergere',
293
294 // report attributes
295 "form.report.title" => 'rapoarte',
296 "form.report.from" => 'data inceput',
297 "form.report.to" => 'data sfarsit',
298 "form.report.groupby_user" => 'utilizator',
299 "form.report.groupby_project" => 'proiect',
300 "form.report.groupby_activity" => 'activitate',
301 "form.report.duration" => 'durata',
302 "form.report.start" => 'inceput',
303 "form.report.activity" => 'activitate',
304 "form.report.show_idle" => 'arata liber',
305 "form.report.finish" => 'sfarsit',
306 "form.report.note" => 'nota',
307 "form.report.project" => 'proiect',
308 "form.report.totals_only" => 'numai totaluri',
309 "form.report.total" => 'ore total',
310 "form.report.th.empllist" => 'utilizator',
311 "form.report.th.date" => 'data',
312 "form.report.th.project" => 'proiect',
313 "form.report.th.activity" => 'activitate',
314 "form.report.th.start" => 'inceput',
315 "form.report.th.finish" => 'sfarsit',
316 "form.report.th.duration" => 'durata',
317 "form.report.th.note" => 'nota',
318
319 // mail form attributes
320 "form.mail.from" => 'de la',
321 "form.mail.to" => 'catre',
322 "form.mail.comment" => 'comentariu',
323 "form.mail.above" => 'trimite acest raport pe e-mail',
324 // Note to translators: this string needs to be translated.
325 // "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.',
326 "form.mail.sending_str" => '<b>mesaj trimis</b>',
327
328 // invoice attributes
329 "form.invoice.title" => 'factura',
330 "form.invoice.caption" => 'factura',
331 "form.invoice.above" => 'informatii aditionale pentru factura',
332 "form.invoice.select_cust" => 'alege client',
333 "form.invoice.fillform" => 'comleteaza campurile',
334 "form.invoice.date" => 'data',
335 "form.invoice.number" => 'numar factura',
336 "form.invoice.tax" => 'taxa',
337 "form.invoice.comment" => 'comentariu ',
338 "form.invoice.th.username" => 'persoana',
339 "form.invoice.th.time" => 'ore',
340 "form.invoice.th.rate" => 'rata',
341 "form.invoice.th.summ" => 'valoare',
342 "form.invoice.subtotal" => 'subtotal',
343 "form.invoice.customer" => 'client',
344 "form.invoice.mailinv_above" => 'trimite aceasta factura pe email',
345 "form.invoice.sending_str" => '<b>factura trimisa</b>',
346
347 "form.migration.zip" => 'compresie',
348 "form.migration.file" => 'alege fisier',
349 "form.migration.import.title" => 'importa date',
350 "form.migration.import.success" => 'importul s-a incheiat cu succes',
351 "form.migration.import.text" => 'importa date echipa dintr-un fisier xml',
352 "form.migration.export.title" => 'exporta date',
353 "form.migration.export.success" => 'exportul s-a inchieat cu succes',
354 "form.migration.export.text" => 'poti exporta toate datele despre echipa intr-un fisier xml. acesta poate fi folositor daca transferi datele pe alt server',
355 // Note to translators: the strings below are missing and must be added and translated 
356 // "form.migration.compression.none" => 'none',
357 // "form.migration.compression.gzip" => 'gzip',
358 // "form.migration.compression.bzip" => 'bzip',
359
360 "form.client.title" => 'clienti',
361 "form.client.add_title" => 'adauga client',
362 "form.client.edit_title" => 'editeaza client',
363 "form.client.del_title" => 'sterge client',
364 "form.client.th.name" => 'nume',
365 "form.client.th.edit" => 'editeaza',
366 "form.client.th.del" => 'sterge',
367 "form.client.name" => 'nume',
368 "form.client.tax" => 'taxa',
369 "form.client.comment" => 'comentariu ',
370
371 // miscellaneous strings
372 "forward.forgot_password" => 'parola pierduta?',
373 "forward.edit" => 'editeaza',
374 "forward.delete" => 'sterge',
375 "forward.tocsvfile" => 'exporta date in fisier .csv',
376 // Note to translators: the string below is missing and must be added and translated 
377 // "forward.toxmlfile" => 'export data to .xml file',
378 "forward.geninvoice" => 'genereaza factura',
379 "forward.change" => 'configureaza clienti',
380
381 // strings inside contols on forms
382 "controls.select.project" => '--- alege proiect    ---',
383 "controls.select.activity" => '--- alege activitate ---',
384 "controls.select.client" => '--- alege client     ---',
385 "controls.project_bind" => '--- toate ---',
386 "controls.all" => '--- toate ---',
387 "controls.notbind" => '--- nu ---',
388 "controls.per_tm" => 'luna curenta',
389 "controls.per_lm" => 'luna trecuta',
390 "controls.per_tw" => 'saptamana curenta',
391 "controls.per_lw" => 'saptamana trecuta',
392 // Note to translators: the strings below must be translated
393 // "controls.per_td" => 'this day',
394 // "controls.per_at" => 'all time',
395 // "controls.per_ty" => 'this year'
396 "controls.sel_period" => '--- alege perioada ---',
397 "controls.sel_groupby" => '--- fara grupare   ---',
398 // Note to translators: the strings below must be translated
399 // "controls.inc_billable" => 'billable',
400 // "controls.inc_nbillable" => 'not billable',
401 // "controls.default" => '--- default ---',
402
403 // labels
404 // Note to translators: the strings below are missing and must be added and translated 
405 // "label.chart.title1" => 'activities for user',
406 // "label.chart.title2" => 'projects for user',
407 // "label.chart.period" => 'chart for period',
408
409 "label.pinfo" => '%s, %s',
410 "label.pinfo2" => '%s',
411 "label.pbehalf_info" => '%s %s <b>in numele %s</b>',
412 "label.pminfo" => ' (manager)',
413 "label.pcminfo" => ' (co-manager)',
414 "label.painfo" => ' (administrator)',
415 "label.time_noentry" => 'nu exista inregistrari',
416 "label.today" => 'astazi',
417 "label.req_fields" => '* date obligatorii',
418 "label.sel_project" => 'alege proiect',
419 "label.sel_activity" => 'alege activitate',
420 "label.sel_tp" => 'alege perioada',
421 "label.set_tp" => 'sau introdu intervalul de date',
422 "label.fields" => 'arata campuri',
423 "label.group_title" => 'grupat dupa',
424 // Note to translators: the string below is missing and must be added and translated 
425 // "label.include_title" => 'include records',
426 "label.inv_str" => 'factura',
427 "label.set_empl" => 'alege utilizatori',
428 "label.sel_all" => 'selecteaza   tot',
429 "label.sel_none" => 'deselecteaza tot',
430 "label.or" => 'sau',
431 "label.disable" => 'inactiv',
432 "label.enable" => 'activ',
433 "label.filter" => 'filtru',
434 // Note to translators: the strings below are missing and must be added and translated 
435 // "label.timeweek" => 'weekly total',
436 // "label.hrs" => 'hrs',
437 // "label.errors" => 'errors',
438 // "label.ldap_hint" => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
439 // "label.calendar_today" => 'today',
440 // "label.calendar_close" => 'close',
441
442 // login hello text
443 // "login.hello.text" => "Anuko Time Tracker is a simple, easy to use, open source time tracking system.",
444 );