xref: /dokuwiki/inc/lang/hr/jquery.ui.datepicker.js (revision 2af726d3d50169d07b960a42ffbb6719701c9307)
1/* Croatian i18n for the jQuery UI date picker plugin. */
2/* Written by Vjekoslav Nesek. */
3( function( factory ) {
4	if ( typeof define === "function" && define.amd ) {
5
6		// AMD. Register as an anonymous module.
7		define( [ "../widgets/datepicker" ], factory );
8	} else {
9
10		// Browser globals
11		factory( jQuery.datepicker );
12	}
13}( function( datepicker ) {
14
15datepicker.regional.hr = {
16	closeText: "Zatvori",
17	prevText: "<",
18	nextText: ">",
19	currentText: "Danas",
20	monthNames: [ "Siječanj","Veljača","Ožujak","Travanj","Svibanj","Lipanj",
21	"Srpanj","Kolovoz","Rujan","Listopad","Studeni","Prosinac" ],
22	monthNamesShort: [ "Sij","Velj","Ožu","Tra","Svi","Lip",
23	"Srp","Kol","Ruj","Lis","Stu","Pro" ],
24	dayNames: [ "Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota" ],
25	dayNamesShort: [ "Ned","Pon","Uto","Sri","Čet","Pet","Sub" ],
26	dayNamesMin: [ "Ne","Po","Ut","Sr","Če","Pe","Su" ],
27	weekHeader: "Tje",
28	dateFormat: "dd.mm.yy.",
29	firstDay: 1,
30	isRTL: false,
31	showMonthAfterYear: false,
32	yearSuffix: "" };
33datepicker.setDefaults( datepicker.regional.hr );
34
35return datepicker.regional.hr;
36
37} ) );
38