diff --git a/apps/web/components/apps/installation/AccountsStepCard.tsx b/apps/web/components/apps/installation/AccountsStepCard.tsx index 9948d8a354..82f78b241d 100644 --- a/apps/web/components/apps/installation/AccountsStepCard.tsx +++ b/apps/web/components/apps/installation/AccountsStepCard.tsx @@ -54,7 +54,7 @@ const AccountSelector: FC = ({ } }}> diff --git a/apps/web/components/apps/installation/ConfigureStepCard.tsx b/apps/web/components/apps/installation/ConfigureStepCard.tsx index bddc23e965..4c6b219624 100644 --- a/apps/web/components/apps/installation/ConfigureStepCard.tsx +++ b/apps/web/components/apps/installation/ConfigureStepCard.tsx @@ -233,7 +233,7 @@ const ConfigureStepCardContent: FC = (props) => { {eventTypeGroups[groupIndex].eventTypes.some((eventType) => eventType.selected === true) && (
= ({ ); }; const EventTypeGroup: FC = ({ groupIndex, userName, ...props }) => { + const { t } = useLocale(); const { control } = useFormContext(); const { fields, update } = useFieldArray({ control, @@ -98,7 +99,7 @@ const EventTypeGroup: FC = ({ groupIndex, userName, ...prop
{ // eslint-disable-next-line @next/next/no-img-element - + {t("two_factor_auth_qr_code")} }

{secret}

diff --git a/apps/web/components/settings/EnableTwoFactorModal.tsx b/apps/web/components/settings/EnableTwoFactorModal.tsx index f377f39057..960425a278 100644 --- a/apps/web/components/settings/EnableTwoFactorModal.tsx +++ b/apps/web/components/settings/EnableTwoFactorModal.tsx @@ -192,7 +192,7 @@ const EnableTwoFactorModal = ({ onEnable, onCancel, open, onOpenChange }: Enable
{ // eslint-disable-next-line @next/next/no-img-element - + {t("two_factor_auth_qr_code")} }

diff --git a/packages/i18n/locales/en/common.json b/packages/i18n/locales/en/common.json index 2eea2e4e2d..f97d2b02a7 100644 --- a/packages/i18n/locales/en/common.json +++ b/packages/i18n/locales/en/common.json @@ -1052,8 +1052,11 @@ "your_email": "Your email", "avatar": "Avatar", "avatar_of_username": "Avatar of {{username}}", + "avatar_of_name": "{{name}}'s avatar", "change_avatar": "Change avatar", "upload_avatar": "Upload avatar", + "app_icon": "{{app}} app icon", + "two_factor_auth_qr_code": "Two-factor authentication QR code", "language": "Language", "timezone": "Timezone", "first_day_of_week": "First day of week",