I'm using angular-translate for i18n in an AngularJS application. For every application view, there is a dedicated controller. In the controllers below, I set the value to be shown as the page title. Code HTML <h1>{{ pageTitle }}</...
I am currently using angular-translate for a project, and it's going really well. However I run into a problem and I can't see why it's not working. I have an input field with a placeholder text, which has to be translated. This works fin...
I am using the excellent Angular Translate ($translate) directive/service to deal with multiple Locale Languages and since I have multiple locale files I use the convenient $translateProvider.useStaticFilesLoader to load my translation files through...
I've been experiencing FOUC (flash of untranslated content) issues while using angular-translate. This is my setup: .config(function ($translateProvider, defaultI18n) { $translateProvider .useSanitizeValueStrategy('sanitize')...
I'm using angular-translate. And it seems that filter-based translation does not use translate-namespace defined with attribute-level directive above. AFAIK it's because filter cannot process scope chain. Is there a way to connect filter-base...
On Angular 1.3.x with latest version of angular-translate. Using $sanitize it seems there are problems when using filter or service directly, but it works when using the directive. Suggestions? Here is an example: var myApp = angular.module(...
I know this has been asked here before but none of the answers seem to work for my case I bought this theme Angle which is working with Angular 1.4.2 and Angular translate 2.6.0 (even updated to last 2.7.2) The template by default has the Translate...
I have to use multiple translatePartialLoader with different urlTemnplate. I am using angular-translate-loader-pluggable. It seems like the child module urltemplate overrides the parent modules urltemplate Parent Module Config $translateProvider.us...
How do you check if a string has a translated value? I'm using AngularJS and AngularTranslate. I only want to display a value if it has a been translated. Angular Translate will show the untranslated string if no translation is available. I st...
I got a strange or maybe intended behavior with angular translate. Our value strategie is $translateProvider.useSanitizeValueStrategy('sanitize'); We use mostly the translate filter in our application, but when it comes to special chara...
©2020 All rights reserved.