2011-05-04 20:29:13 +00:00
|
|
|
/* Romanian initialisation for the jQuery UI date picker plugin.
|
2009-03-07 04:59:57 +00:00
|
|
|
*
|
|
|
|
* Written by Edmond L. (ll_edmond@walla.com)
|
|
|
|
* and Ionut G. Stan (ionut.g.stan@gmail.com)
|
|
|
|
*/
|
2015-08-24 13:00:11 +00:00
|
|
|
( function( factory ) {
|
2021-06-06 22:58:12 +00:00
|
|
|
"use strict";
|
|
|
|
|
2013-07-17 15:10:30 +00:00
|
|
|
if ( typeof define === "function" && define.amd ) {
|
|
|
|
|
|
|
|
// AMD. Register as an anonymous module.
|
2015-08-24 13:00:11 +00:00
|
|
|
define( [ "../widgets/datepicker" ], factory );
|
2013-07-17 15:10:30 +00:00
|
|
|
} else {
|
|
|
|
|
|
|
|
// Browser globals
|
|
|
|
factory( jQuery.datepicker );
|
|
|
|
}
|
2021-06-06 22:58:12 +00:00
|
|
|
} )( function( datepicker ) {
|
|
|
|
"use strict";
|
2013-07-17 15:10:30 +00:00
|
|
|
|
2015-08-24 13:00:11 +00:00
|
|
|
datepicker.regional.ro = {
|
|
|
|
closeText: "Închide",
|
|
|
|
prevText: "« Luna precedentă",
|
|
|
|
nextText: "Luna următoare »",
|
|
|
|
currentText: "Azi",
|
2021-06-06 22:58:12 +00:00
|
|
|
monthNames: [ "Ianuarie", "Februarie", "Martie", "Aprilie", "Mai", "Iunie",
|
|
|
|
"Iulie", "August", "Septembrie", "Octombrie", "Noiembrie", "Decembrie" ],
|
2015-08-24 13:00:11 +00:00
|
|
|
monthNamesShort: [ "Ian", "Feb", "Mar", "Apr", "Mai", "Iun",
|
|
|
|
"Iul", "Aug", "Sep", "Oct", "Nov", "Dec" ],
|
|
|
|
dayNames: [ "Duminică", "Luni", "Marţi", "Miercuri", "Joi", "Vineri", "Sâmbătă" ],
|
|
|
|
dayNamesShort: [ "Dum", "Lun", "Mar", "Mie", "Joi", "Vin", "Sâm" ],
|
2021-06-06 22:58:12 +00:00
|
|
|
dayNamesMin: [ "Du", "Lu", "Ma", "Mi", "Jo", "Vi", "Sâ" ],
|
2015-08-24 13:00:11 +00:00
|
|
|
weekHeader: "Săpt",
|
|
|
|
dateFormat: "dd.mm.yy",
|
2014-02-19 11:55:50 +00:00
|
|
|
firstDay: 1,
|
|
|
|
isRTL: false,
|
|
|
|
showMonthAfterYear: false,
|
2015-08-24 13:00:11 +00:00
|
|
|
yearSuffix: "" };
|
|
|
|
datepicker.setDefaults( datepicker.regional.ro );
|
2014-02-19 11:55:50 +00:00
|
|
|
|
2015-08-24 13:00:11 +00:00
|
|
|
return datepicker.regional.ro;
|
2013-07-17 15:10:30 +00:00
|
|
|
|
2021-06-06 22:58:12 +00:00
|
|
|
} );
|