设置preferredLanguage

时间:2015-06-17 06:18:26

标签: angularjs angular-translate

我试图使用AngularJS进行翻译。在preferredLanguage设置为en时,翻译工作正常。但是,如果我改为其他任何例如lt,我会收到错误

  

ReferenceError:未定义require

在线:

var lcFile = require('path').join(__dirname, 'locale', lc + '.js'),

我的应用配置如下:

myApp.config(['$translateProvider', function ($translateProvider) {

    $translateProvider.translations('lt', {
        "OTHER_LIKES" : "{peopleCount, plural, one {# žmogus tai mėgsta} few {# žmonės tai mėgsta} other {# žmonių tai mėgsta}}",
        "YOU_AND_OTHERS_LIKES" : "{peopleCount, plural, one {tu ir # žmogus tai mėgsta} few {tu ir # žmonės tai mėgsta} other {tu ir # žmonių tai mėgsta}}",
        "YOU_LIKE" : "Tu mėgsti tai"
    });

    $translateProvider.translations('en', {
        "OTHER_LIKES" : "{peopleCount, plural, one {# person likes this} few {# people likes this} other {# people likes this}}",
        "YOU_AND_OTHERS_LIKES" : "{peopleCount, plural, one {You and # other likes this} few {You and # other likes this} other {You and # other likes this}}",
        "YOU_LIKE" : "You like this"
    });

    $translateProvider.preferredLanguage('lt');

    $translateProvider.fallbackLanguage('en');

    $translateProvider.addInterpolation('$translateMessageFormatInterpolation');
}]);

1 个答案:

答案 0 :(得分:0)

我在messageformat.js版本0.2.2中也遇到了这个错误。设置区域设置时,将通知MessageFormat转换提供程序。如果尚未配置必要的区域设置,则会尝试require()该文件。由于require node.js 关键字,浏览器不支持,因此失败。

为避免这种情况,您可以例如使用构建过程中的供应商脚本连接 messageformat.js 分发中所需的语言环境。

示例区域设置定义:

MessageFormat.locale.en=function(n){return n===1?"one":"other"}