123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- /*
- * Simplified Chinese translation By DavidHu 09 April 2007
- */
- Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">������...</div>';
- if (Ext.View) {
- Ext.View.prototype.emptyText = "";
- }
- if (Ext.grid.Grid) {
- Ext.grid.Grid.prototype.ddText = "{0} ѡ����";
- }
- if (Ext.TabPanelItem) {
- Ext.TabPanelItem.prototype.closeText = "�ر�";
- }
- if (Ext.form.Field) {
- Ext.form.Field.prototype.invalidText = "����ֵ�Ƿ�";
- }
- Date.monthNames = ["һ��", "����", "����", "����", "����", "����", "����",
- "����", "����", "ʮ��", "ʮһ��", "ʮ����"];
- Date.dayNames = ["��", "һ", "��", "��", "��", "��", "��"];
- if (Ext.MessageBox) {
- Ext.MessageBox.buttonText = {
- ok : "ȷ��",
- cancel : "ȡ��",
- yes : "��",
- no : "��"
- };
- }
- if (Ext.util.Format) {
- Ext.util.Format.date = function(v, format) {
- if (!v)
- return "";
- if (!(v instanceof Date))
- v = new Date(Date.parse(v));
- return v.dateFormat(format || "y��m��d��");
- };
- }
- if (Ext.DatePicker) {
- Ext.apply(Ext.DatePicker.prototype, {
- todayText : "����",
- minText : "��������С����֮ǰ",
- maxText : "�������������֮��",
- disabledDaysText : "",
- disabledDatesText : "",
- monthNames : Date.monthNames,
- dayNames : Date.dayNames,
- nextText : '���� (Control+Right)',
- prevText : '���� (Control+Left)',
- monthYearText : 'ѡ��һ���� (Control+Up/Down ���ı���)',
- todayTip : "{0} (�ո��ѡ��)",
- format : "y��m��d��"
- });
- }
- if (Ext.PagingToolbar) {
- Ext.apply(Ext.PagingToolbar.prototype, {
- beforePageText : "ҳ",
- afterPageText : "ҳ�� {0} ҳ",
- firstText : "��һҳ",
- prevText : "ǰһҳ",
- nextText : "��һҳ",
- lastText : "���ҳ",
- refreshText : "ˢ��",
- displayMsg : "��ʾ {0} - {1}���� {2} ��",
- emptyMsg : 'û�������Ҫ��ʾ'
- });
- }
- if (Ext.form.TextField) {
- Ext.apply(Ext.form.TextField.prototype, {
- minLengthText : "����������������� {0}",
- maxLengthText : "�������������� {0}",
- blankText : "��������������",
- regexText : "",
- emptyText : null
- });
- }
- if (Ext.form.NumberField) {
- Ext.apply(Ext.form.NumberField.prototype, {
- minText : "�����������Сֵ�� {0}",
- maxText : "������������ֵ�� {0}",
- nanText : "{0} ������Ч��ֵ"
- });
- }
- if (Ext.form.DateField) {
- Ext.apply(Ext.form.DateField.prototype, {
- disabledDaysText : "����",
- disabledDatesText : "����",
- minText : "������������ڱ����� {0} ֮��",
- maxText : "������������ڱ����� {0} ֮ǰ",
- invalidText : "{0} ����Ч������ - �����ϸ�ʽ�� {1}",
- format : "y��m��d��"
- });
- }
- if (Ext.form.ComboBox) {
- Ext.apply(Ext.form.ComboBox.prototype, {
- loadingText : "����...",
- valueNotFoundText : undefined
- });
- }
- if (Ext.form.VTypes) {
- Ext.apply(Ext.form.VTypes, {
- emailText : '������������ǵ����ʼ���ַ����ʽ�磺 "user@domain.com"',
- urlText : '�������������URL��ַ����ʽ�磺 "http:/'
- + '/www.domain.com"',
- alphaText : '��������ֻ�ܰ��ַ��_',
- alphanumText : '��������ֻ�ܰ��ַ�,���ֺ�_'
- });
- }
- if (Ext.grid.GridView) {
- Ext.apply(Ext.grid.GridView.prototype, {
- sortAscText : "����",
- sortDescText : "����",
- lockText : "����",
- unlockText : "������",
- columnsText : "��"
- });
- }
- if (Ext.grid.PropertyColumnModel) {
- Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
- nameText : "���",
- valueText : "ֵ",
- dateFormat : "y��m��d��"
- });
- }
- if (Ext.layout.BorderLayout.SplitRegion) {
- Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
- splitTip : "�϶����ı�ߴ�.",
- collapsibleSplitTip : "�϶����ı�ߴ�. ˫������."
- });
- }
|