compass-jquery-plugin 0.2.4.4 → 0.2.4.5
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.
- data/README.textile +2 -2
- data/VERSION.yml +2 -2
- data/compass-jquery-plugin.gemspec +2 -2
- data/lib/jquery/jqgrid.rb +59 -19
- data/templates/jqgrid/i18n/jqgrid/locale-bg.js +132 -132
- data/templates/jqgrid/i18n/jqgrid/locale-bg1251.js +132 -132
- data/templates/jqgrid/i18n/jqgrid/locale-cat.js +128 -128
- data/templates/jqgrid/i18n/jqgrid/locale-cs.js +127 -127
- data/templates/jqgrid/i18n/jqgrid/locale-de.js +127 -127
- data/templates/jqgrid/i18n/jqgrid/locale-dk.js +128 -128
- data/templates/jqgrid/i18n/jqgrid/locale-el.js +126 -126
- data/templates/jqgrid/i18n/jqgrid/locale-en.js +128 -128
- data/templates/jqgrid/i18n/jqgrid/locale-fa.js +125 -125
- data/templates/jqgrid/i18n/jqgrid/locale-fi.js +128 -128
- data/templates/jqgrid/i18n/jqgrid/locale-fr.js +126 -126
- data/templates/jqgrid/i18n/jqgrid/locale-he.js +127 -127
- data/templates/jqgrid/i18n/jqgrid/locale-is.js +126 -126
- data/templates/jqgrid/i18n/jqgrid/locale-it.js +126 -126
- data/templates/jqgrid/i18n/jqgrid/locale-jp.js +127 -127
- data/templates/jqgrid/i18n/jqgrid/locale-nl.js +148 -148
- data/templates/jqgrid/i18n/jqgrid/locale-no.js +121 -121
- data/templates/jqgrid/i18n/jqgrid/locale-pl.js +126 -126
- data/templates/jqgrid/i18n/jqgrid/locale-pt-br.js +127 -127
- data/templates/jqgrid/i18n/jqgrid/locale-pt-br.min.js +1 -1
- data/templates/jqgrid/i18n/jqgrid/locale-pt.js +125 -125
- data/templates/jqgrid/i18n/jqgrid/locale-ro.js +139 -139
- data/templates/jqgrid/i18n/jqgrid/locale-ru.js +127 -127
- data/templates/jqgrid/i18n/jqgrid/locale-sp.js +128 -128
- data/templates/jqgrid/i18n/jqgrid/locale-sv.js +117 -117
- data/templates/jqgrid/i18n/jqgrid/locale-tr.js +126 -126
- data/templates/jqgrid/i18n/jqgrid/locale-ua.js +127 -127
- data/templates/jqgrid/jquery.jqGrid.js +9921 -9913
- data/templates/jqgrid/jquery.jqGrid.min.js +1 -1
- data/templates/jqgrid/jquery.ui/jqGrid.sass +746 -745
- data/templates/jqgrid/manifest.rb +62 -62
- data/templates/jqgrid/public/stylesheets/ellipsis-xbl.xml +13 -13
- data/templates/jrails/jquery.js +7644 -7644
- data/templates/jrails/jquery.min.js +18 -18
- data/templates/jrails/jrails.js +192 -192
- data/templates/secret_sauce/app/views/ui/_ui_grid_for_without_block.js.haml +139 -139
- metadata +2 -2
@@ -1,126 +1,126 @@
|
|
1
|
-
;(function($){
|
2
|
-
/**
|
3
|
-
* jqGrid Italian Translation
|
4
|
-
* Vincenzo Solomita vincenzosolomita@gmail.com
|
5
|
-
* Dual licensed under the MIT and GPL licenses:
|
6
|
-
* http://www.opensource.org/licenses/mit-license.php
|
7
|
-
* http://www.gnu.org/licenses/gpl.html
|
8
|
-
**/
|
9
|
-
$.jgrid = {
|
10
|
-
defaults : {
|
11
|
-
recordtext: "View {0} - {1} of {2}",
|
12
|
-
emptyrecords: "No records to view",
|
13
|
-
loadtext: "Caricamento...",
|
14
|
-
pgtext : "Page {0} of {1}"
|
15
|
-
},
|
16
|
-
search : {
|
17
|
-
caption: "Ricerca...",
|
18
|
-
Find: "Cerca",
|
19
|
-
Reset: "Pulisci",
|
20
|
-
odata : ['equal', 'not equal', 'less', 'less or equal','greater','greater or equal', 'begins with','does not begin with','is in','is not in','ends with','does not end with','contains','does not contain'],
|
21
|
-
groupOps: [ { op: "AND", text: "all" }, { op: "OR", text: "any" } ],
|
22
|
-
matchText: " match",
|
23
|
-
rulesText: " rules"
|
24
|
-
},
|
25
|
-
edit : {
|
26
|
-
addCaption: "Aggiungi Record",
|
27
|
-
editCaption: "Modifica Record",
|
28
|
-
bSubmit: "Invia",
|
29
|
-
bCancel: "Chiudi",
|
30
|
-
bClose: "Chiudi",
|
31
|
-
saveData: "Alcuni dati modificati! Salvare i cambiamenti?",
|
32
|
-
bYes : "Si",
|
33
|
-
bNo : "No",
|
34
|
-
bExit : "Esci",
|
35
|
-
msg: {
|
36
|
-
required:"Campo richiesto",
|
37
|
-
number:"Per favore, inserisci un valore valido",
|
38
|
-
minValue:"il valore deve essere maggiore o uguale a ",
|
39
|
-
maxValue:"il valore deve essere minore o uguale a",
|
40
|
-
email: "e-mail non corretta",
|
41
|
-
integer: "Per favore, inserisci un numero intero valido",
|
42
|
-
date: "Per favore, inserisci una data valisa",
|
43
|
-
url: "URL non valido. Prefisso richiesto ('http://' or 'https://')",
|
44
|
-
nodefined : " is not defined!",
|
45
|
-
novalue : " return value is required!",
|
46
|
-
customarray : "Custom function should return array!",
|
47
|
-
customfcheck : "Custom function should be present in case of custom checking!"
|
48
|
-
}
|
49
|
-
},
|
50
|
-
view : {
|
51
|
-
caption: "Visualizzazione Record",
|
52
|
-
bClose: "Chiudi"
|
53
|
-
},
|
54
|
-
del : {
|
55
|
-
caption: "Cancella",
|
56
|
-
msg: "Cancellare record selezionato/i?",
|
57
|
-
bSubmit: "Cancella",
|
58
|
-
bCancel: "Annulla"
|
59
|
-
},
|
60
|
-
nav : {
|
61
|
-
edittext: " ",
|
62
|
-
edittitle: "Modifica record selezionato",
|
63
|
-
addtext:" ",
|
64
|
-
addtitle: "Aggiungi nuovo record",
|
65
|
-
deltext: " ",
|
66
|
-
deltitle: "Cancella record selezionato",
|
67
|
-
searchtext: " ",
|
68
|
-
searchtitle: "Ricerca record",
|
69
|
-
refreshtext: "",
|
70
|
-
refreshtitle: "Aggiorna griglia",
|
71
|
-
alertcap: "Attenzione",
|
72
|
-
alerttext: "Per favore, seleziona un record",
|
73
|
-
viewtext: "",
|
74
|
-
viewtitle: "Vedi riga selezionata"
|
75
|
-
},
|
76
|
-
col : {
|
77
|
-
caption: "Mostra/Nascondi Colonne",
|
78
|
-
bSubmit: "Invia",
|
79
|
-
bCancel: "Annulla"
|
80
|
-
},
|
81
|
-
errors : {
|
82
|
-
errcap : "Errore",
|
83
|
-
nourl : "Url non settata",
|
84
|
-
norecords: "Nessun record da elaborare",
|
85
|
-
model : "Length of colNames <> colModel!"
|
86
|
-
},
|
87
|
-
formatter : {
|
88
|
-
integer : {thousandsSeparator: " ", defaultValue: '0'},
|
89
|
-
number : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, defaultValue: '0.00'},
|
90
|
-
currency : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, prefix: "", suffix:"", defaultValue: '0.00'},
|
91
|
-
date : {
|
92
|
-
dayNames: [
|
93
|
-
"Sun", "Mon", "Tue", "Wed", "Thr", "Fri", "Sat",
|
94
|
-
"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"
|
95
|
-
],
|
96
|
-
monthNames: [
|
97
|
-
"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec",
|
98
|
-
"January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"
|
99
|
-
],
|
100
|
-
AmPm : ["am","pm","AM","PM"],
|
101
|
-
S: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},
|
102
|
-
srcformat: 'Y-m-d',
|
103
|
-
newformat: 'd/m/Y',
|
104
|
-
masks : {
|
105
|
-
ISO8601Long:"Y-m-d H:i:s",
|
106
|
-
ISO8601Short:"Y-m-d",
|
107
|
-
ShortDate: "n/j/Y",
|
108
|
-
LongDate: "l, F d, Y",
|
109
|
-
FullDateTime: "l, F d, Y g:i:s A",
|
110
|
-
MonthDay: "F d",
|
111
|
-
ShortTime: "g:i A",
|
112
|
-
LongTime: "g:i:s A",
|
113
|
-
SortableDateTime: "Y-m-d\\TH:i:s",
|
114
|
-
UniversalSortableDateTime: "Y-m-d H:i:sO",
|
115
|
-
YearMonth: "F, Y"
|
116
|
-
},
|
117
|
-
reformatAfterEdit : false
|
118
|
-
},
|
119
|
-
baseLinkUrl: '',
|
120
|
-
showAction: '',
|
121
|
-
target: '',
|
122
|
-
checkbox : {disabled:true},
|
123
|
-
idName : 'id'
|
124
|
-
}
|
125
|
-
};
|
126
|
-
})(jQuery);
|
1
|
+
;(function($){
|
2
|
+
/**
|
3
|
+
* jqGrid Italian Translation
|
4
|
+
* Vincenzo Solomita vincenzosolomita@gmail.com
|
5
|
+
* Dual licensed under the MIT and GPL licenses:
|
6
|
+
* http://www.opensource.org/licenses/mit-license.php
|
7
|
+
* http://www.gnu.org/licenses/gpl.html
|
8
|
+
**/
|
9
|
+
$.jgrid = {
|
10
|
+
defaults : {
|
11
|
+
recordtext: "View {0} - {1} of {2}",
|
12
|
+
emptyrecords: "No records to view",
|
13
|
+
loadtext: "Caricamento...",
|
14
|
+
pgtext : "Page {0} of {1}"
|
15
|
+
},
|
16
|
+
search : {
|
17
|
+
caption: "Ricerca...",
|
18
|
+
Find: "Cerca",
|
19
|
+
Reset: "Pulisci",
|
20
|
+
odata : ['equal', 'not equal', 'less', 'less or equal','greater','greater or equal', 'begins with','does not begin with','is in','is not in','ends with','does not end with','contains','does not contain'],
|
21
|
+
groupOps: [ { op: "AND", text: "all" }, { op: "OR", text: "any" } ],
|
22
|
+
matchText: " match",
|
23
|
+
rulesText: " rules"
|
24
|
+
},
|
25
|
+
edit : {
|
26
|
+
addCaption: "Aggiungi Record",
|
27
|
+
editCaption: "Modifica Record",
|
28
|
+
bSubmit: "Invia",
|
29
|
+
bCancel: "Chiudi",
|
30
|
+
bClose: "Chiudi",
|
31
|
+
saveData: "Alcuni dati modificati! Salvare i cambiamenti?",
|
32
|
+
bYes : "Si",
|
33
|
+
bNo : "No",
|
34
|
+
bExit : "Esci",
|
35
|
+
msg: {
|
36
|
+
required:"Campo richiesto",
|
37
|
+
number:"Per favore, inserisci un valore valido",
|
38
|
+
minValue:"il valore deve essere maggiore o uguale a ",
|
39
|
+
maxValue:"il valore deve essere minore o uguale a",
|
40
|
+
email: "e-mail non corretta",
|
41
|
+
integer: "Per favore, inserisci un numero intero valido",
|
42
|
+
date: "Per favore, inserisci una data valisa",
|
43
|
+
url: "URL non valido. Prefisso richiesto ('http://' or 'https://')",
|
44
|
+
nodefined : " is not defined!",
|
45
|
+
novalue : " return value is required!",
|
46
|
+
customarray : "Custom function should return array!",
|
47
|
+
customfcheck : "Custom function should be present in case of custom checking!"
|
48
|
+
}
|
49
|
+
},
|
50
|
+
view : {
|
51
|
+
caption: "Visualizzazione Record",
|
52
|
+
bClose: "Chiudi"
|
53
|
+
},
|
54
|
+
del : {
|
55
|
+
caption: "Cancella",
|
56
|
+
msg: "Cancellare record selezionato/i?",
|
57
|
+
bSubmit: "Cancella",
|
58
|
+
bCancel: "Annulla"
|
59
|
+
},
|
60
|
+
nav : {
|
61
|
+
edittext: " ",
|
62
|
+
edittitle: "Modifica record selezionato",
|
63
|
+
addtext:" ",
|
64
|
+
addtitle: "Aggiungi nuovo record",
|
65
|
+
deltext: " ",
|
66
|
+
deltitle: "Cancella record selezionato",
|
67
|
+
searchtext: " ",
|
68
|
+
searchtitle: "Ricerca record",
|
69
|
+
refreshtext: "",
|
70
|
+
refreshtitle: "Aggiorna griglia",
|
71
|
+
alertcap: "Attenzione",
|
72
|
+
alerttext: "Per favore, seleziona un record",
|
73
|
+
viewtext: "",
|
74
|
+
viewtitle: "Vedi riga selezionata"
|
75
|
+
},
|
76
|
+
col : {
|
77
|
+
caption: "Mostra/Nascondi Colonne",
|
78
|
+
bSubmit: "Invia",
|
79
|
+
bCancel: "Annulla"
|
80
|
+
},
|
81
|
+
errors : {
|
82
|
+
errcap : "Errore",
|
83
|
+
nourl : "Url non settata",
|
84
|
+
norecords: "Nessun record da elaborare",
|
85
|
+
model : "Length of colNames <> colModel!"
|
86
|
+
},
|
87
|
+
formatter : {
|
88
|
+
integer : {thousandsSeparator: " ", defaultValue: '0'},
|
89
|
+
number : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, defaultValue: '0.00'},
|
90
|
+
currency : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, prefix: "", suffix:"", defaultValue: '0.00'},
|
91
|
+
date : {
|
92
|
+
dayNames: [
|
93
|
+
"Sun", "Mon", "Tue", "Wed", "Thr", "Fri", "Sat",
|
94
|
+
"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"
|
95
|
+
],
|
96
|
+
monthNames: [
|
97
|
+
"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec",
|
98
|
+
"January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"
|
99
|
+
],
|
100
|
+
AmPm : ["am","pm","AM","PM"],
|
101
|
+
S: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},
|
102
|
+
srcformat: 'Y-m-d',
|
103
|
+
newformat: 'd/m/Y',
|
104
|
+
masks : {
|
105
|
+
ISO8601Long:"Y-m-d H:i:s",
|
106
|
+
ISO8601Short:"Y-m-d",
|
107
|
+
ShortDate: "n/j/Y",
|
108
|
+
LongDate: "l, F d, Y",
|
109
|
+
FullDateTime: "l, F d, Y g:i:s A",
|
110
|
+
MonthDay: "F d",
|
111
|
+
ShortTime: "g:i A",
|
112
|
+
LongTime: "g:i:s A",
|
113
|
+
SortableDateTime: "Y-m-d\\TH:i:s",
|
114
|
+
UniversalSortableDateTime: "Y-m-d H:i:sO",
|
115
|
+
YearMonth: "F, Y"
|
116
|
+
},
|
117
|
+
reformatAfterEdit : false
|
118
|
+
},
|
119
|
+
baseLinkUrl: '',
|
120
|
+
showAction: '',
|
121
|
+
target: '',
|
122
|
+
checkbox : {disabled:true},
|
123
|
+
idName : 'id'
|
124
|
+
}
|
125
|
+
};
|
126
|
+
})(jQuery);
|
@@ -1,127 +1,127 @@
|
|
1
|
-
;(function($){
|
2
|
-
/**
|
3
|
-
* jqGrid Japanese Translation
|
4
|
-
* OKADA Yoshitada okada.dev@sth.jp
|
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 = {
|
11
|
-
defaults : {
|
12
|
-
recordtext: "View {0} - {1} of {2}",
|
13
|
-
emptyrecords: "No records to view",
|
14
|
-
loadtext: "\u8aad\u307f\u8fbc\u307f\u4e2d...",
|
15
|
-
pgtext : "Page {0} of {1}"
|
16
|
-
},
|
17
|
-
search : {
|
18
|
-
caption: "\u691c\u7d22...",
|
19
|
-
Find: "\u691c\u7d22",
|
20
|
-
Reset: "\u30ea\u30bb\u30c3\u30c8",
|
21
|
-
odata : ['equal', 'not equal', 'less', 'less or equal','greater','greater or equal', 'begins with','does not begin with','is in','is not in','ends with','does not end with','contains','does not contain'],
|
22
|
-
groupOps: [ { op: "AND", text: "all" }, { op: "OR", text: "any" } ],
|
23
|
-
matchText: " match",
|
24
|
-
rulesText: " rules"
|
25
|
-
},
|
26
|
-
edit : {
|
27
|
-
addCaption: "\u30ec\u30b3\u30fc\u30c9\u8ffd\u52a0",
|
28
|
-
editCaption: "\u30ec\u30b3\u30fc\u30c9\u7de8\u96c6",
|
29
|
-
bSubmit: "\u9001\u4fe1",
|
30
|
-
bCancel: "\u30ad\u30e3\u30f3\u30bb\u30eb",
|
31
|
-
bClose: "\u9589\u3058\u308b",
|
32
|
-
saveData: "Data has been changed! Save changes?",
|
33
|
-
bYes : "Yes",
|
34
|
-
bNo : "No",
|
35
|
-
bExit : "Cancel",
|
36
|
-
msg: {
|
37
|
-
required:"\u3053\u306e\u9805\u76ee\u306f\u5fc5\u9808\u3067\u3059\u3002",
|
38
|
-
number:"\u6b63\u3057\u3044\u6570\u5024\u3092\u5165\u529b\u3057\u3066\u4e0b\u3055\u3044\u3002",
|
39
|
-
minValue:"\u6b21\u306e\u5024\u4ee5\u4e0a\u3067\u5165\u529b\u3057\u3066\u4e0b\u3055\u3044\u3002",
|
40
|
-
maxValue:"\u6b21\u306e\u5024\u4ee5\u4e0b\u3067\u5165\u529b\u3057\u3066\u4e0b\u3055\u3044\u3002",
|
41
|
-
email: "e-mail\u304c\u6b63\u3057\u304f\u3042\u308a\u307e\u305b\u3093\u3002",
|
42
|
-
integer: "\u6b63\u3057\u3044\u6574\u6570\u5024\u3092\u5165\u529b\u3057\u3066\u4e0b\u3055\u3044\u3002",
|
43
|
-
date: "\u6b63\u3057\u3044\u5024\u3092\u5165\u529b\u3057\u3066\u4e0b\u3055\u3044\u3002",
|
44
|
-
url: "is not a valid URL. Prefix required ('http://' or 'https://')",
|
45
|
-
nodefined : " is not defined!",
|
46
|
-
novalue : " return value is required!",
|
47
|
-
customarray : "Custom function should return array!",
|
48
|
-
customfcheck : "Custom function should be present in case of custom checking!"
|
49
|
-
}
|
50
|
-
},
|
51
|
-
view : {
|
52
|
-
caption: "View Record",
|
53
|
-
bClose: "Close"
|
54
|
-
},
|
55
|
-
del : {
|
56
|
-
caption: "\u524a\u9664",
|
57
|
-
msg: "\u9078\u629e\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059\u304b\uff1f",
|
58
|
-
bSubmit: "\u524a\u9664",
|
59
|
-
bCancel: "\u30ad\u30e3\u30f3\u30bb\u30eb"
|
60
|
-
},
|
61
|
-
nav : {
|
62
|
-
edittext: " ",
|
63
|
-
edittitle: "\u9078\u629e\u3057\u305f\u884c\u3092\u7de8\u96c6",
|
64
|
-
addtext:" ",
|
65
|
-
addtitle: "\u884c\u3092\u65b0\u898f\u8ffd\u52a0",
|
66
|
-
deltext: " ",
|
67
|
-
deltitle: "\u9078\u629e\u3057\u305f\u884c\u3092\u524a\u9664",
|
68
|
-
searchtext: " ",
|
69
|
-
searchtitle: "\u30ec\u30b3\u30fc\u30c9\u691c\u7d22",
|
70
|
-
refreshtext: "",
|
71
|
-
refreshtitle: "\u30b0\u30ea\u30c3\u30c9\u3092\u30ea\u30ed\u30fc\u30c9",
|
72
|
-
alertcap: "\u8b66\u544a",
|
73
|
-
alerttext: "\u884c\u3092\u9078\u629e\u3057\u3066\u4e0b\u3055\u3044\u3002",
|
74
|
-
viewtext: "",
|
75
|
-
viewtitle: "View selected row"
|
76
|
-
},
|
77
|
-
col : {
|
78
|
-
caption: "\u5217\u3092\u8868\u793a\uff0f\u96a0\u3059",
|
79
|
-
bSubmit: "\u9001\u4fe1",
|
80
|
-
bCancel: "\u30ad\u30e3\u30f3\u30bb\u30eb"
|
81
|
-
},
|
82
|
-
errors : {
|
83
|
-
errcap : "\u30a8\u30e9\u30fc",
|
84
|
-
nourl : "URL\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002",
|
85
|
-
norecords: "\u51e6\u7406\u5bfe\u8c61\u306e\u30ec\u30b3\u30fc\u30c9\u304c\u3042\u308a\u307e\u305b\u3093\u3002",
|
86
|
-
model : "colNames\u306e\u9577\u3055\u304ccolModel\u3068\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002"
|
87
|
-
},
|
88
|
-
formatter : {
|
89
|
-
integer : {thousandsSeparator: " ", defaultValue: '0'},
|
90
|
-
number : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, defaultValue: '0.00'},
|
91
|
-
currency : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, prefix: "", suffix:"", defaultValue: '0.00'},
|
92
|
-
date : {
|
93
|
-
dayNames: [
|
94
|
-
"\u65e5", "\u6708", "\u706b", "\u6c34", "\u6728", "\u91d1", "\u571f",
|
95
|
-
"\u65e5", "\u6708", "\u706b", "\u6c34", "\u6728", "\u91d1", "\u571f"
|
96
|
-
],
|
97
|
-
monthNames: [
|
98
|
-
"1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12",
|
99
|
-
"1\u6708", "2\u6708", "3\u6708", "4\u6708", "5\u6708", "6\u6708", "7\u6708", "8\u6708", "9\u6708", "10\u6708", "11\u6708", "12\u6708"
|
100
|
-
],
|
101
|
-
AmPm : ["am","pm","AM","PM"],
|
102
|
-
S: "\u756a\u76ee",
|
103
|
-
srcformat: 'Y-m-d',
|
104
|
-
newformat: 'd/m/Y',
|
105
|
-
masks : {
|
106
|
-
ISO8601Long:"Y-m-d H:i:s",
|
107
|
-
ISO8601Short:"Y-m-d",
|
108
|
-
ShortDate: "n/j/Y",
|
109
|
-
LongDate: "l, F d, Y",
|
110
|
-
FullDateTime: "l, F d, Y g:i:s A",
|
111
|
-
MonthDay: "F d",
|
112
|
-
ShortTime: "g:i A",
|
113
|
-
LongTime: "g:i:s A",
|
114
|
-
SortableDateTime: "Y-m-d\\TH:i:s",
|
115
|
-
UniversalSortableDateTime: "Y-m-d H:i:sO",
|
116
|
-
YearMonth: "F, Y"
|
117
|
-
},
|
118
|
-
reformatAfterEdit : false
|
119
|
-
},
|
120
|
-
baseLinkUrl: '',
|
121
|
-
showAction: '',
|
122
|
-
target: '',
|
123
|
-
checkbox : {disabled:true},
|
124
|
-
idName : 'id'
|
125
|
-
}
|
126
|
-
};
|
127
|
-
})(jQuery);
|
1
|
+
;(function($){
|
2
|
+
/**
|
3
|
+
* jqGrid Japanese Translation
|
4
|
+
* OKADA Yoshitada okada.dev@sth.jp
|
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 = {
|
11
|
+
defaults : {
|
12
|
+
recordtext: "View {0} - {1} of {2}",
|
13
|
+
emptyrecords: "No records to view",
|
14
|
+
loadtext: "\u8aad\u307f\u8fbc\u307f\u4e2d...",
|
15
|
+
pgtext : "Page {0} of {1}"
|
16
|
+
},
|
17
|
+
search : {
|
18
|
+
caption: "\u691c\u7d22...",
|
19
|
+
Find: "\u691c\u7d22",
|
20
|
+
Reset: "\u30ea\u30bb\u30c3\u30c8",
|
21
|
+
odata : ['equal', 'not equal', 'less', 'less or equal','greater','greater or equal', 'begins with','does not begin with','is in','is not in','ends with','does not end with','contains','does not contain'],
|
22
|
+
groupOps: [ { op: "AND", text: "all" }, { op: "OR", text: "any" } ],
|
23
|
+
matchText: " match",
|
24
|
+
rulesText: " rules"
|
25
|
+
},
|
26
|
+
edit : {
|
27
|
+
addCaption: "\u30ec\u30b3\u30fc\u30c9\u8ffd\u52a0",
|
28
|
+
editCaption: "\u30ec\u30b3\u30fc\u30c9\u7de8\u96c6",
|
29
|
+
bSubmit: "\u9001\u4fe1",
|
30
|
+
bCancel: "\u30ad\u30e3\u30f3\u30bb\u30eb",
|
31
|
+
bClose: "\u9589\u3058\u308b",
|
32
|
+
saveData: "Data has been changed! Save changes?",
|
33
|
+
bYes : "Yes",
|
34
|
+
bNo : "No",
|
35
|
+
bExit : "Cancel",
|
36
|
+
msg: {
|
37
|
+
required:"\u3053\u306e\u9805\u76ee\u306f\u5fc5\u9808\u3067\u3059\u3002",
|
38
|
+
number:"\u6b63\u3057\u3044\u6570\u5024\u3092\u5165\u529b\u3057\u3066\u4e0b\u3055\u3044\u3002",
|
39
|
+
minValue:"\u6b21\u306e\u5024\u4ee5\u4e0a\u3067\u5165\u529b\u3057\u3066\u4e0b\u3055\u3044\u3002",
|
40
|
+
maxValue:"\u6b21\u306e\u5024\u4ee5\u4e0b\u3067\u5165\u529b\u3057\u3066\u4e0b\u3055\u3044\u3002",
|
41
|
+
email: "e-mail\u304c\u6b63\u3057\u304f\u3042\u308a\u307e\u305b\u3093\u3002",
|
42
|
+
integer: "\u6b63\u3057\u3044\u6574\u6570\u5024\u3092\u5165\u529b\u3057\u3066\u4e0b\u3055\u3044\u3002",
|
43
|
+
date: "\u6b63\u3057\u3044\u5024\u3092\u5165\u529b\u3057\u3066\u4e0b\u3055\u3044\u3002",
|
44
|
+
url: "is not a valid URL. Prefix required ('http://' or 'https://')",
|
45
|
+
nodefined : " is not defined!",
|
46
|
+
novalue : " return value is required!",
|
47
|
+
customarray : "Custom function should return array!",
|
48
|
+
customfcheck : "Custom function should be present in case of custom checking!"
|
49
|
+
}
|
50
|
+
},
|
51
|
+
view : {
|
52
|
+
caption: "View Record",
|
53
|
+
bClose: "Close"
|
54
|
+
},
|
55
|
+
del : {
|
56
|
+
caption: "\u524a\u9664",
|
57
|
+
msg: "\u9078\u629e\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059\u304b\uff1f",
|
58
|
+
bSubmit: "\u524a\u9664",
|
59
|
+
bCancel: "\u30ad\u30e3\u30f3\u30bb\u30eb"
|
60
|
+
},
|
61
|
+
nav : {
|
62
|
+
edittext: " ",
|
63
|
+
edittitle: "\u9078\u629e\u3057\u305f\u884c\u3092\u7de8\u96c6",
|
64
|
+
addtext:" ",
|
65
|
+
addtitle: "\u884c\u3092\u65b0\u898f\u8ffd\u52a0",
|
66
|
+
deltext: " ",
|
67
|
+
deltitle: "\u9078\u629e\u3057\u305f\u884c\u3092\u524a\u9664",
|
68
|
+
searchtext: " ",
|
69
|
+
searchtitle: "\u30ec\u30b3\u30fc\u30c9\u691c\u7d22",
|
70
|
+
refreshtext: "",
|
71
|
+
refreshtitle: "\u30b0\u30ea\u30c3\u30c9\u3092\u30ea\u30ed\u30fc\u30c9",
|
72
|
+
alertcap: "\u8b66\u544a",
|
73
|
+
alerttext: "\u884c\u3092\u9078\u629e\u3057\u3066\u4e0b\u3055\u3044\u3002",
|
74
|
+
viewtext: "",
|
75
|
+
viewtitle: "View selected row"
|
76
|
+
},
|
77
|
+
col : {
|
78
|
+
caption: "\u5217\u3092\u8868\u793a\uff0f\u96a0\u3059",
|
79
|
+
bSubmit: "\u9001\u4fe1",
|
80
|
+
bCancel: "\u30ad\u30e3\u30f3\u30bb\u30eb"
|
81
|
+
},
|
82
|
+
errors : {
|
83
|
+
errcap : "\u30a8\u30e9\u30fc",
|
84
|
+
nourl : "URL\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002",
|
85
|
+
norecords: "\u51e6\u7406\u5bfe\u8c61\u306e\u30ec\u30b3\u30fc\u30c9\u304c\u3042\u308a\u307e\u305b\u3093\u3002",
|
86
|
+
model : "colNames\u306e\u9577\u3055\u304ccolModel\u3068\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002"
|
87
|
+
},
|
88
|
+
formatter : {
|
89
|
+
integer : {thousandsSeparator: " ", defaultValue: '0'},
|
90
|
+
number : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, defaultValue: '0.00'},
|
91
|
+
currency : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, prefix: "", suffix:"", defaultValue: '0.00'},
|
92
|
+
date : {
|
93
|
+
dayNames: [
|
94
|
+
"\u65e5", "\u6708", "\u706b", "\u6c34", "\u6728", "\u91d1", "\u571f",
|
95
|
+
"\u65e5", "\u6708", "\u706b", "\u6c34", "\u6728", "\u91d1", "\u571f"
|
96
|
+
],
|
97
|
+
monthNames: [
|
98
|
+
"1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12",
|
99
|
+
"1\u6708", "2\u6708", "3\u6708", "4\u6708", "5\u6708", "6\u6708", "7\u6708", "8\u6708", "9\u6708", "10\u6708", "11\u6708", "12\u6708"
|
100
|
+
],
|
101
|
+
AmPm : ["am","pm","AM","PM"],
|
102
|
+
S: "\u756a\u76ee",
|
103
|
+
srcformat: 'Y-m-d',
|
104
|
+
newformat: 'd/m/Y',
|
105
|
+
masks : {
|
106
|
+
ISO8601Long:"Y-m-d H:i:s",
|
107
|
+
ISO8601Short:"Y-m-d",
|
108
|
+
ShortDate: "n/j/Y",
|
109
|
+
LongDate: "l, F d, Y",
|
110
|
+
FullDateTime: "l, F d, Y g:i:s A",
|
111
|
+
MonthDay: "F d",
|
112
|
+
ShortTime: "g:i A",
|
113
|
+
LongTime: "g:i:s A",
|
114
|
+
SortableDateTime: "Y-m-d\\TH:i:s",
|
115
|
+
UniversalSortableDateTime: "Y-m-d H:i:sO",
|
116
|
+
YearMonth: "F, Y"
|
117
|
+
},
|
118
|
+
reformatAfterEdit : false
|
119
|
+
},
|
120
|
+
baseLinkUrl: '',
|
121
|
+
showAction: '',
|
122
|
+
target: '',
|
123
|
+
checkbox : {disabled:true},
|
124
|
+
idName : 'id'
|
125
|
+
}
|
126
|
+
};
|
127
|
+
})(jQuery);
|