Ext MessageBox和PagingToolbar的汉化

来源:互联网 发布:网络看电视 编辑:程序博客网 时间:2024/04/29 22:53

 

 

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

if (Ext.PagingToolbar) {
 Ext.apply(Ext.PagingToolbar.prototype, {
    displayMsg : '显示第{0}条到{1}条记录,共{2}条',
    emptyMsg : "无记录!",
    beforePageText : '第',
    afterPageText : '页 共{0}页',
    firstText : '首页',
    prevText : '上一页',
    nextText : '下一页',
    lastText : '尾页',
    refreshText : '刷新'
   });
}

原创粉丝点击