xref: /dokuwiki/inc/lang/ro/jquery.ui.datepicker.js (revision cbcf050340ec5c16d2d0aa9edce23ed980817dc9)
1/* Romanian initialisation for the jQuery UI date picker plugin.
2 *
3 * Written by Edmond L. (ll_edmond@walla.com)
4 * and Ionut G. Stan (ionut.g.stan@gmail.com)
5 */
6( function( factory ) {
7	if ( typeof define === "function" && define.amd ) {
8
9		// AMD. Register as an anonymous module.
10		define( [ "../widgets/datepicker" ], factory );
11	} else {
12
13		// Browser globals
14		factory( jQuery.datepicker );
15	}
16}( function( datepicker ) {
17
18datepicker.regional.ro = {
19	closeText: "Închide",
20	prevText: "« Luna precedentă",
21	nextText: "Luna următoare »",
22	currentText: "Azi",
23	monthNames: [ "Ianuarie","Februarie","Martie","Aprilie","Mai","Iunie",
24	"Iulie","August","Septembrie","Octombrie","Noiembrie","Decembrie" ],
25	monthNamesShort: [ "Ian", "Feb", "Mar", "Apr", "Mai", "Iun",
26	"Iul", "Aug", "Sep", "Oct", "Nov", "Dec" ],
27	dayNames: [ "Duminică", "Luni", "Marţi", "Miercuri", "Joi", "Vineri", "Sâmbătă" ],
28	dayNamesShort: [ "Dum", "Lun", "Mar", "Mie", "Joi", "Vin", "Sâm" ],
29	dayNamesMin: [ "Du","Lu","Ma","Mi","Jo","Vi","Sâ" ],
30	weekHeader: "Săpt",
31	dateFormat: "dd.mm.yy",
32	firstDay: 1,
33	isRTL: false,
34	showMonthAfterYear: false,
35	yearSuffix: "" };
36datepicker.setDefaults( datepicker.regional.ro );
37
38return datepicker.regional.ro;
39
40} ) );
41