i18next

    1熱度

    3回答

    我使用這個: https://github.com/archer96/ng-i18next 我只能得到期權的語言(如果設置): console.log("language: " + $i18next.options.lng); 你如何獲得當前的語言? 文檔說: i18n.lng()返回當前的lng。 但在角度$ i18next.lng()的上下文中不存在。 我也試過: console.log(

    2熱度

    3回答

    我translation.json文件中/locales/en/ { "app": { "name": "Example App" } } 在html,我有: <a href="/" data-i18n="app.name"> 在js: $(document).ready(function() { var language_complete =

    2熱度

    1回答

    我正在開發一個帶Backbone的SPA,使用Marionette和Handlebars以及Spring MVC。我們需要i18​​n支持模板和Spring控制器。有人向我推薦i18next for Handlebars模板。 問題是i18next需要一個JSON消息源,而Spring使用屬性文件。 ¿有什麼辦法可以讓它們(Spring和i18next)共享相同的消息源?如果它能使它工作,我可以改

    0熱度

    1回答

    我可以使用data-18n沒有問題的一個JSON屬性文件是這樣的: <div data-i18n="errIncorrectSpecies"></div> JSON屬性文件中有這樣的條目: "errIncorrectSpecies":"You have selected incorrect species tests." 我如何去把動態參數轉化爲「errIncorrectSpecies」值

    1熱度

    1回答

    我想在我的node.js應用程序上設置i18next。我現在有兩種語言:fr-CA和en-US。 我想將fr-CA作爲默認語言。我把它像這樣在我的app.js,配置之前,: i18next.init({ debug: true, lng: 'fr-CA', ignoreRoutes: [ 'img/', 'public/', 'style

    0熱度

    1回答

    我在我的節點應用程序中使用i18next來實現它的國際化。 我的設置: i18next.init({ load: 'current', saveMissing: true, sendMissingTo : 'all', ignoreRoutes: ['img/','images/', 'public/', 'css/', 'js/'], debug

    1熱度

    1回答

    我周圍搜索了很多,但找不到我的問題的解決方案。 我的應用程序使用i18next,它工作正常,除了一個問題:德語變音符號(ü,ö,ä)顯示爲 。 我不明白是我聽錯了,因爲這個示例應用程序有變音符號沒有問題:http://i18next-example1.eu01.aws.af.cm/?setLng=de-DE(github上:https://github.com/rbeere/i18next-jad

    1熱度

    1回答

    我在我的NodeJs/ExpressJS Web應用程序中使用i18next模塊。 翻譯文件在/locales文件夾中。 從i18next.com,它可以在客戶端側 <script type="text/javascript" src="[PATH]/i18next.js" /> ... <span href="#" data-i18n="nav.home"></span> 使用我經由np

    10熱度

    1回答

    我正在開發一些基於Backbone的項目,其中我使用i18next作爲語言環境。 以下是我app.js代碼: /* This file is used to initialize your application. */ require(['i18n','application','handlebars_Helpers'], function(i18n, Application) {

    0熱度

    1回答

    我使用i18next,我覺得它很棒。 我將它與Backbone和Underscore模板結合使用。 讓我解釋一下我的情況。 只要應用程序啓動,我就啓動i18n,然後啓動Backbone的歷史記錄,因此我非常確定i18n在應用程序啓動時已準備就緒。 var option = { debug: true }; i18n.init(option).done(function() {