angular-localization icon indicating copy to clipboard operation
angular-localization copied to clipboard

angularjs localization done right.

Results 42 angular-localization issues
Sort by recently updated
recently updated
newest added

Fix for #118 --- This change is [](https://reviewable.io/reviews/doshprompt/angular-localization/119)

Hi, I migrating app to Angular. My AngularJs app uses `ng-localization`. All my other angularjs dependencies are imported just fine. However `ng-localization` fails with `TypeError: Cannot read property 'module' of...

On using locale.getString(key, sub) the first time when the controller loads we are getting the locale.getString() value properly. If we reload the the page, the same locale.getString(key, sub) returns ""....

As per the document, I implemented the localization but its throwing the below exception TypeError: $http.get(...).success is not a function I am using angular: 1.6.x version

Angular 1.6 doesn't support .success https://stackoverflow.com/questions/41169385/http-get-success-is-not-a-function --- This change is [](https://reviewable.io/reviews/doshprompt/angular-localization/116)

Hi I am trying to set the default locale and my configuration is as below. `var localeConf = { basePath: 'languages', defaultLocale: 'ta-IN', sharedDictionary: 'common', fileExtension: '.lang.json', persistSelection: true, cookieName:...

code is using promise.success() instead of promise..then() here is the error: TypeError: c.get(...).success is not a function at p (http://localhost:9002/bower_components/angular-localization/angular-localization.min.js:8:1270) at q (http://localhost:9002/bower_components/angular-localization/angular-localization.min.js:8:1637) at http://localhost:9002/bower_components/angular-localization/angular-localization.min.js:8:1872 at Array.forEach (native) at Object.r...

I;m not sure this is a bug but have no clue how to overcome it. Whenever I add new keys to an existing language file they are not loaded until...

Hi I am passing parameters to dataTable oLanguage: { "sLengthMenu": "_MENU_ "+locale.getString('app.menu-dropdown'), "sSearch": locale.getString('app.search'), "sEmptyTable": locale.getString('app.emptyTable'), "sZeroRecords": locale.getString('app.zeroRecord'), "sInfoFiltered": locale.getString('app.filtereddevices', ['_MAX_'])+ ')', "sInfo": locale.getString('app.showingdevices' ,['_START_','_END_','_TOTAL_']), "sInfoEmpty": locale.getString('app.emptyRecord') } Most of...