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();

 

posted @ 2012-10-10 15:53  欢歌911  阅读(189)  评论(0)    收藏  举报