dynamically change translation
See original GitHub issueI’d like to know if there is any way to dynamically change translations ?
I’ve tried using $.extend
the language, then picker.render(true)
, it doesn’t work.
thanks in advance
Issue Analytics
- State:
- Created 8 years ago
- Comments:10
Top Results From Across the Web
Dynamic Translations in Angular - Christian Lüdemann
Creating an Angular app with dynamic translations from a REST API · Setting up translations on the Node server · Use translations in...
Read more >How to translate dynamic content? - Help Center
In this article, you'll find how to translate dynamic content. 1) Head over to your site and right-click to pull up the menu...
Read more >I cannot dynamically change language in Angular
Original angular multilanguage support doesn't allow you to change language dynamically. The only thing you could do is to generate projects ...
Read more >Dynamic Translation - Product Documentation | ServiceNow
Dynamic Translation for Agent Chat (DTAC) translates chat conversations from one language to another. This translating enables agents and ...
Read more >Dynamic translations in Angular made possible - Medium
Dynamic translations in Angular made possible ... support splitting up a single language (update: in fact, ngx-translate supports this).
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
+1. I’ve found a workaround to make it reactive on meteor, here is the trick :
That said, I can read about component in API doc that :
Did you find a better solution ?
I use the same method in my meteor apps: a template-level autorun loop to update the UI with translated strings;
more than that, I also set again the value to translate also the value shown in the input box:
this.pickerInstance.set('select', value, {options});
(assuming “value” is the actual value of the input box)