jqgrid-jquery-rails 4.3.2.0 → 4.3.3.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,129 +1,129 @@
1
- ;(function($){
2
- /**
3
- * jqGrid Montenegrian Translation
4
- * Bild Studio info@bild-studio.net
5
- * http://www.bild-studio.com
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: "Ne postoji nijedan zapis",
15
- loadtext: "Učitivanje...",
16
- pgtext : "Strana {0} od {1}"
17
- },
18
- search : {
19
- caption: "Traženje...",
20
- Find: "Traži",
21
- Reset: "Resetuj",
22
- odata : ['jednako', 'nije jednako', 'manje', 'manje ili jednako','veće','veće ili jednako', '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: "AND", text: "sva" }, { op: "OR", text: "bilo koje" } ],
24
- matchText: " primjeni",
25
- rulesText: " pravila"
26
- },
27
- edit : {
28
- addCaption: "Dodaj zapis",
29
- editCaption: "Izmjeni zapis",
30
- bSubmit: "Pošalji",
31
- bCancel: "Odustani",
32
- bClose: "Zatvori",
33
- saveData: "Podatak je izmjenjen! Sačuvaj izmjene?",
34
- bYes : "Da",
35
- bNo : "Ne",
36
- bExit : "Odustani",
37
- msg: {
38
- required:"Polje je obavezno",
39
- number:"Unesite ispravan broj",
40
- minValue:"vrijednost mora biti veća od ili jednaka sa ",
41
- maxValue:"vrijednost mora biti manja ili jednaka sa",
42
- email: "nije ispravna email adresa, nije valjda da ne umiješ ukucati mail!?",
43
- integer: "Ne zajebaji se unesi cjelobrojnu vrijednost ",
44
- date: "Unesite ispravan datum",
45
- url: "nije ispravan URL. Potreban je prefiks ('http://' or 'https://')",
46
- nodefined : " nije definisan!",
47
- novalue : " zahtjevana je povratna vrijednost!",
48
- customarray : "Prilagođena funkcija treba da vrati niz!",
49
- customfcheck : "Prilagođena funkcija treba da bude prisutana u slučaju prilagođene provjere!"
50
-
51
- }
52
- },
53
- view : {
54
- caption: "Pogledaj zapis",
55
- bClose: "Zatvori"
56
- },
57
- del : {
58
- caption: "Izbrisi",
59
- msg: "Izbrisi izabran(e) zapise(e)?",
60
- bSubmit: "Izbriši",
61
- bCancel: "Odbaci"
62
- },
63
- nav : {
64
- edittext: "",
65
- edittitle: "Izmjeni izabrani red",
66
- addtext:"",
67
- addtitle: "Dodaj novi red",
68
- deltext: "",
69
- deltitle: "Izbriši izabran red",
70
- searchtext: "",
71
- searchtitle: "Nađi zapise",
72
- refreshtext: "",
73
- refreshtitle: "Ponovo učitaj podatke",
74
- alertcap: "Upozorenje",
75
- alerttext: "Izaberite red",
76
- viewtext: "",
77
- viewtitle: "Pogledaj izabrani red"
78
- },
79
- col : {
80
- caption: "Izaberi kolone",
81
- bSubmit: "OK",
82
- bCancel: "Odbaci"
83
- },
84
- errors : {
85
- errcap : "Greška",
86
- nourl : "Nije postavljen URL",
87
- norecords: "Nema zapisa za obradu",
88
- model : "Dužina modela 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", "Sre", "Čet", "Pet", "Sub",
97
- "Nedelja", "Ponedeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota"
98
- ],
99
- monthNames: [
100
- "Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec",
101
- "Januar", "Februar", "Mart", "April", "Maj", "Jun", "Jul", "Avgust", "Septembar", "Oktobar", "Novembar", "Decembar"
102
- ],
103
- AmPm : ["am","pm","AM","PM"],
104
- S: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},
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: "n/j/Y",
111
- LongDate: "l, F d, Y",
112
- FullDateTime: "l, F d, Y g:i:s A",
113
- MonthDay: "F d",
114
- ShortTime: "g:i A",
115
- LongTime: "g:i:s A",
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 Montenegrian Translation
4
+ * Bild Studio info@bild-studio.net
5
+ * http://www.bild-studio.com
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: "Ne postoji nijedan zapis",
15
+ loadtext: "Učitivanje...",
16
+ pgtext : "Strana {0} od {1}"
17
+ },
18
+ search : {
19
+ caption: "Traženje...",
20
+ Find: "Traži",
21
+ Reset: "Resetuj",
22
+ odata : ['jednako', 'nije jednako', 'manje', 'manje ili jednako','veće','veće ili jednako', '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: "AND", text: "sva" }, { op: "OR", text: "bilo koje" } ],
24
+ matchText: " primjeni",
25
+ rulesText: " pravila"
26
+ },
27
+ edit : {
28
+ addCaption: "Dodaj zapis",
29
+ editCaption: "Izmjeni zapis",
30
+ bSubmit: "Pošalji",
31
+ bCancel: "Odustani",
32
+ bClose: "Zatvori",
33
+ saveData: "Podatak je izmjenjen! Sačuvaj izmjene?",
34
+ bYes : "Da",
35
+ bNo : "Ne",
36
+ bExit : "Odustani",
37
+ msg: {
38
+ required:"Polje je obavezno",
39
+ number:"Unesite ispravan broj",
40
+ minValue:"vrijednost mora biti veća od ili jednaka sa ",
41
+ maxValue:"vrijednost mora biti manja ili jednaka sa",
42
+ email: "nije ispravna email adresa, nije valjda da ne umiješ ukucati mail!?",
43
+ integer: "Ne zajebaji se unesi cjelobrojnu vrijednost ",
44
+ date: "Unesite ispravan datum",
45
+ url: "nije ispravan URL. Potreban je prefiks ('http://' or 'https://')",
46
+ nodefined : " nije definisan!",
47
+ novalue : " zahtjevana je povratna vrijednost!",
48
+ customarray : "Prilagođena funkcija treba da vrati niz!",
49
+ customfcheck : "Prilagođena funkcija treba da bude prisutana u slučaju prilagođene provjere!"
50
+
51
+ }
52
+ },
53
+ view : {
54
+ caption: "Pogledaj zapis",
55
+ bClose: "Zatvori"
56
+ },
57
+ del : {
58
+ caption: "Izbrisi",
59
+ msg: "Izbrisi izabran(e) zapise(e)?",
60
+ bSubmit: "Izbriši",
61
+ bCancel: "Odbaci"
62
+ },
63
+ nav : {
64
+ edittext: "",
65
+ edittitle: "Izmjeni izabrani red",
66
+ addtext:"",
67
+ addtitle: "Dodaj novi red",
68
+ deltext: "",
69
+ deltitle: "Izbriši izabran red",
70
+ searchtext: "",
71
+ searchtitle: "Nađi zapise",
72
+ refreshtext: "",
73
+ refreshtitle: "Ponovo učitaj podatke",
74
+ alertcap: "Upozorenje",
75
+ alerttext: "Izaberite red",
76
+ viewtext: "",
77
+ viewtitle: "Pogledaj izabrani red"
78
+ },
79
+ col : {
80
+ caption: "Izaberi kolone",
81
+ bSubmit: "OK",
82
+ bCancel: "Odbaci"
83
+ },
84
+ errors : {
85
+ errcap : "Greška",
86
+ nourl : "Nije postavljen URL",
87
+ norecords: "Nema zapisa za obradu",
88
+ model : "Dužina modela 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", "Sre", "Čet", "Pet", "Sub",
97
+ "Nedelja", "Ponedeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota"
98
+ ],
99
+ monthNames: [
100
+ "Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec",
101
+ "Januar", "Februar", "Mart", "April", "Maj", "Jun", "Jul", "Avgust", "Septembar", "Oktobar", "Novembar", "Decembar"
102
+ ],
103
+ AmPm : ["am","pm","AM","PM"],
104
+ S: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},
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: "n/j/Y",
111
+ LongDate: "l, F d, Y",
112
+ FullDateTime: "l, F d, Y g:i:s A",
113
+ MonthDay: "F d",
114
+ ShortTime: "g:i A",
115
+ LongTime: "g:i:s A",
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 +1 @@
1
- (function(a){a.jgrid= a.jgrid || {};a.jgrid.defaults={recordtext:"Rad {0} - {1}, totalt {2}",loadtext:"Laster...",pgtext:"Side {0} av {1}"};a.jgrid.search={caption:"S�k...",Find:"Finn",Reset:"Nullstill",odata:["lik","forskjellig fra","mindre enn","mindre eller lik","st�rre enn"," st�rre eller lik","starter med","slutter med","inneholder"]};a.jgrid.edit={addCaption:"Ny rad",editCaption:"Rediger",bSubmit:"Send",bCancel:"Avbryt",bClose:"Lukk",processData:"Laster...",msg:{required:"Felt er obligatorisk",number:"Legg inn et gyldig tall",minValue:"verdi m� v�re st�rre enn eller lik",maxValue:"verdi m� v�re mindre enn eller lik",email:"er ikke en gyldig e-post adresse",integer:"Legg inn et gyldig heltall",date:"Legg inn en gyldig dato",url:"er ikke en gyldig URL. Prefiks p�krevd ('http://' eller 'https://')",nodefined:" er ikke definert!",novalue:" returverdi er p�krevd!",customarray:"Tilpasset funksjon m� returnere en tabell!",customfcheck:"Tilpasset funksjon m� eksistere!"}};a.jgrid.view={caption:"�pne post",bClose:"Lukk"};a.jgrid.del={caption:"Slett",msg:"Slett valgte rad(er)?",bSubmit:"Slett",bCancel:"Avbryt",processData:"Behandler..."};a.jgrid.nav={edittext:" ",edittitle:"Rediger valgte rad(er)",addtext:" ",addtitle:"Legg til ny rad",deltext:" ",deltitle:"Slett valgte rad(er)",searchtext:" ",searchtitle:"S�k",refreshtext:"",refreshtitle:"Oppdater tabell",alertcap:"Advarsel",alerttext:"Velg rad",viewtext:" ",viewtitle:"�pne valgt rad"};a.jgrid.col={caption:"Vis/skjul kolonner",bSubmit:"Utf�r",bCancel:"Avbryt"};a.jgrid.errors={errcap:"Feil",nourl:"Ingen url er satt",norecords:"Ingen poster � behandle",model:"colNames og colModel har forskjellig lengde!"};a.jgrid.formatter={integer:{thousandsSeparator:" ",defaulValue:0},number:{decimalSeparator:",",thousandsSeparator:" ",decimalPlaces:2,defaulValue:0},currency:{decimalSeparator:",",thousandsSeparator:" ",decimalPlaces:2,prefix:"",suffix:"",defaulValue:0},date:{dayNames:["s�.","ma.","ti.","on.","to.","fr.","l�.","S�ndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","L�rdag"],monthNames:["jan.","feb.","mars","april","mai","juni","juli","aug.","sep.","okt.","nov.","des.","januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],AmPm:["","","",""],S:function(b){return"."},srcformat:"Y-m-d H:i:s",newformat:"Y-m-d H:i:s",masks:{ISO8601Long:"Y-m-d H:i:s",ISO8601Short:"Y-m-d",ShortDate:"j.n.Y",LongDate:"l j. F Y",FullDateTime:"l j. F Y kl. G.i.s",MonthDay:"j. F",ShortTime:"H:i",LongTime:"H:i:s",SortableDateTime:"Y-m-d\\TH:i:s",UniversalSortableDateTime:"Y-m-d H:i:sO",YearMonth:"F Y"},reformatAfterEdit:false},baseLinkUrl:"",showAction:"show",addParam:"",checkbox:{disabled:true}}})(jQuery);
1
+ (function(a){a.jgrid= a.jgrid || {};a.jgrid.defaults={recordtext:"Rad {0} - {1}, totalt {2}",loadtext:"Laster...",pgtext:"Side {0} av {1}"};a.jgrid.search={caption:"S�k...",Find:"Finn",Reset:"Nullstill",odata:["lik","forskjellig fra","mindre enn","mindre eller lik","st�rre enn"," st�rre eller lik","starter med","slutter med","inneholder"]};a.jgrid.edit={addCaption:"Ny rad",editCaption:"Rediger",bSubmit:"Send",bCancel:"Avbryt",bClose:"Lukk",processData:"Laster...",msg:{required:"Felt er obligatorisk",number:"Legg inn et gyldig tall",minValue:"verdi m� v�re st�rre enn eller lik",maxValue:"verdi m� v�re mindre enn eller lik",email:"er ikke en gyldig e-post adresse",integer:"Legg inn et gyldig heltall",date:"Legg inn en gyldig dato",url:"er ikke en gyldig URL. Prefiks p�krevd ('http://' eller 'https://')",nodefined:" er ikke definert!",novalue:" returverdi er p�krevd!",customarray:"Tilpasset funksjon m� returnere en tabell!",customfcheck:"Tilpasset funksjon m� eksistere!"}};a.jgrid.view={caption:"�pne post",bClose:"Lukk"};a.jgrid.del={caption:"Slett",msg:"Slett valgte rad(er)?",bSubmit:"Slett",bCancel:"Avbryt",processData:"Behandler..."};a.jgrid.nav={edittext:" ",edittitle:"Rediger valgte rad(er)",addtext:" ",addtitle:"Legg til ny rad",deltext:" ",deltitle:"Slett valgte rad(er)",searchtext:" ",searchtitle:"S�k",refreshtext:"",refreshtitle:"Oppdater tabell",alertcap:"Advarsel",alerttext:"Velg rad",viewtext:" ",viewtitle:"�pne valgt rad"};a.jgrid.col={caption:"Vis/skjul kolonner",bSubmit:"Utf�r",bCancel:"Avbryt"};a.jgrid.errors={errcap:"Feil",nourl:"Ingen url er satt",norecords:"Ingen poster � behandle",model:"colNames og colModel har forskjellig lengde!"};a.jgrid.formatter={integer:{thousandsSeparator:" ",defaulValue:0},number:{decimalSeparator:",",thousandsSeparator:" ",decimalPlaces:2,defaulValue:0},currency:{decimalSeparator:",",thousandsSeparator:" ",decimalPlaces:2,prefix:"",suffix:"",defaulValue:0},date:{dayNames:["s�.","ma.","ti.","on.","to.","fr.","l�.","S�ndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","L�rdag"],monthNames:["jan.","feb.","mars","april","mai","juni","juli","aug.","sep.","okt.","nov.","des.","januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],AmPm:["","","",""],S:function(b){return"."},srcformat:"Y-m-d H:i:s",newformat:"Y-m-d H:i:s",masks:{ISO8601Long:"Y-m-d H:i:s",ISO8601Short:"Y-m-d",ShortDate:"j.n.Y",LongDate:"l j. F Y",FullDateTime:"l j. F Y kl. G.i.s",MonthDay:"j. F",ShortTime:"H:i",LongTime:"H:i:s",SortableDateTime:"Y-m-d\\TH:i:s",UniversalSortableDateTime:"Y-m-d H:i:sO",YearMonth:"F Y"},reformatAfterEdit:false},baseLinkUrl:"",showAction:"show",addParam:"",checkbox:{disabled:true}}})(jQuery);
@@ -3,6 +3,11 @@
3
3
  * jqGrid Polish Translation
4
4
  * Łukasz Schab lukasz@freetree.pl
5
5
  * http://FreeTree.pl
6
+ *
7
+ * Updated names, abbreviations, currency and date/time formats for Polish norms (also corresponding with CLDR v21.0.1 --> http://cldr.unicode.org/index)
8
+ * Tomasz Pęczek tpeczek@gmail.com
9
+ * http://tpeczek.blogspot.com; http://tpeczek.codeplex.com
10
+ *
6
11
  * Dual licensed under the MIT and GPL licenses:
7
12
  * http://www.opensource.org/licenses/mit-license.php
8
13
  * http://www.gnu.org/licenses/gpl.html
@@ -11,118 +16,117 @@ $.jgrid = $.jgrid || {};
11
16
  $.extend($.jgrid,{
12
17
  defaults : {
13
18
  recordtext: "Pokaż {0} - {1} z {2}",
14
- emptyrecords: "Brak rekordów do pokazania",
15
- loadtext: "\u0142adowanie...",
19
+ emptyrecords: "Brak rekordów do pokazania",
20
+ loadtext: "Ładowanie...",
16
21
  pgtext : "Strona {0} z {1}"
17
22
  },
18
23
  search : {
19
- caption: "Wyszukiwanie...",
20
- Find: "Szukaj",
21
- Reset: "Czyść",
22
- odata : ['dok\u0142adnie', 'różne od', 'mniejsze od', 'mniejsze lub równe','większe od','większe lub równe', 'zaczyna się od','nie zaczyna się od','jest w','nie jest w','kończy się na','nie kończy się na','zawiera','nie zawiera'],
23
- groupOps: [ { op: "AND", text: "oraz" }, { op: "OR", text: "lub" } ],
24
+ caption: "Wyszukiwanie...",
25
+ Find: "Szukaj",
26
+ Reset: "Czyść",
27
+ odata : ['dokładnie', 'różne od', 'mniejsze od', 'mniejsze lub równe', 'większe od', 'większe lub równe', 'zaczyna się od', 'nie zaczyna się od', 'jest w', 'nie jest w', 'kończy się na', 'nie kończy się na', 'zawiera', 'nie zawiera'],
28
+ groupOps: [ { op: "AND", text: "oraz" }, { op: "OR", text: "lub" } ],
24
29
  matchText: " pasuje",
25
- rulesText: " regu\u0142y"
30
+ rulesText: " reguły"
26
31
  },
27
32
  edit : {
28
- addCaption: "Dodaj rekord",
29
- editCaption: "Edytuj rekord",
30
- bSubmit: "Zapisz",
31
- bCancel: "Anuluj",
33
+ addCaption: "Dodaj rekord",
34
+ editCaption: "Edytuj rekord",
35
+ bSubmit: "Zapisz",
36
+ bCancel: "Anuluj",
32
37
  bClose: "Zamknij",
33
- saveData: "Dane zosta\u0142y zmienione! Zapisać zmiany?",
34
- bYes : "Tak",
35
- bNo : "Nie",
36
- bExit : "Anuluj",
37
- msg: {
38
- required:"Pole jest wymagane",
39
- number:"Proszę wpisać poprawną liczbę",
40
- minValue:"wartość musi być większa lub równa od",
41
- maxValue:"wartość musi być mniejsza lub równa od",
42
- email: "nie jest poprawnym adresem e-mail",
43
- integer: "Proszę wpisać poprawną liczbę",
38
+ saveData: "Dane zostały zmienione! Zapisać zmiany?",
39
+ bYes: "Tak",
40
+ bNo: "Nie",
41
+ bExit: "Anuluj",
42
+ msg: {
43
+ required: "Pole jest wymagane",
44
+ number: "Proszę wpisać poprawną liczbę",
45
+ minValue: "wartość musi być większa lub równa od",
46
+ maxValue: "wartość musi być mniejsza lub równa od",
47
+ email: "nie jest poprawnym adresem e-mail",
48
+ integer: "Proszę wpisać poprawną liczbę",
44
49
  date: "Proszę podaj poprawną datę",
45
- url: "jest niew\u0142aściwym adresem URL. Pamiętaj o prefiksie ('http://' lub 'https://')",
46
- nodefined : " nie zdefiniowane!",
47
- novalue : " wymagana jest wartość zwracana !",
48
- customarray : "Funkcja niestandardowa powinna zwracać tablicę!",
49
- customfcheck : "Funkcja niestandardowa powinna być obecna w przypadku niestandardowego sprawdzania !"
50
-
50
+ url: "jest niewłaściwym adresem URL. Pamiętaj o prefiksie ('http://' lub 'https://')",
51
+ nodefined: " niezdefiniowane!",
52
+ novalue: " wymagana jest wartość zwracana!",
53
+ customarray: "Funkcja niestandardowa powinna zwracać tablicę!",
54
+ customfcheck: "Funkcja niestandardowa powinna być obecna w przypadku niestandardowego sprawdzania!"
51
55
  }
52
56
  },
53
57
  view : {
54
- caption: "Pokaż rekord",
55
- bClose: "Zamknij"
58
+ caption: "Pokaż rekord",
59
+ bClose: "Zamknij"
56
60
  },
57
61
  del : {
58
- caption: "Usuń",
59
- msg: "Czy usunąć wybrany rekord(y)?",
60
- bSubmit: "Usuń",
61
- bCancel: "Anuluj"
62
+ caption: "Usuń",
63
+ msg: "Czy usunąć wybrany rekord(y)?",
64
+ bSubmit: "Usuń",
65
+ bCancel: "Anuluj"
62
66
  },
63
67
  nav : {
64
- edittext: " ",
65
- edittitle: "Edytuj wybrany wiersz",
66
- addtext:" ",
67
- addtitle: "Dodaj nowy wiersz",
68
- deltext: " ",
69
- deltitle: "Usuń wybrany wiersz",
70
- searchtext: " ",
71
- searchtitle: "Wyszukaj rekord",
72
- refreshtext: "",
73
- refreshtitle: "Prze\u0142aduj",
74
- alertcap: "Uwaga",
75
- alerttext: "Proszę wybrać wiersz",
68
+ edittext: "",
69
+ edittitle: "Edytuj wybrany wiersz",
70
+ addtext: "",
71
+ addtitle: "Dodaj nowy wiersz",
72
+ deltext: "",
73
+ deltitle: "Usuń wybrany wiersz",
74
+ searchtext: "",
75
+ searchtitle: "Wyszukaj rekord",
76
+ refreshtext: "",
77
+ refreshtitle: "Przeładuj",
78
+ alertcap: "Uwaga",
79
+ alerttext: "Proszę wybrać wiersz",
76
80
  viewtext: "",
77
81
  viewtitle: "Pokaż wybrany wiersz"
78
82
  },
79
83
  col : {
80
- caption: "Pokaż/Ukryj kolumny",
81
- bSubmit: "Zatwierdź",
82
- bCancel: "Anuluj"
84
+ caption: "Pokaż/Ukryj kolumny",
85
+ bSubmit: "Zatwierdź",
86
+ bCancel: "Anuluj"
83
87
  },
84
88
  errors : {
85
- errcap : "B\u0142ąd",
86
- nourl : "Brak adresu url",
89
+ errcap: "Błąd",
90
+ nourl: "Brak adresu url",
87
91
  norecords: "Brak danych",
88
- model : "D\u0142ugość colNames <> colModel!"
92
+ model : "Długość colNames <> colModel!"
89
93
  },
90
94
  formatter : {
91
95
  integer : {thousandsSeparator: " ", defaultValue: '0'},
92
96
  number : {decimalSeparator:",", thousandsSeparator: " ", decimalPlaces: 2, defaultValue: '0,00'},
93
- currency : {decimalSeparator:",", thousandsSeparator: " ", decimalPlaces: 2, prefix: "", suffix:"", defaultValue: '0,00'},
97
+ currency : {decimalSeparator:",", thousandsSeparator: " ", decimalPlaces: 2, prefix: "", suffix:"", defaultValue: '0,00'},
94
98
  date : {
95
99
  dayNames: [
96
- "Nie", "Pon", "Wt", "Śr", "Cz", "Pi", "So",
97
- "Niedziela", "Poniedzia\u0142ek", "Wtorek", "Środa", "Czwartek", "Piątek", "Sobota"
100
+ "niedz.", "pon.", "wt.", "śr.", "czw.", "pt.", "sob.",
101
+ "niedziela", "poniedziałek", "wtorek", "środa", "czwartek", "piątek", "sobota"
98
102
  ],
99
103
  monthNames: [
100
- "Sty", "Lu", "Mar", "Kwie", "Maj", "Cze", "Lip", "Sie", "Wrz", "Paź", "Lis", "Gru",
101
- "Styczeń", "Luty", "Marzec", "Kwiecień", "Maj", "Czerwiec", "Lipiec", "Sierpień", "Wrzesień", "Październik", "Listopad", "Grudzień"
104
+ "sty", "lut", "mar", "kwi", "maj", "cze", "lip", "sie", "wrz", "paź", "lis", "gru",
105
+ "styczeń", "luty", "marzec", "kwiecień", "maj", "czerwiec", "lipiec", "sierpień", "wrzesień", "październik", "listopad", "grudzień"
102
106
  ],
103
- AmPm : ["am","pm","AM","PM"],
104
- S: function (j) {return j < 11 || j > 13 ? ['', '', '', ''][Math.min((j - 1) % 10, 3)] : ''},
107
+ AmPm : ["","","",""],
108
+ S: function (j) {return '';},
105
109
  srcformat: 'Y-m-d',
106
- newformat: 'd/m/Y',
110
+ newformat: 'd.m.Y',
107
111
  masks : {
108
- ISO8601Long:"Y-m-d H:i:s",
109
- ISO8601Short:"Y-m-d",
110
- ShortDate: "n/j/Y",
111
- LongDate: "l, F d, Y",
112
- FullDateTime: "l, F d, Y g:i:s A",
113
- MonthDay: "F d",
114
- ShortTime: "g:i A",
115
- LongTime: "g:i:s A",
116
- SortableDateTime: "Y-m-d\\TH:i:s",
117
- UniversalSortableDateTime: "Y-m-d H:i:sO",
118
- YearMonth: "F, Y"
112
+ ISO8601Long: "Y-m-d H:i:s",
113
+ ISO8601Short: "Y-m-d",
114
+ ShortDate: "d.m.y",
115
+ LongDate: "l, j F Y",
116
+ FullDateTime: "l, j F Y H:i:s",
117
+ MonthDay: "j F",
118
+ ShortTime: "H:i",
119
+ LongTime: "H:i:s",
120
+ SortableDateTime: "Y-m-d\\TH:i:s",
121
+ UniversalSortableDateTime: "Y-m-d H:i:sO",
122
+ YearMonth: "F Y"
119
123
  },
120
124
  reformatAfterEdit : false
121
- },
125
+ },
122
126
  baseLinkUrl: '',
123
127
  showAction: '',
124
- target: '',
125
- checkbox : {disabled:true},
128
+ target: '',
129
+ checkbox : {disabled:true},
126
130
  idName : 'id'
127
131
  }
128
132
  });