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
Hello,
Thank you for this awesome package. But I found one bug in VueJs extractor.
If function returns directly translation without variable or other constructor, then extractor does not work properly.
version: v4.6.0
methods: { //Work myVueMethod(){ var a = _('my translate 1'); return a; }, //Work myVueMethod2(){ return this._('my translate 2'); }, //Does not work myVueMethod3(){ return _('my translate 3'); }, //Work myVueMethod4(){ return 'my test' + _('my translate 4'); },
Regards, Marek.
The text was updated successfully, but these errors were encountered:
Fixed javascript parser #187
854ff5f
Thanks for the feedback. It should be fixed in v4.6.1
Sorry, something went wrong.
No branches or pull requests
Hello,
Thank you for this awesome package. But I found one bug in VueJs extractor.
If function returns directly translation without variable or other constructor, then extractor does not work properly.
version: v4.6.0
Regards, Marek.
The text was updated successfully, but these errors were encountered: