xref: /dokuwiki/inc/lang/he/jquery.ui.datepicker.js (revision 9d112640bef5fb1860ba33e66be9838b4799db4e)
1/* Hebrew initialisation for the UI Datepicker extension. */
2/* Written by Amir Hardon (ahardon at gmail dot com). */
3( function( factory ) {
4	if ( typeof define === "function" && define.amd ) {
5
6		// AMD. Register as an anonymous module.
7		define( [ "../widgets/datepicker" ], factory );
8	} else {
9
10		// Browser globals
11		factory( jQuery.datepicker );
12	}
13}( function( datepicker ) {
14
15datepicker.regional.he = {
16	closeText: "סגור",
17	prevText: "<הקודם",
18	nextText: "הבא>",
19	currentText: "היום",
20	monthNames: [ "ינואר","פברואר","מרץ","אפריל","מאי","יוני",
21	"יולי","אוגוסט","ספטמבר","אוקטובר","נובמבר","דצמבר" ],
22	monthNamesShort: [ "ינו","פבר","מרץ","אפר","מאי","יוני",
23	"יולי","אוג","ספט","אוק","נוב","דצמ" ],
24	dayNames: [ "ראשון","שני","שלישי","רביעי","חמישי","שישי","שבת" ],
25	dayNamesShort: [ "א'","ב'","ג'","ד'","ה'","ו'","שבת" ],
26	dayNamesMin: [ "א'","ב'","ג'","ד'","ה'","ו'","שבת" ],
27	weekHeader: "Wk",
28	dateFormat: "dd/mm/yy",
29	firstDay: 0,
30	isRTL: true,
31	showMonthAfterYear: false,
32	yearSuffix: "" };
33datepicker.setDefaults( datepicker.regional.he );
34
35return datepicker.regional.he;
36
37} ) );
38