Questions tagged [angular-translate]

Angular-translate is an AngularJS module including lazy loading and pluralization.

angular-translate is an AngularJS module that makes your life much easier when it comes to i18n and l10n including lazy loading and pluralization.

See,

725 questions
-1
votes
1 answer

Angular-translate, get word NOT from current language

There is NG-module $translate. There is method $translate.use(locale), but it changes locale at all, of course. I need to get a word from other locales without locale switching. Is it possible? UPD. Resolved with adding…
Alx Aux
  • 53
  • 7
-1
votes
1 answer

Do we have to hardcode for localization in angular-translate for every language?

Here i am doing the translation for 2 languages 'en' and 'de' app.config(['$translateProvider', function($translateProvider) { $translateProvider.translations('en', { 'name': 'Hello', 'FOO': 'This is a paragraph' }); …
-1
votes
1 answer

Angular Translate doesn't work with multiple translation IDs

This doesn't work. Returns a blank. $translate('INVEST_EDU', 'MOST_ULTIMATE').then(function (investEdu, mostUltimate) { Then I tried this, with an object: $translate('INVEST_EDU', 'MOST_ULTIMATE').then(function (translations) { Accessing it like…
Ali Gajani
  • 14,762
  • 12
  • 59
  • 100
-2
votes
1 answer

How to use translation flags in angularjs?

I'm learning how to translate values in angularjs. I have created a plunker from the example given in here The plunker link is in here: http://plnkr.co/edit/rkARrvV2tco42VKdfaJI?p=preview For a quick glance:
-4
votes
1 answer

How to disable angular-translation warning?

I'm getting all translation related warning in browser console, so i want to suppress/disable all related warning (Dont show to user) Warnings: Translation for Department doesn't exist a.(anonymous function) @ _bower.9144598….js:75 (anonymous) @…
1 2 3
48
49