Skip to content

Commit

Permalink
fix: add missing translation for label
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohamed-Hacene committed Feb 26, 2024
1 parent 302c6fc commit b4c6e70
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion frontend/messages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -236,5 +236,6 @@
"changePasswordText": "You can change your password here. You'll need to log in with your new password after this operation",
"oldPassword": "Old password",
"newPassword": "New password",
"confirmNewPassword": "Confirm new password"
"confirmNewPassword": "Confirm new password",
"label": "Label"
}
3 changes: 2 additions & 1 deletion frontend/messages/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -236,5 +236,6 @@
"changePasswordText": "Vous pouvez changer votre mot de passe ici. Vous devrez vous reconnecter avec le nouveau mot de passe après cette opération",
"oldPassword": "Ancien mot de passe",
"newPassword": "Nouveau mot de passe",
"confirmNewPassword": "Confirmer le nouveau mot de passe"
"confirmNewPassword": "Confirmer le nouveau mot de passe",
"label": "Label"
}
1 change: 1 addition & 0 deletions frontend/src/lib/utils/locales.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ export function localItems(languageTag: string): LocalItems {
associatedProjects: m.associatedProjects({ languageTag: languageTag }),
associatedUsers: m.associatedUsers({ languageTag: languageTag }),
changePassword: m.changePassword({ languageTag: languageTag }),
label: m.label({ languageTag: languageTag }),
};
return LOCAL_ITEMS;
}

0 comments on commit b4c6e70

Please sign in to comment.