最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to fix angular-translate showing translation key on webpage on load? - Stack Overflow

programmeradmin1浏览0评论

I am using angular-translate for i8n in my project. I am using ansynchronous url-loader to load my translation tables.

$translate.useUrlLoader(myUrl)

The translate directives and filters both return the key which I am translating until the translation tables are loaded.

<a ng-bind="translation.key | translate"></a>
<a translate="translation.key></a>

Both the above display 'translation.key' on the webpage until the translation tables are loaded.

NOTE: I have reasons to not listen on $translationChangeSuccess event.


I am looking for either of the two solutions

  • Synchronously load translation tables from URL.
  • Don't show translated text until translation tables are pletely loaded.

I am using angular-translate for i8n in my project. I am using ansynchronous url-loader to load my translation tables.

$translate.useUrlLoader(myUrl)

The translate directives and filters both return the key which I am translating until the translation tables are loaded.

<a ng-bind="translation.key | translate"></a>
<a translate="translation.key></a>

Both the above display 'translation.key' on the webpage until the translation tables are loaded.

NOTE: I have reasons to not listen on $translationChangeSuccess event.


I am looking for either of the two solutions

  • Synchronously load translation tables from URL.
  • Don't show translated text until translation tables are pletely loaded.
Share Improve this question edited Nov 26, 2016 at 11:29 Rishabh 3,8624 gold badges48 silver badges75 bronze badges asked Oct 23, 2013 at 9:12 shantanusinghalshantanusinghal 7241 gold badge8 silver badges17 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 4

This is a mon issue when dealing with asynchronous execution. angular-translate now es with a translate-cloak directive that helps you out preventing FOUCs. You can read about it here: http://angular-translate.github.io/docs/#/guide/12_asynchronous-loading#asynchronous-loading_fouc---flash-of-untranslated-content

发布评论

评论列表(0)

  1. 暂无评论