-
Notifications
You must be signed in to change notification settings - Fork 3
#42 add setDataForLanguage() #43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -203,6 +203,13 @@ module.exports = ['$rootScope', '$http', function ($rootScope, $http) { | |
|
|
||
| }, | ||
|
|
||
| setDataForLanguage: function setDataForLanguage(data, language) { | ||
|
|
||
| if(config.lazy) { | ||
| i18n.data[language] = data; | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why ?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Because i have to add data for a language after init and it doesn't work with the current code. I can't set the language dynamically
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yup but your code doesn't work if we are not using lazy mode. :) |
||
| } | ||
| }, | ||
|
|
||
| /** | ||
| * Configure this factory | ||
| * | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Run
node version.js 1.7.3, the 1.7.2 is already available.