diff --git a/client/i18n/locales/english/translations.json b/client/i18n/locales/english/translations.json index f7a403e4223..a4790789e0f 100644 --- a/client/i18n/locales/english/translations.json +++ b/client/i18n/locales/english/translations.json @@ -263,8 +263,12 @@ "nevermind": "Nevermind, I don't want to delete my account", "certain": "I am 100% certain. Delete everything related to this account", "reset-heading": "Reset My Progress", - "reset-p1": "This will really delete all of your progress, points, completed challenges, our records of your projects, any certifications you have, everything.", - "reset-p2": "We won't be able to recover any of it for you later, even if you change your mind.", + "reset-p1": "This will permanently delete and reset all of the following:", + "reset-item-1": "Your progress through each step/challenge (all completed challenges will be lost)", + "reset-item-2": "Any saved code, including partially completed challenges, and certification project code", + "reset-item-3": "All completed and claimed certifications", + "reset-p2": "You will effectively be set back to the very first day you signed up.", + "reset-p3": "We won't be able to recover any of it for you later, even if you change your mind.", "nevermind-2": "Nevermind, I don't want to delete all of my progress", "reset-confirm": "Reset everything. I want to start from the beginning" }, diff --git a/client/src/components/settings/reset-modal.tsx b/client/src/components/settings/reset-modal.tsx index 431680db24e..94d45506be9 100644 --- a/client/src/components/settings/reset-modal.tsx +++ b/client/src/components/settings/reset-modal.tsx @@ -19,9 +19,15 @@ function ResetModal(props: ResetModalProps): JSX.Element { {t('settings.danger.reset-heading')} - +

{t('settings.danger.reset-p1')}

+

{t('settings.danger.reset-p2')}

+

{t('settings.danger.reset-p3')}