-
-
Notifications
You must be signed in to change notification settings - Fork 861
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
linked message translates the translated message #478
Comments
@kazupon has funded $30.00 to this issue. See it on IssueHunt |
@kazupon may I get this one too? 😬 |
@kimuraz |
@kazupon has funded $30.00 to this issue. See it on IssueHunt |
No activity since 10 days, can I take it ? |
@gurungrahul2 |
@gurungrahul2 @kimuraz |
@kazupon |
@kimuraz @gurungrahul2 |
@kazupon how can I test if my changes fix the issue, how can i re-build vue with my changes and import to my web page ? |
@gurungrahul2 |
@kazupon but it still doesn't answer my doubt. |
@gurungrahul2 I migth have something on my old attempt... |
Refer development setup. It tells how to setup test environment and how to run tests.
Do you mean: you want to test new changes added to vue-i18n (not vue) on your web page?
But you don't need to do so. |
@kazupon has rewarded $42.00 to @stroncium. See it on IssueHunt
|
vue & vue-i18n version
2.5.17, 8.4.0
I dont know if it is the expected behavior
the linked message translates the translated message
Reproduction
<p>{{ $t('hello', { name: 'World {text}' }) }}</p>
- good<p>{{ $t('hello', { name: 'World {text}', text: 'something' }) }}</p>
- good<p>{{ $t('linkedHello', { name: 'World {text}' }) }}</p>
- bad<p>{{ $t('linkedHello', { name: 'World {text}', text: 'something' }) }}</p>
- badWhat is Expected?
<p>Hello World {text}</p>
What is actually happening?
<p>Hello World {text}</p>
- good<p>Hello World {text}</p>
- good<p>Hello World </p>
- bad<p>Hello World something</p>
- badThe text was updated successfully, but these errors were encountered: