We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
After unification of i18n mock for different core (block i18n or i-bem__i18n) will have to rewrite the HTML-references in your project.
i18n
i-bem__i18n
To upgrade to the new version of this package was easier need add the ability to override the mock of i18n.
mockI18N: function(global, bem_) { global.BEM = bem_; var i18n = bem_.I18N = function(keyset, key, param) { var result = key; if(param){ result += ": " + JSON.stringify(param); } return result; }; i18n.keyset = function() { return i18n; }; i18n.key = function(key) { return key; }; i18n.lang = function() { return; }; }
The text was updated successfully, but these errors were encountered:
mockI18N
blond
No branches or pull requests
After unification of i18n mock for different core (block
i18n
ori-bem__i18n
) will have to rewrite the HTML-references in your project.To upgrade to the new version of this package was easier need add the ability to override the mock of i18n.
The text was updated successfully, but these errors were encountered: