Update Create Wallet Tutorial Screenshots (#1661)
This commit is contained in:
parent
12d29e5b94
commit
9d2199970b
Binary file not shown.
After Width: | Height: | Size: 95 KiB |
Before Width: | Height: | Size: 134 KiB After Width: | Height: | Size: 134 KiB |
Binary file not shown.
After Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 71 KiB |
|
@ -2,8 +2,10 @@ import React from 'react';
|
||||||
import { Link } from 'react-router-dom';
|
import { Link } from 'react-router-dom';
|
||||||
import translate from 'translations';
|
import translate from 'translations';
|
||||||
import { WalletType } from '../GenerateWallet';
|
import { WalletType } from '../GenerateWallet';
|
||||||
import SiteImage from 'assets/images/unlock-guide/site.png';
|
import OpenAppImage from 'assets/images/unlock-guide/open-app.png';
|
||||||
import TabImage from 'assets/images/unlock-guide/tab.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 SelectKeystoreImage from 'assets/images/unlock-guide/select-keystore.png';
|
||||||
import ProvideKeystoreImage from 'assets/images/unlock-guide/provide-keystore.png';
|
import ProvideKeystoreImage from 'assets/images/unlock-guide/provide-keystore.png';
|
||||||
import SelectMnemonicImage from 'assets/images/unlock-guide/select-mnemonic.png';
|
import SelectMnemonicImage from 'assets/images/unlock-guide/select-mnemonic.png';
|
||||||
|
@ -17,31 +19,31 @@ interface Props {
|
||||||
const FinalSteps: React.SFC<Props> = ({ walletType }) => {
|
const FinalSteps: React.SFC<Props> = ({ walletType }) => {
|
||||||
const steps = [
|
const steps = [
|
||||||
{
|
{
|
||||||
name: translate('MNEMONIC_FINAL_STEP_1'),
|
name: translate('CREATE_FINAL_STEP_1'),
|
||||||
image: SiteImage
|
image: process.env.BUILD_ELECTRON ? OpenAppImage : OpenWebImage
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: translate('MNEMONIC_FINAL_STEP_2'),
|
name: translate('CREATE_FINAL_STEP_2'),
|
||||||
image: TabImage
|
image: process.env.BUILD_ELECTRON ? TabAppImage : TabWebImage
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
if (walletType === WalletType.Keystore) {
|
if (walletType === WalletType.Keystore) {
|
||||||
steps.push({
|
steps.push({
|
||||||
name: translate('MNEMONIC_FINAL_STEP_3'),
|
name: translate('CREATE_FINAL_STEP_3'),
|
||||||
image: SelectKeystoreImage
|
image: SelectKeystoreImage
|
||||||
});
|
});
|
||||||
steps.push({
|
steps.push({
|
||||||
name: translate('MNEMONIC_FINAL_STEP_5'),
|
name: translate('CREATE_FINAL_STEP_4_KEYSTORE'),
|
||||||
image: ProvideKeystoreImage
|
image: ProvideKeystoreImage
|
||||||
});
|
});
|
||||||
} else if (walletType === WalletType.Mnemonic) {
|
} else if (walletType === WalletType.Mnemonic) {
|
||||||
steps.push({
|
steps.push({
|
||||||
name: translate('MNEMONIC_FINAL_STEP_3'),
|
name: translate('CREATE_FINAL_STEP_3'),
|
||||||
image: SelectMnemonicImage
|
image: SelectMnemonicImage
|
||||||
});
|
});
|
||||||
steps.push({
|
steps.push({
|
||||||
name: translate('MNEMONIC_FINAL_STEP_4'),
|
name: translate('CREATE_FINAL_STEP_4_MNEMONIC'),
|
||||||
image: ProvideMnemonicImage
|
image: ProvideMnemonicImage
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -445,11 +445,11 @@
|
||||||
"CONFIRM_TX_TO": "To",
|
"CONFIRM_TX_TO": "To",
|
||||||
"CONFIRM_TX_VIA_CONTRACT": "via the $unit contract",
|
"CONFIRM_TX_VIA_CONTRACT": "via the $unit contract",
|
||||||
"MNEMONIC_FINAL_DESCRIPTION": "All done, you’re now ready to access your wallet. Just follow these 4 steps whenever you want to access your wallet.",
|
"MNEMONIC_FINAL_DESCRIPTION": "All done, you’re now ready to access your wallet. Just follow these 4 steps whenever you want to access your wallet.",
|
||||||
"MNEMONIC_FINAL_STEP_1": "Open MyCrypto",
|
"CREATE_FINAL_STEP_1": "Open MyCrypto",
|
||||||
"MNEMONIC_FINAL_STEP_2": "Go to the account tab",
|
"CREATE_FINAL_STEP_2": "Go to View & Send",
|
||||||
"MNEMONIC_FINAL_STEP_3": "Select your wallet type",
|
"CREATE_FINAL_STEP_3": "Select your wallet type",
|
||||||
"MNEMONIC_FINAL_STEP_4": "Enter your phrase",
|
"CREATE_FINAL_STEP_4_MNEMONIC": "Enter your phrase",
|
||||||
"MNEMONIC_FINAL_STEP_5": "Provide file & password",
|
"CREATE_FINAL_STEP_4_KEYSTORE": "Provide file & password",
|
||||||
"VIEW_ONLY_RECENT": "Select a recent address",
|
"VIEW_ONLY_RECENT": "Select a recent address",
|
||||||
"VIEW_ONLY_ENTER": "Enter an address (e.g. 0x4bbeEB066eD09...)",
|
"VIEW_ONLY_ENTER": "Enter an address (e.g. 0x4bbeEB066eD09...)",
|
||||||
"GO_TO_ACCOUNT": "Go to Account",
|
"GO_TO_ACCOUNT": "Go to Account",
|
||||||
|
|
Loading…
Reference in New Issue