local-ui-CN.js 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. ;(function($){
  2. $.jqx._jqxGrid = $.jqx._jqxGrid || {};
  3. $.extend($.jqx._jqxGrid.prototype,{
  4. gridlocalization:{
  5. "/" : "/",
  6. ":" : ":",
  7. firstDay : 0,
  8. days : {
  9. names: ["周日","周一","周二","周三","周四","周五","周六"],
  10. namesAbbr: ["日","一","二","三","四","五","六"],
  11. namesShort: ["日","一","二","三","四","五","六"]
  12. },
  13. months: {
  14. names: ["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月",""],
  15. namesAbbr: ["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月",""]
  16. },
  17. AM: ["午前","午前","午前"],
  18. PM: ["午后","午后","午后"],
  19. eras: [{"name":"公历","start":null,"offset":0}],
  20. twoDigitYearMax : 2029,
  21. patterns : {
  22. d : "M/d/yyyy",
  23. D : "dddd, MMMM dd, yyyy",
  24. t : "h:mm tt",
  25. T : "h:mm:ss tt",
  26. f : "dddd, MMMM dd, yyyy h:mm tt",
  27. F : "dddd, MMMM dd, yyyy h:mm:ss tt",
  28. M : "MMMM dd",
  29. Y : "yyyy MMMM",
  30. S : "yyyy\u0027-\u0027MM\u0027-\u0027dd\u0027T\u0027HH\u0027:\u0027mm\u0027:\u0027ss",
  31. ISO : "yyyy-MM-dd hh:mm:ss",
  32. ISO2 : "yyyy-MM-dd HH:mm:ss",
  33. d1 : "dd.MM.yyyy",
  34. d2 : "dd-MM-yyyy",
  35. d3 : "dd-MMMM-yyyy",
  36. d4 : "dd-MM-yy",
  37. d5 : "H:mm",
  38. d6 : "HH:mm",
  39. d7 : "HH:mm tt",
  40. d8 : "dd/MMMM/yyyy",
  41. d9 : "MMMM-dd",
  42. d10 : "MM-dd",
  43. d11 : "MM-dd-yyyy"
  44. },
  45. percentsymbol : "%",
  46. currencysymbol : "$",
  47. currencysymbolposition : "before",
  48. decimalseparator : ".",
  49. thousandsseparator : ",",
  50. pagergotopagestring : "跳往:",
  51. pagershowrowsstring : "每页显示:",
  52. pagerrangestring : " 共 ",
  53. pagerpreviousbuttonstring : "上一页",
  54. pagernextbuttonstring : "下一页",
  55. pagerfirstbuttonstring : "第一页",
  56. pagerlastbuttonstring : "最后一页",
  57. groupsheaderstring : "Drag a column and drop it here to group by that column",
  58. sortascendingstring : "升序排序",
  59. sortdescendingstring : "降序排序",
  60. sortremovestring : "删除排序",
  61. groupbystring : "Group By this column",
  62. groupremovestring : "Remove from groups",
  63. filterclearstring : "清除",
  64. filterstring : "过滤",
  65. filtershowrowstring : "Show rows where:",
  66. filtershowrowdatestring : "Show rows where date:",
  67. filterorconditionstring : "Or",
  68. filterandconditionstring : "And",
  69. filterselectallstring : "(全选)",
  70. filterchoosestring : "请选择:",
  71. filterstringcomparisonoperators : [
  72. "空", "不为空", "包含",
  73. "包含(区分大小写)",
  74. "不包含",
  75. "不包含(区分大小写)",
  76. "开始于",
  77. "开始于(区分大小写)",
  78. "以结尾",
  79. "以结尾(区分大小写)", "相同的",
  80. "相同的(区分大小写)", "空值",
  81. "非空" ],
  82. filternumericcomparisonoperators : [
  83. "equal", "not equal", "less than",
  84. "less than or equal",
  85. "greater than",
  86. "greater than or equal", "null",
  87. "not null" ],
  88. filterdatecomparisonoperators : [ "equal",
  89. "not equal", "less than",
  90. "less than or equal",
  91. "greater than",
  92. "greater than or equal", "null",
  93. "not null" ],
  94. filterbooleancomparisonoperators : [
  95. "equal", "not equal" ],
  96. validationstring : "Entered value is not valid",
  97. emptydatastring : "没有要显示的数据",//No data to display
  98. filterselectstring : "全部",//选择过滤器
  99. loadtext : "Loading...",
  100. clearstring : "Clear",
  101. todaystring : "Today",
  102. addrowstring : "Add",
  103. udpaterowstring : "Update",
  104. deleterowstring : "Delete",
  105. resetrowstring : "Reset",
  106. everpresentrowplaceholder : "Enter"
  107. },
  108. localizestrings:function(){
  109. }
  110. });
  111. })(jqxBaseFramework);