浏览 4209 次
锁定老帖子 主题:Extjs学习总结---Ext.i18n
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2008-09-26
1.用法: var bundle = new Ext.i18n.Bundle({bundle='Application'}); bundle.onReady( alert('example'+ bundle.getMsg('key1')); ); 2.类似于java的属性文件,如果浏览器的语言是es-ES则属性文件Application_es-ES.properties: #This is a simple comment key1 "英文 Eric is a good man" 如果 Application_es-ES.properties 不存在则系统会去找Application.properties。 #This is a simple comment key1 "中文 佛说他是个好人" 3.Bundle语法 Bundle(config): config: {bundle: , resource:} bundle: properties文件名. 如{bundle: 'mybundle'}则系统会找 http:/yourdomain/yourApp/mybundle_[language].properties. 至少你要准备一个mybundle.properties file. path: (optional) 文件路径 {bundle: 'mybundle, path: 'resources'} 文件定位如下: http:/yourdomain/yourApp/resources/mybundle_[language].properties. 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |