我想翻译在我的AngularJS代码中设置的字符串,例如控制器,组件和配置等。
例如:
c8yTitle.changeTitle({
title: "Another app"
});
对于HTML资源,它工作正常,我是从“ .pot”文件生成的,该文件是在使用Poedit构建“ .po”文件的过程中生成的。
但是,我在Pot文件中看不到上面显示的标题,如何配置它也可以在控制器中翻译所有这些标题?
答案 0 :(得分:1)
我明白了
只注入gettext
功能控制器($ scope,c8yTitle,gettext)
和
c8yTitle.changeTitle({
title: gettext('Another app'),
});