Here is my sample code: en.js
var translationsEN = { USERNAME: 'Username', PASSWORD: 'Password', LOGIN: 'Login', CANCEL: 'Cancel' }; and my controller:
.config(function ($routeProvider, $translateProvider) { ... $translateProvider.translations('en_US', translationsEN); $translateProvider.preferredLanguage('en_US'); ... I'm using the module angular-translate of Pascal Precht. When I updated my files, in the console is the message: "translationsEN is not defined" (in my controller) and the message from my language file: "translationsEN is defined but never used"
How can I defined the variable in my Controller? Do I need to define the variable as a service?
translationEn