-
Notifications
You must be signed in to change notification settings - Fork 186
[user_accounts] Translate user_accounts module #9934
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: main
Are you sure you want to change the base?
Conversation
This comment was marked as resolved.
This comment was marked as resolved.
a8525c9 to
e9e2edb
Compare
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.
Almost ready. Two more minor changes. Thanks !
| result = <td>{t('Yes', {ns: 'loris'})}</td>; | ||
| } else if (row['Pending Approval'] === 'N') { | ||
| } else if (row[pendingKey] === 'N') { | ||
| result = <td>{t('No', {ns: 'loris'})}</td>; |
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.
Hi @SKADE2303, we need to do the same for the Active column. It's not getting translated so far.

locale/hi/LC_MESSAGES/loris.po
Outdated
| msgid "Username" | ||
| msgstr "उपयोगकर्ता नाम" | ||
|
|
||
| msgid "User name" | ||
| msgstr "उपयोगकर्ता नाम" |
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.
I don't think we need both, let's just keep Username and change for this key wherever we have User name.
What do you think @driusan ?
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.
@SKADE2303 I consulted @driusan in this one and he agreed it should be Username only. You have green light for making the respective changes. Thanks !!
ca999db to
618200c
Compare
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.
|
@SKADE2303, please address comments. |
bd1e0f5 to
aa3ba31
Compare
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.
LGTM now.
|
I left you the final review @driusan . Thanks ! |




Brief summary of changes
This PR is responsible for translating the module user_accounts to different languages. Currently only 'Hindi' language is supported but other languages can be added as required.
Testing instructions (if applicable)