jqgrid-jquery-rails 4.4.1.0 → 4.4.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,129 +1,163 @@
1
- ;(function($){
2
- /**
3
- * jqGrid Translation
4
- * Tony Tomov tony@trirand.com
5
- * http://trirand.com/blog/
6
- * Dual licensed under the MIT and GPL licenses:
7
- * http://www.opensource.org/licenses/mit-license.php
8
- * http://www.gnu.org/licenses/gpl.html
9
- **/
10
- $.jgrid = $.jgrid || {};
11
- $.extend($.jgrid,{
12
- defaults : {
13
- recordtext: "Pregled {0} - {1} od {2}",
14
- emptyrecords: "Nema zapisa",
15
- loadtext: "Učitavam...",
16
- pgtext : "Stranica {0} od {1}"
17
- },
18
- search : {
19
- caption: "pretraživanje...",
20
- Find: "Traži",
21
- Reset: "Poništi",
22
- odata : ['jednak', 'nije identičan', 'manje', 'manje ili identično','veće','veše ili identično', 'počinje sa','ne počinje sa ','je u','nije u','završava sa','ne završava sa','sadrži','ne sadrži'],
23
- groupOps: [ { op: "U", text: "sve" }, { op: "ILI", text: "bilo koji" } ],
24
- matchText: " podudata se",
25
- rulesText: " pravila"
26
- },
27
- edit : {
28
- addCaption: "Dodaj zapis",
29
- editCaption: "Promijeni zapis",
30
- bSubmit: "Preuzmi",
31
- bCancel: "Odustani",
32
- bClose: "Zatvri",
33
- saveData: "Podaci su promijenjeni! Preuzmi promijene?",
34
- bYes : "Da",
35
- bNo : "Ne",
36
- bExit : "Odustani",
37
- msg: {
38
- required:"Polje je obavezno",
39
- number:"Molim, unesite ispravan broj",
40
- minValue:"vrijednost mora biti veća ili identična ",
41
- maxValue:"vrijednost mora biti manja ili identična",
42
- email: "neispravan e-mail",
43
- integer: "Molim, unjeti ispravan cijeli broj (integer)",
44
- date: "Molim, unjeti ispravan datum ",
45
- url: "neispravan URL. Prefiks je obavezan ('http://' or 'https://')",
46
- nodefined : " nije definiran!",
47
- novalue : " zahtjevan podatak je obavezan!",
48
- customarray : "Opcionalna funkcija trebala bi bili polje (array)!",
49
- customfcheck : "Custom function should be present in case of custom checking!"
50
-
51
- }
52
- },
53
- view : {
54
- caption: "Otvori zapis",
55
- bClose: "Zatvori"
56
- },
57
- del : {
58
- caption: "Obriši",
59
- msg: "Obriši označen zapis ili više njih?",
60
- bSubmit: "Obriši",
61
- bCancel: "Odustani"
62
- },
63
- nav : {
64
- edittext: "",
65
- edittitle: "Promijeni obilježeni red",
66
- addtext:"",
67
- addtitle: "Dodaj novi red",
68
- deltext: "",
69
- deltitle: "Obriši obilježeni red",
70
- searchtext: "",
71
- searchtitle: "Potraži zapise",
72
- refreshtext: "",
73
- refreshtitle: "Ponovo preuzmi podatke",
74
- alertcap: "Upozorenje",
75
- alerttext: "Molim, odaberi red",
76
- viewtext: "",
77
- viewtitle: "Pregled obilježenog reda"
78
- },
79
- col : {
80
- caption: "Obilježi kolonu",
81
- bSubmit: "Uredu",
82
- bCancel: "Odustani"
83
- },
84
- errors : {
85
- errcap : "Greška",
86
- nourl : "Nedostaje URL",
87
- norecords: "Bez zapisa za obradu",
88
- model : "Duljina colNames <> colModel!"
89
- },
90
- formatter : {
91
- integer : {thousandsSeparator: " ", defaultValue: '0'},
92
- number : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, defaultValue: '0.00'},
93
- currency : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, prefix: "", suffix:"", defaultValue: '0.00'},
94
- date : {
95
- dayNames: [
96
- "Ned", "Pon", "Uto", "Sri", "Čet", "Pet", "Sub",
97
- "Nedjelja", "Ponedjeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota"
98
- ],
99
- monthNames: [
100
- "Sij", "Vel", "Ožu", "Tra", "Svi", "Lip", "Srp", "Kol", "Ruj", "Lis", "Stu", "Pro",
101
- "Siječanj", "Veljača", "Ožujak", "Travanj", "Svibanj", "Lipanj", "Srpanj", "Kolovoz", "Rujan", "Listopad", "Studeni", "Prosinac"
102
- ],
103
- AmPm : ["am","pm","AM","PM"],
104
- S: function (j) {return ''},
105
- srcformat: 'Y-m-d',
106
- newformat: 'd.m.Y.',
107
- masks : {
108
- ISO8601Long:"Y-m-d H:i:s",
109
- ISO8601Short:"Y-m-d",
110
- ShortDate: "j.n.Y.",
111
- LongDate: "l, j. F Y",
112
- FullDateTime: "l, d. F Y G:i:s",
113
- MonthDay: "d. F",
114
- ShortTime: "G:i",
115
- LongTime: "G:i:s",
116
- SortableDateTime: "Y-m-d\\TH:i:s",
117
- UniversalSortableDateTime: "Y-m-d H:i:sO",
118
- YearMonth: "F, Y"
119
- },
120
- reformatAfterEdit : false
121
- },
122
- baseLinkUrl: '',
123
- showAction: '',
124
- target: '',
125
- checkbox : {disabled:true},
126
- idName : 'id'
127
- }
128
- });
129
- })(jQuery);
1
+ ;(function($){
2
+ /**
3
+ * jqGrid Croatian Translation
4
+ * Version 1.0.1 (developed for jQuery Grid 4.4)
5
+ * msajko@gmail.com
6
+ *
7
+ * Dual licensed under the MIT and GPL licenses:
8
+ * http://www.opensource.org/licenses/mit-license.php
9
+ * http://www.gnu.org/licenses/gpl.html
10
+ **/
11
+ $.jgrid = $.jgrid || {};
12
+ $.extend($.jgrid,{
13
+ defaults : {
14
+ recordtext: "Pregled {0} - {1} od {2}",
15
+ emptyrecords: "Nema zapisa",
16
+ loadtext: "Učitavam...",
17
+ pgtext : "Stranica {0} od {1}"
18
+ },
19
+ search : {
20
+ caption: "Traži...",
21
+ Find: "Pretraživanje",
22
+ Reset: "Poništi",
23
+ odata : ['jednak', 'nije identičan', 'manje', 'manje ili identično','veće','veše ili identično', 'počinje sa','ne počinje sa ','je u','nije u','završava sa','ne završava sa','sadrži','ne sadrži'],
24
+ groupOps: [ { op: "I", text: "sve" }, { op: "ILI", text: "bilo koji" } ],
25
+ matchText: " podudata se",
26
+ rulesText: " pravila"
27
+ },
28
+ edit : {
29
+ addCaption: "Dodaj zapis",
30
+ editCaption: "Promijeni zapis",
31
+ bSubmit: "Preuzmi",
32
+ bCancel: "Odustani",
33
+ bClose: "Zatvri",
34
+ saveData: "Podaci su promijenjeni! Preuzmi promijene?",
35
+ bYes : "Da",
36
+ bNo : "Ne",
37
+ bExit : "Odustani",
38
+ msg: {
39
+ required:"Polje je obavezno",
40
+ number:"Molim, unesite ispravan broj",
41
+ minValue:"Vrijednost mora biti veća ili identična ",
42
+ maxValue:"Vrijednost mora biti manja ili identična",
43
+ email: "neispravan e-mail",
44
+ integer: "Molim, unjeti ispravan cijeli broj (integer)",
45
+ date: "Molim, unjeti ispravan datum ",
46
+ url: "neispravan URL. Prefiks je obavezan ('http://' or 'https://')",
47
+ nodefined : " nije definiran!",
48
+ novalue : " zahtjevan podatak je obavezan!",
49
+ customarray : "Opcionalna funkcija trebala bi bili polje (array)!",
50
+ customfcheck : "Custom function should be present in case of custom checking!"
51
+
52
+ }
53
+ },
54
+ view : {
55
+ caption: "Otvori zapis",
56
+ bClose: "Zatvori"
57
+ },
58
+ del : {
59
+ caption: "Obriši",
60
+ msg: "Obriši označen zapis ili više njih?",
61
+ bSubmit: "Obriši",
62
+ bCancel: "Odustani"
63
+ },
64
+ nav : {
65
+ edittext: " ",
66
+ edittitle: "Promijeni obilježeni red",
67
+ addtext:" ",
68
+ addtitle: "Dodaj novi red",
69
+ deltext: " ",
70
+ deltitle: "Obriši obilježeni red",
71
+ searchtext: " ",
72
+ searchtitle: "Potraži zapise",
73
+ refreshtext: "",
74
+ refreshtitle: "Ponovo preuzmi podatke",
75
+ alertcap: "Upozorenje",
76
+ alerttext: "Molim, odaberi red",
77
+ viewtext: "",
78
+ viewtitle: "Pregled obilježenog reda"
79
+ },
80
+ col : {
81
+ caption: "Obilježi kolonu",
82
+ bSubmit: "Uredu",
83
+ bCancel: "Odustani"
84
+ },
85
+ errors : {
86
+ errcap : "Greška",
87
+ nourl : "Nedostaje URL",
88
+ norecords: "Bez zapisa za obradu",
89
+ model : "colNames i colModel imaju različitu duljinu!"
90
+ },
91
+ formatter : {
92
+ integer : {thousandsSeparator: ".", defaultValue: '0'},
93
+ number : {decimalSeparator:",", thousandsSeparator: ".", decimalPlaces: 2, defaultValue: '0,00'},
94
+ currency : {decimalSeparator:",", thousandsSeparator: ".", decimalPlaces: 2, prefix: "", suffix:" Kn", defaultValue: '0,00'},
95
+ date : {
96
+ dayNames: [
97
+ "Ned", "Pon", "Uto", "Sri", "Čet", "Pet", "Sub",
98
+ "Nedjelja", "Ponedjeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota"
99
+ ],
100
+ monthNames: [
101
+ "Sij", "Vel", "Ožu", "Tra", "Svi", "Lip", "Srp", "Kol", "Ruj", "Lis", "Stu", "Pro",
102
+ "Siječanj", "Veljača", "Ožujak", "Travanj", "Svibanj", "Lipanj", "Srpanj", "Kolovoz", "Rujan", "Listopad", "Studeni", "Prosinac"
103
+ ],
104
+ AmPm : ["am","pm","AM","PM"],
105
+ S: function (j) {return ''},
106
+ srcformat: 'Y-m-d',
107
+ newformat: 'd.m.Y.',
108
+ masks : {
109
+ // see http://php.net/manual/en/function.date.php for PHP format used in jqGrid
110
+ // and see http://docs.jquery.com/UI/Datepicker/formatDate
111
+ // and https://github.com/jquery/globalize#dates for alternative formats used frequently
112
+ ISO8601Long: "Y-m-d H:i:s",
113
+ ISO8601Short: "Y-m-d",
114
+ // short date:
115
+ // d - Day of the month, 2 digits with leading zeros
116
+ // m - Numeric representation of a month, with leading zeros
117
+ // Y - A full numeric representation of a year, 4 digits
118
+ ShortDate: "d.m.Y.", // in jQuery UI Datepicker: "dd.mm.yy."
119
+ // long date:
120
+ // l - A full textual representation of the day of the week
121
+ // j - Day of the month without leading zeros
122
+ // F - A full textual representation of a month
123
+ // Y - A full numeric representation of a year, 4 digits
124
+ LongDate: "l, j. F Y", // in jQuery UI Datepicker: "dddd, d. MMMM yyyy"
125
+ // long date with long time:
126
+ // l - A full textual representation of the day of the week
127
+ // j - Day of the month without leading zeros
128
+ // F - A full textual representation of a month
129
+ // Y - A full numeric representation of a year, 4 digits
130
+ // H - 24-hour format of an hour with leading zeros
131
+ // i - Minutes with leading zeros
132
+ // s - Seconds, with leading zeros
133
+ FullDateTime: "l, j. F Y H:i:s", // in jQuery UI Datepicker: "dddd, d. MMMM yyyy HH:mm:ss"
134
+ // month day:
135
+ // d - Day of the month, 2 digits with leading zeros
136
+ // F - A full textual representation of a month
137
+ MonthDay: "d F", // in jQuery UI Datepicker: "dd MMMM"
138
+ // short time (without seconds)
139
+ // H - 24-hour format of an hour with leading zeros
140
+ // i - Minutes with leading zeros
141
+ ShortTime: "H:i", // in jQuery UI Datepicker: "HH:mm"
142
+ // long time (with seconds)
143
+ // H - 24-hour format of an hour with leading zeros
144
+ // i - Minutes with leading zeros
145
+ // s - Seconds, with leading zeros
146
+ LongTime: "H:i:s", // in jQuery UI Datepicker: "HH:mm:ss"
147
+ SortableDateTime: "Y-m-d\\TH:i:s",
148
+ UniversalSortableDateTime: "Y-m-d H:i:sO",
149
+ // month with year
150
+ // F - A full textual representation of a month
151
+ // Y - A full numeric representation of a year, 4 digits
152
+ YearMonth: "F Y" // in jQuery UI Datepicker: "MMMM yyyy"
153
+ },
154
+ reformatAfterEdit : false
155
+ },
156
+ baseLinkUrl: '',
157
+ showAction: '',
158
+ target: '',
159
+ checkbox : {disabled:true},
160
+ idName : 'id'
161
+ }
162
+ });
163
+ })(jQuery);
@@ -1,129 +1,163 @@
1
- ;(function($){
2
- /**
3
- * jqGrid Translation
4
- * Tony Tomov tony@trirand.com
5
- * http://trirand.com/blog/
6
- * Dual licensed under the MIT and GPL licenses:
7
- * http://www.opensource.org/licenses/mit-license.php
8
- * http://www.gnu.org/licenses/gpl.html
9
- **/
10
- $.jgrid = $.jgrid || {};
11
- $.extend($.jgrid,{
12
- defaults : {
13
- recordtext: "Pregled {0} - {1} od {2}",
14
- emptyrecords: "Nema zapisa",
15
- loadtext: "U�itavam...",
16
- pgtext : "Stranica {0} od {1}"
17
- },
18
- search : {
19
- caption: "pretra�ivanje...",
20
- Find: "Tra�i",
21
- Reset: "Poniti",
22
- odata : ['jednak', 'nije identian', 'manje', 'manje ili identi�no','ve�e','ve�e ili identi�no', 'po�inje sa','ne po�inje sa ','je u','nije u','zavr�ava sa','ne zavr�ava sa','sadr�i','ne sadr�i'],
23
- groupOps: [ { op: "U", text: "sve" }, { op: "ILI", text: "bilo koji" } ],
24
- matchText: " podudata se",
25
- rulesText: " pravila"
26
- },
27
- edit : {
28
- addCaption: "Dodaj zapis",
29
- editCaption: "Promijeni zapis",
30
- bSubmit: "Preuzmi",
31
- bCancel: "Odustani",
32
- bClose: "Zatvri",
33
- saveData: "Podaci su promijenjeni! Preuzmi promijene?",
34
- bYes : "Da",
35
- bNo : "Ne",
36
- bExit : "Odustani",
37
- msg: {
38
- required:"Polje je obavezno",
39
- number:"Molim, unesite ispravan broj",
40
- minValue:"vrijednost mora biti ve�a ili identi�na ",
41
- maxValue:"vrijednost mora biti manja ili identi�na",
42
- email: "neispravan e-mail",
43
- integer: "Molim, unjeti ispravan cijeli broj (integer)",
44
- date: "Molim, unjeti ispravan datum ",
45
- url: "neispravan URL. Prefiks je obavezan ('http://' or 'https://')",
46
- nodefined : " nije definiran!",
47
- novalue : " zahtjevan podatak je obavezan!",
48
- customarray : "Opcionalna funkcija trebala bi bili polje (array)!",
49
- customfcheck : "Custom function should be present in case of custom checking!"
50
-
51
- }
52
- },
53
- view : {
54
- caption: "Otvori zapis",
55
- bClose: "Zatvori"
56
- },
57
- del : {
58
- caption: "Obri�i",
59
- msg: "Obri�i ozna�en zapis ili vi�e njih?",
60
- bSubmit: "Obri�i",
61
- bCancel: "Odustani"
62
- },
63
- nav : {
64
- edittext: "",
65
- edittitle: "Promijeni obilje�eni red",
66
- addtext:"",
67
- addtitle: "Dodaj novi red",
68
- deltext: "",
69
- deltitle: "Obri�i obilje�eni red",
70
- searchtext: "",
71
- searchtitle: "Potra�i zapise",
72
- refreshtext: "",
73
- refreshtitle: "Ponovo preuzmi podatke",
74
- alertcap: "Upozorenje",
75
- alerttext: "Molim, odaberi red",
76
- viewtext: "",
77
- viewtitle: "Pregled obilje�enog reda"
78
- },
79
- col : {
80
- caption: "Obilje�i kolonu",
81
- bSubmit: "Uredu",
82
- bCancel: "Odustani"
83
- },
84
- errors : {
85
- errcap : "Gre�ka",
86
- nourl : "Nedostaje URL",
87
- norecords: "Bez zapisa za obradu",
88
- model : "Duljina colNames <> colModel!"
89
- },
90
- formatter : {
91
- integer : {thousandsSeparator: " ", defaultValue: '0'},
92
- number : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, defaultValue: '0.00'},
93
- currency : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, prefix: "", suffix:"", defaultValue: '0.00'},
94
- date : {
95
- dayNames: [
96
- "Ned", "Pon", "Uto", "Sri", "�et", "Pet", "Sub",
97
- "Nedjelja", "Ponedjeljak", "Utorak", "Srijeda", "�etvrtak", "Petak", "Subota"
98
- ],
99
- monthNames: [
100
- "Sij", "Vel", "O�u", "Tra", "Svi", "Lip", "Srp", "Kol", "Ruj", "Lis", "Stu", "Pro",
101
- "Sije�anj", "Velja�a", "O�ujak", "Travanj", "Svibanj", "Lipanj", "Srpanj", "Kolovoz", "Rujan", "Listopad", "Studeni", "Prosinac"
102
- ],
103
- AmPm : ["am","pm","AM","PM"],
104
- S: function (j) {return ''},
105
- srcformat: 'Y-m-d',
106
- newformat: 'd.m.Y.',
107
- masks : {
108
- ISO8601Long:"Y-m-d H:i:s",
109
- ISO8601Short:"Y-m-d",
110
- ShortDate: "j.n.Y.",
111
- LongDate: "l, j. F Y",
112
- FullDateTime: "l, d. F Y G:i:s",
113
- MonthDay: "d. F",
114
- ShortTime: "G:i",
115
- LongTime: "G:i:s",
116
- SortableDateTime: "Y-m-d\\TH:i:s",
117
- UniversalSortableDateTime: "Y-m-d H:i:sO",
118
- YearMonth: "F, Y"
119
- },
120
- reformatAfterEdit : false
121
- },
122
- baseLinkUrl: '',
123
- showAction: '',
124
- target: '',
125
- checkbox : {disabled:true},
126
- idName : 'id'
127
- }
128
- });
129
- })(jQuery);
1
+ ;(function($){
2
+ /**
3
+ * jqGrid Croatian Translation (charset windows-1250)
4
+ * Version 1.0.1 (developed for jQuery Grid 4.4)
5
+ * msajko@gmail.com
6
+ *
7
+ * Dual licensed under the MIT and GPL licenses:
8
+ * http://www.opensource.org/licenses/mit-license.php
9
+ * http://www.gnu.org/licenses/gpl.html
10
+ **/
11
+ $.jgrid = $.jgrid || {};
12
+ $.extend($.jgrid,{
13
+ defaults : {
14
+ recordtext: "Pregled {0} - {1} od {2}",
15
+ emptyrecords: "Nema zapisa",
16
+ loadtext: "U�itavam...",
17
+ pgtext : "Stranica {0} od {1}"
18
+ },
19
+ search : {
20
+ caption: "Tra�i...",
21
+ Find: "Pretraivanje",
22
+ Reset: "Poniti",
23
+ odata : ['jednak', 'nije identi�an', 'manje', 'manje ili identi�no','ve�e','ve�e ili identi�no', 'po�inje sa','ne po�inje sa ','je u','nije u','zavr�ava sa','ne zavr�ava sa','sadr�i','ne sadr�i'],
24
+ groupOps: [ { op: "I", text: "sve" }, { op: "ILI", text: "bilo koji" } ],
25
+ matchText: " podudata se",
26
+ rulesText: " pravila"
27
+ },
28
+ edit : {
29
+ addCaption: "Dodaj zapis",
30
+ editCaption: "Promijeni zapis",
31
+ bSubmit: "Preuzmi",
32
+ bCancel: "Odustani",
33
+ bClose: "Zatvri",
34
+ saveData: "Podaci su promijenjeni! Preuzmi promijene?",
35
+ bYes : "Da",
36
+ bNo : "Ne",
37
+ bExit : "Odustani",
38
+ msg: {
39
+ required:"Polje je obavezno",
40
+ number:"Molim, unesite ispravan broj",
41
+ minValue:"Vrijednost mora biti ve�a ili identi�na ",
42
+ maxValue:"Vrijednost mora biti manja ili identi�na",
43
+ email: "neispravan e-mail",
44
+ integer: "Molim, unjeti ispravan cijeli broj (integer)",
45
+ date: "Molim, unjeti ispravan datum ",
46
+ url: "neispravan URL. Prefiks je obavezan ('http://' or 'https://')",
47
+ nodefined : " nije definiran!",
48
+ novalue : " zahtjevan podatak je obavezan!",
49
+ customarray : "Opcionalna funkcija trebala bi bili polje (array)!",
50
+ customfcheck : "Custom function should be present in case of custom checking!"
51
+
52
+ }
53
+ },
54
+ view : {
55
+ caption: "Otvori zapis",
56
+ bClose: "Zatvori"
57
+ },
58
+ del : {
59
+ caption: "Obri�i",
60
+ msg: "Obri�i ozna�en zapis ili vi�e njih?",
61
+ bSubmit: "Obri�i",
62
+ bCancel: "Odustani"
63
+ },
64
+ nav : {
65
+ edittext: " ",
66
+ edittitle: "Promijeni obilje�eni red",
67
+ addtext:" ",
68
+ addtitle: "Dodaj novi red",
69
+ deltext: " ",
70
+ deltitle: "Obri�i obilje�eni red",
71
+ searchtext: " ",
72
+ searchtitle: "Potra�i zapise",
73
+ refreshtext: "",
74
+ refreshtitle: "Ponovo preuzmi podatke",
75
+ alertcap: "Upozorenje",
76
+ alerttext: "Molim, odaberi red",
77
+ viewtext: "",
78
+ viewtitle: "Pregled obilje�enog reda"
79
+ },
80
+ col : {
81
+ caption: "Obilje�i kolonu",
82
+ bSubmit: "Uredu",
83
+ bCancel: "Odustani"
84
+ },
85
+ errors : {
86
+ errcap : "Gre�ka",
87
+ nourl : "Nedostaje URL",
88
+ norecords: "Bez zapisa za obradu",
89
+ model : "colNames i colModel imaju razli�itu duljinu!"
90
+ },
91
+ formatter : {
92
+ integer : {thousandsSeparator: ".", defaultValue: '0'},
93
+ number : {decimalSeparator:",", thousandsSeparator: ".", decimalPlaces: 2, defaultValue: '0,00'},
94
+ currency : {decimalSeparator:",", thousandsSeparator: ".", decimalPlaces: 2, prefix: "", suffix:" Kn", defaultValue: '0,00'},
95
+ date : {
96
+ dayNames: [
97
+ "Ned", "Pon", "Uto", "Sri", "�et", "Pet", "Sub",
98
+ "Nedjelja", "Ponedjeljak", "Utorak", "Srijeda", "�etvrtak", "Petak", "Subota"
99
+ ],
100
+ monthNames: [
101
+ "Sij", "Vel", "O�u", "Tra", "Svi", "Lip", "Srp", "Kol", "Ruj", "Lis", "Stu", "Pro",
102
+ "Sije�anj", "Velja�a", "O�ujak", "Travanj", "Svibanj", "Lipanj", "Srpanj", "Kolovoz", "Rujan", "Listopad", "Studeni", "Prosinac"
103
+ ],
104
+ AmPm : ["am","pm","AM","PM"],
105
+ S: function (j) {return ''},
106
+ srcformat: 'Y-m-d',
107
+ newformat: 'd.m.Y.',
108
+ masks : {
109
+ // see http://php.net/manual/en/function.date.php for PHP format used in jqGrid
110
+ // and see http://docs.jquery.com/UI/Datepicker/formatDate
111
+ // and https://github.com/jquery/globalize#dates for alternative formats used frequently
112
+ ISO8601Long: "Y-m-d H:i:s",
113
+ ISO8601Short: "Y-m-d",
114
+ // short date:
115
+ // d - Day of the month, 2 digits with leading zeros
116
+ // m - Numeric representation of a month, with leading zeros
117
+ // Y - A full numeric representation of a year, 4 digits
118
+ ShortDate: "d.m.Y.", // in jQuery UI Datepicker: "dd.mm.yy."
119
+ // long date:
120
+ // l - A full textual representation of the day of the week
121
+ // j - Day of the month without leading zeros
122
+ // F - A full textual representation of a month
123
+ // Y - A full numeric representation of a year, 4 digits
124
+ LongDate: "l, j. F Y", // in jQuery UI Datepicker: "dddd, d. MMMM yyyy"
125
+ // long date with long time:
126
+ // l - A full textual representation of the day of the week
127
+ // j - Day of the month without leading zeros
128
+ // F - A full textual representation of a month
129
+ // Y - A full numeric representation of a year, 4 digits
130
+ // H - 24-hour format of an hour with leading zeros
131
+ // i - Minutes with leading zeros
132
+ // s - Seconds, with leading zeros
133
+ FullDateTime: "l, j. F Y H:i:s", // in jQuery UI Datepicker: "dddd, d. MMMM yyyy HH:mm:ss"
134
+ // month day:
135
+ // d - Day of the month, 2 digits with leading zeros
136
+ // F - A full textual representation of a month
137
+ MonthDay: "d F", // in jQuery UI Datepicker: "dd MMMM"
138
+ // short time (without seconds)
139
+ // H - 24-hour format of an hour with leading zeros
140
+ // i - Minutes with leading zeros
141
+ ShortTime: "H:i", // in jQuery UI Datepicker: "HH:mm"
142
+ // long time (with seconds)
143
+ // H - 24-hour format of an hour with leading zeros
144
+ // i - Minutes with leading zeros
145
+ // s - Seconds, with leading zeros
146
+ LongTime: "H:i:s", // in jQuery UI Datepicker: "HH:mm:ss"
147
+ SortableDateTime: "Y-m-d\\TH:i:s",
148
+ UniversalSortableDateTime: "Y-m-d H:i:sO",
149
+ // month with year
150
+ // F - A full textual representation of a month
151
+ // Y - A full numeric representation of a year, 4 digits
152
+ YearMonth: "F Y" // in jQuery UI Datepicker: "MMMM yyyy"
153
+ },
154
+ reformatAfterEdit : false
155
+ },
156
+ baseLinkUrl: '',
157
+ showAction: '',
158
+ target: '',
159
+ checkbox : {disabled:true},
160
+ idName : 'id'
161
+ }
162
+ });
163
+ })(jQuery);