-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
Fix translation issues on PDP and RTL placement for Tooltips #2642
Conversation
These three are the remaining culprits, if anyone has any ideas... help please! |
@kieckhafer Is this ready to go? Should we just merge the fixes you have in and open issues for the few remaining? |
The above issue are still there, but I think we should push and make a new ticket. AFAIK all translations except these three will be fixed with this update. |
Here's a ticket for the rest: #2672 |
@kieckhafer Do you want to assign reviewers? |
Ok, I guess I deserved that |
You'll need to run lingohub and get all the translations for the new coreTitle.. |
How do I create translations from a branch again? |
Manual push by LingoHub User: Brent Hoover. Project: reaction Made with ❤️ by https://lingohub.com
"Dashboard" still untranslated |
Manual push by LingoHub User: Brent Hoover. Project: reaction Made with ❤️ by https://lingohub.com
"Dashboard" is now translated. |
I'm not sure what the best course of action here, to keep testing this or just merge and open new issues. I think this fixes the specific issues pointed out in ticket? |
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.
Fixes bugs as outlined in ticket, although there are still translation issues in the PDP.
"accountsSettingsLabel": "Профили", | ||
"accountsSettingsTitle": "Профили", | ||
"accountsSettingsDescription": "Настройки на профила" | ||
}, | ||
"groupsInvite": { | ||
"name": "Джон Смит", | ||
"email": "[email protected]" | ||
"email": "[email protected]", |
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.
Should we change this to a non-reaction email on the en
version??
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.
yes should be email@localhost
-> and should not be translated in LingoHub (save as a phrase).
Resolves #2641
Resolves #2287
Divider
The divider component is registering as
pure
.As of right now, it cannot be a pure component, as the
i18nKey
never changes, even with a language switch, it's still ani18nKey
likeapp.public
. Since the key stays the same, the props don't change, the component doesn't update.Tooltips
Tooltips were overflowing outside the window area.
I changed the tether to use
window
instead of the current element, and that seems to have fixed it everywhere.Remaining Translations
[WIP] please help i don't know.