standard header in about page (#676)
[openemr.git] / public / assets / jquery-ui-1-12-1 / ui / i18n / datepicker-eo.js
blob25f6162b5cd6a081e8dd911eda5b8f39fb34aa5d
1 /* Esperanto initialisation for the jQuery UI date picker plugin. */
2 /* Written by Olivier M. (olivierweb@ifrance.com). */
3 ( function( factory ) {
4         if ( typeof define === "function" && define.amd ) {
6                 // AMD. Register as an anonymous module.
7                 define( [ "../widgets/datepicker" ], factory );
8         } else {
10                 // Browser globals
11                 factory( jQuery.datepicker );
12         }
13 }( function( datepicker ) {
15 datepicker.regional.eo = {
16         closeText: "Fermi",
17         prevText: "<Anta",
18         nextText: "Sekv>",
19         currentText: "Nuna",
20         monthNames: [ "Januaro","Februaro","Marto","Aprilo","Majo","Junio",
21         "Julio","Aŭgusto","Septembro","Oktobro","Novembro","Decembro" ],
22         monthNamesShort: [ "Jan","Feb","Mar","Apr","Maj","Jun",
23         "Jul","Aŭg","Sep","Okt","Nov","Dec" ],
24         dayNames: [ "Dimanĉo","Lundo","Mardo","Merkredo","Ĵaŭdo","Vendredo","Sabato" ],
25         dayNamesShort: [ "Dim","Lun","Mar","Mer","Ĵaŭ","Ven","Sab" ],
26         dayNamesMin: [ "Di","Lu","Ma","Me","Ĵa","Ve","Sa" ],
27         weekHeader: "Sb",
28         dateFormat: "dd/mm/yy",
29         firstDay: 0,
30         isRTL: false,
31         showMonthAfterYear: false,
32         yearSuffix: "" };
33 datepicker.setDefaults( datepicker.regional.eo );
35 return datepicker.regional.eo;
37 } ) );