Skip to content
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: add missing authority translations [DHIS2-16516] #1340

Merged
merged 1 commit into from
Feb 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 14 additions & 11 deletions i18n/en.pot
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
"POT-Creation-Date: 2023-03-06T13:36:07.125Z\n"
"PO-Revision-Date: 2023-03-06T13:36:07.125Z\n"
"POT-Creation-Date: 2024-01-19T12:15:17.744Z\n"
"PO-Revision-Date: 2024-01-19T12:15:17.744Z\n"

msgid "Yes"
msgstr "Yes"
Expand Down Expand Up @@ -410,6 +410,12 @@ msgstr "Skip data import audit"
msgid "Visualization"
msgstr "Visualization"

msgid "Event Hook"
msgstr "Event Hook"

msgid "Route"
msgstr "Route"

msgid "There was a problem whilst checking the availability of this role name"
msgstr "There was a problem whilst checking the availability of this role name"

Expand Down Expand Up @@ -586,8 +592,12 @@ msgstr "New password"
msgid "Password"
msgstr "Password"

msgid "Minimum 8 characters, one uppercase and lowercase letter and one number"
msgstr "Minimum 8 characters, one uppercase and lowercase letter and one number"
msgid ""
"Password should be at least 8 characters long, with at least one lowercase "
"character, one uppercase character and one special character."
msgstr ""
"Password should be at least 8 characters long, with at least one lowercase "
"character, one uppercase character and one special character."

msgid "Repeat new password"
msgstr "Repeat new password"
Expand Down Expand Up @@ -910,13 +920,6 @@ msgstr "Username for new user"
msgid "Password for new user"
msgstr "Password for new user"

msgid ""
"Password should be at least 8 characters long, with at least one lowercase "
"character, one uppercase character and one special character."
msgstr ""
"Password should be at least 8 characters long, with at least one lowercase "
"character, one uppercase character and one special character."

msgid "Replicate user"
msgstr "Replicate user"

Expand Down
2 changes: 2 additions & 0 deletions src/components/RoleForm/groupAuthorities/metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ const GROUP_NAMES = {
F_PREDICTORGROUP: i18n.t('Data predictor group'),
F_SKIP_DATA_IMPORT_AUDIT: i18n.t('Skip data import audit'),
F_VISUALIZATION: i18n.t('Visualization'),
F_EVENT_HOOK: i18n.t('Event Hook'),
F_ROUTE: i18n.t('Route'),
}

// Metadata group suffixes
Expand Down
Loading