Skip to content

Commit

Permalink
Minor change to error text
Browse files Browse the repository at this point in the history
  • Loading branch information
miko committed Aug 23, 2023
1 parent db55dd0 commit 78e0f8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion static/app-strings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2943,7 +2943,7 @@
"Delete Account" : "Delete Account",
"Request account deletion" : "Request account deletion",
"Send account deletion request to Odysee" : "Send account deletion request to Odysee",
"Sorry, there may have been an issue when wiping the account. Please check back in few minutes, and try again. If the issue persists please contact help@odysee.com for possible next steps." : "Sorry, there may have been an issue when wiping the account. Please check back in few minutes, and try again. If the issue persists please contact help@odysee.com for possible next steps.",
"Sorry, there may have been an issue when wiping the account and/or sending the deletion request. Please check back in few minutes, and try again. If the issue persists please contact help@odysee.com for possible next steps." : "Sorry, there may have been an issue when wiping the account and/or sending the deletion request. Please check back in few minutes, and try again. If the issue persists please contact help@odysee.com for possible next steps.",
"Account has already been queued for deletion." : "Account has already been queued for deletion.",
"Account has already been queued for deletion. If you still have content/credits on the account which you want removed, click \"Remove content\"." : "Account has already been queued for deletion. If you still have content/credits on the account which you want removed, click \"Remove content\".",
"Remove all content from the account and send a deletion request to Odysee. Removing the content is a permanent action and can't be undone." : "Remove all content from the account and send a deletion request to Odysee. Removing the content is a permanent action and can't be undone.",
Expand Down
2 changes: 1 addition & 1 deletion ui/modal/modalRemoveAccount/view.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export default function ModalRemoveAccount(props: Props) {
title={__('Delete account')}
subtitle={isBusy ? ''
: errorOccurred
? __('Sorry, there may have been an issue when wiping the account. Please check back in few minutes, and try again. If the issue persists please contact help@odysee.com for possible next steps.')
? __('Sorry, there may have been an issue when wiping the account and/or sending the deletion request. Please check back in few minutes, and try again. If the issue persists please contact help@odysee.com for possible next steps.')
: isAlreadyPendingDeletion && !buttonClicked && isWalletEmpty
? __('Account has already been queued for deletion.')
: isAlreadyPendingDeletion && !buttonClicked && !isWalletEmpty
Expand Down

0 comments on commit 78e0f8b

Please sign in to comment.