grunt.loadNpmTasks('grunt-angular-gettext');
grunt.initConfig({
nggettext_extract:{
pot:{
files:{
'po/template.pot':['**/*.html']
}
}
},
nggettext_compile: {
all:{
files:{
'translations.js':['po/*.po']
}
}
}
});
控制器
app.run(['gettextCatalog',function(gettextCatalog){
gettextCatalog.currentLanguage='de';
gettextCatalog.debug='true';
}])
html
<div class="row margin-bottom">
<div ng-controller="DefCtrl">
<p translate> Welcome!!!!</p>
<p translate> Testing globalization and localization</p>
</div>
</div>
我正在运行这些命令:
grunt nggettext_extract
grunt nggettext_compile
两者都成功运行,但 translations.js 不包含 .pot 文件中的任何字符串