diff --git a/services/web/frontend/extracted-translations.json b/services/web/frontend/extracted-translations.json index 5016614a53..1aed113d50 100644 --- a/services/web/frontend/extracted-translations.json +++ b/services/web/frontend/extracted-translations.json @@ -1634,6 +1634,7 @@ "to_confirm_transfer_enter_email_address": "", "to_confirm_unlink_all_users_enter_email": "", "to_continue_using_upgrade_or_change_your_browser": "", + "to_delete_your_writefull_account": "", "to_fix_this_you_can": "", "to_fix_this_you_can_ask_the_github_repository_owner": "", "to_insert_or_move_a_caption_make_sure_tabular_is_directly_within_table": "", diff --git a/services/web/frontend/js/features/settings/components/leave/modal-content.tsx b/services/web/frontend/js/features/settings/components/leave/modal-content.tsx index 7c3ed3bc9c..9ac29d790c 100644 --- a/services/web/frontend/js/features/settings/components/leave/modal-content.tsx +++ b/services/web/frontend/js/features/settings/components/leave/modal-content.tsx @@ -10,6 +10,8 @@ import { OLModalTitle, } from '@/features/ui/components/ol/ol-modal' +const WRITEFULL_SUPPORT_EMAIL = 'support@writefull.com' + type LeaveModalContentProps = { handleHide: () => void inFlight: boolean @@ -36,11 +38,25 @@ function LeaveModalContentBlock({ } return ( - + <> + +

+ , + }} + /> +

+ ) } diff --git a/services/web/locales/en.json b/services/web/locales/en.json index 5fa0a59270..642d5dbfa5 100644 --- a/services/web/locales/en.json +++ b/services/web/locales/en.json @@ -2249,6 +2249,7 @@ "to_confirm_transfer_enter_email_address": "To accept the invitation, enter the email address linked to your account.", "to_confirm_unlink_all_users_enter_email": "To confirm you want to unlink all users, enter your email address:", "to_continue_using_upgrade_or_change_your_browser": "To continue using __appName__ without problems you need to upgrade or change to a <0>supported browser.", + "to_delete_your_writefull_account": "To delete your Writefull account, or to check if you have one, please contact __email__.", "to_fix_this_you_can": "To fix this, you can:", "to_fix_this_you_can_ask_the_github_repository_owner": "To fix this, you can ask the GitHub repository owner (<0>__repoOwnerEmail__) to renew their __appName__ subscription and reconnect the project.", "to_insert_or_move_a_caption_make_sure_tabular_is_directly_within_table": "To insert or move a caption, make sure \\begin{tabular} is directly within a table environment",