Update Create Wallet Tutorial Screenshots (#1661)

This commit is contained in:
William O'Beirne 2018-04-23 19:38:12 -04:00 committed by Daniel Ternyak
parent 12d29e5b94
commit 9d2199970b
6 changed files with 17 additions and 15 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 95 KiB

View File

Before

Width:  |  Height:  |  Size: 134 KiB

After

Width:  |  Height:  |  Size: 134 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

View File

Before

Width:  |  Height:  |  Size: 71 KiB

After

Width:  |  Height:  |  Size: 71 KiB

View File

@ -2,8 +2,10 @@ import React from 'react';
import { Link } from 'react-router-dom';
import translate from 'translations';
import { WalletType } from '../GenerateWallet';
import SiteImage from 'assets/images/unlock-guide/site.png';
import TabImage from 'assets/images/unlock-guide/tab.png';
import OpenAppImage from 'assets/images/unlock-guide/open-app.png';
import OpenWebImage from 'assets/images/unlock-guide/open-web.png';
import TabAppImage from 'assets/images/unlock-guide/tab-app.png';
import TabWebImage from 'assets/images/unlock-guide/tab-web.png';
import SelectKeystoreImage from 'assets/images/unlock-guide/select-keystore.png';
import ProvideKeystoreImage from 'assets/images/unlock-guide/provide-keystore.png';
import SelectMnemonicImage from 'assets/images/unlock-guide/select-mnemonic.png';
@ -17,31 +19,31 @@ interface Props {
const FinalSteps: React.SFC<Props> = ({ walletType }) => {
const steps = [
{
name: translate('MNEMONIC_FINAL_STEP_1'),
image: SiteImage
name: translate('CREATE_FINAL_STEP_1'),
image: process.env.BUILD_ELECTRON ? OpenAppImage : OpenWebImage
},
{
name: translate('MNEMONIC_FINAL_STEP_2'),
image: TabImage
name: translate('CREATE_FINAL_STEP_2'),
image: process.env.BUILD_ELECTRON ? TabAppImage : TabWebImage
}
];
if (walletType === WalletType.Keystore) {
steps.push({
name: translate('MNEMONIC_FINAL_STEP_3'),
name: translate('CREATE_FINAL_STEP_3'),
image: SelectKeystoreImage
});
steps.push({
name: translate('MNEMONIC_FINAL_STEP_5'),
name: translate('CREATE_FINAL_STEP_4_KEYSTORE'),
image: ProvideKeystoreImage
});
} else if (walletType === WalletType.Mnemonic) {
steps.push({
name: translate('MNEMONIC_FINAL_STEP_3'),
name: translate('CREATE_FINAL_STEP_3'),
image: SelectMnemonicImage
});
steps.push({
name: translate('MNEMONIC_FINAL_STEP_4'),
name: translate('CREATE_FINAL_STEP_4_MNEMONIC'),
image: ProvideMnemonicImage
});
}

View File

@ -445,11 +445,11 @@
"CONFIRM_TX_TO": "To",
"CONFIRM_TX_VIA_CONTRACT": "via the $unit contract",
"MNEMONIC_FINAL_DESCRIPTION": "All done, youre now ready to access your wallet. Just follow these 4 steps whenever you want to access your wallet.",
"MNEMONIC_FINAL_STEP_1": "Open MyCrypto",
"MNEMONIC_FINAL_STEP_2": "Go to the account tab",
"MNEMONIC_FINAL_STEP_3": "Select your wallet type",
"MNEMONIC_FINAL_STEP_4": "Enter your phrase",
"MNEMONIC_FINAL_STEP_5": "Provide file & password",
"CREATE_FINAL_STEP_1": "Open MyCrypto",
"CREATE_FINAL_STEP_2": "Go to View & Send",
"CREATE_FINAL_STEP_3": "Select your wallet type",
"CREATE_FINAL_STEP_4_MNEMONIC": "Enter your phrase",
"CREATE_FINAL_STEP_4_KEYSTORE": "Provide file & password",
"VIEW_ONLY_RECENT": "Select a recent address",
"VIEW_ONLY_ENTER": "Enter an address (e.g. 0x4bbeEB066eD09...)",
"GO_TO_ACCOUNT": "Go to Account",