|
25 | 25 | alt={localize('views.implicit-account.steps.step1.title')}
|
26 | 26 | />
|
27 | 27 | </div>
|
28 |
| - <Text type={TextType.h3} fontWeight={FontWeight.semibold}>One-time deposit</Text> |
| 28 | + <Text type={TextType.h3} fontWeight={FontWeight.semibold} |
| 29 | + >{localize('views.implicit-account.steps.step1.view.title')}</Text |
| 30 | + > |
29 | 31 | <Text type={TextType.h5} fontSize="15" color="blue-700" darkColor="blue-700" fontWeight={FontWeight.semibold}
|
30 |
| - >3$ - 15$ recommended</Text |
| 32 | + >{localize('views.implicit-account.steps.step1.view.subtitle')}</Text |
31 | 33 | >
|
32 | 34 | <Text type={TextType.h5} fontWeight={FontWeight.normal} color="gray-700" darkColor="gray-500"
|
33 |
| - >Send enough funds to using your one-time address so the account can be generated with low waiting times. |
34 |
| - The funds are your to use after the account has been created.</Text |
| 35 | + >{localize('views.implicit-account.steps.step1.view.body')}</Text |
35 | 36 | >
|
36 | 37 | </div>
|
37 | 38 | {#if !isAddressShown}
|
38 | 39 | <div class="flex flex-row items-center space-x-24 bg-yellow-200 rounded-lg px-6 py-7 max-w-lg mb-5">
|
39 | 40 | <Text type={TextType.h4} fontWeight={FontWeight.medium} color="yellow-900" darkColor="yellow-900"
|
40 |
| - >Do not send funds to the address more than once</Text |
| 41 | + >{localize('views.implicit-account.steps.step1.view.hiddenAddress.description')}</Text |
| 42 | + > |
| 43 | + <Button onClick={showAddress} classes="shrink-0" |
| 44 | + >{localize('views.implicit-account.steps.step1.view.hiddenAddress.action')}</Button |
41 | 45 | >
|
42 |
| - <Button onClick={showAddress} classes="shrink-0">Show Address</Button> |
43 | 46 | </div>
|
44 | 47 | {:else}
|
45 | 48 | <div class="flex flex-col justify-center items-center space-y-3">
|
46 | 49 | <div
|
47 | 50 | class="flex flex-row items-center space-x-20 bg-gray-100 dark:bg-gray-800 rounded-lg px-6 py-4 max-w-lg"
|
48 | 51 | >
|
49 | 52 | <div class="flex flex-col space-y-1">
|
50 |
| - <Text type={TextType.h5} fontWeight={FontWeight.normal} darkColor="gray-400">One-time Address</Text> |
| 53 | + <Text type={TextType.h5} fontWeight={FontWeight.normal} darkColor="gray-400" |
| 54 | + >{localize('views.implicit-account.steps.step1.view.oneTimeAddress.title')}</Text |
| 55 | + > |
51 | 56 | <Text type={TextType.pre} fontSize="14" fontWeight={FontWeight.medium} color="gray-50"
|
52 | 57 | >{DUMMY_ADDRESS}</Text
|
53 | 58 | >
|
54 | 59 | </div>
|
55 |
| - <Button outline onClick={onCopyClick} classes="shrink-0">Copy</Button> |
| 60 | + <Button outline onClick={onCopyClick} classes="shrink-0" |
| 61 | + >{localize('views.implicit-account.steps.step1.view.oneTimeAddress.action')}</Button |
| 62 | + > |
56 | 63 | </div>
|
57 | 64 | <Text type={TextType.h5} fontWeight={FontWeight.normal} color="red-600" darkColor="red-600"
|
58 |
| - >Do not sent fund to this address more than once</Text |
| 65 | + >{localize('views.implicit-account.steps.step1.view.oneTimeAddress.tip')}</Text |
59 | 66 | >
|
60 | 67 | </div>
|
61 | 68 | {/if}
|
|
0 commit comments