i18n model not displaying translated text
我有 i18n 属性要绑定到标签,但是当我尝试绑定该属性时,它不起作用。
i18n_zh
1 | TABLE_ItemCateg=Item Category |
view.xml
1 | <Label text="{i18n>TABLE_ItemCateg}" /> |
它显示
在
could not find any translatable text for key 'TABLE_ItemCateg' in bundle '../../sap/xyz_homepage/i18n/i18n.properties'
manifest.json
1 2 3 4 5 6 7 8 | "models": { "i18n": { "type":"sap.ui.model.resource.ResourceModel", "settings": { "bundleName":"xyz_homepage.i18n.i18n" } } } |
定义
您必须将文本添加到所有使用过的翻译文件中
i18n.properties
TABLE_ItemCateg=项目类别
i18n_en.properties
TABLE_ItemCateg=项目类别
用法
使用合适的模型
view.xml
text="{i18n>TABLE_ItemCateg}"