diff --git a/ts/components/dialog/DeleteAccountModal.tsx b/ts/components/dialog/DeleteAccountModal.tsx index 46cae8f0d..a391b9e17 100644 --- a/ts/components/dialog/DeleteAccountModal.tsx +++ b/ts/components/dialog/DeleteAccountModal.tsx @@ -44,7 +44,6 @@ const DescriptionBeforeAskingConfirmation = (props: { ); }; -// NODE: strings - check merge conflict const DescriptionWhenAskingConfirmation = (props: { deleteMode: DeleteModes }) => { return ( diff --git a/ts/util/accountManager.ts b/ts/util/accountManager.ts index 5771b6bb7..c4ac79798 100644 --- a/ts/util/accountManager.ts +++ b/ts/util/accountManager.ts @@ -333,10 +333,10 @@ export async function deleteEverythingAndNetworkData() { window?.inboxStore?.dispatch(updateDeleteAccountModal(null)); window?.inboxStore?.dispatch( updateConfirmModal({ - title: window.i18n('clearDeviceAndNetworkConfirm'), + title: window.i18n('clearDataAll'), i18nMessage: { token: 'clearDataErrorDescriptionGeneric' }, okTheme: SessionButtonColor.Danger, - okText: window.i18n('clearDeviceOnly'), + okText: window.i18n('clearDevice'), onClickOk: async () => { await deleteDbLocally(); window.restart(); @@ -360,7 +360,7 @@ export async function deleteEverythingAndNetworkData() { // open a new confirm dialog to ask user what to do window?.inboxStore?.dispatch( updateConfirmModal({ - title: window.i18n('clearDeviceAndNetworkConfirm'), + title: window.i18n('clearDataAll'), i18nMessage: { token: 'clearDataErrorDescription', args: { @@ -370,7 +370,7 @@ export async function deleteEverythingAndNetworkData() { }, i18nMessageSub: { token: 'clearDeviceAndNetworkConfirm' }, okTheme: SessionButtonColor.Danger, - okText: window.i18n('clearDeviceOnly'), + okText: window.i18n('clearDevice'), onClickOk: async () => { await deleteDbLocally(); window.restart();