123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- ;(function($){
- $.jqx._jqxGrid = $.jqx._jqxGrid || {};
- $.extend($.jqx._jqxGrid.prototype,{
- gridlocalization:{
- "/" : "/",
- ":" : ":",
- firstDay : 0,
- days : {
- names: ["周日","周一","周二","周三","周四","周五","周六"],
- namesAbbr: ["日","一","二","三","四","五","六"],
- namesShort: ["日","一","二","三","四","五","六"]
- },
- months: {
- names: ["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月",""],
- namesAbbr: ["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月",""]
- },
- AM: ["午前","午前","午前"],
- PM: ["午后","午后","午后"],
- eras: [{"name":"公历","start":null,"offset":0}],
- twoDigitYearMax : 2029,
- patterns : {
- d : "M/d/yyyy",
- D : "dddd, MMMM dd, yyyy",
- t : "h:mm tt",
- T : "h:mm:ss tt",
- f : "dddd, MMMM dd, yyyy h:mm tt",
- F : "dddd, MMMM dd, yyyy h:mm:ss tt",
- M : "MMMM dd",
- Y : "yyyy MMMM",
- S : "yyyy\u0027-\u0027MM\u0027-\u0027dd\u0027T\u0027HH\u0027:\u0027mm\u0027:\u0027ss",
- ISO : "yyyy-MM-dd hh:mm:ss",
- ISO2 : "yyyy-MM-dd HH:mm:ss",
- d1 : "dd.MM.yyyy",
- d2 : "dd-MM-yyyy",
- d3 : "dd-MMMM-yyyy",
- d4 : "dd-MM-yy",
- d5 : "H:mm",
- d6 : "HH:mm",
- d7 : "HH:mm tt",
- d8 : "dd/MMMM/yyyy",
- d9 : "MMMM-dd",
- d10 : "MM-dd",
- d11 : "MM-dd-yyyy"
- },
- percentsymbol : "%",
- currencysymbol : "$",
- currencysymbolposition : "before",
- decimalseparator : ".",
- thousandsseparator : ",",
- pagergotopagestring : "跳往:",
- pagershowrowsstring : "每页显示:",
- pagerrangestring : " 共 ",
- pagerpreviousbuttonstring : "上一页",
- pagernextbuttonstring : "下一页",
- pagerfirstbuttonstring : "第一页",
- pagerlastbuttonstring : "最后一页",
- groupsheaderstring : "Drag a column and drop it here to group by that column",
- sortascendingstring : "升序排序",
- sortdescendingstring : "降序排序",
- sortremovestring : "删除排序",
- groupbystring : "Group By this column",
- groupremovestring : "Remove from groups",
- filterclearstring : "清除",
- filterstring : "过滤",
- filtershowrowstring : "Show rows where:",
- filtershowrowdatestring : "Show rows where date:",
- filterorconditionstring : "Or",
- filterandconditionstring : "And",
- filterselectallstring : "(全选)",
- filterchoosestring : "请选择:",
- filterstringcomparisonoperators : [
- "空", "不为空", "包含",
- "包含(区分大小写)",
- "不包含",
- "不包含(区分大小写)",
- "开始于",
- "开始于(区分大小写)",
- "以结尾",
- "以结尾(区分大小写)", "相同的",
- "相同的(区分大小写)", "空值",
- "非空" ],
- filternumericcomparisonoperators : [
- "equal", "not equal", "less than",
- "less than or equal",
- "greater than",
- "greater than or equal", "null",
- "not null" ],
- filterdatecomparisonoperators : [ "equal",
- "not equal", "less than",
- "less than or equal",
- "greater than",
- "greater than or equal", "null",
- "not null" ],
- filterbooleancomparisonoperators : [
- "equal", "not equal" ],
- validationstring : "Entered value is not valid",
- emptydatastring : "没有要显示的数据",//No data to display
- filterselectstring : "全部",//选择过滤器
- loadtext : "Loading...",
- clearstring : "Clear",
- todaystring : "Today",
- addrowstring : "Add",
- udpaterowstring : "Update",
- deleterowstring : "Delete",
- resetrowstring : "Reset",
- everpresentrowplaceholder : "Enter"
- },
- localizestrings:function(){
- }
- });
- })(jqxBaseFramework);
|