xref: /dokuwiki/lib/plugins/usermanager/lang/he/lang.php (revision 886f80e7a9d4651ee3524837f0f5e430687ba6a5)
1*886f80e7SAndreas Gohr<?php
2*886f80e7SAndreas Gohr/**
3*886f80e7SAndreas Gohr * hebrew language file
4*886f80e7SAndreas Gohr *
5*886f80e7SAndreas Gohr * @author DoK <kamberd@yahoo.com>
6*886f80e7SAndreas Gohr */
7*886f80e7SAndreas Gohr
8*886f80e7SAndreas Gohr$lang['menu'] = 'מנהל משתמשים';
9*886f80e7SAndreas Gohr
10*886f80e7SAndreas Gohr// custom language strings for the plugin
11*886f80e7SAndreas Gohr$lang['noauth']      = '(אימות משתמשים אינו זמין)';
12*886f80e7SAndreas Gohr$lang['nosupport']   = '(ניהול משתמשים אינו נתמך)';
13*886f80e7SAndreas Gohr
14*886f80e7SAndreas Gohr$lang['badauth']     = 'מנגנון אימות לא תקף';     // should never be displayed!
15*886f80e7SAndreas Gohr
16*886f80e7SAndreas Gohr$lang['user_id']     = 'שם משתמש';
17*886f80e7SAndreas Gohr$lang['user_pass']   = 'סיסמה';
18*886f80e7SAndreas Gohr$lang['user_name']   = 'שם אמיתי';
19*886f80e7SAndreas Gohr$lang['user_mail']   = 'דוא"ל';
20*886f80e7SAndreas Gohr$lang['user_groups'] = 'קבוצות';
21*886f80e7SAndreas Gohr
22*886f80e7SAndreas Gohr$lang['field']       = 'שדה';
23*886f80e7SAndreas Gohr$lang['value']       = 'ערך';
24*886f80e7SAndreas Gohr$lang['add']         = 'הוספה';
25*886f80e7SAndreas Gohr$lang['delete']      = 'מחיקה';
26*886f80e7SAndreas Gohr$lang['delete_selected'] = 'מחיקת הבחירה';
27*886f80e7SAndreas Gohr$lang['edit']        = 'עריכה';
28*886f80e7SAndreas Gohr$lang['edit_prompt'] = 'עריכת משתמש זה';
29*886f80e7SAndreas Gohr$lang['modify']      = 'שמירת שינוים';
30*886f80e7SAndreas Gohr$lang['search']      = 'חיפוש';
31*886f80e7SAndreas Gohr$lang['search_prompt'] = 'בצע חיפוש';
32*886f80e7SAndreas Gohr$lang['clear']       = 'אתחל סינון חיפוש';
33*886f80e7SAndreas Gohr$lang['filter']      = 'סינון';
34*886f80e7SAndreas Gohr
35*886f80e7SAndreas Gohr$lang['summary']     = 'מציג משתמשים %1$d-%2$d מתוך %3$d שנמצאו. %4$d בסך הכל.';
36*886f80e7SAndreas Gohr$lang['nonefound']   = 'לא נמצאו משתמשים. סך כל המשתמשים %d.';
37*886f80e7SAndreas Gohr$lang['delete_ok']   = '%d משתמשים נמחקו';
38*886f80e7SAndreas Gohr$lang['delete_fail'] = '%d כשל במחיקה.';
39*886f80e7SAndreas Gohr$lang['update_ok']   = 'משתמש עודכן בהצלחה';
40*886f80e7SAndreas Gohr$lang['update_fail'] = 'עידכון המשתמש כשל';
41*886f80e7SAndreas Gohr$lang['update_exists'] = 'שינוי שם המשתמש כשל, שם השמתמש שצויין (%s) כבר נמצא (כל השינויים האחרים יוחלו).';
42*886f80e7SAndreas Gohr
43*886f80e7SAndreas Gohr$lang['start']  = 'התחלה';
44*886f80e7SAndreas Gohr$lang['prev']   = 'קודם';
45*886f80e7SAndreas Gohr$lang['next']   = 'הבא';
46*886f80e7SAndreas Gohr$lang['last']   = 'סוף';
47*886f80e7SAndreas Gohr
48*886f80e7SAndreas Gohr// added after 2006-03-09 release
49*886f80e7SAndreas Gohr$lang['edit_usermissing'] = 'המשתמש שנבחר לא נמצא, ייתכן כי שם המשתמש שצויין נמחק או השתנה במקום אחר.';
50*886f80e7SAndreas Gohr$lang['user_notify'] = 'הודע למשתמש';
51*886f80e7SAndreas Gohr$lang['note_notify'] = 'הודעות בדוא"ל נשלחות רק במקרה שהמשתמש מקבל סיסמה חדשה.';
52*886f80e7SAndreas Gohr$lang['note_group'] = 'משתמשים חדשים יוספו לקבוצת ברירת המחדל (%s) אם לא צוינה קבוצה אחרת.';
53*886f80e7SAndreas Gohr$lang['add_ok'] = 'משתמש הוסף בהצלחה';
54*886f80e7SAndreas Gohr$lang['add_fail'] = 'הוספת המשתמש כשלה';
55*886f80e7SAndreas Gohr$lang['notify_ok'] = 'הודעה נשלחה';
56*886f80e7SAndreas Gohr$lang['notify_fail'] = 'לא ניתן היה לשלוח הודעה';
57*886f80e7SAndreas Gohr
58