Ext4 修复对话框按钮翻译

引用


打开文件
vi ext-4.0.2a/locale/ext-lang-zh_CN.js 


原配置
    if(Ext.MessageBox){
       Ext.MessageBox.buttonText = {
          ok     : "确定",
          cancel : "取消",
          yes    : "是",
          no     : "否"
       };
    }


改成
   if (Ext.window.MessageBox) {
      Ext.window.MessageBox.prototype.buttonText = {
          ok     : "确定",
          cancel : "取消",
          yes    : "是",
          no     : "否"
       };
    }
    Ext.MessageBox = Ext.Msg = new Ext.window.MessageBox();

你可能感兴趣的:(ext)