diff --git a/packages/mask/dashboard/components/OnboardingWriter/index.tsx b/packages/mask/dashboard/components/OnboardingWriter/index.tsx index 8a4ccba9b162..3642159d0752 100644 --- a/packages/mask/dashboard/components/OnboardingWriter/index.tsx +++ b/packages/mask/dashboard/components/OnboardingWriter/index.tsx @@ -1,8 +1,7 @@ -import { sum } from 'lodash-es' -import { useState, useMemo, useEffect } from 'react' +import { useState, useMemo, useEffect, type JSX } from 'react' import { makeStyles } from '@masknet/theme' import { Typography } from '@mui/material' -import { useRenderPhraseCallbackOnDepsChange } from '@masknet/shared-base-ui' +import { isNonNull } from '@masknet/kit' const useStyles = makeStyles()((theme) => ({ typed: { @@ -13,75 +12,82 @@ const useStyles = makeStyles()((theme) => ({ color: theme.palette.maskColor.highlight, }, }, - endTyping: { + typing: { opacity: 0.5, }, })) interface OnboardingWriterProps extends withClasses<'typed' | 'endTyping'> { - sentence: Array + sentence: Array } -let segmenter: Intl.Segmenter export function OnboardingWriter({ sentence, ...props }: OnboardingWriterProps) { const { classes, cx } = useStyles(undefined, { props }) + const typing = cx(classes.typing, classes.typed) + const [jsx, setJsx] = useState(undefined) - const allChars = useMemo(() => sentence.flat().filter(Boolean).join(''), [sentence]) - const allCharsSegmented = useMemo(() => { - return [...(segmenter ||= new Intl.Segmenter()).segment(allChars)].map((x) => x.segment) - }, [allChars]) - const segmentCount = allCharsSegmented.length - - const [codePointIndex, setCodePointIndex] = useState(0) - const [segmentIndex, setSegmentIndex] = useState(0) - useRenderPhraseCallbackOnDepsChange(() => { - setCodePointIndex(0) - setSegmentIndex(0) - }, [sentence]) + const writer = useMemo(() => onBoardingWriter({ typed: classes.typed, typing }, sentence), [sentence]) useEffect(() => { const timer = setInterval(() => { - setSegmentIndex((segmentIndex) => { - const nextSegmentIndex = segmentIndex + 1 - if (segmentIndex > segmentCount) { - clearInterval(timer) - return segmentIndex - } - setCodePointIndex(allCharsSegmented.slice(0, nextSegmentIndex).join('').length) - return nextSegmentIndex - }) + const next = writer.next() + if (next.done) { + clearInterval(timer) + } else { + setJsx(next.value) + } }, 50) return () => { clearInterval(timer) } - }, [allCharsSegmented, segmentCount]) + }, [writer]) - const jsx = useMemo(() => { - const newJsx = [] - let remain = codePointIndex - for (const fragment of sentence) { - if (!fragment) continue - if (remain <= 0) break - const size = sum(fragment.map((x) => x.length)) - const take = Math.min(size, remain) - - remain -= take - - const [text, strongText] = fragment + return jsx +} +let segmenter: Intl.Segmenter +function* onBoardingWriter(className: { typed: string; typing: string }, sentences: Array) { + segmenter ||= new Intl.Segmenter() + const previousLines: JSX.Element[] = [] + const currentLine: Array<{ type: 'bold' | 'normal'; text: string }> = [{ type: 'normal', text: '' }] - const className = cx(classes.typed, remain !== 0 ? classes.endTyping : undefined) - // the trailing space gets trimmed by i18n marco - if (take <= text.length) newJsx.push({text.slice(0, take)}) - else - newJsx.push( - - {text} - {strongText.slice(0, take - text.length)} - , - ) + for (const sentence of sentences.filter(isNonNull)) { + const chars = [...segmenter.segment(sentence)] + let currentLineJSX: JSX.Element | undefined + for (let index = 0; index < chars.length; index += 1) { + const char = chars[index].segment + const lastPiece = currentLine.at(-1)! + if (char === '*') { + const nextChar = chars[index + 1]?.segment + if (nextChar === '*') { + currentLine.push({ type: lastPiece.type === 'normal' ? 'bold' : 'normal', text: '' }) + index += 1 + continue + } + } + lastPiece.text += char + const children = currentLine.map((x, index) => + x.type === 'normal' ? x.text : {x.text}, + ) + currentLineJSX = ( + + {children} + + ) + yield ( + <> + {previousLines} + { + + {children} + + } + + ) } - - return newJsx - }, [sentence, codePointIndex]) - - return <>{jsx} + if (currentLineJSX) { + previousLines.push(currentLineJSX) + currentLine.length = 0 + currentLine.push({ type: 'normal', text: '' }) + } + yield <>{previousLines} + } } diff --git a/packages/mask/dashboard/pages/CreateMaskWallet/Onboarding/index.tsx b/packages/mask/dashboard/pages/CreateMaskWallet/Onboarding/index.tsx index c2697891ced4..7d53ac5359cd 100644 --- a/packages/mask/dashboard/pages/CreateMaskWallet/Onboarding/index.tsx +++ b/packages/mask/dashboard/pages/CreateMaskWallet/Onboarding/index.tsx @@ -74,14 +74,14 @@ export const Component = memo(function Onboarding() { window.close() }, []) - const sentence: string[][] = useMemo(() => { + const sentence: string[] = useMemo(() => { return [ - [t`Creating your `, t`wallet`], - [t`Generating your `, t`accounts`], - [t`Encrypting your `, t`data`], - [t`Your Wallet is on `, t`ready ๐Ÿš€`], + t`Creating your **wallet**`, + t`Generating your **accounts**`, + t`Encrypting your **data**`, + t`Your Wallet is on **ready ๐Ÿš€**`, ] - }, []) + }, [t]) return ( <> diff --git a/packages/mask/dashboard/pages/SetupPersona/Onboarding/index.tsx b/packages/mask/dashboard/pages/SetupPersona/Onboarding/index.tsx index 7d6b73fc1608..feb7b3e59749 100644 --- a/packages/mask/dashboard/pages/SetupPersona/Onboarding/index.tsx +++ b/packages/mask/dashboard/pages/SetupPersona/Onboarding/index.tsx @@ -115,24 +115,21 @@ export const Component = memo(function Onboarding() { }) }, [retry]) - const sentence: Array = useMemo(() => { + const sentence: Array = useMemo(() => { const count = params.get('count') return [ - [t`Creating your `, t`identity`], - [t`Generating your `, t`accounts`], - [t`Encrypting your `, t`data`], - [t`Your Persona is on `, t`ready ๐Ÿš€`], + t`Creating your **identity**`, + t`Generating your **accounts**`, + t`Encrypting your **data**`, + t`Your Persona is on **ready ๐Ÿš€**`, count && !isZero(count) ? - [ - t`You have recovered `, - plural(count, { - one: '# Wallet ๐Ÿš€', - other: '# Wallets ๐Ÿš€', - }), - ] + plural(count, { + one: 'You have recovered **# Wallet ๐Ÿš€**', + other: 'You have recovered **# Wallets ๐Ÿš€**', + }) : undefined, ] - }, []) + }, [t, count]) return ( <> diff --git a/packages/mask/dashboard/pages/SetupPersona/PermissionOnboarding/index.tsx b/packages/mask/dashboard/pages/SetupPersona/PermissionOnboarding/index.tsx index a91b6cd3f847..4600318c071d 100644 --- a/packages/mask/dashboard/pages/SetupPersona/PermissionOnboarding/index.tsx +++ b/packages/mask/dashboard/pages/SetupPersona/PermissionOnboarding/index.tsx @@ -100,13 +100,11 @@ export const Component = memo(function Onboarding() { window.close() }, []) - const sentence: string[][] = useMemo(() => { + const sentence: string[] = useMemo(() => { return [ - [ - t`We are pleased to inform you that the update for X (formerly named Twitter) website has been completed. You can now continue to enjoy all the features of Mask Network as usual. Thank you for your continuous support!`, - ], + t`We are pleased to inform you that the update for X (formerly named Twitter) website has been completed. You can now continue to enjoy all the features of Mask Network as usual. Thank you for your continuous support!`, ] - }, []) + }, [t]) return ( <> diff --git a/packages/mask/shared-ui/locale/en-US.json b/packages/mask/shared-ui/locale/en-US.json index 7cc6ffaef207..5442a35e5514 100644 --- a/packages/mask/shared-ui/locale/en-US.json +++ b/packages/mask/shared-ui/locale/en-US.json @@ -7,6 +7,16 @@ "y6VCOb": [["0"], " Mins"], "MpnSqP": [["0"], " Pending"], "FKrzPv": [["count", "plural", { "one": ["#", " Wallet ๐Ÿš€"], "other": ["#", " Wallets ๐Ÿš€"] }]], + "5s6EhU": [ + [ + "count", + "plural", + { + "one": ["You have recovered **", "#", " Wallet ๐Ÿš€**"], + "other": ["You have recovered **", "#", " Wallets ๐Ÿš€**"] + } + ] + ], "yx3mb0": [ [ "decryptProgress", @@ -195,6 +205,8 @@ "PjBWOL": ["Create your persona to get started"], "WgawP2": ["Creating your"], "cEnmTp": ["Creating your "], + "L82H5Z": ["Creating your **identity**"], + "F7U8uz": ["Creating your **wallet**"], "Q2lUR2": ["Currency"], "OgPkDe": ["Currency Symbol (Optional)"], "oOQfsI": ["Current account is not the verifying account."], @@ -265,6 +277,7 @@ "w1ctdJ": ["Encrypted Post"], "MRIXE3": ["Encrypting your"], "zutir1": ["Encrypting your "], + "XB3tfc": ["Encrypting your **data**"], "Cz6Lx7": ["Encryption Method"], "N/fqDa": ["Ens or Address(0x)"], "mPxxVq": ["Enter a gas limit"], @@ -322,6 +335,7 @@ "fUn3xA": ["Generate a new wallet address"], "tdZPpe": ["Generating your"], "CiU2m/": ["Generating your "], + "RL5m+x": ["Generating your **accounts**"], "2p7WMm": ["Give permission to access <0/> your ", ["0"], "?"], "76gPWk": ["Got it"], "HqiAyF": ["Gwei"], @@ -815,7 +829,9 @@ ], "N19nSk": ["Your Persona is on"], "WC7pDz": ["Your Persona is on "], + "PDW/HG": ["Your Persona is on **ready ๐Ÿš€**"], "0kr+x1": ["Your Wallet is on"], - "v7OL2k": ["Your Wallet is on "] + "v7OL2k": ["Your Wallet is on "], + "wCtp6y": ["Your Wallet is on **ready ๐Ÿš€**"] } } diff --git a/packages/mask/shared-ui/locale/en-US.po b/packages/mask/shared-ui/locale/en-US.po index 1daa31d66fa2..9feee1420ab2 100644 --- a/packages/mask/shared-ui/locale/en-US.po +++ b/packages/mask/shared-ui/locale/en-US.po @@ -41,7 +41,11 @@ msgid "{0} Pending" msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx -msgid "{count, plural, one {# Wallet ๐Ÿš€} other {# Wallets ๐Ÿš€}}" +#~ msgid "{count, plural, one {# Wallet ๐Ÿš€} other {# Wallets ๐Ÿš€}}" +#~ msgstr "" + +#: dashboard/pages/SetupPersona/Onboarding/index.tsx +msgid "{count, plural, one {You have recovered **# Wallet ๐Ÿš€**} other {You have recovered **# Wallets ๐Ÿš€**}}" msgstr "" #: content-script/components/InjectedComponents/DecryptedPost/DecryptPostAwaiting.tsx @@ -127,8 +131,8 @@ msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "accounts" -msgstr "" +#~ msgid "accounts" +#~ msgstr "" #: popups/pages/Wallet/components/WalletAssets/index.tsx msgid "Activities" @@ -784,7 +788,15 @@ msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "Creating your " +#~ msgid "Creating your " +#~ msgstr "" + +#: dashboard/pages/SetupPersona/Onboarding/index.tsx +msgid "Creating your **identity**" +msgstr "" + +#: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx +msgid "Creating your **wallet**" msgstr "" #: popups/pages/Wallet/WalletSettings/ChangeCurrency.tsx @@ -825,8 +837,8 @@ msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "data" -msgstr "" +#~ msgid "data" +#~ msgstr "" #: popups/pages/Wallet/Interaction/TransactionRequest.tsx msgid "Data" @@ -1019,7 +1031,12 @@ msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "Encrypting your " +#~ msgid "Encrypting your " +#~ msgstr "" + +#: dashboard/pages/SetupPersona/Onboarding/index.tsx +#: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx +msgid "Encrypting your **data**" msgstr "" #: content-script/components/CompositionDialog/EncryptionMethodSelector.tsx @@ -1264,7 +1281,12 @@ msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "Generating your " +#~ msgid "Generating your " +#~ msgstr "" + +#: dashboard/pages/SetupPersona/Onboarding/index.tsx +#: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx +msgid "Generating your **accounts**" msgstr "" #. placeholder {0}: contract?.symbol || '' @@ -1339,8 +1361,8 @@ msgid "I wrote down those words in the correct order" msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx -msgid "identity" -msgstr "" +#~ msgid "identity" +#~ msgstr "" #: dashboard/pages/SetupPersona/Mnemonic/ComponentToPrint.tsx msgid "Identity ID" @@ -2208,8 +2230,8 @@ msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "ready ๐Ÿš€" -msgstr "" +#~ msgid "ready ๐Ÿš€" +#~ msgstr "" #: content-script/components/CompositionDialog/useSubmit.ts msgid "realMaskNetwork" @@ -3033,8 +3055,8 @@ msgid "Waiting for {providerType}" msgstr "" #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "wallet" -msgstr "" +#~ msgid "wallet" +#~ msgstr "" #: popups/pages/Wallet/SwitchWallet/index.tsx #: popups/modals/WalletGroupModal/index.tsx @@ -3123,8 +3145,8 @@ msgstr "" #~ msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx -msgid "You have recovered " -msgstr "" +#~ msgid "You have recovered " +#~ msgstr "" #: popups/pages/Personas/ConnectWallet/index.tsx msgid "You have signed with your wallet." @@ -3157,7 +3179,11 @@ msgstr "" #~ msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx -msgid "Your Persona is on " +#~ msgid "Your Persona is on " +#~ msgstr "" + +#: dashboard/pages/SetupPersona/Onboarding/index.tsx +msgid "Your Persona is on **ready ๐Ÿš€**" msgstr "" #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx @@ -3165,5 +3191,9 @@ msgstr "" #~ msgstr "" #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "Your Wallet is on " +#~ msgid "Your Wallet is on " +#~ msgstr "" + +#: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx +msgid "Your Wallet is on **ready ๐Ÿš€**" msgstr "" diff --git a/packages/mask/shared-ui/locale/ja-JP.json b/packages/mask/shared-ui/locale/ja-JP.json index 30f542f10f27..7469d08869d9 100644 --- a/packages/mask/shared-ui/locale/ja-JP.json +++ b/packages/mask/shared-ui/locale/ja-JP.json @@ -7,6 +7,16 @@ "y6VCOb": [["0"], " ๅˆ†"], "MpnSqP": [["0"], " Pending"], "FKrzPv": [["count", "plural", { "one": ["#", " Wallet ๐Ÿš€"], "other": ["#", " Wallets ๐Ÿš€"] }]], + "5s6EhU": [ + [ + "count", + "plural", + { + "one": ["You have recovered **", "#", " Wallet ๐Ÿš€**"], + "other": ["You have recovered **", "#", " Wallets ๐Ÿš€**"] + } + ] + ], "yx3mb0": [ [ "decryptProgress", @@ -193,6 +203,8 @@ "PjBWOL": ["ใ‚ใชใŸใฎใƒšใƒซใ‚ฝใƒŠใ‚’ไฝœๆˆใ—ใฆๅง‹ใ‚ใพใ—ใ‚‡ใ†"], "WgawP2": ["Creating your"], "cEnmTp": ["Creating your "], + "L82H5Z": ["Creating your **identity**"], + "F7U8uz": ["Creating your **wallet**"], "Q2lUR2": ["้€š่ฒจ"], "OgPkDe": ["้€š่ฒจ่จ˜ๅท๏ผˆใ‚ชใƒ—ใ‚ทใƒงใƒณ๏ผ‰"], "oOQfsI": ["Current account is not the verifying account."], @@ -263,6 +275,7 @@ "w1ctdJ": ["Mask: ไฝœๆˆ"], "MRIXE3": ["Encrypting your"], "zutir1": ["Encrypting your "], + "XB3tfc": ["Encrypting your **data**"], "Cz6Lx7": ["ๆš—ๅทๅŒ–ๆ–นๆณ•"], "N/fqDa": ["Ens ใพใŸใฏ Address(0x)"], "mPxxVq": ["ใ‚ฌใ‚นใฎๅˆถ้™ใ‚’ๅ…ฅๅŠ›ใ—ใฆใใ ใ•ใ„"], @@ -320,6 +333,7 @@ "fUn3xA": ["ๆ–ฐใ—ใ„ใ‚ฆใ‚ฉใƒฌใƒƒใƒˆใ‚ขใƒ‰ใƒฌใ‚นใ‚’็”Ÿๆˆใ™ใ‚‹"], "tdZPpe": ["Generating your"], "CiU2m/": ["Generating your "], + "RL5m+x": ["Generating your **accounts**"], "2p7WMm": ["Give permission to access <0/> your ", ["0"], "?"], "76gPWk": ["ไบ†่งฃ"], "HqiAyF": ["Gwei๏ผˆใ‚ฐใƒฏใ‚ค๏ผ‰"], @@ -815,7 +829,9 @@ ], "N19nSk": ["Your Persona is on"], "WC7pDz": ["Your Persona is on "], + "PDW/HG": ["Your Persona is on **ready ๐Ÿš€**"], "0kr+x1": ["Your Wallet is on"], - "v7OL2k": ["Your Wallet is on "] + "v7OL2k": ["Your Wallet is on "], + "wCtp6y": ["Your Wallet is on **ready ๐Ÿš€**"] } } diff --git a/packages/mask/shared-ui/locale/ja-JP.po b/packages/mask/shared-ui/locale/ja-JP.po index 5c070b9bbbe4..e833ac430b89 100644 --- a/packages/mask/shared-ui/locale/ja-JP.po +++ b/packages/mask/shared-ui/locale/ja-JP.po @@ -46,7 +46,11 @@ msgid "{0} Pending" msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx -msgid "{count, plural, one {# Wallet ๐Ÿš€} other {# Wallets ๐Ÿš€}}" +#~ msgid "{count, plural, one {# Wallet ๐Ÿš€} other {# Wallets ๐Ÿš€}}" +#~ msgstr "" + +#: dashboard/pages/SetupPersona/Onboarding/index.tsx +msgid "{count, plural, one {You have recovered **# Wallet ๐Ÿš€**} other {You have recovered **# Wallets ๐Ÿš€**}}" msgstr "" #: content-script/components/InjectedComponents/DecryptedPost/DecryptPostAwaiting.tsx @@ -132,8 +136,8 @@ msgstr "ใ‚ฝใƒผใ‚ทใƒฃใƒซใƒกใƒ‡ใ‚ฃใ‚ขใง Web3 dApps ใฎๆฉŸ่ƒฝใ‚’ๆŽข็ดขใ—ใฆใฟใฆ #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "accounts" -msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆ" +#~ msgid "accounts" +#~ msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆ" #: popups/pages/Wallet/components/WalletAssets/index.tsx msgid "Activities" @@ -789,7 +793,15 @@ msgstr "ใ‚ใชใŸใฎใƒšใƒซใ‚ฝใƒŠใ‚’ไฝœๆˆใ—ใฆๅง‹ใ‚ใพใ—ใ‚‡ใ†" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "Creating your " +#~ msgid "Creating your " +#~ msgstr "" + +#: dashboard/pages/SetupPersona/Onboarding/index.tsx +msgid "Creating your **identity**" +msgstr "" + +#: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx +msgid "Creating your **wallet**" msgstr "" #: popups/pages/Wallet/WalletSettings/ChangeCurrency.tsx @@ -830,8 +842,8 @@ msgstr "ใƒ€ใƒผใ‚ฏ" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "data" -msgstr "ใƒ‡ใƒผใ‚ฟ" +#~ msgid "data" +#~ msgstr "ใƒ‡ใƒผใ‚ฟ" #: popups/pages/Wallet/Interaction/TransactionRequest.tsx msgid "Data" @@ -1024,7 +1036,12 @@ msgstr "Mask: ไฝœๆˆ" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "Encrypting your " +#~ msgid "Encrypting your " +#~ msgstr "" + +#: dashboard/pages/SetupPersona/Onboarding/index.tsx +#: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx +msgid "Encrypting your **data**" msgstr "" #: content-script/components/CompositionDialog/EncryptionMethodSelector.tsx @@ -1269,7 +1286,12 @@ msgstr "ๆ–ฐใ—ใ„ใ‚ฆใ‚ฉใƒฌใƒƒใƒˆใ‚ขใƒ‰ใƒฌใ‚นใ‚’็”Ÿๆˆใ™ใ‚‹" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "Generating your " +#~ msgid "Generating your " +#~ msgstr "" + +#: dashboard/pages/SetupPersona/Onboarding/index.tsx +#: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx +msgid "Generating your **accounts**" msgstr "" #. placeholder {0}: contract?.symbol || '' @@ -1344,8 +1366,8 @@ msgid "I wrote down those words in the correct order" msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx -msgid "identity" -msgstr "ใ‚ขใ‚คใƒ‡ใƒณใƒ†ใ‚ฃใƒ†ใ‚ฃ" +#~ msgid "identity" +#~ msgstr "ใ‚ขใ‚คใƒ‡ใƒณใƒ†ใ‚ฃใƒ†ใ‚ฃ" #: dashboard/pages/SetupPersona/Mnemonic/ComponentToPrint.tsx msgid "Identity ID" @@ -2213,8 +2235,8 @@ msgstr "ๅ†ๅ…ฅๅŠ›" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "ready ๐Ÿš€" -msgstr "ๆบ–ๅ‚™ๅฎŒไบ†๐Ÿš€" +#~ msgid "ready ๐Ÿš€" +#~ msgstr "ๆบ–ๅ‚™ๅฎŒไบ†๐Ÿš€" #: content-script/components/CompositionDialog/useSubmit.ts msgid "realMaskNetwork" @@ -3038,8 +3060,8 @@ msgid "Waiting for {providerType}" msgstr "" #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "wallet" -msgstr "ใ‚ฆใ‚ฉใƒฌใƒƒใƒˆ" +#~ msgid "wallet" +#~ msgstr "ใ‚ฆใ‚ฉใƒฌใƒƒใƒˆ" #: popups/pages/Wallet/SwitchWallet/index.tsx #: popups/modals/WalletGroupModal/index.tsx @@ -3128,8 +3150,8 @@ msgstr "" #~ msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx -msgid "You have recovered " -msgstr "" +#~ msgid "You have recovered " +#~ msgstr "" #: popups/pages/Personas/ConnectWallet/index.tsx msgid "You have signed with your wallet." @@ -3162,7 +3184,11 @@ msgstr "" #~ msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx -msgid "Your Persona is on " +#~ msgid "Your Persona is on " +#~ msgstr "" + +#: dashboard/pages/SetupPersona/Onboarding/index.tsx +msgid "Your Persona is on **ready ๐Ÿš€**" msgstr "" #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx @@ -3170,5 +3196,9 @@ msgstr "" #~ msgstr "" #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "Your Wallet is on " +#~ msgid "Your Wallet is on " +#~ msgstr "" + +#: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx +msgid "Your Wallet is on **ready ๐Ÿš€**" msgstr "" diff --git a/packages/mask/shared-ui/locale/ko-KR.json b/packages/mask/shared-ui/locale/ko-KR.json index 261484d2096f..e3b5e3f70f08 100644 --- a/packages/mask/shared-ui/locale/ko-KR.json +++ b/packages/mask/shared-ui/locale/ko-KR.json @@ -7,6 +7,16 @@ "y6VCOb": [["0"], " ๋ถ„"], "MpnSqP": [["0"], " Pending"], "FKrzPv": [["count", "plural", { "one": ["#", " Wallet ๐Ÿš€"], "other": ["#", " Wallets ๐Ÿš€"] }]], + "5s6EhU": [ + [ + "count", + "plural", + { + "one": ["You have recovered **", "#", " Wallet ๐Ÿš€**"], + "other": ["You have recovered **", "#", " Wallets ๐Ÿš€**"] + } + ] + ], "yx3mb0": [ [ "decryptProgress", @@ -193,6 +203,8 @@ "PjBWOL": ["์ด์šฉํ•˜๊ธฐ ์ „์— ํŽ˜๋ฅด์†Œ๋‚˜ ํ•œ๋ฒˆ ๋งŒ๋“ค์–ด ๋ณด์„ธ์š”"], "WgawP2": ["Creating your"], "cEnmTp": ["Creating your "], + "L82H5Z": ["Creating your **identity**"], + "F7U8uz": ["Creating your **wallet**"], "Q2lUR2": ["ํ†ตํ™”"], "OgPkDe": ["ํ†ตํ™” ๊ธฐํ˜ธ(์˜ต์…˜)"], "oOQfsI": ["Current account is not the verifying account."], @@ -263,6 +275,7 @@ "w1ctdJ": ["Mask: ํŽธ์ง‘"], "MRIXE3": ["Encrypting your"], "zutir1": ["Encrypting your "], + "XB3tfc": ["Encrypting your **data**"], "Cz6Lx7": ["์•”ํ˜ธํ™” ๋ฐฉ์‹"], "N/fqDa": ["Ens ๋‚˜ ์ฃผ์†Œ(0x)"], "mPxxVq": ["๊ธฐ์Šค๋น„ ํ•œ๋„ ์ž…๋ ฅ"], @@ -320,6 +333,7 @@ "fUn3xA": ["์ƒˆ๋กœ์šด ์›”๋ › ์ฃผ์†Œ ์ƒ์„ฑ"], "tdZPpe": ["Generating your"], "CiU2m/": ["Generating your "], + "RL5m+x": ["Generating your **accounts**"], "2p7WMm": ["Give permission to access <0/> your ", ["0"], "?"], "76gPWk": ["์•Œ๊ฒ ์Šต๋‹ˆ๋‹ค"], "HqiAyF": ["Gwei"], @@ -811,7 +825,9 @@ ], "N19nSk": ["Your Persona is on"], "WC7pDz": ["Your Persona is on "], + "PDW/HG": ["Your Persona is on **ready ๐Ÿš€**"], "0kr+x1": ["Your Wallet is on"], - "v7OL2k": ["Your Wallet is on "] + "v7OL2k": ["Your Wallet is on "], + "wCtp6y": ["Your Wallet is on **ready ๐Ÿš€**"] } } diff --git a/packages/mask/shared-ui/locale/ko-KR.po b/packages/mask/shared-ui/locale/ko-KR.po index 9def83f290ec..d656cd2923a3 100644 --- a/packages/mask/shared-ui/locale/ko-KR.po +++ b/packages/mask/shared-ui/locale/ko-KR.po @@ -46,7 +46,11 @@ msgid "{0} Pending" msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx -msgid "{count, plural, one {# Wallet ๐Ÿš€} other {# Wallets ๐Ÿš€}}" +#~ msgid "{count, plural, one {# Wallet ๐Ÿš€} other {# Wallets ๐Ÿš€}}" +#~ msgstr "" + +#: dashboard/pages/SetupPersona/Onboarding/index.tsx +msgid "{count, plural, one {You have recovered **# Wallet ๐Ÿš€**} other {You have recovered **# Wallets ๐Ÿš€**}}" msgstr "" #: content-script/components/InjectedComponents/DecryptedPost/DecryptPostAwaiting.tsx @@ -132,8 +136,8 @@ msgstr "์†Œ๊ฒฐ ๋ฏธ๋””์–ด์—์„œ ์›น3 ์•ฑ์„ ํƒ์ƒ‰ํ•ด ๋ณด์„ธ์š”." #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "accounts" -msgstr "๊ณ„์ •" +#~ msgid "accounts" +#~ msgstr "๊ณ„์ •" #: popups/pages/Wallet/components/WalletAssets/index.tsx msgid "Activities" @@ -789,7 +793,15 @@ msgstr "์ด์šฉํ•˜๊ธฐ ์ „์— ํŽ˜๋ฅด์†Œ๋‚˜ ํ•œ๋ฒˆ ๋งŒ๋“ค์–ด ๋ณด์„ธ์š”" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "Creating your " +#~ msgid "Creating your " +#~ msgstr "" + +#: dashboard/pages/SetupPersona/Onboarding/index.tsx +msgid "Creating your **identity**" +msgstr "" + +#: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx +msgid "Creating your **wallet**" msgstr "" #: popups/pages/Wallet/WalletSettings/ChangeCurrency.tsx @@ -830,8 +842,8 @@ msgstr "๋‹คํฌ" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "data" -msgstr "๋ฐ์ดํ„ฐ" +#~ msgid "data" +#~ msgstr "๋ฐ์ดํ„ฐ" #: popups/pages/Wallet/Interaction/TransactionRequest.tsx msgid "Data" @@ -1024,7 +1036,12 @@ msgstr "Mask: ํŽธ์ง‘" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "Encrypting your " +#~ msgid "Encrypting your " +#~ msgstr "" + +#: dashboard/pages/SetupPersona/Onboarding/index.tsx +#: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx +msgid "Encrypting your **data**" msgstr "" #: content-script/components/CompositionDialog/EncryptionMethodSelector.tsx @@ -1269,7 +1286,12 @@ msgstr "์ƒˆ๋กœ์šด ์›”๋ › ์ฃผ์†Œ ์ƒ์„ฑ" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "Generating your " +#~ msgid "Generating your " +#~ msgstr "" + +#: dashboard/pages/SetupPersona/Onboarding/index.tsx +#: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx +msgid "Generating your **accounts**" msgstr "" #. placeholder {0}: contract?.symbol || '' @@ -1344,8 +1366,8 @@ msgid "I wrote down those words in the correct order" msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx -msgid "identity" -msgstr "์•„์ด๋ดํ‹ฐํ‹ฐ" +#~ msgid "identity" +#~ msgstr "์•„์ด๋ดํ‹ฐํ‹ฐ" #: dashboard/pages/SetupPersona/Mnemonic/ComponentToPrint.tsx msgid "Identity ID" @@ -2213,8 +2235,8 @@ msgstr "๋‹ค์‹œ ์ž…๋ ฅ" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "ready ๐Ÿš€" -msgstr "์ค€๋น„ ๐Ÿš€" +#~ msgid "ready ๐Ÿš€" +#~ msgstr "์ค€๋น„ ๐Ÿš€" #: content-script/components/CompositionDialog/useSubmit.ts msgid "realMaskNetwork" @@ -3038,8 +3060,8 @@ msgid "Waiting for {providerType}" msgstr "" #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "wallet" -msgstr "์›”๋ ›" +#~ msgid "wallet" +#~ msgstr "์›”๋ ›" #: popups/pages/Wallet/SwitchWallet/index.tsx #: popups/modals/WalletGroupModal/index.tsx @@ -3128,8 +3150,8 @@ msgstr "" #~ msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx -msgid "You have recovered " -msgstr "" +#~ msgid "You have recovered " +#~ msgstr "" #: popups/pages/Personas/ConnectWallet/index.tsx msgid "You have signed with your wallet." @@ -3162,7 +3184,11 @@ msgstr "" #~ msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx -msgid "Your Persona is on " +#~ msgid "Your Persona is on " +#~ msgstr "" + +#: dashboard/pages/SetupPersona/Onboarding/index.tsx +msgid "Your Persona is on **ready ๐Ÿš€**" msgstr "" #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx @@ -3170,5 +3196,9 @@ msgstr "" #~ msgstr "" #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "Your Wallet is on " +#~ msgid "Your Wallet is on " +#~ msgstr "" + +#: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx +msgid "Your Wallet is on **ready ๐Ÿš€**" msgstr "" diff --git a/packages/mask/shared-ui/locale/zh-CN.json b/packages/mask/shared-ui/locale/zh-CN.json index 7183669cfce1..54a9c106db42 100644 --- a/packages/mask/shared-ui/locale/zh-CN.json +++ b/packages/mask/shared-ui/locale/zh-CN.json @@ -7,6 +7,16 @@ "y6VCOb": [["0"], " ๅˆ†้’Ÿ"], "MpnSqP": [["0"], " Pending"], "FKrzPv": [["count", "plural", { "one": ["#", " Wallet ๐Ÿš€"], "other": ["#", " Wallets ๐Ÿš€"] }]], + "5s6EhU": [ + [ + "count", + "plural", + { + "one": ["You have recovered **", "#", " Wallet ๐Ÿš€**"], + "other": ["You have recovered **", "#", " Wallets ๐Ÿš€**"] + } + ] + ], "yx3mb0": [ [ "decryptProgress", @@ -191,6 +201,8 @@ "PjBWOL": ["ๅˆ›ๅปบๆ‚จ็š„่บซไปฝไปฅๅผ€ๅง‹"], "WgawP2": ["Creating your"], "cEnmTp": ["Creating your "], + "L82H5Z": ["Creating your **identity**"], + "F7U8uz": ["Creating your **wallet**"], "Q2lUR2": ["่ดงๅธ"], "OgPkDe": ["่ดงๅธ็ฌฆๅท(ๅฏ้€‰)"], "oOQfsI": ["Current account is not the verifying account."], @@ -261,6 +273,7 @@ "w1ctdJ": ["ๅŠ ๅฏ†่ดดๆ–‡"], "MRIXE3": ["Encrypting your"], "zutir1": ["Encrypting your "], + "XB3tfc": ["Encrypting your **data**"], "Cz6Lx7": ["ๅŠ ๅฏ†ๆ–นๅผ"], "N/fqDa": ["Ensๆˆ–ๅœฐๅ€(0x)"], "mPxxVq": ["่พ“ๅ…ฅGas Limit"], @@ -318,6 +331,7 @@ "fUn3xA": ["็”Ÿๆˆไธ€ไธชๆ–ฐ็š„้’ฑๅŒ…ๅœฐๅ€"], "tdZPpe": ["Generating your"], "CiU2m/": ["Generating your "], + "RL5m+x": ["Generating your **accounts**"], "2p7WMm": ["Give permission to access <0/> your ", ["0"], "?"], "76gPWk": ["ๅฅฝ็š„"], "HqiAyF": ["Gwei"], @@ -805,7 +819,9 @@ ], "N19nSk": ["Your Persona is on"], "WC7pDz": ["Your Persona is on "], + "PDW/HG": ["Your Persona is on **ready ๐Ÿš€**"], "0kr+x1": ["Your Wallet is on"], - "v7OL2k": ["Your Wallet is on "] + "v7OL2k": ["Your Wallet is on "], + "wCtp6y": ["Your Wallet is on **ready ๐Ÿš€**"] } } diff --git a/packages/mask/shared-ui/locale/zh-CN.po b/packages/mask/shared-ui/locale/zh-CN.po index 61b4a085ad81..9a5322158b46 100644 --- a/packages/mask/shared-ui/locale/zh-CN.po +++ b/packages/mask/shared-ui/locale/zh-CN.po @@ -46,7 +46,11 @@ msgid "{0} Pending" msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx -msgid "{count, plural, one {# Wallet ๐Ÿš€} other {# Wallets ๐Ÿš€}}" +#~ msgid "{count, plural, one {# Wallet ๐Ÿš€} other {# Wallets ๐Ÿš€}}" +#~ msgstr "" + +#: dashboard/pages/SetupPersona/Onboarding/index.tsx +msgid "{count, plural, one {You have recovered **# Wallet ๐Ÿš€**} other {You have recovered **# Wallets ๐Ÿš€**}}" msgstr "" #: content-script/components/InjectedComponents/DecryptedPost/DecryptPostAwaiting.tsx @@ -132,8 +136,8 @@ msgstr "ๅฐ่ฏ•ๆŽข็ดข็คพไบคๅช’ไฝ“ไธŠ็š„ Web3 dApps ๅŠŸ่ƒฝใ€‚" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "accounts" -msgstr "่ดฆๆˆท" +#~ msgid "accounts" +#~ msgstr "่ดฆๆˆท" #: popups/pages/Wallet/components/WalletAssets/index.tsx msgid "Activities" @@ -789,7 +793,15 @@ msgstr "ๅˆ›ๅปบๆ‚จ็š„่บซไปฝไปฅๅผ€ๅง‹" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "Creating your " +#~ msgid "Creating your " +#~ msgstr "" + +#: dashboard/pages/SetupPersona/Onboarding/index.tsx +msgid "Creating your **identity**" +msgstr "" + +#: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx +msgid "Creating your **wallet**" msgstr "" #: popups/pages/Wallet/WalletSettings/ChangeCurrency.tsx @@ -830,8 +842,8 @@ msgstr "ๆทฑ่‰ฒ" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "data" -msgstr "ๆ•ฐๆฎ" +#~ msgid "data" +#~ msgstr "ๆ•ฐๆฎ" #: popups/pages/Wallet/Interaction/TransactionRequest.tsx msgid "Data" @@ -1024,7 +1036,12 @@ msgstr "ๅŠ ๅฏ†่ดดๆ–‡" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "Encrypting your " +#~ msgid "Encrypting your " +#~ msgstr "" + +#: dashboard/pages/SetupPersona/Onboarding/index.tsx +#: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx +msgid "Encrypting your **data**" msgstr "" #: content-script/components/CompositionDialog/EncryptionMethodSelector.tsx @@ -1269,7 +1286,12 @@ msgstr "็”Ÿๆˆไธ€ไธชๆ–ฐ็š„้’ฑๅŒ…ๅœฐๅ€" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "Generating your " +#~ msgid "Generating your " +#~ msgstr "" + +#: dashboard/pages/SetupPersona/Onboarding/index.tsx +#: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx +msgid "Generating your **accounts**" msgstr "" #. placeholder {0}: contract?.symbol || '' @@ -1344,8 +1366,8 @@ msgid "I wrote down those words in the correct order" msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx -msgid "identity" -msgstr "่บซไปฝ" +#~ msgid "identity" +#~ msgstr "่บซไปฝ" #: dashboard/pages/SetupPersona/Mnemonic/ComponentToPrint.tsx msgid "Identity ID" @@ -2213,8 +2235,8 @@ msgstr "้‡ๆ–ฐ่พ“ๅ…ฅ" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "ready ๐Ÿš€" -msgstr "ๅ‡†ๅค‡๐Ÿš€" +#~ msgid "ready ๐Ÿš€" +#~ msgstr "ๅ‡†ๅค‡๐Ÿš€" #: content-script/components/CompositionDialog/useSubmit.ts msgid "realMaskNetwork" @@ -3038,8 +3060,8 @@ msgid "Waiting for {providerType}" msgstr "" #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "wallet" -msgstr "้’ฑๅŒ…" +#~ msgid "wallet" +#~ msgstr "้’ฑๅŒ…" #: popups/pages/Wallet/SwitchWallet/index.tsx #: popups/modals/WalletGroupModal/index.tsx @@ -3128,8 +3150,8 @@ msgstr "" #~ msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx -msgid "You have recovered " -msgstr "" +#~ msgid "You have recovered " +#~ msgstr "" #: popups/pages/Personas/ConnectWallet/index.tsx msgid "You have signed with your wallet." @@ -3162,7 +3184,11 @@ msgstr "" #~ msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx -msgid "Your Persona is on " +#~ msgid "Your Persona is on " +#~ msgstr "" + +#: dashboard/pages/SetupPersona/Onboarding/index.tsx +msgid "Your Persona is on **ready ๐Ÿš€**" msgstr "" #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx @@ -3170,5 +3196,9 @@ msgstr "" #~ msgstr "" #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "Your Wallet is on " +#~ msgid "Your Wallet is on " +#~ msgstr "" + +#: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx +msgid "Your Wallet is on **ready ๐Ÿš€**" msgstr "" diff --git a/packages/mask/shared-ui/locale/zh-TW.json b/packages/mask/shared-ui/locale/zh-TW.json index 0944ff73d188..1ae64c4c5845 100644 --- a/packages/mask/shared-ui/locale/zh-TW.json +++ b/packages/mask/shared-ui/locale/zh-TW.json @@ -7,6 +7,16 @@ "y6VCOb": [["0"], " ๅˆ†้’Ÿ"], "MpnSqP": [["0"], " Pending"], "FKrzPv": [["count", "plural", { "one": ["#", " Wallet ๐Ÿš€"], "other": ["#", " Wallets ๐Ÿš€"] }]], + "5s6EhU": [ + [ + "count", + "plural", + { + "one": ["You have recovered **", "#", " Wallet ๐Ÿš€**"], + "other": ["You have recovered **", "#", " Wallets ๐Ÿš€**"] + } + ] + ], "yx3mb0": [ [ "decryptProgress", @@ -191,6 +201,8 @@ "PjBWOL": ["ๅˆ›ๅปบๆ‚จ็š„่บซไปฝไปฅๅผ€ๅง‹"], "WgawP2": ["Creating your"], "cEnmTp": ["Creating your "], + "L82H5Z": ["Creating your **identity**"], + "F7U8uz": ["Creating your **wallet**"], "Q2lUR2": ["่ดงๅธ"], "OgPkDe": ["่ดงๅธ็ฌฆๅท(ๅฏ้€‰)"], "oOQfsI": ["Current account is not the verifying account."], @@ -261,6 +273,7 @@ "w1ctdJ": ["Mask: ็™ผ่กจ่ฒผๆ–‡"], "MRIXE3": ["Encrypting your"], "zutir1": ["Encrypting your "], + "XB3tfc": ["Encrypting your **data**"], "Cz6Lx7": ["ๅŠ ๅฏ†ๆ–นๅผ"], "N/fqDa": ["Ensๆˆ–ๅœฐๅ€(0x)"], "mPxxVq": ["่ผธๅ…ฅ็คฆๅทฅ่ฒปไธŠ้™"], @@ -318,6 +331,7 @@ "fUn3xA": ["็”Ÿๆˆไธ€ไธชๆ–ฐ็š„้’ฑๅŒ…ๅœฐๅ€"], "tdZPpe": ["Generating your"], "CiU2m/": ["Generating your "], + "RL5m+x": ["Generating your **accounts**"], "2p7WMm": ["Give permission to access <0/> your ", ["0"], "?"], "76gPWk": ["ๅฅฝ็š„"], "HqiAyF": ["Gwei"], @@ -805,7 +819,9 @@ ], "N19nSk": ["Your Persona is on"], "WC7pDz": ["Your Persona is on "], + "PDW/HG": ["Your Persona is on **ready ๐Ÿš€**"], "0kr+x1": ["Your Wallet is on"], - "v7OL2k": ["Your Wallet is on "] + "v7OL2k": ["Your Wallet is on "], + "wCtp6y": ["Your Wallet is on **ready ๐Ÿš€**"] } } diff --git a/packages/mask/shared-ui/locale/zh-TW.po b/packages/mask/shared-ui/locale/zh-TW.po index 8cbe7a8af2ed..864ce0d11b3c 100644 --- a/packages/mask/shared-ui/locale/zh-TW.po +++ b/packages/mask/shared-ui/locale/zh-TW.po @@ -46,7 +46,11 @@ msgid "{0} Pending" msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx -msgid "{count, plural, one {# Wallet ๐Ÿš€} other {# Wallets ๐Ÿš€}}" +#~ msgid "{count, plural, one {# Wallet ๐Ÿš€} other {# Wallets ๐Ÿš€}}" +#~ msgstr "" + +#: dashboard/pages/SetupPersona/Onboarding/index.tsx +msgid "{count, plural, one {You have recovered **# Wallet ๐Ÿš€**} other {You have recovered **# Wallets ๐Ÿš€**}}" msgstr "" #: content-script/components/InjectedComponents/DecryptedPost/DecryptPostAwaiting.tsx @@ -132,8 +136,8 @@ msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "accounts" -msgstr "" +#~ msgid "accounts" +#~ msgstr "" #: popups/pages/Wallet/components/WalletAssets/index.tsx msgid "Activities" @@ -789,7 +793,15 @@ msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "Creating your " +#~ msgid "Creating your " +#~ msgstr "" + +#: dashboard/pages/SetupPersona/Onboarding/index.tsx +msgid "Creating your **identity**" +msgstr "" + +#: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx +msgid "Creating your **wallet**" msgstr "" #: popups/pages/Wallet/WalletSettings/ChangeCurrency.tsx @@ -830,8 +842,8 @@ msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "data" -msgstr "" +#~ msgid "data" +#~ msgstr "" #: popups/pages/Wallet/Interaction/TransactionRequest.tsx msgid "Data" @@ -1024,7 +1036,12 @@ msgstr "Mask: ็™ผ่กจ่ฒผๆ–‡" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "Encrypting your " +#~ msgid "Encrypting your " +#~ msgstr "" + +#: dashboard/pages/SetupPersona/Onboarding/index.tsx +#: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx +msgid "Encrypting your **data**" msgstr "" #: content-script/components/CompositionDialog/EncryptionMethodSelector.tsx @@ -1269,7 +1286,12 @@ msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "Generating your " +#~ msgid "Generating your " +#~ msgstr "" + +#: dashboard/pages/SetupPersona/Onboarding/index.tsx +#: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx +msgid "Generating your **accounts**" msgstr "" #. placeholder {0}: contract?.symbol || '' @@ -1344,8 +1366,8 @@ msgid "I wrote down those words in the correct order" msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx -msgid "identity" -msgstr "" +#~ msgid "identity" +#~ msgstr "" #: dashboard/pages/SetupPersona/Mnemonic/ComponentToPrint.tsx msgid "Identity ID" @@ -2213,8 +2235,8 @@ msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "ready ๐Ÿš€" -msgstr "" +#~ msgid "ready ๐Ÿš€" +#~ msgstr "" #: content-script/components/CompositionDialog/useSubmit.ts msgid "realMaskNetwork" @@ -3038,8 +3060,8 @@ msgid "Waiting for {providerType}" msgstr "" #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "wallet" -msgstr "" +#~ msgid "wallet" +#~ msgstr "" #: popups/pages/Wallet/SwitchWallet/index.tsx #: popups/modals/WalletGroupModal/index.tsx @@ -3128,8 +3150,8 @@ msgstr "" #~ msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx -msgid "You have recovered " -msgstr "" +#~ msgid "You have recovered " +#~ msgstr "" #: popups/pages/Personas/ConnectWallet/index.tsx msgid "You have signed with your wallet." @@ -3162,7 +3184,11 @@ msgstr "" #~ msgstr "" #: dashboard/pages/SetupPersona/Onboarding/index.tsx -msgid "Your Persona is on " +#~ msgid "Your Persona is on " +#~ msgstr "" + +#: dashboard/pages/SetupPersona/Onboarding/index.tsx +msgid "Your Persona is on **ready ๐Ÿš€**" msgstr "" #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx @@ -3170,5 +3196,9 @@ msgstr "" #~ msgstr "" #: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx -msgid "Your Wallet is on " +#~ msgid "Your Wallet is on " +#~ msgstr "" + +#: dashboard/pages/CreateMaskWallet/Onboarding/index.tsx +msgid "Your Wallet is on **ready ๐Ÿš€**" msgstr ""