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