ultimix
grid.locale-he.js
Go to the documentation of this file.
1 ;(function($){
10 $.jgrid = {
11  defaults : {
12  recordtext: "מציג {0} - {1} מתוך {2}",
13  emptyrecords: "אין רשומות להציג",
14  loadtext: "טוען...",
15  pgtext : "דף {0} מתוך {1}"
16  },
17  search : {
18  caption: "מחפש...",
19  Find: "חפש",
20  Reset: "התחל",
21  odata : ['שווה', 'לא שווה', 'קטן', 'קטן או שווה','גדול','גדול או שווה', 'מתחיל ב','לא מתחיל ב','נמצא ב','לא נמצא ב','מסתיים ב','לא מסתיים ב','מכיל','לא מכיל'],
22  groupOps: [ { op: "AND", text: "הכל" }, { op: "OR", text: "אחד מ" } ],
23  matchText: " תואם",
24  rulesText: " חוקים"
25  },
26  edit : {
27  addCaption: "הוסף רשומה",
28  editCaption: "ערוך רשומה",
29  bSubmit: "שלח",
30  bCancel: "בטל",
31  bClose: "סגור",
32  saveData: "נתונים השתנו! לשמור?",
33  bYes : "כן",
34  bNo : "לא",
35  bExit : "בטל",
36  msg: {
37  required:"שדה חובה",
38  number:"אנא, הכנס מספר תקין",
39  minValue:"ערך צריך להיות גדול או שווה ל ",
40  maxValue:"ערך צריך להיות קטן או שווה ל ",
41  email: "היא לא כתובת איימל תקינה",
42  integer: "אנא, הכנס מספר שלם",
43  date: "אנא, הכנס תאריך תקין",
44  url: "הכתובת אינה תקינה. דרושה תחילית ('http://' או 'https://')",
45  nodefined : " is not defined!",
46  novalue : " return value is required!",
47  customarray : "Custom function should return array!",
48  customfcheck : "Custom function should be present in case of custom checking!"
49  }
50  },
51  view : {
52  caption: "הצג רשומה",
53  bClose: "סגור"
54  },
55  del : {
56  caption: "מחק",
57  msg: "האם למחוק את הרשומה/ות המסומנות?",
58  bSubmit: "מחק",
59  bCancel: "בטל"
60  },
61  nav : {
62  edittext: "",
63  edittitle: "ערוך שורה מסומנת",
64  addtext:"",
65  addtitle: "הוסף שורה חדשה",
66  deltext: "",
67  deltitle: "מחק שורה מסומנת",
68  searchtext: "",
69  searchtitle: "חפש רשומות",
70  refreshtext: "",
71  refreshtitle: "טען גריד מחדש",
72  alertcap: "אזהרה",
73  alerttext: "אנא, בחר שורה",
74  viewtext: "",
75  viewtitle: "הצג שורה מסומנת"
76  },
77  col : {
78  caption: "הצג/הסתר עמודות",
79  bSubmit: "שלח",
80  bCancel: "בטל"
81  },
82  errors : {
83  errcap : "שגיאה",
84  nourl : "לא הוגדרה כתובת url",
85  norecords: "אין רשומות לעבד",
86  model : "אורך של colNames <> colModel!"
87  },
88  formatter : {
89  integer : {thousandsSeparator: " ", defaultValue: '0'},
90  number : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, defaultValue: '0.00'},
91  currency : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, prefix: "", suffix:"", defaultValue: '0.00'},
92  date : {
93  dayNames: [
94  "א", "ב", "ג", "ד", "ה", "ו", "ש",
95  "ראשון", "שני", "שלישי", "רביעי", "חמישי", "שישי", "שבת"
96  ],
97  monthNames: [
98  "ינו", "פבר", "מרץ", "אפר", "מאי", "יונ", "יול", "אוג", "ספט", "אוק", "נוב", "דצמ",
99  "ינואר", "פברואר", "מרץ", "אפריל", "מאי", "יוני", "יולי", "אוגוסט", "ספטמבר", "אוקטובר", "נובמבר", "דצמבר"
100  ],
101  AmPm : ["לפני הצהרים","אחר הצהרים","לפני הצהרים","אחר הצהרים"],
102  S: function (j) {return j < 11 || j > 13 ? ['', '', '', ''][Math.min((j - 1) % 10, 3)] : ''},
103  srcformat: 'Y-m-d',
104  newformat: 'd/m/Y',
105  masks : {
106  ISO8601Long:"Y-m-d H:i:s",
107  ISO8601Short:"Y-m-d",
108  ShortDate: "n/j/Y",
109  LongDate: "l, F d, Y",
110  FullDateTime: "l, F d, Y g:i:s A",
111  MonthDay: "F d",
112  ShortTime: "g:i A",
113  LongTime: "g:i:s A",
114  SortableDateTime: "Y-m-d\\TH:i:s",
115  UniversalSortableDateTime: "Y-m-d H:i:sO",
116  YearMonth: "F, Y"
117  },
118  reformatAfterEdit : false
119  },
120  baseLinkUrl: '',
121  showAction: '',
122  target: '',
123  checkbox : {disabled:true},
124  idName : 'id'
125  }
126 };
127 })(jQuery);