Started to work on refactoring form titles.
[timetracker.git] / WEB-INF / resources / hu.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: Use proper capitalization rules for your language.
33
34 $i18n_language = 'Magyar';
35 $i18n_months = array('Január', 'Február', 'Március', 'Április', 'Május', 'Június', 'Július', 'Augusztus', 'Szeptember', 'Október', 'November', 'December');
36 $i18n_weekdays = array('Vasárnap', 'Hétfő', 'Kedd', 'Szerda', 'Csütörtök', 'Péntek', 'Szombat');
37 $i18n_weekdays_short = array('V', 'H', 'K', 'Sz', 'Cs', 'P', 'Sz');
38 // format mm/dd
39 $i18n_holidays = array('01/01', '01/02', '03/15', '04/12', '04/13', '05/01', '05/31', '06/01', '08/20', '08/21', '10/23', '11/01', '12/24', '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' => 'Bejelentkezés',
46 'menu.logout' => 'Kijelentkezés',
47 // TODO: translate the following.
48 // 'menu.forum' => 'Forum',
49 'menu.help' => 'Segítség',
50 // TODO: translate the following.
51 // 'menu.create_team' => 'Create Team',
52 'menu.profile' => 'Profil',
53 'menu.time' => 'Munkaidő',
54 // TODO: translate the following.
55 // 'menu.expenses' => 'Expenses',
56 'menu.reports' => 'Riportok',
57 // TODO: translate the following.
58 // 'menu.charts' => 'Charts',
59 'menu.projects' => 'Projektek',
60 // 'menu.tasks' => 'Tasks',
61 // TODO: translate the following.
62 // 'menu.users' => 'Users',
63 'menu.teams' => 'Csoportok',
64 // TODO: translate the following.
65 // 'menu.export' => 'Export',
66 'menu.clients' => 'Ügyfelek',
67 'menu.options' => 'Opciók',
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' => 'Adatbázis hiba.',
82 'error.field' => 'Hibás "{0}" mező tartalma.',
83 'error.empty' => 'A "{0}" mező üres.',
84 'error.not_equal' => 'A "{0}" mező tartalma nem egyezik meg a "{1}" mező tartalmával.',
85 // TODO: translate the following.
86 // 'error.interval' => 'Field "{0}" must be greater than "{1}".',
87 'error.project' => 'Válassz projektet.',
88 // TODO: translate the following.
89 // 'error.task' => 'Select task.',
90 // 'error.client' => 'Select client.',
91 // 'error.report' => 'Select report.',
92 // 'error.record' => 'Select record.',
93 // 'error.auth' => 'Incorrect login or password.',
94 // 'error.user_exists' => 'User with this login already exists.',
95 'error.project_exists' => 'Ilyen nevű projekt már létezik.',
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' => 'Your database is empty. Login as admin and create a new team.',
103 'error.upload' => 'File feltöltési hiba.',
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' => 'Bejelentkezés',
115 'button.now' => 'Most',
116 'button.save' => 'Mentés',
117 // TODO: translate the following.
118 // 'button.copy' => 'Copy',
119 'button.cancel' => 'Vissza',
120 'button.submit' => 'Mentés',
121 'button.add_user' => 'Felhasználó felvétele',
122 'button.add_project' => 'Projekt felvétele',
123 // TODO: translate the following.
124 // 'button.add_task' => 'Add task',
125 'button.add_client' => 'Ügyfél hozzáadása',
126 // TODO: translate the following.
127 // 'button.add_invoice' => 'Add invoice',
128 // 'button.add_option' => 'Add option',
129 'button.add' => 'Hozzáadás',
130 'button.generate' => 'Generálás',
131 // TODO: translate the following.
132 // 'button.reset_password' => 'Reset password',
133 'button.send' => 'Küld',
134 'button.send_by_email' => 'Küldés e-mail-ben',
135 'button.create_team' => 'Csoport létrehozása',
136 'button.export' => 'Csoport exportálása',
137 'button.import' => 'Csoport importálása',
138 // TODO: translate the following.
139 // 'button.close' => 'Close',
140 // 'button.stop' => 'Stop',
141
142 // Labels for controls on forms. Labels in this section are used on multiple forms.
143 // TODO: translate the following.
144 // 'label.team_name' => 'Team name',
145 // 'label.address' => 'Address',
146 'label.currency' => 'Pénznem',
147 // TODO: translate the following.
148 // 'label.manager_name' => 'Manager name',
149 // 'label.manager_login' => 'Manager login',
150 'label.person_name' => 'Név',
151 'label.thing_name' => 'Név',
152 // TODO: translate the following.
153 // 'label.login' => 'Login',
154 'label.password' => 'Jelszó',
155 'label.confirm_password' => 'Jelszó megerősítése',
156 'label.thing_name' => 'Név',
157 // TODO: translate the following.
158 // 'label.email' => 'Email',
159 'label.cc' => 'Másolatot kap',
160 // TODO: translate the following.
161 // 'label.bcc' => 'Bcc',
162 'label.subject' => 'Tárgy',
163 // TODO: translate the following.
164 // 'label.date' => 'Date',
165 // 'label.start_date' => 'Start date',
166 // 'label.end_date' => 'End date',
167 // 'label.user' => 'User',
168 // 'label.users' => 'Users',
169 // 'label.client' => 'Client',
170 // 'label.clients' => 'Clients',
171 // 'label.option' => 'Option',
172 // 'label.invoice' => 'Invoice',
173 'label.project' => 'Projekt',
174 // TODO: translate the following.
175 // 'label.projects' => 'Projects',
176 // 'label.task' => 'Task',
177 // 'label.tasks' => 'Tasks',
178 // 'label.description' => 'Description',
179 // 'label.start' => 'Start',
180 // 'label.finish' => 'Finish',
181 // 'label.duration' => 'Duration',
182 // 'label.note' => 'Note',
183 // 'label.notes' => 'Notes',
184 // 'label.item' => 'Item',
185 // 'label.cost' => 'Cost',
186 // 'label.day_total' => 'Day total',
187 // 'label.week_total' => 'Week total',
188 // 'label.month_total' => 'Month total',
189 // 'label.today' => 'Today',
190 // 'label.total_hours' => 'Total hours',
191 // 'label.total_cost' => 'Total cost',
192 // 'label.view' => 'View',
193 // 'label.edit' => 'Edit',
194 'label.delete' => 'Törlés',
195 // TODO: translate the following.
196 // 'label.configure' => 'Configure',
197 // 'label.select_all' => 'Select all',
198 // 'label.select_none' => 'Deselect all',
199 // 'label.day_view' => 'Day view',
200 // 'label.week_view' => 'Week view',
201 // 'label.id' => 'ID',
202 // 'label.language' => 'Language',
203 // 'label.decimal_mark' => 'Decimal mark',
204 // 'label.date_format' => 'Date format',
205 // 'label.time_format' => 'Time format',
206 // 'label.week_start' => 'First day of week',
207 // 'label.comment' => 'Comment',
208 // 'label.status' => 'Status',
209 // 'label.tax' => 'Tax',
210 // 'label.subtotal' => 'Subtotal',
211 'label.total' => 'Összesen',
212 // TODO: translate the following.
213 // 'label.client_name' => 'Client name',
214 // 'label.client_address' => 'Client address',
215 // 'label.or' => 'or',
216 // 'label.error' => 'Error',
217 // 'label.ldap_hint' => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
218 // 'label.required_fields' => '* - required fields',
219 // 'label.on_behalf' => 'on behalf of',
220 // 'label.role_manager' => '(manager)',
221 // 'label.role_comanager' => '(co-manager)',
222 // 'label.role_admin' => '(administrator)',
223 // 'label.page' => 'Page',
224 // 'label.condition' => 'Condition',
225 // 'label.yes' => 'yes',
226 // 'label.no' => 'no',
227 // Labels for plugins (extensions to Time Tracker that provide additional features).
228 // TODO: translate the following.
229 // 'label.custom_fields' => 'Custom fields',
230 // 'label.monthly_quotas' => 'Monthly quotas',
231 // 'label.type' => 'Type',
232 // 'label.type_dropdown' => 'dropdown',
233 // 'label.type_text' => 'text',
234 // 'label.required' => 'Required',
235 // 'label.fav_report' => 'Favorite report',
236 // 'label.cron_schedule' => 'Cron schedule',
237 // 'label.what_is_it' => 'What is it?',
238 // 'label.expense' => 'Expense',
239 // 'label.quantity' => 'Quantity',
240 // 'label.paid_status' => 'Paid status',
241 // 'label.paid' => 'Paid',
242 // 'label.mark_paid' => 'Mark paid',
243
244 // Form titles.
245 'title.login' => 'Bejelentkezés',
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
252
253
254 // TODO: refactoring ongoing down from here.
255
256 "form.filter.project" => 'projekt',
257 "form.filter.filter" => 'előre definiált riport formátum',
258 "form.filter.filter_new" => 'mentsük el ezt a riport formátumot',
259 // Note to translators: the string below is missing and must be added and translated
260 // "form.filter.filter_confirm_delete" => 'are you sure you want to delete this favorite report?',
261
262 // password reminder form attributes
263 "form.fpass.title" => 'a jelszó alap állapotra állítása',
264 // Note to translators: "form.fpass.login" => 'e-mail cím', // email has been changed to login
265 "form.fpass.send_pass_str" => 'jelszó alap állapotra állítása megkezdve',
266 "form.fpass.send_pass_subj" => 'A jelszó alap állapotra állítása a Anuko TimeTracker-ben',
267 // Note to translators: the string below must be translated
268 // "form.fpass.send_pass_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",
269 "form.fpass.reset_comment" => "a jelszót a megváltoztatásához írja be és mentse el",
270
271 // administrator form
272 "form.admin.title" => 'Adminisztrátor',
273 "form.admin.duty_text" => 'új csoport létrehozása egy csoport-vezetői jogosultsággal.<br>a csoport adatokat importálhatjuk XML-ből (csak az e-mail címek ne ütközzenek).',
274
275 "form.admin.change_pass" => 'az adminisztrátori jelszó megváltoztatása',
276 "form.admin.profile.title" => 'csoportok',
277 "form.admin.profile.noprofiles" => 'az adatbázis üres. lépj be adminisztrátorként és hozz létre egyet.',
278 "form.admin.profile.comment" => 'csoport törlése',
279 "form.admin.profile.th.id" => 'azonosító',
280 "form.admin.profile.th.name" => 'név',
281 "form.admin.profile.th.edit" => 'szerkesztés',
282 "form.admin.profile.th.del" => 'törlés',
283 "form.admin.profile.th.active" => 'aktív',
284 "form.admin.options" => 'opciók',
285 // "form.admin.custom_date_format" => "date format",
286 // "form.admin.custom_time_format" => "time format",
287 // "form.admin.start_week" => "first day of week",
288
289 // my time form attributes
290 "form.mytime.title" => 'munkaidőm',
291 "form.mytime.edit_title" => 'szerkesztés',
292 "form.mytime.del_str" => 'törlés',
293 "form.mytime.time_form" => ' (óó:pp)',
294 "form.mytime.date" => 'dátum',
295 "form.mytime.project" => 'projekt',
296 "form.mytime.activity" => 'tevékenység',
297 "form.mytime.start" => 'kezdete',
298 "form.mytime.finish" => 'vége',
299 "form.mytime.duration" => 'hossz',
300 "form.mytime.note" => 'megjegyzés',
301 "form.mytime.behalf" => 'napi tevékenység lista, munkatárs:',
302 "form.mytime.daily" => 'napi munka',
303 "form.mytime.total" => 'összesített óraszám: ',
304 "form.mytime.th.project" => 'projekt',
305 "form.mytime.th.activity" => 'tevékenység',
306 "form.mytime.th.start" => 'kezdete',
307 "form.mytime.th.finish" => 'vége',
308 "form.mytime.th.duration" => 'hossz',
309 "form.mytime.th.note" => 'megjegyzés',
310 "form.mytime.th.edit" => 'szerkesztés',
311 "form.mytime.th.delete" => 'törlés',
312 "form.mytime.del_yes" => 'a bejegyzés törölve',
313 "form.mytime.no_finished_rec" => 'csak az munka kezdete lett megjelölve, ha később visszalépsz a rendszerbe beállíthatod a vég-időpontot...',
314 // Note to translators: the strings below are missing and must be added and translated 
315 // "form.mytime.billable" => 'billable',
316 // "form.mytime.warn_tozero_rec" => 'this time record must be deleted because this time period is locked',
317 // "form.mytime.uncompleted" => 'uncompleted',
318
319 // profile form attributes
320 // Note to translators: we need a more accurate translation of form.profile.create_title
321 "form.profile.create_title" => 'új vezetői jogosultság létrehozása',
322 "form.profile.edit_title" => 'profil szerkesztése',
323 "form.profile.name" => 'név',
324 // Note to translators: the string below is missing and must be added and translated 
325 // "form.profile.login" => 'login',
326
327 // Note to translators: the strings below are missing and must be added and translated 
328 // "form.profile.showchart" => 'show pie charts',
329 // "form.profile.lang" => 'language',
330 // "form.profile.custom_date_format" => "date format",
331 // "form.profile.custom_time_format" => "time format",
332 // "form.profile.default_format" => "(default)",
333 // "form.profile.start_week" => "first day of week",
334
335 // people form attributes
336 "form.people.ppl_str" => 'munkatársak',
337 "form.people.createu_str" => 'új munkatárs hozzáadása',
338 "form.people.edit_str" => 'munkatárs adatainak szerkesztése',
339 "form.people.del_str" => 'munkatárs adatainak törlése',
340 "form.people.th.name" => 'név',
341 // Note to translators: the string below is missing and must be added and translated 
342 // "form.people.th.login" => 'login',
343 "form.people.th.role" => 'szerepkör',
344 "form.people.th.edit" => 'szerkesztés',
345 "form.people.th.del" => 'törlés',
346 "form.people.th.status" => 'státusz',
347 "form.people.th.project" => 'projekt',
348 "form.people.th.rate" => 'tarifa',
349 "form.people.manager" => 'vezető',
350 "form.people.comanager" => 'helyettes',
351 "form.people.empl" => 'dolgozó',
352 "form.people.name" => 'név',
353 // Note to translators: the string below is missing and must be added and translated 
354 // "form.people.login" => 'login',
355
356 "form.people.rate" => 'általános óradíj',
357 "form.people.comanager" => 'helyettes',
358 "form.people.projects" => 'projektek',
359 // Note to translators: the string below is missing and must be added and translated 
360
361 // projects form attributes
362 "form.project.proj_title" => 'projektek',
363 "form.project.edit_str" => 'projekt adatainak szerkesztése',
364 "form.project.add_str" => 'új projekt hozzáadása',
365 "form.project.del_str" => 'projekt törlése',
366 "form.project.th.name" => 'név',
367 "form.project.th.edit" => 'szerkesztés',
368 "form.project.th.del" => 'törlés',
369 "form.project.name" => 'név',
370
371 // activities form attributes
372 "form.activity.act_title" => 'tevékenységek',
373 "form.activity.add_title" => 'új tevékenyég felvétele',
374 "form.activity.edit_str" => 'tevékenység szerkesztése',
375 "form.activity.del_str" => 'tevékenység törlése',
376 "form.activity.name" => 'név',
377 "form.activity.project" => 'projekt',
378 "form.activity.th.name" => 'név',
379 "form.activity.th.project" => 'projekt',
380 "form.activity.th.edit" => 'szerkesztés',
381 "form.activity.th.del" => 'törlés',
382
383 // report attributes
384 "form.report.title" => 'riportok',
385 "form.report.from" => 'kezdő időpont',
386 "form.report.to" => 'vég időpont',
387 "form.report.groupby_user" => 'személyek szerint',
388 "form.report.groupby_project" => 'projektek szerint',
389 "form.report.groupby_activity" => 'tevékenységek szerint',
390 "form.report.duration" => 'időtartam',
391 "form.report.start" => 'kezdet',
392 "form.report.activity" => 'tevékenység',
393 "form.report.show_idle" => 'az üres időszakok megjelenítése',
394 "form.report.finish" => 'befejezés',
395 "form.report.note" => 'megjegyzés',
396 "form.report.project" => 'projekt',
397 "form.report.totals_only" => 'csak a teljes óraszám',
398 "form.report.total" => 'összesített óraszám',
399 "form.report.th.empllist" => 'dolgozó',
400 "form.report.th.date" => 'dátum',
401 "form.report.th.project" => 'projekt',
402 "form.report.th.activity" => 'tevékenység',
403 "form.report.th.start" => 'elkezdve',
404 "form.report.th.finish" => 'befejezve',
405 "form.report.th.duration" => 'időtartam',
406 "form.report.th.note" => 'megjegyzés',
407
408 // mail form attributes
409 "form.mail.from" => 'feladó',
410 "form.mail.to" => 'címzett',
411 "form.mail.comment" => 'megjegyzés',
412 "form.mail.above" => 'küldjük el ezt a riportot e-mail-ben...',
413 // Note to translators: the string below must be translated
414 // "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.',
415 "form.mail.sending_str" => '<b>az üzenet elküldve</b>',
416
417 // invoice attributes
418 "form.invoice.title" => 'számla',
419 "form.invoice.caption" => 'Számla',
420 "form.invoice.above" => 'a számlához tartozó adatok',
421 "form.invoice.select_cust" => 'válassz ügyfelet',
422 "form.invoice.fillform" => 'töltsd ki a mezőket',
423 "form.invoice.date" => 'Dátum',
424 "form.invoice.number" => 'számla azonosító száma',
425 "form.invoice.tax" => 'adó',
426 "form.invoice.comment" => 'megjegyzés ',
427 "form.invoice.th.username" => 'személy',
428 "form.invoice.th.time" => 'óra',
429 "form.invoice.th.rate" => 'tarifa',
430 "form.invoice.th.summ" => 'darab',
431 "form.invoice.subtotal" => 'részösszeg',
432 "form.invoice.customer" => 'Ügyfél',
433 "form.invoice.mailinv_above" => 'küldjük el ezt a számlát e-mail-en',
434 "form.invoice.sending_str" => '<b>a számla elküldve</b>',
435
436 "form.migration.zip" => 'tömörítés',
437 "form.migration.file" => 'válassz file-nevet',
438 "form.migration.import.title" => 'adatok importálása',
439 "form.migration.import.success" => 'az importálás sikeresen véget ért',
440 "form.migration.import.text" => 'csoport adatok importja XML file-ból',
441 "form.migration.export.title" => 'az adatok exportálása',
442 "form.migration.export.success" => 'az exportálás sikeres volt',
443 "form.migration.export.text" => 'kimentheted az összes felvitt csoport adatait egy XML file-ba, ami megkönnyíti a TimeTracker szerverek közötti adatátvitelt...',
444 // Note to translators: the strings below are missing and must be added and translated 
445 // "form.migration.compression.none" => 'none',
446 // "form.migration.compression.gzip" => 'gzip',
447 // "form.migration.compression.bzip" => 'bzip',
448
449 "form.client.title"=> 'ügyfelek',
450 "form.client.add_title" => 'új ügyfél hozzáadása',
451 "form.client.edit_title" => 'ügyfél adatainak szerkesztése',
452 "form.client.del_title" => 'ügyfél törlése',
453 "form.client.th.name" => 'név',
454 "form.client.th.edit" => 'szerkesztés',
455 "form.client.th.del" => 'törlés',
456 "form.client.name" => 'név',
457 "form.client.tax" => 'adó',
458 "form.client.comment" => 'megjegyzés ',
459
460 // miscellaneous strings
461 "forward.forgot_password" => 'elfelejtetted a jelszót?',
462 "forward.edit" => 'szerkesztés',
463 "forward.delete" => 'törlés',
464 "forward.tocsvfile" => 'az adatok exportálása CSV file-ba',
465 // Note to translators: the string below is missing and must be added and translated 
466 // "forward.toxmlfile" => 'export data to .xml file',
467 "forward.geninvoice" => 'számla készítés',
468 "forward.change" => 'ügyfelek adatainak beállítása',
469
470 // strings inside contols on forms
471 "controls.select.project" => '--- válassz projektet ---',
472 "controls.select.activity" => '--- válassz tevékenységet ---',
473 "controls.select.client" => '--- válassz ügyfelet ---',
474 "controls.project_bind" => '--- összes ---',
475 "controls.all" => '--- összes ---',
476 "controls.notbind" => '--- nincs ---',
477 "controls.per_tm" => 'ebben a hónapban',
478 "controls.per_lm" => 'múlt hónapban',
479 "controls.per_tw" => 'ezen a héten',
480 "controls.per_lw" => 'múlt héten',
481 // Note to translators: the strings below are missing and must be added and translated 
482 // "controls.per_td" => 'this day',
483 // "controls.per_at" => 'all time',
484 // "controls.per_ty" => 'this year',
485 "controls.sel_period" => '--- válassz időszakot ---',
486 "controls.sel_groupby" => '--- csoportosítás nélkül ---',
487 // Note to translators: the strings below are missing and must be added and translated 
488 // "controls.inc_billable" => 'billable',
489 // "controls.inc_nbillable" => 'not billable',
490 // "controls.default" => '--- default ---',
491
492 // labels
493 // Note to translators: the strings below are missing and must be added and translated 
494 // "label.chart.title1" => 'activities for user',
495 // "label.chart.title2" => 'projects for user',
496 // "label.chart.period" => 'chart for period',
497
498 "label.pinfo" => '%s, %s',
499 "label.pinfo2" => '%s',
500 "label.pbehalf_info" => '%s %s <b>helyett %s</b>',
501 "label.pminfo" => ' (vezető)',
502 "label.pcminfo" => ' (helyettes)',
503 "label.painfo" => ' (adminisztrátor)',
504 "label.time_noentry" => 'nincs bejegyzés',
505 "label.today" => 'ma',
506 "label.req_fields" => '* kötelezően kitöltendő mezők',
507 "label.sel_project" => 'válassz projektet',
508 "label.sel_activity" => 'válassz tevékenységet',
509 "label.sel_tp" => 'jelölj meg egy időszakot',
510 "label.set_tp" => '... vagy állíts be konkrét dátumot',
511 "label.fields" => 'csak a kijelölt mezők fognak szerepelni a riportban',
512 "label.group_title" => 'csoportosítva',
513 // Note to translators: the string below is missing and must be added and translated 
514 // "label.include_title" => 'include records',
515 "label.inv_str" => 'számla',
516 "label.set_empl" => 'válassz dolgozót',
517 "label.sel_all" => 'mindenkit kijelöl',
518 "label.sel_none" => 'senkit nem jelöl ki',
519 "label.or" => 'vagy',
520 "label.disable" => 'tiltva',
521 "label.enable" => 'engedélyezve',
522 "label.filter" => 'szűrés',
523 // Note to translators: the strings below are missing and must be added and translated 
524 //"label.timeweek" => 'weekly total',
525 // "label.hrs" => 'hrs',
526 // "label.errors" => 'errors',
527 // "label.ldap_hint" => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
528 // "label.calendar_today" => 'today',
529 // "label.calendar_close" => 'close',
530
531 // login hello text
532 // "login.hello.text" => "Anuko Time Tracker is a simple, easy to use, open source time tracking system.",
533 );