From cb28ecad5481643836114265f81207b37c0f979d Mon Sep 17 00:00:00 2001 From: oliver renwick <7252642+mapachurro@users.noreply.github.com> Date: Mon, 24 Jan 2022 09:28:16 -0500 Subject: [PATCH] SRP copy-paste language (#12012) Co-authored-by: Elliot Winkler --- app/_locales/en/messages.json | 4 ++-- test/e2e/tests/from-import-ui.spec.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/_locales/en/messages.json b/app/_locales/en/messages.json index d38ec374d..8ccd962df 100644 --- a/app/_locales/en/messages.json +++ b/app/_locales/en/messages.json @@ -2187,7 +2187,7 @@ "message": "Passwords Don't Match" }, "pastePrivateKey": { - "message": "Paste your private key string here:", + "message": "Enter your private key string here:", "description": "For importing an account from a private key" }, "pending": { @@ -2499,7 +2499,7 @@ "message": "Separate each word with a single space" }, "seedPhrasePlaceholderPaste": { - "message": "Paste Secret Recovery Phrase from clipboard" + "message": "Enter your Secret Recovery Phrase" }, "seedPhraseReq": { "message": "Secret Recovery Phrases contain 12, 15, 18, 21, or 24 words" diff --git a/test/e2e/tests/from-import-ui.spec.js b/test/e2e/tests/from-import-ui.spec.js index d93800485..fc34a2f78 100644 --- a/test/e2e/tests/from-import-ui.spec.js +++ b/test/e2e/tests/from-import-ui.spec.js @@ -77,7 +77,7 @@ describe('Metamask Import UI', function () { // Import Secret Recovery Phrase await driver.fill( - 'input[placeholder="Paste Secret Recovery Phrase from clipboard"]', + 'input[placeholder="Enter your Secret Recovery Phrase"]', testSeedPhrase, );