Using error.object_exists instead of error.project_exists to streamline error messages.
[timetracker.git] / WEB-INF / resources / he.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 = 'Hebrew (עברית)';
33 $i18n_months = array('ינואר', 'פברואר', 'מרץ', 'אפריל', 'מאי', 'יוני', 'יולי', 'אוגוסט', 'ספטמבר', 'אוקטובר', 'נובמבר', 'דצמבר');
34 $i18n_weekdays = array('ראשון', 'שני', 'שלישי', 'רביעי', 'חמישי', 'שישי', 'שבת');
35 $i18n_weekdays_short = array('א', 'ב', 'ג', 'ד', 'ה', 'ו', 'ז');
36 // format mm/dd
37 $i18n_holidays = array('02/10', '04/09', '04/15', '04/29', '05/29', '09/19', '09/20', '09/28', '10/03', '10/10');
38
39 $i18n_key_words = array(
40 'language.rtl' => 'true', // Right-to-left language. Do not remove this line from RTL language files. This is the only string that is not found in the master English file.
41
42 // Menus - short selection strings that are displayed on top of application web pages.
43 // Example: https://timetracker.anuko.com (black menu on top).
44 'menu.login' => 'כניסה',
45 'menu.logout' => 'יציאה',
46 'menu.forum' => 'פורום',
47 'menu.help' => 'עזרה',
48 // TODO: translate the following.
49 // 'menu.create_group' => 'Create Group',
50 'menu.profile' => 'פרופיל',
51 // TODO: translate the following.
52 // 'menu.group' => 'Group',
53 'menu.plugins' => 'תוספים',
54 'menu.time' => 'זמן',
55 // TODO: translate the following.
56 // 'menu.expenses' => 'Expenses',
57 'menu.reports' => 'דוחות',
58 'menu.charts' => 'תרשימים',
59 'menu.projects' => 'פרוייקטים',
60 'menu.tasks' => 'משימות',
61 'menu.users' => 'משתמשים',
62 // TODO: translate the following.
63 // 'menu.groups' => 'Groups',
64 // 'menu.subgroups' => 'Subgroups',
65 'menu.export' => 'ייצוא',
66 'menu.clients' => 'לקוחות',
67 'menu.options' => 'אפשרויות',
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' => 'קרדיטס',
73 'footer.license' => 'רשיון',
74 // TODO: translate the following.
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: All error messages should be complete sentences with a period (full stop) in the end. Put them there.
80 // TODO: translate the following.
81 // 'error.access_denied' => 'Access denied.',
82 'error.sys' => 'שגיאת מערכת',
83 'error.db' => 'שגיאה של בסיס הנתונים',
84 // TODO: translate the following.
85 // 'error.feature_disabled' => 'Feature is disabled.',
86 'error.field' => 'נתון "{0}" שגוי',
87 'error.empty' => 'השדה "{0}" ריק',
88 'error.not_equal' => 'השדה "{1}" אינו שווה לשדה "{0}"',
89 // TODO: add quotes around field names in error.interval.
90 'error.interval' => 'השדדה {0} צריך להיות גדול יותר מהשדה {1}',
91 // TO TEST: change the string on a local Time Tracker and then try to enter a time with
92 // end time less than start time. For example: Start time: 09:00, End time: 08:00.
93 // Then you should see the error on screen and the problems will be clearly visible.
94 // Currently the output is as:
95 // השדדה סיום צריך להיות גדול יותר מהשדה התחלה
96 // Compare the above with English, where the field names are surrounded with quotes,
97 // and it is easier to identify which fields the error is about.
98 // English variation: Field "Finish" must be greater than "Start".
99 'error.project' => 'בחר פרוייקט',
100 'error.task' => 'בחר משימה',
101 'error.client' => 'בחר לקוח',
102 // TODO: translate the following.
103 // 'error.report' => 'Select report.'
104 // 'error.record' => 'Select record.',
105 'error.auth' => 'שם משתמש או סיסמה שגויים',
106 'error.user_exists' => 'שם משתמש כבר קיים',
107 // TODO: translate the following.
108 // 'error.object_exists' => 'Object with this name already exists.',
109 'error.task_exists' => 'קיימת משימה עם שם דומה',
110 'error.client_exists' => 'שם לקוח כבר קיים',
111 'error.invoice_exists' => 'קיימת חשבונית עם מספר זה',
112 // TODO: translate the following.
113 // 'error.role_exists' => 'Role with this rank already exists.',
114 'error.no_invoiceable_items' => 'אין פריטים לחיוב',
115 'error.no_login' => 'משתמש זה אינו קיים',
116 'error.no_groups' => 'בסיס הנתונים שלך ריק. התחבר כמנהל וצור צוות חדש', // TODO: replace "team" with "group".
117 'error.upload' => 'שגיאה בהעלת קובץ',
118 // TODO: translate the following.
119 // 'error.range_locked' => 'Date range is locked.',
120 'error.mail_send' => 'שגיאה בשליחת הדואר אלקטרוני',
121 // TODO: improve the translation above by adding MAIL_SMTP_DEBUG part.
122 // 'error.mail_send' => 'Error sending mail. Use MAIL_SMTP_DEBUG for diagnostics.',
123 'error.no_email' => 'אין דואר אלקטרוני השייך לשם משתמש זה',
124 'error.uncompleted_exists' => 'רישום חלקי כבר קיים. סגור או מחק אותו.',
125 'error.goto_uncompleted' => 'פתח את הרישום החלקי.',
126 'error.overlap' => 'טווח הזמן מתנגש עם רישומים קיימים.',
127 // TODO: translate the following.
128 // 'error.future_date' => 'Date is in future.',
129 // 'error.xml' => 'Error in XML file at line %d: %s.',
130 // 'error.cannot_import' => 'Cannot import: %s.',
131 // 'error.format' => 'Invalid file format.',
132
133 // Labels for buttons.
134 'button.login' => 'היכנס',
135 'button.now' => 'עכשיו',
136 'button.save' => 'שמור',
137 'button.copy' => 'העתק',
138 'button.cancel' => 'ביטול',
139 'button.submit' => 'שלח',
140 'button.add' => 'הוסף',
141 'button.delete' => 'מחק',
142 'button.generate' => 'הרץ',
143 'button.reset_password' => 'איפוס סיסמה',
144 'button.send' => 'שלח',
145 'button.send_by_email' => 'שלח בדואר אלקטרוני',
146 'button.create_group' => 'צור צוות', // TODO: replace "team" with "group".
147 'button.export' => 'ייצא צוות', // TODO: replace "team" with "group".
148 'button.import' => 'ייבא צוות', // TODO: replace "team" with "group".
149 'button.close' => 'סגור',
150 'button.stop' => 'עצור',
151
152 // Labels for controls on forms. Labels in this section are used on multiple forms.
153 'label.group_name' => 'שם הצוות', // TODO: replace "team" with "group".
154 'label.address' => 'כתובת',
155 'label.currency' => 'מטבע',
156 'label.manager_name' => 'שם של המנהל',
157 'label.manager_login' => 'שם משתמש של המנהל',
158 'label.person_name' => 'שם',
159 'label.thing_name' => 'שם',
160 'label.login' => 'שם משתמש',
161 'label.password' => 'סיסמה',
162 'label.confirm_password' => 'בדיקת סיסמה',
163 'label.email' => 'דואר אלקטרוני',
164 'label.cc' => 'העתק',
165 // TODO: translate the following.
166 // 'label.bcc' => 'Bcc',
167 'label.subject' => 'נושא',
168 'label.date' => 'תאריך',
169 'label.start_date' => 'תאריך התחלה',
170 'label.end_date' => 'תאריך סיום',
171 'label.user' => 'משתמש',
172 'label.users' => 'משתמשים',
173 // TODO: translate the following.
174 // 'label.group' => 'Group',
175 // 'label.subgroups' => 'Subgroups',
176 // 'label.roles' => 'Roles',
177 'label.client' => 'לקוח',
178 'label.clients' => 'לקוחות',
179 // TODO: translate the following.
180 // 'label.option' => 'Option',
181 'label.invoice' => 'חשבונית',
182 'label.project' => 'פרוייקט',
183 'label.projects' => 'פרוייקטים',
184 'label.task' => 'משימה',
185 'label.tasks' => 'משימות',
186 'label.description' => 'תיאור',
187 'label.start' => 'התחלה',
188 'label.finish' => 'סיום',
189 'label.duration' => 'משך זמן',
190 'label.note' => 'הערה',
191 // TODO: translate the following.
192 // 'label.notes' => 'Notes',
193 // 'label.item' => 'Item',
194 'label.cost' => 'עלות',
195 // TODO: translate the following.
196 // 'label.ip' => 'IP',
197 'label.day_total' => 'סיכום יומי',
198 'label.week_total' => 'סיכום שבועי',
199 // TODO: translate the following.
200 // 'label.month_total' => 'Month total',
201 'label.today' => 'היום',
202 'label.view' => 'הצג',
203 'label.edit' => 'ערוך',
204 'label.delete' => 'מחק',
205 'label.configure' => 'הגדר',
206 'label.select_all' => 'בחר הכל',
207 'label.select_none' => 'בטל בחירה',
208 // TODO: translate the following.
209 // 'label.day_view' => 'Day view',
210 // 'label.week_view' => 'Week view',
211 'label.id' => 'מזהה',
212 'label.language' => 'שפה',
213 // TODO: translate the following.
214 // 'label.decimal_mark' => 'Decimal mark',
215 'label.date_format' => 'תבנית של תאריך',
216 'label.time_format' => 'תבנית של שעה',
217 'label.week_start' => 'היום הראשון בשבוע',
218 'label.comment' => 'הערה',
219 'label.status' => 'סטטוס',
220 'label.tax' => 'מעמ',
221 'label.subtotal' => 'סיכום חלקי',
222 'label.total' => 'סך הכל',
223 'label.client_name' => 'שם הלקוח',
224 'label.client_address' => 'כתובת הלקוח',
225 'label.or' => 'או',
226 'label.error' => 'שגיאה',
227 'label.ldap_hint' => 'הכנס את <b>שם המשתמש</b> ואת <b>הסיסמה</b> של ווינדוז בשדות.',
228 'label.required_fields' => '* - שדות חובה',
229 'label.on_behalf' => 'מטעם',
230 'label.role_manager' => '(מנהל)',
231 'label.role_comanager' => '(מנהל משנה)',
232 'label.role_admin' => '(מנהל המערכת)',
233 // Translate the following.
234 // 'label.page' => 'Page',
235 // 'label.condition' => 'Condition',
236 // 'label.yes' => 'yes',
237 // 'label.no' => 'no',
238 // Labels for plugins (extensions to Time Tracker that provide additional features).
239 'label.custom_fields' => 'שדות אישיים',
240 // Translate the following.
241 // 'label.monthly_quotas' => 'Monthly quotas',
242 'label.type' => 'סוג',
243 'label.type_dropdown' => 'רשימה',
244 'label.type_text' => 'טקסט',
245 'label.required' => 'חובה',
246 'label.fav_report' => 'דוח מועדף',
247 // TODO: translate the following.
248 // 'label.schedule' => 'Schedule',
249 // 'label.what_is_it' => 'What is it?',
250 // 'label.expense' => 'Expense',
251 // 'label.quantity' => 'Quantity',
252 // 'label.paid_status' => 'Paid status',
253 // 'label.paid' => 'Paid',
254 // 'label.mark_paid' => 'Mark paid',
255 // 'label.week_note' => 'Week note',
256 // 'label.week_list' => 'Week list',
257 // 'label.work_units' => 'Work units',
258 // 'label.work_units_short' => 'Units',
259 'labl.totals_only' => 'סיכומים בלבד',
260
261 // Form titles.
262 'title.login' => 'כניסה',
263 'title.groups' => 'צוותים', // TODO: change "teams" to "groups".
264 // TODO: translate the following.
265 // 'title.subgroups' => 'Subgroups',
266 // 'title.add_group' => 'Adding Group',
267 // 'title.edit_group' => 'Editing Group',
268 'title.delete_group' => 'מחיקת צוות', // TODO: change "team" to "group".
269 'title.reset_password' => 'איפוס סיסמה',
270 'title.change_password' => 'שינוי סיסמה',
271 'title.time' => 'זמן',
272 'title.edit_time_record' => 'עריכת רשומה',
273 'title.delete_time_record' => 'מחיקת רשומה',
274 // TODO: translate the following.
275 // 'title.expenses' => 'Expenses',
276 // 'title.edit_expense' => 'Editing Expense Item',
277 // 'title.delete_expense' => 'Deleting Expense Item',
278 'title.reports' => 'דוחות',
279 'title.report' => 'דוח',
280 'title.send_report' => 'שליחת דוח',
281 'title.invoice' => 'חשבונית',
282 'title.send_invoice' => 'שליחת חשבונית',
283 'title.charts' => 'תרשימים',
284 'title.projects' => 'פרוייקטים',
285 'title.add_project' => 'הוסף פרוייקט',
286 'title.edit_project' => 'עריכת פרוייקט',
287 'title.delete_project' => 'מחיקת פרוייקט',
288 'title.tasks' => 'משימות',
289 'title.add_task' => 'הוסף משימה',
290 'title.edit_task' => 'ערוך משימה',
291 'title.delete_task' => 'מחק משימה',
292 'title.users' => 'משתמשים',
293 'title.add_user' => 'הוספת משתמש',
294 'title.edit_user' => 'עריכת משתמש',
295 'title.delete_user' => 'מחיקת משתמש',
296 // TODO: translate the following.
297 // 'title.roles' => 'Roles',
298 // 'title.add_role' => 'Adding Role',
299 // 'title.edit_role' => 'Editing Role',
300 // 'title.delete_role' => 'Deleting Role',
301 'title.clients' => 'לקוחות',
302 'title.add_client' => 'הוספת לקוח',
303 'title.edit_client' => 'עריכת לקוח',
304 'title.delete_client' => 'מחיקת לקוח',
305 'title.invoices' => 'חשבוניות',
306 'title.add_invoice' => 'הוספת חשבונית',
307 'title.view_invoice' => 'הצגת חשבונית',
308 'title.delete_invoice' => 'מחיקת חשבונית',
309 // TODO: translate the following.
310 // 'title.notifications' => 'Notifications',
311 // 'title.add_notification' => 'Adding Notification',
312 // 'title.edit_notification' => 'Editing Notification',
313 // 'title.delete_notification' => 'Deleting Notification',
314 // 'title.monthly_quotas' => 'Monthly Quotas',
315 'title.export' => 'ייצוא נתוני צוות', // TODO: replace "team" with "group".
316 'title.import' => 'ייבוא נתוני צוות', // TODO: replace "team" with "group".
317 'title.options' => 'אפשרויות',
318 'title.profile' => 'פרופיל',
319 'title.plugins' => 'תוספים',
320 'title.cf_custom_fields' => 'שדות אישיים',
321 'title.cf_add_custom_field' => 'הוספת שדה אישי',
322 'title.cf_edit_custom_field' => 'עריכת שדה אישי',
323 'title.cf_delete_custom_field' => 'מחיקת שדה אישי',
324 'title.cf_dropdown_options' => 'אפשרויות רשימה',
325 'title.cf_add_dropdown_option' => 'הוספת אפשרות',
326 'title.cf_edit_dropdown_option' => 'עריכת אפשרות',
327 'title.cf_delete_dropdown_option' => 'מחיקת אפשרות',
328 // NOTE TO TRANSLATORS: Locking is a feature to lock records from modifications (ex: weekly on Mondays we lock all previous weeks).
329 // It is also a name for the Locking plugin on the group settings page.
330 // TODO: translate the following.
331 // 'title.locking' => 'Locking',
332 // 'title.week_view' => 'Week View',
333 // 'title.swap_roles' => 'Swapping Roles',
334 // 'title.work_units' => 'Work Units',
335
336 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
337 // Strings that are used in a single form must go to the specific form section.
338 'dropdown.all' => '--- כולם ---',
339 'dropdown.no' => '--- ללא ---',
340 // TODO: translate the following.
341 // 'dropdown.current_day' => 'today',
342 // 'dropdown.previous_day' => 'yesterday',
343 // 'dropdown.selected_day' => 'day',
344 'dropdown.current_week' => 'שבוע זה',
345 'dropdown.previous_week' => 'שבוע שעבר',
346 'dropdown.selected_week' => 'שבוע',
347 'dropdown.current_month' => 'חודש זה',
348 'dropdown.previous_month' => 'החודש שעבר',
349 'dropdown.selected_month' => 'החודש',
350 'dropdown.current_year' => 'שנה זו',
351 // TODO: translate the following.
352 // 'dropdown.previous_year' => 'previous year',
353 'dropdown.selected_year' => 'שנה',
354 'dropdown.all_time' => 'הכל',
355 'dropdown.projects' => 'פרוייקטים',
356 'dropdown.tasks' => 'משימות',
357 'dropdown.clients' => 'לקוחות',
358 // TODO: translate the following.
359 // 'dropdown.select' => '--- select ---',
360 'dropdown.select_invoice' => '--- בחר חשבונית ---',
361 'dropdown.status_active' => 'פעיל',
362 'dropdown.status_inactive' => 'לא פעיל',
363 // TODO: translate the following.
364 // 'dropdown.delete' => 'delete',
365 // 'dropdown.do_not_delete' => 'do not delete',
366 // 'dropdown.paid' => 'paid',
367 // 'dropdown.not_paid' => 'not paid',
368
369 // Below is a section for strings that are used on individual forms. When a string is used only on one form it should be placed here.
370 // One exception is for closely related forms such as "Time" and "Editing Time Record" with similar controls. In such cases
371 // a string can be defined on the main form and used on related forms. The reasoning for this is to make translation effort easier.
372 // Strings that are used on multiple unrelated forms should be placed in shared sections such as label.<stringname>, etc.
373
374 // Login form. See example at https://timetracker.anuko.com/login.php.
375 'form.login.forgot_password' => 'שכחת סיסמה?',
376 'form.login.about' => 'Anuko <a href="https://www.anuko.com/lp/tt_2.htm" target="_blank">Time Tracker</a> הינה מערכת פשוטה, קלה לשימוש וחינמית לניהול זמן.',
377
378 // Resetting Password form. See example at https://timetracker.anuko.com/password_reset.php.
379 'form.reset_password.message' => 'הבקשה לאיפוס בסיסמה נשלחה בדואר אלקטרוני.',
380 'form.reset_password.email_subject' => 'בקשה לאיפוס סיסמה למערכת Anuko Time Tracker',
381 // TODO: English string has changed. "from IP added. Re-translate the beginning.
382 // 'form.reset_password.email_body' => "Dear User,\n\nSomeone from IP %s 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",
383 // Older translation is below.
384 // 'form.reset_password.email_body' => "משתמש יקר,\n\n התקבלה בקשה לאיפוס סיסמתך. נא ללחוץ על קישור זה אם ברצונך לאפס את הסיסמה.\n\n%s\n\n. Anuko Time Tracker הינה מערכת לניהול זמן פשוטה וחינמית. בקר באתרנו בכתובת https://www.anuko.com לפרטים נוספים.\n\n",
385
386 // Changing Password form. See example at https://timetracker.anuko.com/password_change.php?ref=1.
387 'form.change_password.tip' => 'הכנס סיסמה חדשה ולחץ על שמירה',
388
389 // Time form. See example at https://timetracker.anuko.com/time.php.
390 'form.time.duration_format' => '(hh:mm או 0.0h)',
391 'form.time.billable' => 'לחיוב',
392 'form.time.uncompleted' => 'רישום חסר',
393 // TODO: translate the following.
394 // 'form.time.remaining_quota' => 'Remaining quota',
395 // 'form.time.over_quota' => 'Over quota',
396
397 // Editing Time Record form. See example at https://timetracker.anuko.com/time_edit.php (get there by editing an uncompleted time record).
398 'form.time_edit.uncompleted' => 'רישום זה נשמר עם שעת התחלה בלבד. זאת איננה טעות.',
399
400 // Week view form. See example at https://timetracker.anuko.com/week.php.
401 // TODO: translate the following.
402 // 'form.week.new_entry' => 'New entry',
403
404 // Reports form. See example at https://timetracker.anuko.com/reports.php
405 'form.reports.save_as_favorite' => 'שמור כמועדף',
406 'form.reports.confirm_delete' => 'האם ברצונך למחוק את הדוח המועדף הזה ?',
407 'form.reports.include_billable' => 'לחיוב',
408 'form.reports.include_not_billable' => 'לא לחיוב',
409 // TODO: translate the following.
410 // 'form.reports.include_invoiced' => 'invoiced',
411 // 'form.reports.include_not_invoiced' => 'not invoiced',
412 'form.reports.select_period' => 'בחר תקופת זמן',
413 'form.reports.set_period' => 'או הגדר תאריכים',
414 'form.reports.show_fields' => 'הראה שדות',
415 'form.reports.group_by' => 'סדר לפי',
416 'form.reports.group_by_no' => '--- ללא סדר ---',
417 'form.reports.group_by_date' => 'תאריך',
418 'form.reports.group_by_user' => 'משתמש',
419 'form.reports.group_by_client' => 'לקוח',
420 'form.reports.group_by_project' => 'פרוייקט',
421 'form.reports.group_by_task' => 'משימה',
422
423 // Report form. See example at https://timetracker.anuko.com/report.php
424 // (after generating a report at https://timetracker.anuko.com/reports.php).
425 // TODO: form.report.export is just "Export" now in the English file. Shorten this translation.
426 'form.report.export' => 'ייצא נתונים בתבנית',
427 // TODO: translate the following.
428 // 'form.report.assign_to_invoice' => 'Assign to invoice',
429
430 // Invoice form. See example at https://timetracker.anuko.com/invoice.php
431 // (you can get to this form after generating a report).
432 'form.invoice.number' => 'מספר חשבונית',
433 'form.invoice.person' => 'משתמש',
434
435 // Deleting Invoice form. See example at https://timetracker.anuko.com/invoice_delete.php
436 // TODO: translate the following.
437 // 'form.invoice.invoice_to_delete' => 'Invoice to delete',
438 // 'form.invoice.invoice_entries' => 'Invoice entries',
439 // 'form.invoice.confirm_deleting_entries' => 'Please confirm deleting invoice entries from Time Tracker.',
440
441 // Charts form. See example at https://timetracker.anuko.com/charts.php
442 'form.charts.interval' => 'טווח',
443 'form.charts.chart' => 'תרשים',
444
445 // Projects form. See example at https://timetracker.anuko.com/projects.php
446 'form.projects.active_projects' => 'פרוייקטים פעילים',
447 'form.projects.inactive_projects' => 'פרוייקטים לא פעילים',
448
449 // Tasks form. See example at https://timetracker.anuko.com/tasks.php
450 'form.tasks.active_tasks' => 'משימות פעילות',
451 'form.tasks.inactive_tasks' => 'משימות לא פעילות',
452
453 // Users form. See example at https://timetracker.anuko.com/users.php
454 'form.users.active_users' => 'משתמשים פעילים',
455 'form.users.inactive_users' => 'משתמשים לא פעילים',
456 // TODO: translate the following.
457 // 'form.users.uncompleted_entry' => 'User has an uncompleted time entry',
458 'form.users.role' => 'תפקיד',
459 'form.users.manager' => 'מנהל',
460 'form.users.comanager' => 'מנהל משנה',
461 'form.users.rate' => 'תעריף',
462 'form.users.default_rate' => 'תעריף ברירת מחדל לשעה',
463
464 // Editing User form. See example at https://timetracker.anuko.com/user_edit.php
465 // TODO: translate the following.
466 // 'form.user_edit.swap_roles' => 'Swap roles',
467
468 // Roles form. See example at https://timetracker.anuko.com/roles.php
469 // TODO: translate the following.
470 // 'form.roles.active_roles' => 'Active Roles',
471 // 'form.roles.inactive_roles' => 'Inactive Roles',
472 // 'form.roles.rank' => 'Rank',
473 // 'form.roles.rights' => 'Rights',
474 // 'form.roles.assigned' => 'Assigned',
475 // 'form.roles.not_assigned' => 'Not assigned',
476
477 // Clients form. See example at https://timetracker.anuko.com/clients.php
478 'form.clients.active_clients' => 'לקוחות פעילים',
479 'form.clients.inactive_clients' => 'לקוחות לא פעילים',
480
481 // Deleting Client form. See example at https://timetracker.anuko.com/client_delete.php
482 // TODO: translate the following.
483 // 'form.client.client_to_delete' => 'Client to delete',
484 // 'form.client.client_entries' => 'Client entries',
485
486 // Exporting Group Data form. See example at https://timetracker.anuko.com/export.php
487 // TODO: replace "team" with "group" in the string below.
488 'form.export.hint' => 'ניתן לייצא את כל נתוני הצוות בקובץ XML. זה מאד שימושי אם ברצונך להשתמש בשרת משלך.',
489 'form.export.compression' => 'דחיסה',
490 'form.export.compression_none' => 'ללא',
491 'form.export.compression_bzip' => 'bzip',
492
493 // Importing Group Data form. See example at https://timetracker.anuko.com/import.php (login as admin first).
494 'form.import.hint' => 'ייבא נתוני צוות מתוך קובץ XML.', // TODO: replace "team" with "group".
495 'form.import.file' => 'בחר קובץ',
496 'form.import.success' => 'הייבוא הושלם בהצלחה.',
497
498 // Groups form. See example at https://timetracker.anuko.com/admin_groups.php (login as admin first).
499 // TODO: replace "team" with "group" in the string below. Also improve formatting, as multiple spaces or no spaces look a bit weird.
500 'form.groups.hint' => 'ניתן ליצור צוות חדש על-ידי יצירת מנהל צוות חדש.<br>ניתן לייבא נתוני צוות מקובץ XML משרת Anuko Time Tracker אחר (אין אפשרות לשמות משתמש זהים)',
501
502 // Group Settings form. See example at https://timetracker.anuko.com/group_edit.php.
503 'form.group_edit.12_hours' => '12 שעות',
504 'form.group_edit.24_hours' => '24 שעות',
505 // TODO: translate the following.
506 // 'form.group_edit.show_holidays' => 'Show holidays',
507 'form.group_edit.tracking_mode' => 'סוג מעקב',
508 'form.group_edit.mode_time' => 'זמן',
509 'form.group_edit.mode_projects' => 'פרוייקטים',
510 'form.group_edit.mode_projects_and_tasks' => 'פרוייקטים ומשימות',
511 'form.group_edit.record_type' => 'סוג רישום',
512 'form.group_edit.type_all' => 'הכל',
513 'form.group_edit.type_start_finish' => 'התחלה וסיום',
514 'form.group_edit.type_duration' => 'משך זמן',
515 // TODO: translate the following.
516 // 'form.group_edit.punch_mode' => 'Punch mode',
517 // 'form.group_edit.allow_overlap' => 'Allow overlap',
518 // 'form.group_edit.future_entries' => 'Future entries',
519 // 'form.group_edit.uncompleted_indicators' => 'Uncompleted indicators',
520 // 'form.group_edit.allow_ip' => 'Allow IP',
521
522 // Deleting Group form. See example at https://timetracker.anuko.com/delete_group.php
523 // TODO: translate the following.
524 // 'form.group_delete.hint' => 'Are you sure you want to delete the entire group?',
525
526 // Mail form. See example at https://timetracker.anuko.com/report_send.php when emailing a report.
527 'form.mail.from' => 'מאת',
528 'form.mail.to' => 'אל',
529 'form.mail.report_subject' => 'דוח Time Tracker',
530 'form.mail.footer' => 'Anuko Time Tracker הינה מערכת פשוטה, קלה לשימוש וחינמית לניהול זמן. בקר באתר <a href="https://www.anuko.com">www.anuko.com</a> לפרטים נוספים.',
531 'form.mail.report_sent' => 'הדוח נשלח.',
532 'form.mail.invoice_sent' => 'החשבונית נשלחה.',
533
534 // Quotas configuration form. See example at https://timetracker.anuko.com/quotas.php after enabling Monthly quotas plugin.
535 // TODO: translate the following.
536 // 'form.quota.year' => 'Year',
537 // 'form.quota.month' => 'Month',
538 // 'form.quota.quota' => 'Quota',
539 // 'form.quota.workday_hours' => 'Hours in a work day',
540 // 'form.quota.hint' => 'If values are empty, quotas are calculated automatically based on workday hours and holidays.',
541
542 // Swap roles form. See example at https://timetracker.anuko.com/swap_roles.php.
543 // TODO: translate the following.
544 // 'form.swap.hint' => 'Demote yourself to a lower role by swapping roles with someone else. This cannot be undone.',
545 // 'form.swap.swap_with' => 'Swap roles with',
546
547 // Work Units configuration form. See example at https://timetracker.anuko.com/work_units.php after enabling Work units plugin.
548 // TODO: translate the following.
549 // 'form.work_units.minutes_in_unit' => 'Minutes in unit',
550 // 'form.work_units.1st_unit_threshold' => '1st unit threshold',
551
552 // Roles and rights. These strings are used in multiple places. Grouped here to provide consistent translations.
553 // TODO: translate the following.
554 // 'role.user.label' => 'User',
555 // 'role.user.low_case_label' => 'user',
556 // 'role.user.description' => 'A regular member without management rights.',
557 // 'role.client.label' => 'Client',
558 // 'role.client.low_case_label' => 'client',
559 // 'role.client.description' => 'A client can view its own reports, charts, and invoices.',
560 // 'role.supervisor.label' => 'Supervisor',
561 // 'role.supervisor.low_case_label' => 'supervisor',
562 // 'role.supervisor.description' => 'A person with a small set of management rights.',
563 // 'role.comanager.label' => 'Co-manager',
564 // 'role.comanager.low_case_label' => 'co-manager',
565 // 'role.comanager.description' => 'A person with a big set of management functions.',
566 // 'role.manager.label' => 'Manager',
567 // 'role.manager.low_case_label' => 'manager',
568 // 'role.manager.description' => 'Group manager. Can do most of things for a group.',
569 // 'role.top_manager.label' => 'Top manager',
570 // 'role.top_manager.low_case_label' => 'top manager',
571 // 'role.top_manager.description' => 'Top group manager. Can do everything in a tree of groups.',
572 // 'role.admin.label' => 'Administrator',
573 // 'role.admin.low_case_label' => 'administrator',
574 // 'role.admin.description' => 'Site adminsitrator.',
575 );