diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 22252c301..b267220e8 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -13,7 +13,11 @@ Mention the issue number(s) this PR addresses (e.g., #123). - [ ] (Do not skip this or your PR will be closed) I deployed the application locally. - [ ] (Do not skip this or your PR will be closed) I have performed a self-review and testing of my code. - [ ] I have included the issue # in the PR. -- [ ] I have labelled the PR correctly. +- [ ] I have added i18n support to visible strings (instead of `
Add
`, use): +```Javascript +const { t } = useTranslation(); +
{t('add')}
+``` - [ ] The issue I am working on is assigned to me. - [ ] I didn't use any hardcoded values (otherwise it will not scale, and will make it difficult to maintain consistency across the application). - [ ] I made sure font sizes, color choices etc are all referenced from the theme. I have no hardcoded dimensions.