ext-lang-zh_CN.js 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /*
  2. * Simplified Chinese translation By DavidHu 09 April 2007
  3. */
  4. Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">������...</div>';
  5. if (Ext.View) {
  6. Ext.View.prototype.emptyText = "";
  7. }
  8. if (Ext.grid.Grid) {
  9. Ext.grid.Grid.prototype.ddText = "{0} ѡ����";
  10. }
  11. if (Ext.TabPanelItem) {
  12. Ext.TabPanelItem.prototype.closeText = "�ر�";
  13. }
  14. if (Ext.form.Field) {
  15. Ext.form.Field.prototype.invalidText = "����ֵ�Ƿ�";
  16. }
  17. Date.monthNames = ["һ��", "����", "����", "����", "����", "����", "����",
  18. "����", "����", "ʮ��", "ʮһ��", "ʮ����"];
  19. Date.dayNames = ["��", "һ", "��", "��", "��", "��", "��"];
  20. if (Ext.MessageBox) {
  21. Ext.MessageBox.buttonText = {
  22. ok : "ȷ��",
  23. cancel : "ȡ��",
  24. yes : "��",
  25. no : "��"
  26. };
  27. }
  28. if (Ext.util.Format) {
  29. Ext.util.Format.date = function(v, format) {
  30. if (!v)
  31. return "";
  32. if (!(v instanceof Date))
  33. v = new Date(Date.parse(v));
  34. return v.dateFormat(format || "y��m��d��");
  35. };
  36. }
  37. if (Ext.DatePicker) {
  38. Ext.apply(Ext.DatePicker.prototype, {
  39. todayText : "����",
  40. minText : "��������С����֮ǰ",
  41. maxText : "�������������֮��",
  42. disabledDaysText : "",
  43. disabledDatesText : "",
  44. monthNames : Date.monthNames,
  45. dayNames : Date.dayNames,
  46. nextText : '���� (Control+Right)',
  47. prevText : '���� (Control+Left)',
  48. monthYearText : 'ѡ��һ���� (Control+Up/Down ���ı���)',
  49. todayTip : "{0} (�ո��ѡ��)",
  50. format : "y��m��d��"
  51. });
  52. }
  53. if (Ext.PagingToolbar) {
  54. Ext.apply(Ext.PagingToolbar.prototype, {
  55. beforePageText : "ҳ",
  56. afterPageText : "ҳ�� {0} ҳ",
  57. firstText : "��һҳ",
  58. prevText : "ǰһҳ",
  59. nextText : "��һҳ",
  60. lastText : "���ҳ",
  61. refreshText : "ˢ��",
  62. displayMsg : "��ʾ {0} - {1}���� {2} ��",
  63. emptyMsg : 'û�������Ҫ��ʾ'
  64. });
  65. }
  66. if (Ext.form.TextField) {
  67. Ext.apply(Ext.form.TextField.prototype, {
  68. minLengthText : "����������������� {0}",
  69. maxLengthText : "�����������󳤶��� {0}",
  70. blankText : "��������������",
  71. regexText : "",
  72. emptyText : null
  73. });
  74. }
  75. if (Ext.form.NumberField) {
  76. Ext.apply(Ext.form.NumberField.prototype, {
  77. minText : "�����������Сֵ�� {0}",
  78. maxText : "������������ֵ�� {0}",
  79. nanText : "{0} ������Ч��ֵ"
  80. });
  81. }
  82. if (Ext.form.DateField) {
  83. Ext.apply(Ext.form.DateField.prototype, {
  84. disabledDaysText : "����",
  85. disabledDatesText : "����",
  86. minText : "������������ڱ����� {0} ֮��",
  87. maxText : "������������ڱ����� {0} ֮ǰ",
  88. invalidText : "{0} ����Ч������ - �����ϸ�ʽ�� {1}",
  89. format : "y��m��d��"
  90. });
  91. }
  92. if (Ext.form.ComboBox) {
  93. Ext.apply(Ext.form.ComboBox.prototype, {
  94. loadingText : "����...",
  95. valueNotFoundText : undefined
  96. });
  97. }
  98. if (Ext.form.VTypes) {
  99. Ext.apply(Ext.form.VTypes, {
  100. emailText : '������������ǵ����ʼ���ַ����ʽ�磺 "user@domain.com"',
  101. urlText : '�������������URL��ַ����ʽ�磺 "http:/'
  102. + '/www.domain.com"',
  103. alphaText : '��������ֻ�ܰ��ַ��_',
  104. alphanumText : '��������ֻ�ܰ��ַ�,���ֺ�_'
  105. });
  106. }
  107. if (Ext.grid.GridView) {
  108. Ext.apply(Ext.grid.GridView.prototype, {
  109. sortAscText : "����",
  110. sortDescText : "����",
  111. lockText : "����",
  112. unlockText : "������",
  113. columnsText : "��"
  114. });
  115. }
  116. if (Ext.grid.PropertyColumnModel) {
  117. Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
  118. nameText : "���",
  119. valueText : "ֵ",
  120. dateFormat : "y��m��d��"
  121. });
  122. }
  123. if (Ext.layout.BorderLayout.SplitRegion) {
  124. Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
  125. splitTip : "�϶����ı�ߴ�.",
  126. collapsibleSplitTip : "�϶����ı�ߴ�. ˫������."
  127. });
  128. }