[SPIP] v3.2.12 -> v3.2.12 - Reinstallation avec le spip_loader
[lhc/web/www.git] / www / plugins-dist / jquery_ui / prive / javascript / ui / i18n / datepicker-hu.js
1 /* Hungarian initialisation for the jQuery UI date picker plugin. */
2 ( function( factory ) {
3 if ( typeof define === "function" && define.amd ) {
4
5 // AMD. Register as an anonymous module.
6 define( [ "../widgets/datepicker" ], factory );
7 } else {
8
9 // Browser globals
10 factory( jQuery.datepicker );
11 }
12 }( function( datepicker ) {
13
14 datepicker.regional.hu = {
15 closeText: "bezár",
16 prevText: "vissza",
17 nextText: "előre",
18 currentText: "ma",
19 monthNames: [ "Január", "Február", "Március", "Április", "Május", "Június",
20 "Július", "Augusztus", "Szeptember", "Október", "November", "December" ],
21 monthNamesShort: [ "Jan", "Feb", "Már", "Ápr", "Máj", "Jún",
22 "Júl", "Aug", "Szep", "Okt", "Nov", "Dec" ],
23 dayNames: [ "Vasárnap", "Hétfő", "Kedd", "Szerda", "Csütörtök", "Péntek", "Szombat" ],
24 dayNamesShort: [ "Vas", "Hét", "Ked", "Sze", "Csü", "Pén", "Szo" ],
25 dayNamesMin: [ "V", "H", "K", "Sze", "Cs", "P", "Szo" ],
26 weekHeader: "Hét",
27 dateFormat: "yy.mm.dd.",
28 firstDay: 1,
29 isRTL: false,
30 showMonthAfterYear: true,
31 yearSuffix: "" };
32 datepicker.setDefaults( datepicker.regional.hu );
33
34 return datepicker.regional.hu;
35
36 } ) );