jquery-ui/ui/i18n/datepicker-eo.js

41 lines
1.2 KiB
JavaScript
Raw Normal View History

/* Esperanto initialisation for the jQuery UI date picker plugin. */
2008-09-20 17:42:04 +00:00
/* Written by Olivier M. (olivierweb@ifrance.com). */
2015-08-24 13:00:11 +00:00
( function( factory ) {
"use strict";
if ( typeof define === "function" && define.amd ) {
// AMD. Register as an anonymous module.
2015-08-24 13:00:11 +00:00
define( [ "../widgets/datepicker" ], factory );
} else {
// Browser globals
factory( jQuery.datepicker );
}
} )( function( datepicker ) {
"use strict";
2015-08-24 13:00:11 +00:00
datepicker.regional.eo = {
closeText: "Fermi",
prevText: "Anta",
nextText: "Sekv",
2015-08-24 13:00:11 +00:00
currentText: "Nuna",
monthNames: [ "Januaro", "Februaro", "Marto", "Aprilo", "Majo", "Junio",
"Julio", "Aŭgusto", "Septembro", "Oktobro", "Novembro", "Decembro" ],
monthNamesShort: [ "Jan", "Feb", "Mar", "Apr", "Maj", "Jun",
"Jul", "Aŭg", "Sep", "Okt", "Nov", "Dec" ],
dayNames: [ "Dimanĉo", "Lundo", "Mardo", "Merkredo", "Ĵaŭdo", "Vendredo", "Sabato" ],
dayNamesShort: [ "Dim", "Lun", "Mar", "Mer", "Ĵaŭ", "Ven", "Sab" ],
dayNamesMin: [ "Di", "Lu", "Ma", "Me", "Ĵa", "Ve", "Sa" ],
2015-08-24 13:00:11 +00:00
weekHeader: "Sb",
dateFormat: "dd/mm/yy",
firstDay: 0,
isRTL: false,
showMonthAfterYear: false,
2015-08-24 13:00:11 +00:00
yearSuffix: "" };
datepicker.setDefaults( datepicker.regional.eo );
2015-08-24 13:00:11 +00:00
return datepicker.regional.eo;
} );