我正在使用Yeoman与Grunt一起构建一个Angular应用程序。
我正在使用Angular Translate,当我使用模块Grunt Angular Translate与Grunt构建应用时遇到了问题。
我在ServerSockets
文件夹中有2种语言,法语和英语(fr.json
& en.json
)。
我在app/translations
:
Gruntfile.js
这会创建2个文件i18nextract: {
default_options: {
src: ['app/**/*.js', 'app/**/*.html', 'app/**/*.json'],
suffix: '.json',
lang: ['fr', 'en'],
dest: 'dist/translations',
jsonSrc: ['app/translations/*.json']
}
}
& fr.json
中的en.json
,每个都包含所有翻译键,但不包含相应的值:
例如:
dist/translations
我尝试了很多配置,但找不到合适的解决方案。
感谢您的帮助。