diff --git a/README.md b/README.md index c9d8d0d88d84..9b075e81eda5 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ For general introductions, see [Mask.io](https://mask.io). - [User Forum](https://github.com/DimensionDev/Maskbook/discussions) - [Report Bug][report-bug] -- [X (formerly Twitter)](https://x.com/realMaskNetwork) +- [X (formerly Twitter)](https://x.com/masknetwork) - [Facebook](https://www.facebook.com/masknetwork) - [Telegram](https://t.me/maskbook_group) - [Discord](https://discord.gg/4SVXvj7) diff --git a/packages/encryption/tests/twitter-encode-decode.ts b/packages/encryption/tests/twitter-encode-decode.ts index 9b9c1bbd6dda..b1690768ea58 100644 --- a/packages/encryption/tests/twitter-encode-decode.ts +++ b/packages/encryption/tests/twitter-encode-decode.ts @@ -1,7 +1,7 @@ import { test, expect } from 'vitest' import { TwitterDecoder } from '../src/index.js' test('Can decode Twitter text payload', () => { - const payload = `This tweet is encrypted with #mask_io (@realMaskNetwork). \u{1F4EA}\u{1F511} + const payload = `This tweet is encrypted with #mask_io (@masknetwork). \u{1F4EA}\u{1F511} Install https://mask.io/?PostData_v1=%204/4.mFXgbxPDrAD6PYRHWJW5IVlHObuFYs/LUyd08kkUkKimTx4opjHXjrgorrsyTPidL0lkeqdXnW3EzEacdlPJChko-Q5Wy113UMHYy1aV1Wheqwy/vM3PLMVaoKW/HyIL/SjJtim75bWMSHmj+vzMYwV59jLJqlTjJqhz5ObdZhAsWwRJGYIzEkg+.SKlWOvMpyF9T1jL2pr95kA_=.ehROC4d3QudYHEABcBTpSuxLvxM=._.Aq/bVWAKvodJuURGk3enjE1gUiu2SELM8IIKIlNGqOWM.1.dHdpdHRlci5jb20vd2lsbHlvbnRvdXI=%40 to decrypt it.` expect(TwitterDecoder(payload)).toMatchSnapshot('Twitter example') diff --git a/packages/mask/content-script/components/CompositionDialog/useSubmit.ts b/packages/mask/content-script/components/CompositionDialog/useSubmit.ts index 1c1da8d5bb79..a35575e47751 100644 --- a/packages/mask/content-script/components/CompositionDialog/useSubmit.ts +++ b/packages/mask/content-script/components/CompositionDialog/useSubmit.ts @@ -92,7 +92,6 @@ export function useSubmit(onClose: () => void, reason: 'timeline' | 'popup' | 'r function decorateEncryptedText(encrypted: string, _: I18nContext['_'], meta?: Meta): string | null { if (!meta) return null const hasOfficialAccount = Sniffings.is_twitter_page || Sniffings.is_facebook_page - const officialAccount = Sniffings.is_twitter_page ? _(msg`realMaskNetwork`) : _(msg`masknetwork`) const token = meta.has(RedPacketMetaKey) || meta.has(SolanaRedPacketMetaKey) ? _(msg`a token`) : _(msg`an NFT`) const sns = SOCIAL_MEDIA_NAME[activatedSiteAdaptorUI!.networkIdentifier] @@ -102,7 +101,7 @@ function decorateEncryptedText(encrypted: string, _: I18nContext['_'], meta?: Me const promote_red_packet2 = _(msg`🧧🧧🧧 Try sending Lucky Drop to your friends with Mask.io.`) return hasOfficialAccount ? promote_red_packet + - _(msg`Follow @${officialAccount} for Web3 updates and insights.`) + + _(msg`Follow @masknetwork for Web3 updates and insights.`) + ` \n\n${promote_red_packet2}\n\n${encrypted}` : `${promote_red_packet}\n\n${promote_red_packet2}\n\n${encrypted}` } else if (meta.has(`${PluginID.FileService}:3`)) { diff --git a/packages/mask/content-script/components/InjectedComponents/SetupGuide/index.tsx b/packages/mask/content-script/components/InjectedComponents/SetupGuide/index.tsx index 97843a959bdf..e20e90f57ec0 100644 --- a/packages/mask/content-script/components/InjectedComponents/SetupGuide/index.tsx +++ b/packages/mask/content-script/components/InjectedComponents/SetupGuide/index.tsx @@ -37,7 +37,7 @@ function SetupGuideUI() { msg`Hello Mask world. This is my first encrypted message. Install https://mask.io to send me encrypted post.`, ) if (networkIdentifier === EnhanceableSite.Twitter) { - content += _(msg`Follow @realMaskNetwork to explore Web3.`) + content += _(msg`Follow @masknetwork to explore Web3.`) } activatedSiteAdaptorUI!.automation.maskCompositionDialog?.open?.( diff --git a/packages/mask/content-script/site-adaptors/twitter.com/customization/i18n.ts b/packages/mask/content-script/site-adaptors/twitter.com/customization/i18n.ts index 1b456f80a609..93a9dc43986c 100644 --- a/packages/mask/content-script/site-adaptors/twitter.com/customization/i18n.ts +++ b/packages/mask/content-script/site-adaptors/twitter.com/customization/i18n.ts @@ -5,7 +5,7 @@ import { i18n } from '@lingui/core' export const i18NOverwriteTwitter: SiteAdaptorUI.Customization.I18NOverwrite = { postBoxEncryptedTextWrapper(encrypted: string) { return ( - i18n._(msg`This tweet is encrypted with #mask_io (@realMaskNetwork). 📪🔑`) + + i18n._(msg`This tweet is encrypted with #mask_io (@masknetwork). 📪🔑`) + '\n\n' + i18n._( msg`🎭 🎭🎭 Tired of plaintext? Try to send encrypted messages to your friends. Install ${encrypted} to send your first encrypted tweet.`, diff --git a/packages/mask/content-script/site-adaptors/twitter.com/injection/PostDialogHint.tsx b/packages/mask/content-script/site-adaptors/twitter.com/injection/PostDialogHint.tsx index f1739370a9b2..87b8d7a1570b 100644 --- a/packages/mask/content-script/site-adaptors/twitter.com/injection/PostDialogHint.tsx +++ b/packages/mask/content-script/site-adaptors/twitter.com/injection/PostDialogHint.tsx @@ -1,17 +1,17 @@ -import { useCallback } from 'react' -import { clamp } from 'lodash-es' import { MutationObserverWatcher, type LiveSelector } from '@dimensiondev/holoflows-kit' +import { useLingui } from '@lingui/react/macro' import { CrossIsolationMessages, sayHelloShowed } from '@masknet/shared-base' import { makeStyles, MaskColorVar } from '@masknet/theme' import { makeTypedMessageText } from '@masknet/typed-message' import { alpha } from '@mui/material' +import { clamp } from 'lodash-es' +import { useCallback } from 'react' import { PostDialogHint } from '../../../components/InjectedComponents/PostDialogHint.js' import { attachReactTreeWithContainer } from '../../../utils/shadow-root/renderInShadowRoot.js' import { startWatch, type WatchOptions } from '../../../utils/startWatch.js' import { twitterBase } from '../base.js' import { hasEditor, isCompose } from '../utils/postBox.js' import { isReplyPageSelector, postEditorInPopupSelector, searchReplyToolbarSelector } from '../utils/selector.js' -import { useLingui } from '@lingui/react/macro' const useStyles = makeStyles()((theme) => ({ iconButton: { @@ -88,7 +88,7 @@ function PostDialogHintAtTwitter({ reason }: { reason: 'timeline' | 'popup' }) { sayHelloShowed[twitterBase.networkIdentifier].value ? undefined : makeTypedMessageText( - t`Hello Mask world. This is my first encrypted message. Install https://mask.io to send me encrypted post. Follow @realMaskNetwork to explore Web3.`, + t`Hello Mask world. This is my first encrypted message. Install https://mask.io to send me encrypted post. Follow @masknetwork to explore Web3.`, ) CrossIsolationMessages.events.compositionDialogEvent.sendToLocal({ diff --git a/packages/mask/shared-ui/locale/en-US.json b/packages/mask/shared-ui/locale/en-US.json index 0da143543324..3f04d883940d 100644 --- a/packages/mask/shared-ui/locale/en-US.json +++ b/packages/mask/shared-ui/locale/en-US.json @@ -204,6 +204,7 @@ "Appw6V": ["No NFTs found."], "Aq+O0x": ["status"], "AsN7HV": ["The phone number is incorrect."], + "AuvDq6": ["This tweet is encrypted with #mask_io (@masknetwork). 📪🔑"], "AwQpq/": ["Click on the down-arrow to see the private key."], "AyLiVq": ["Scan QR code to receive payment"], "B6C0XJ": ["No Data"], @@ -434,6 +435,7 @@ "QrHM/A": ["Backup downloaded and merged to local successfully."], "QypSt2": ["Update X.com Permissions"], "R2K7XH": ["Account successfully connected to persona"], + "RCBmDP": ["Follow @masknetwork to explore Web3."], "RH8jSA": ["Merge data to local database"], "RL5m+x": ["Generating your **accounts**"], "ROsDRH": ["Tap to view the mnemonic words <0/> Make sure no one is looking at your screen"], @@ -678,6 +680,7 @@ "lWOC+h": ["Mask Network requires you to authorize the following websites before using it."], "llLBQ1": ["a token"], "loCUuu": ["Keystore"], + "lvL4x0": ["Follow @masknetwork for Web3 updates and insights."], "m16xKo": ["Add"], "m2OZMI": ["Max fee cannot be lower than max priority fee"], "m3XvO+": ["Imported Wallets"], @@ -848,6 +851,9 @@ "y5aRAa": ["Please enter cloud backup password to download file."], "y62Dys": ["Network fee"], "y6VCOb": [["0"], " Mins"], + "yC/GKd": [ + "Hello Mask world. This is my first encrypted message. Install https://mask.io to send me encrypted post. Follow @masknetwork to explore Web3." + ], "yD15Uj": ["Are you sure to remove this wallet?"], "yFpcbN": ["This request may be a phishing attach. I understand this and want to continue."], "yFrxQj": ["Mnemonic word"], diff --git a/packages/mask/shared-ui/locale/en-US.po b/packages/mask/shared-ui/locale/en-US.po index dd141063dd6c..93cc4ce2d79d 100644 --- a/packages/mask/shared-ui/locale/en-US.po +++ b/packages/mask/shared-ui/locale/en-US.po @@ -1250,13 +1250,21 @@ msgid "Floor price" msgstr "" #: content-script/components/CompositionDialog/useSubmit.ts -msgid "Follow @{officialAccount} for Web3 updates and insights." +#~ msgid "Follow @{officialAccount} for Web3 updates and insights." +#~ msgstr "" + +#: content-script/components/CompositionDialog/useSubmit.ts +msgid "Follow @masknetwork for Web3 updates and insights." msgstr "" #: content-script/components/InjectedComponents/SetupGuide/index.tsx -msgid "Follow @realMaskNetwork to explore Web3." +msgid "Follow @masknetwork to explore Web3." msgstr "" +#: content-script/components/InjectedComponents/SetupGuide/index.tsx +#~ msgid "Follow @realMaskNetwork to explore Web3." +#~ msgstr "" + #: popups/modals/SelectAppearanceModal/index.tsx #: popups/modals/SelectLanguageModal/index.tsx #: popups/pages/Settings/index.tsx @@ -1410,9 +1418,13 @@ msgid "Hello Mask world. This is my first encrypted message. Install https://mas msgstr "" #: content-script/site-adaptors/twitter.com/injection/PostDialogHint.tsx -msgid "Hello Mask world. This is my first encrypted message. Install https://mask.io to send me encrypted post. Follow @realMaskNetwork to explore Web3." +msgid "Hello Mask world. This is my first encrypted message. Install https://mask.io to send me encrypted post. Follow @masknetwork to explore Web3." msgstr "" +#: content-script/site-adaptors/twitter.com/injection/PostDialogHint.tsx +#~ msgid "Hello Mask world. This is my first encrypted message. Install https://mask.io to send me encrypted post. Follow @realMaskNetwork to explore Web3." +#~ msgstr "" + #: content-script/components/CompositionDialog/useSubmit.ts msgid "Hi friends, I just created {token} Lucky Drop. Download Mask.io to claim." msgstr "" @@ -1752,8 +1764,8 @@ msgid "Mask Network requires you to authorize the following websites before usin msgstr "" #: content-script/components/CompositionDialog/useSubmit.ts -msgid "masknetwork" -msgstr "" +#~ msgid "masknetwork" +#~ msgstr "" #: popups/components/UnlockERC20Token/index.tsx #: popups/pages/Wallet/Transfer/FungibleTokenSection.tsx @@ -2353,8 +2365,8 @@ msgstr "" #~ msgstr "" #: content-script/components/CompositionDialog/useSubmit.ts -msgid "realMaskNetwork" -msgstr "" +#~ msgid "realMaskNetwork" +#~ msgstr "" #: popups/pages/Wallet/components/ActionGroup/index.tsx #: popups/pages/Wallet/Receive/index.tsx @@ -2973,9 +2985,13 @@ msgid "This RPC URL is currently used by the {0} network" msgstr "" #: content-script/site-adaptors/twitter.com/customization/i18n.ts -msgid "This tweet is encrypted with #mask_io (@realMaskNetwork). 📪🔑" +msgid "This tweet is encrypted with #mask_io (@masknetwork). 📪🔑" msgstr "" +#: content-script/site-adaptors/twitter.com/customization/i18n.ts +#~ msgid "This tweet is encrypted with #mask_io (@realMaskNetwork). 📪🔑" +#~ msgstr "" + #. placeholder {0}: String(currentPersona?.nickname) #: popups/pages/Personas/ConnectWallet/index.tsx msgid "This wallet is connected to current persona {0}." diff --git a/packages/mask/shared-ui/locale/ja-JP.json b/packages/mask/shared-ui/locale/ja-JP.json index 48a0b7ec6b9d..57a841443032 100644 --- a/packages/mask/shared-ui/locale/ja-JP.json +++ b/packages/mask/shared-ui/locale/ja-JP.json @@ -208,6 +208,7 @@ "Appw6V": ["NFTが見つかりません。"], "Aq+O0x": ["ステータス:"], "AsN7HV": ["電話番号が間違っています。"], + "AuvDq6": ["This tweet is encrypted with #mask_io (@masknetwork). 📪🔑"], "AwQpq/": ["Click on the down-arrow to see the private key."], "AyLiVq": ["QRコードをスキャンして支払いを受け取る"], "B6C0XJ": ["データなし"], @@ -434,6 +435,7 @@ "QrHM/A": ["Backup downloaded and merged to local successfully."], "QypSt2": ["Update X.com Permissions"], "R2K7XH": ["ソーシャルメディアで Web3 dApps の機能を探索してみてください。"], + "RCBmDP": ["Follow @masknetwork to explore Web3."], "RH8jSA": ["ローカルデータベースにデータを統合"], "RL5m+x": ["Generating your **accounts**"], "ROsDRH": ["Tap to view the mnemonic words <0/> Make sure no one is looking at your screen"], @@ -678,6 +680,7 @@ "lWOC+h": ["Mask Network requires you to authorize the following websites before using it."], "llLBQ1": ["トークン"], "loCUuu": ["キーストア:"], + "lvL4x0": ["Follow @masknetwork for Web3 updates and insights."], "m16xKo": ["追加"], "m2OZMI": ["最大手数料は最大優先手数料より低くすることはできません"], "m3XvO+": ["インポートされたウォレット"], @@ -848,6 +851,9 @@ "y5aRAa": ["ファイルをダウンロードするには、クラウドバックアップパスワードを入力してください。"], "y62Dys": ["Network fee"], "y6VCOb": [["0"], " 分"], + "yC/GKd": [ + "Hello Mask world. This is my first encrypted message. Install https://mask.io to send me encrypted post. Follow @masknetwork to explore Web3." + ], "yD15Uj": ["このウォレットを削除してもよろしいですか?"], "yFpcbN": ["このリクエストはフィッシングの添付かもしれません。私はこれを理解し続けたいです。"], "yFrxQj": ["ニーモニック単語"], diff --git a/packages/mask/shared-ui/locale/ja-JP.po b/packages/mask/shared-ui/locale/ja-JP.po index a2004fa19e38..d917b078a320 100644 --- a/packages/mask/shared-ui/locale/ja-JP.po +++ b/packages/mask/shared-ui/locale/ja-JP.po @@ -1255,13 +1255,21 @@ msgid "Floor price" msgstr "フロア価格" #: content-script/components/CompositionDialog/useSubmit.ts -msgid "Follow @{officialAccount} for Web3 updates and insights." +#~ msgid "Follow @{officialAccount} for Web3 updates and insights." +#~ msgstr "" + +#: content-script/components/CompositionDialog/useSubmit.ts +msgid "Follow @masknetwork for Web3 updates and insights." msgstr "" #: content-script/components/InjectedComponents/SetupGuide/index.tsx -msgid "Follow @realMaskNetwork to explore Web3." +msgid "Follow @masknetwork to explore Web3." msgstr "" +#: content-script/components/InjectedComponents/SetupGuide/index.tsx +#~ msgid "Follow @realMaskNetwork to explore Web3." +#~ msgstr "" + #: popups/modals/SelectAppearanceModal/index.tsx #: popups/modals/SelectLanguageModal/index.tsx #: popups/pages/Settings/index.tsx @@ -1415,9 +1423,13 @@ msgid "Hello Mask world. This is my first encrypted message. Install https://mas msgstr "" #: content-script/site-adaptors/twitter.com/injection/PostDialogHint.tsx -msgid "Hello Mask world. This is my first encrypted message. Install https://mask.io to send me encrypted post. Follow @realMaskNetwork to explore Web3." +msgid "Hello Mask world. This is my first encrypted message. Install https://mask.io to send me encrypted post. Follow @masknetwork to explore Web3." msgstr "" +#: content-script/site-adaptors/twitter.com/injection/PostDialogHint.tsx +#~ msgid "Hello Mask world. This is my first encrypted message. Install https://mask.io to send me encrypted post. Follow @realMaskNetwork to explore Web3." +#~ msgstr "" + #: content-script/components/CompositionDialog/useSubmit.ts msgid "Hi friends, I just created {token} Lucky Drop. Download Mask.io to claim." msgstr "" @@ -1757,8 +1769,8 @@ msgid "Mask Network requires you to authorize the following websites before usin msgstr "" #: content-script/components/CompositionDialog/useSubmit.ts -msgid "masknetwork" -msgstr "" +#~ msgid "masknetwork" +#~ msgstr "" #: popups/components/UnlockERC20Token/index.tsx #: popups/pages/Wallet/Transfer/FungibleTokenSection.tsx @@ -2358,8 +2370,8 @@ msgstr "再入力" #~ msgstr "" #: content-script/components/CompositionDialog/useSubmit.ts -msgid "realMaskNetwork" -msgstr "" +#~ msgid "realMaskNetwork" +#~ msgstr "" #: popups/pages/Wallet/components/ActionGroup/index.tsx #: popups/pages/Wallet/Receive/index.tsx @@ -2978,9 +2990,13 @@ msgid "This RPC URL is currently used by the {0} network" msgstr "この RPC URL は現在 {0} ネットワークによって使用されています" #: content-script/site-adaptors/twitter.com/customization/i18n.ts -msgid "This tweet is encrypted with #mask_io (@realMaskNetwork). 📪🔑" +msgid "This tweet is encrypted with #mask_io (@masknetwork). 📪🔑" msgstr "" +#: content-script/site-adaptors/twitter.com/customization/i18n.ts +#~ msgid "This tweet is encrypted with #mask_io (@realMaskNetwork). 📪🔑" +#~ msgstr "" + #. placeholder {0}: String(currentPersona?.nickname) #: popups/pages/Personas/ConnectWallet/index.tsx msgid "This wallet is connected to current persona {0}." diff --git a/packages/mask/shared-ui/locale/ko-KR.json b/packages/mask/shared-ui/locale/ko-KR.json index b3bd9ddbf862..8fb487fbc088 100644 --- a/packages/mask/shared-ui/locale/ko-KR.json +++ b/packages/mask/shared-ui/locale/ko-KR.json @@ -204,6 +204,7 @@ "Appw6V": ["NFT가 없습니다."], "Aq+O0x": ["상태"], "AsN7HV": ["전화번호가 잘못되었습니다."], + "AuvDq6": ["This tweet is encrypted with #mask_io (@masknetwork). 📪🔑"], "AwQpq/": ["Click on the down-arrow to see the private key."], "AyLiVq": ["QR 코드 스캔하여 결제하기"], "B6C0XJ": ["데이터 없음"], @@ -430,6 +431,7 @@ "QrHM/A": ["Backup downloaded and merged to local successfully."], "QypSt2": ["Update X.com Permissions"], "R2K7XH": ["소결 미디어에서 웹3 앱을 탐색해 보세요."], + "RCBmDP": ["Follow @masknetwork to explore Web3."], "RH8jSA": ["데이터를 로컬 데이터베이스에 병합하기"], "RL5m+x": ["Generating your **accounts**"], "ROsDRH": ["Tap to view the mnemonic words <0/> Make sure no one is looking at your screen"], @@ -674,6 +676,7 @@ "lWOC+h": ["Mask Network requires you to authorize the following websites before using it."], "llLBQ1": ["a token"], "loCUuu": ["키스토어"], + "lvL4x0": ["Follow @masknetwork for Web3 updates and insights."], "m16xKo": ["추가"], "m2OZMI": ["최대 기스비는 최대 우선 가스비보다 낮을 수 없습니다"], "m3XvO+": ["월렛 불러오기"], @@ -844,6 +847,9 @@ "y5aRAa": ["파일을 다운로드하려면 클라우드 백업 암호를 입력하세요."], "y62Dys": ["Network fee"], "y6VCOb": [["0"], " 분"], + "yC/GKd": [ + "Hello Mask world. This is my first encrypted message. Install https://mask.io to send me encrypted post. Follow @masknetwork to explore Web3." + ], "yD15Uj": ["이 월렛을 삭제하시겠습니까?"], "yFpcbN": ["This request may be a phishing attach. I understand this and want to continue."], "yFrxQj": ["니모닉 단어"], diff --git a/packages/mask/shared-ui/locale/ko-KR.po b/packages/mask/shared-ui/locale/ko-KR.po index 4c506be730a4..a04e4e3a07f0 100644 --- a/packages/mask/shared-ui/locale/ko-KR.po +++ b/packages/mask/shared-ui/locale/ko-KR.po @@ -1255,13 +1255,21 @@ msgid "Floor price" msgstr "최저 가격" #: content-script/components/CompositionDialog/useSubmit.ts -msgid "Follow @{officialAccount} for Web3 updates and insights." +#~ msgid "Follow @{officialAccount} for Web3 updates and insights." +#~ msgstr "" + +#: content-script/components/CompositionDialog/useSubmit.ts +msgid "Follow @masknetwork for Web3 updates and insights." msgstr "" #: content-script/components/InjectedComponents/SetupGuide/index.tsx -msgid "Follow @realMaskNetwork to explore Web3." +msgid "Follow @masknetwork to explore Web3." msgstr "" +#: content-script/components/InjectedComponents/SetupGuide/index.tsx +#~ msgid "Follow @realMaskNetwork to explore Web3." +#~ msgstr "" + #: popups/modals/SelectAppearanceModal/index.tsx #: popups/modals/SelectLanguageModal/index.tsx #: popups/pages/Settings/index.tsx @@ -1415,9 +1423,13 @@ msgid "Hello Mask world. This is my first encrypted message. Install https://mas msgstr "" #: content-script/site-adaptors/twitter.com/injection/PostDialogHint.tsx -msgid "Hello Mask world. This is my first encrypted message. Install https://mask.io to send me encrypted post. Follow @realMaskNetwork to explore Web3." +msgid "Hello Mask world. This is my first encrypted message. Install https://mask.io to send me encrypted post. Follow @masknetwork to explore Web3." msgstr "" +#: content-script/site-adaptors/twitter.com/injection/PostDialogHint.tsx +#~ msgid "Hello Mask world. This is my first encrypted message. Install https://mask.io to send me encrypted post. Follow @realMaskNetwork to explore Web3." +#~ msgstr "" + #: content-script/components/CompositionDialog/useSubmit.ts msgid "Hi friends, I just created {token} Lucky Drop. Download Mask.io to claim." msgstr "" @@ -1757,8 +1769,8 @@ msgid "Mask Network requires you to authorize the following websites before usin msgstr "" #: content-script/components/CompositionDialog/useSubmit.ts -msgid "masknetwork" -msgstr "" +#~ msgid "masknetwork" +#~ msgstr "" #: popups/components/UnlockERC20Token/index.tsx #: popups/pages/Wallet/Transfer/FungibleTokenSection.tsx @@ -2358,8 +2370,8 @@ msgstr "다시 입력" #~ msgstr "" #: content-script/components/CompositionDialog/useSubmit.ts -msgid "realMaskNetwork" -msgstr "" +#~ msgid "realMaskNetwork" +#~ msgstr "" #: popups/pages/Wallet/components/ActionGroup/index.tsx #: popups/pages/Wallet/Receive/index.tsx @@ -2978,9 +2990,13 @@ msgid "This RPC URL is currently used by the {0} network" msgstr "이 RPC URL는 {0} 네트워크에서 사용되고 있습니다." #: content-script/site-adaptors/twitter.com/customization/i18n.ts -msgid "This tweet is encrypted with #mask_io (@realMaskNetwork). 📪🔑" +msgid "This tweet is encrypted with #mask_io (@masknetwork). 📪🔑" msgstr "" +#: content-script/site-adaptors/twitter.com/customization/i18n.ts +#~ msgid "This tweet is encrypted with #mask_io (@realMaskNetwork). 📪🔑" +#~ msgstr "" + #. placeholder {0}: String(currentPersona?.nickname) #: popups/pages/Personas/ConnectWallet/index.tsx msgid "This wallet is connected to current persona {0}." diff --git a/packages/mask/shared-ui/locale/zh-CN.json b/packages/mask/shared-ui/locale/zh-CN.json index 16667cbea4fc..7e491cfede63 100644 --- a/packages/mask/shared-ui/locale/zh-CN.json +++ b/packages/mask/shared-ui/locale/zh-CN.json @@ -200,6 +200,7 @@ "Appw6V": ["没有找到任何NFT。"], "Aq+O0x": ["状态"], "AsN7HV": ["此手机号码不正确。"], + "AuvDq6": ["This tweet is encrypted with #mask_io (@masknetwork). 📪🔑"], "AwQpq/": ["Click on the down-arrow to see the private key."], "AyLiVq": ["扫描二维码以接收付款"], "B6C0XJ": ["暂无数据"], @@ -426,6 +427,7 @@ "QrHM/A": ["Backup downloaded and merged to local successfully."], "QypSt2": ["Update X.com Permissions"], "R2K7XH": ["尝试探索社交媒体上的 Web3 dApps 功能。"], + "RCBmDP": ["Follow @masknetwork to explore Web3."], "RH8jSA": ["合并数据到本地数据库"], "RL5m+x": ["Generating your **accounts**"], "ROsDRH": ["Tap to view the mnemonic words <0/> Make sure no one is looking at your screen"], @@ -670,6 +672,7 @@ "lWOC+h": ["Mask Network requires you to authorize the following websites before using it."], "llLBQ1": ["代币"], "loCUuu": ["密钥库"], + "lvL4x0": ["Follow @masknetwork for Web3 updates and insights."], "m16xKo": ["添加"], "m2OZMI": ["Max fee 不能低于 Max priority fee"], "m3XvO+": ["导入钱包"], @@ -838,6 +841,9 @@ "y5aRAa": ["请输入云备份密码以下载文件。"], "y62Dys": ["Network fee"], "y6VCOb": [["0"], " 分钟"], + "yC/GKd": [ + "Hello Mask world. This is my first encrypted message. Install https://mask.io to send me encrypted post. Follow @masknetwork to explore Web3." + ], "yD15Uj": ["您确定要删除此钱包吗?"], "yFpcbN": ["This request may be a phishing attach. I understand this and want to continue."], "yFrxQj": ["助记词"], diff --git a/packages/mask/shared-ui/locale/zh-CN.po b/packages/mask/shared-ui/locale/zh-CN.po index dd572d65b157..592cf93d15f5 100644 --- a/packages/mask/shared-ui/locale/zh-CN.po +++ b/packages/mask/shared-ui/locale/zh-CN.po @@ -1255,13 +1255,21 @@ msgid "Floor price" msgstr "地板价" #: content-script/components/CompositionDialog/useSubmit.ts -msgid "Follow @{officialAccount} for Web3 updates and insights." +#~ msgid "Follow @{officialAccount} for Web3 updates and insights." +#~ msgstr "" + +#: content-script/components/CompositionDialog/useSubmit.ts +msgid "Follow @masknetwork for Web3 updates and insights." msgstr "" #: content-script/components/InjectedComponents/SetupGuide/index.tsx -msgid "Follow @realMaskNetwork to explore Web3." +msgid "Follow @masknetwork to explore Web3." msgstr "" +#: content-script/components/InjectedComponents/SetupGuide/index.tsx +#~ msgid "Follow @realMaskNetwork to explore Web3." +#~ msgstr "" + #: popups/modals/SelectAppearanceModal/index.tsx #: popups/modals/SelectLanguageModal/index.tsx #: popups/pages/Settings/index.tsx @@ -1415,9 +1423,13 @@ msgid "Hello Mask world. This is my first encrypted message. Install https://mas msgstr "" #: content-script/site-adaptors/twitter.com/injection/PostDialogHint.tsx -msgid "Hello Mask world. This is my first encrypted message. Install https://mask.io to send me encrypted post. Follow @realMaskNetwork to explore Web3." +msgid "Hello Mask world. This is my first encrypted message. Install https://mask.io to send me encrypted post. Follow @masknetwork to explore Web3." msgstr "" +#: content-script/site-adaptors/twitter.com/injection/PostDialogHint.tsx +#~ msgid "Hello Mask world. This is my first encrypted message. Install https://mask.io to send me encrypted post. Follow @realMaskNetwork to explore Web3." +#~ msgstr "" + #: content-script/components/CompositionDialog/useSubmit.ts msgid "Hi friends, I just created {token} Lucky Drop. Download Mask.io to claim." msgstr "" @@ -1757,8 +1769,8 @@ msgid "Mask Network requires you to authorize the following websites before usin msgstr "" #: content-script/components/CompositionDialog/useSubmit.ts -msgid "masknetwork" -msgstr "" +#~ msgid "masknetwork" +#~ msgstr "" #: popups/components/UnlockERC20Token/index.tsx #: popups/pages/Wallet/Transfer/FungibleTokenSection.tsx @@ -2358,8 +2370,8 @@ msgstr "重新输入" #~ msgstr "" #: content-script/components/CompositionDialog/useSubmit.ts -msgid "realMaskNetwork" -msgstr "" +#~ msgid "realMaskNetwork" +#~ msgstr "" #: popups/pages/Wallet/components/ActionGroup/index.tsx #: popups/pages/Wallet/Receive/index.tsx @@ -2978,9 +2990,13 @@ msgid "This RPC URL is currently used by the {0} network" msgstr "RPC URL已经被{0} 网络使用" #: content-script/site-adaptors/twitter.com/customization/i18n.ts -msgid "This tweet is encrypted with #mask_io (@realMaskNetwork). 📪🔑" +msgid "This tweet is encrypted with #mask_io (@masknetwork). 📪🔑" msgstr "" +#: content-script/site-adaptors/twitter.com/customization/i18n.ts +#~ msgid "This tweet is encrypted with #mask_io (@realMaskNetwork). 📪🔑" +#~ msgstr "" + #. placeholder {0}: String(currentPersona?.nickname) #: popups/pages/Personas/ConnectWallet/index.tsx msgid "This wallet is connected to current persona {0}." diff --git a/packages/mask/shared-ui/locale/zh-TW.json b/packages/mask/shared-ui/locale/zh-TW.json index 26c07dea7b35..41c87863516f 100644 --- a/packages/mask/shared-ui/locale/zh-TW.json +++ b/packages/mask/shared-ui/locale/zh-TW.json @@ -200,6 +200,7 @@ "Appw6V": ["没有找到任何NFT。"], "Aq+O0x": ["状态"], "AsN7HV": ["通訊號碼錯誤"], + "AuvDq6": ["This tweet is encrypted with #mask_io (@masknetwork). 📪🔑"], "AwQpq/": ["Click on the down-arrow to see the private key."], "AyLiVq": ["扫描二维码以接收付款"], "B6C0XJ": ["查無數據"], @@ -426,6 +427,7 @@ "QrHM/A": ["Backup downloaded and merged to local successfully."], "QypSt2": ["Update X.com Permissions"], "R2K7XH": ["尝试探索社交媒体上的 Web3 dApps 功能。"], + "RCBmDP": ["Follow @masknetwork to explore Web3."], "RH8jSA": ["合并数据到本地数据库"], "RL5m+x": ["Generating your **accounts**"], "ROsDRH": ["Tap to view the mnemonic words <0/> Make sure no one is looking at your screen"], @@ -670,6 +672,7 @@ "lWOC+h": ["Mask Network requires you to authorize the following websites before using it."], "llLBQ1": ["代币"], "loCUuu": ["密钥库"], + "lvL4x0": ["Follow @masknetwork for Web3 updates and insights."], "m16xKo": ["添加"], "m2OZMI": ["總交易費用不能低於優先交易費用"], "m3XvO+": ["导入钱包"], @@ -838,6 +841,9 @@ "y5aRAa": ["请输入云备份密码以下载文件。"], "y62Dys": ["Network fee"], "y6VCOb": [["0"], " 分钟"], + "yC/GKd": [ + "Hello Mask world. This is my first encrypted message. Install https://mask.io to send me encrypted post. Follow @masknetwork to explore Web3." + ], "yD15Uj": ["您确定要删除此钱包吗?"], "yFpcbN": ["This request may be a phishing attach. I understand this and want to continue."], "yFrxQj": ["助记词"], diff --git a/packages/mask/shared-ui/locale/zh-TW.po b/packages/mask/shared-ui/locale/zh-TW.po index 2cd7456bc79c..90d810249c07 100644 --- a/packages/mask/shared-ui/locale/zh-TW.po +++ b/packages/mask/shared-ui/locale/zh-TW.po @@ -1255,13 +1255,21 @@ msgid "Floor price" msgstr "" #: content-script/components/CompositionDialog/useSubmit.ts -msgid "Follow @{officialAccount} for Web3 updates and insights." +#~ msgid "Follow @{officialAccount} for Web3 updates and insights." +#~ msgstr "" + +#: content-script/components/CompositionDialog/useSubmit.ts +msgid "Follow @masknetwork for Web3 updates and insights." msgstr "" #: content-script/components/InjectedComponents/SetupGuide/index.tsx -msgid "Follow @realMaskNetwork to explore Web3." +msgid "Follow @masknetwork to explore Web3." msgstr "" +#: content-script/components/InjectedComponents/SetupGuide/index.tsx +#~ msgid "Follow @realMaskNetwork to explore Web3." +#~ msgstr "" + #: popups/modals/SelectAppearanceModal/index.tsx #: popups/modals/SelectLanguageModal/index.tsx #: popups/pages/Settings/index.tsx @@ -1415,9 +1423,13 @@ msgid "Hello Mask world. This is my first encrypted message. Install https://mas msgstr "" #: content-script/site-adaptors/twitter.com/injection/PostDialogHint.tsx -msgid "Hello Mask world. This is my first encrypted message. Install https://mask.io to send me encrypted post. Follow @realMaskNetwork to explore Web3." +msgid "Hello Mask world. This is my first encrypted message. Install https://mask.io to send me encrypted post. Follow @masknetwork to explore Web3." msgstr "" +#: content-script/site-adaptors/twitter.com/injection/PostDialogHint.tsx +#~ msgid "Hello Mask world. This is my first encrypted message. Install https://mask.io to send me encrypted post. Follow @realMaskNetwork to explore Web3." +#~ msgstr "" + #: content-script/components/CompositionDialog/useSubmit.ts msgid "Hi friends, I just created {token} Lucky Drop. Download Mask.io to claim." msgstr "" @@ -1757,8 +1769,8 @@ msgid "Mask Network requires you to authorize the following websites before usin msgstr "" #: content-script/components/CompositionDialog/useSubmit.ts -msgid "masknetwork" -msgstr "" +#~ msgid "masknetwork" +#~ msgstr "" #: popups/components/UnlockERC20Token/index.tsx #: popups/pages/Wallet/Transfer/FungibleTokenSection.tsx @@ -2358,8 +2370,8 @@ msgstr "" #~ msgstr "" #: content-script/components/CompositionDialog/useSubmit.ts -msgid "realMaskNetwork" -msgstr "" +#~ msgid "realMaskNetwork" +#~ msgstr "" #: popups/pages/Wallet/components/ActionGroup/index.tsx #: popups/pages/Wallet/Receive/index.tsx @@ -2978,9 +2990,13 @@ msgid "This RPC URL is currently used by the {0} network" msgstr "" #: content-script/site-adaptors/twitter.com/customization/i18n.ts -msgid "This tweet is encrypted with #mask_io (@realMaskNetwork). 📪🔑" +msgid "This tweet is encrypted with #mask_io (@masknetwork). 📪🔑" msgstr "" +#: content-script/site-adaptors/twitter.com/customization/i18n.ts +#~ msgid "This tweet is encrypted with #mask_io (@realMaskNetwork). 📪🔑" +#~ msgstr "" + #. placeholder {0}: String(currentPersona?.nickname) #: popups/pages/Personas/ConnectWallet/index.tsx msgid "This wallet is connected to current persona {0}." diff --git a/packages/plugins/ArtBlocks/src/SiteAdaptor/PurchaseDialog.tsx b/packages/plugins/ArtBlocks/src/SiteAdaptor/PurchaseDialog.tsx index ae5562b5be91..ffbf4cf68d48 100644 --- a/packages/plugins/ArtBlocks/src/SiteAdaptor/PurchaseDialog.tsx +++ b/packages/plugins/ArtBlocks/src/SiteAdaptor/PurchaseDialog.tsx @@ -72,7 +72,7 @@ export function PurchaseDialog(props: ActionBarProps) { const shareText = [ Sniffings.is_twitter_page || Sniffings.is_facebook_page ? - t`I just purchased a beautiful piece of art from '${project.name}' collection for ${price.toFixed()} ${token?.symbol || ''}. Install @realMaskNetwork to get yours.` + t`I just purchased a beautiful piece of art from '${project.name}' collection for ${price.toFixed()} ${token?.symbol || ''}. Install @masknetwork to get yours.` : t`I just purchased a beautiful piece of art from '${project.name}' collection for ${price.toFixed()} ${token?.symbol || ''}. Welcome to join.`, '#mask_io #artblocks_io #nft', postLink, diff --git a/packages/plugins/ArtBlocks/src/locale/en-US.json b/packages/plugins/ArtBlocks/src/locale/en-US.json index 18f08857b822..7576687dfcd7 100644 --- a/packages/plugins/ArtBlocks/src/locale/en-US.json +++ b/packages/plugins/ArtBlocks/src/locale/en-US.json @@ -41,6 +41,13 @@ "qqWcBV": ["Completed"], "rcNnsQ": ["Price:"], "uqF4Nm": ["Blockchain:"], + "xTQLHC": [ + "I just purchased a beautiful piece of art from {0} collection for ", + ["1"], + " ", + ["2"], + ". Install @masknetwork to get yours." + ], "xjhtsV": ["Chain"], "ywDBfs": ["Something went wrong!"], "z/3+av": ["License:"], diff --git a/packages/plugins/ArtBlocks/src/locale/en-US.po b/packages/plugins/ArtBlocks/src/locale/en-US.po index 1bcb6b56340f..6e647bb72af7 100644 --- a/packages/plugins/ArtBlocks/src/locale/en-US.po +++ b/packages/plugins/ArtBlocks/src/locale/en-US.po @@ -60,9 +60,13 @@ msgstr "" #. placeholder {1}: price.toFixed() #. placeholder {2}: token?.symbol || '' #: src/SiteAdaptor/PurchaseDialog.tsx -msgid "I just purchased a beautiful piece of art from '{0}' collection for {1} {2}. Install @realMaskNetwork to get yours." +msgid "I just purchased a beautiful piece of art from '{0}' collection for {1} {2}. Install @masknetwork to get yours." msgstr "" +#: src/SiteAdaptor/PurchaseDialog.tsx +#~ msgid "I just purchased a beautiful piece of art from '{0}' collection for {1} {2}. Install @realMaskNetwork to get yours." +#~ msgstr "" + #. placeholder {0}: project.name #. placeholder {1}: price.toFixed() #. placeholder {2}: token?.symbol || '' diff --git a/packages/plugins/ArtBlocks/src/locale/ja-JP.json b/packages/plugins/ArtBlocks/src/locale/ja-JP.json index 19863a13a54a..e168267bb396 100644 --- a/packages/plugins/ArtBlocks/src/locale/ja-JP.json +++ b/packages/plugins/ArtBlocks/src/locale/ja-JP.json @@ -36,6 +36,13 @@ "qqWcBV": ["完了しました"], "rcNnsQ": ["価格:"], "uqF4Nm": ["ブロックチェーン:"], + "xTQLHC": [ + "I just purchased a beautiful piece of art from {0} collection for ", + ["1"], + " ", + ["2"], + ". Install @masknetwork to get yours." + ], "xjhtsV": ["チェーン"], "ywDBfs": ["問題が発生しました!"], "z/3+av": ["ライセンス:"], diff --git a/packages/plugins/ArtBlocks/src/locale/ja-JP.po b/packages/plugins/ArtBlocks/src/locale/ja-JP.po index e157ae6527c4..76f8d8c0530c 100644 --- a/packages/plugins/ArtBlocks/src/locale/ja-JP.po +++ b/packages/plugins/ArtBlocks/src/locale/ja-JP.po @@ -65,8 +65,12 @@ msgstr "詳細" #. placeholder {1}: price.toFixed() #. placeholder {2}: token?.symbol || '' #: src/SiteAdaptor/PurchaseDialog.tsx -msgid "I just purchased a beautiful piece of art from '{0}' collection for {1} {2}. Install @realMaskNetwork to get yours." -msgstr "{0} {1} {2}のコレクションから美しいアート作品を購入しました。@realMaskNetworkをインストールすると、あなたも手に入ります。" +msgid "I just purchased a beautiful piece of art from '{0}' collection for {1} {2}. Install @masknetwork to get yours." +msgstr "" + +#: src/SiteAdaptor/PurchaseDialog.tsx +#~ msgid "I just purchased a beautiful piece of art from '{0}' collection for {1} {2}. Install @realMaskNetwork to get yours." +#~ msgstr "{0} {1} {2}のコレクションから美しいアート作品を購入しました。@realMaskNetworkをインストールすると、あなたも手に入ります。" #. placeholder {0}: project.name #. placeholder {1}: price.toFixed() diff --git a/packages/plugins/ArtBlocks/src/locale/ko-KR.json b/packages/plugins/ArtBlocks/src/locale/ko-KR.json index 6e951050b79a..7c469daeaa8f 100644 --- a/packages/plugins/ArtBlocks/src/locale/ko-KR.json +++ b/packages/plugins/ArtBlocks/src/locale/ko-KR.json @@ -35,6 +35,13 @@ "qqWcBV": ["완료됨"], "rcNnsQ": ["가격:"], "uqF4Nm": ["불록체인:"], + "xTQLHC": [ + "I just purchased a beautiful piece of art from {0} collection for ", + ["1"], + " ", + ["2"], + ". Install @masknetwork to get yours." + ], "xjhtsV": ["체인"], "ywDBfs": ["오류가 발생합니다."], "z/3+av": ["라이센스:"], diff --git a/packages/plugins/ArtBlocks/src/locale/ko-KR.po b/packages/plugins/ArtBlocks/src/locale/ko-KR.po index f5f752206e53..d9ede5e2190f 100644 --- a/packages/plugins/ArtBlocks/src/locale/ko-KR.po +++ b/packages/plugins/ArtBlocks/src/locale/ko-KR.po @@ -65,8 +65,12 @@ msgstr "디테일" #. placeholder {1}: price.toFixed() #. placeholder {2}: token?.symbol || '' #: src/SiteAdaptor/PurchaseDialog.tsx -msgid "I just purchased a beautiful piece of art from '{0}' collection for {1} {2}. Install @realMaskNetwork to get yours." -msgstr "'{0}' 컬렉션에서 {1} {2} 가격로 아름다운 예술품을 구매했습니다. @realMaskNetwork 설치하여 NFT를 구매해 보세요." +msgid "I just purchased a beautiful piece of art from '{0}' collection for {1} {2}. Install @masknetwork to get yours." +msgstr "" + +#: src/SiteAdaptor/PurchaseDialog.tsx +#~ msgid "I just purchased a beautiful piece of art from '{0}' collection for {1} {2}. Install @realMaskNetwork to get yours." +#~ msgstr "'{0}' 컬렉션에서 {1} {2} 가격로 아름다운 예술품을 구매했습니다. @realMaskNetwork 설치하여 NFT를 구매해 보세요." #. placeholder {0}: project.name #. placeholder {1}: price.toFixed() diff --git a/packages/plugins/ArtBlocks/src/locale/zh-CN.json b/packages/plugins/ArtBlocks/src/locale/zh-CN.json index 4aab13d18011..2449894b4f1e 100644 --- a/packages/plugins/ArtBlocks/src/locale/zh-CN.json +++ b/packages/plugins/ArtBlocks/src/locale/zh-CN.json @@ -35,6 +35,13 @@ "qqWcBV": ["已完成"], "rcNnsQ": ["价格:"], "uqF4Nm": ["区块链:"], + "xTQLHC": [ + "I just purchased a beautiful piece of art from {0} collection for ", + ["1"], + " ", + ["2"], + ". Install @masknetwork to get yours." + ], "xjhtsV": ["链"], "ywDBfs": ["发生未知错误。"], "z/3+av": ["许可证:"], diff --git a/packages/plugins/ArtBlocks/src/locale/zh-CN.po b/packages/plugins/ArtBlocks/src/locale/zh-CN.po index a1dc2fcba93f..95eea1eeb514 100644 --- a/packages/plugins/ArtBlocks/src/locale/zh-CN.po +++ b/packages/plugins/ArtBlocks/src/locale/zh-CN.po @@ -65,8 +65,12 @@ msgstr "详情" #. placeholder {1}: price.toFixed() #. placeholder {2}: token?.symbol || '' #: src/SiteAdaptor/PurchaseDialog.tsx -msgid "I just purchased a beautiful piece of art from '{0}' collection for {1} {2}. Install @realMaskNetwork to get yours." -msgstr "我刚刚从{0} 使用{1} {2} 购买了一件美丽的艺术品。安装@realMaskNetwork来获取您的作品。" +msgid "I just purchased a beautiful piece of art from '{0}' collection for {1} {2}. Install @masknetwork to get yours." +msgstr "" + +#: src/SiteAdaptor/PurchaseDialog.tsx +#~ msgid "I just purchased a beautiful piece of art from '{0}' collection for {1} {2}. Install @realMaskNetwork to get yours." +#~ msgstr "我刚刚从{0} 使用{1} {2} 购买了一件美丽的艺术品。安装@realMaskNetwork来获取您的作品。" #. placeholder {0}: project.name #. placeholder {1}: price.toFixed() diff --git a/packages/plugins/ArtBlocks/src/locale/zh-TW.json b/packages/plugins/ArtBlocks/src/locale/zh-TW.json index 4aab13d18011..2449894b4f1e 100644 --- a/packages/plugins/ArtBlocks/src/locale/zh-TW.json +++ b/packages/plugins/ArtBlocks/src/locale/zh-TW.json @@ -35,6 +35,13 @@ "qqWcBV": ["已完成"], "rcNnsQ": ["价格:"], "uqF4Nm": ["区块链:"], + "xTQLHC": [ + "I just purchased a beautiful piece of art from {0} collection for ", + ["1"], + " ", + ["2"], + ". Install @masknetwork to get yours." + ], "xjhtsV": ["链"], "ywDBfs": ["发生未知错误。"], "z/3+av": ["许可证:"], diff --git a/packages/plugins/ArtBlocks/src/locale/zh-TW.po b/packages/plugins/ArtBlocks/src/locale/zh-TW.po index cf50bddbf236..af06931bae52 100644 --- a/packages/plugins/ArtBlocks/src/locale/zh-TW.po +++ b/packages/plugins/ArtBlocks/src/locale/zh-TW.po @@ -65,9 +65,13 @@ msgstr "" #. placeholder {1}: price.toFixed() #. placeholder {2}: token?.symbol || '' #: src/SiteAdaptor/PurchaseDialog.tsx -msgid "I just purchased a beautiful piece of art from '{0}' collection for {1} {2}. Install @realMaskNetwork to get yours." +msgid "I just purchased a beautiful piece of art from '{0}' collection for {1} {2}. Install @masknetwork to get yours." msgstr "" +#: src/SiteAdaptor/PurchaseDialog.tsx +#~ msgid "I just purchased a beautiful piece of art from '{0}' collection for {1} {2}. Install @realMaskNetwork to get yours." +#~ msgstr "" + #. placeholder {0}: project.name #. placeholder {1}: price.toFixed() #. placeholder {2}: token?.symbol || '' diff --git a/packages/plugins/Claim/src/SiteAdaptor/components/ClaimSuccessDialog/index.tsx b/packages/plugins/Claim/src/SiteAdaptor/components/ClaimSuccessDialog/index.tsx index 42e6d290301e..fa2da7f6245d 100644 --- a/packages/plugins/Claim/src/SiteAdaptor/components/ClaimSuccessDialog/index.tsx +++ b/packages/plugins/Claim/src/SiteAdaptor/components/ClaimSuccessDialog/index.tsx @@ -79,7 +79,7 @@ export function ClaimSuccessDialog({ open, onClose, amount, tokenAddress }: Prop if (!amount || !tokenDetail) return share?.( - t`I just claimed airdrop with ${amount} ${tokenDetail.symbol} on Mask Network extension. Follow @realMaskNetwork to check if you are eligible to claim. + t`I just claimed airdrop with ${amount} ${tokenDetail.symbol} on Mask Network extension. Follow @masknetwork to check if you are eligible to claim. Install https://mask.io to explore more airdrop activities.`, ) }, [amount, tokenDetail?.symbol]) diff --git a/packages/plugins/Claim/src/locale/en-US.json b/packages/plugins/Claim/src/locale/en-US.json index 2467d800a669..df7cdb3f1ba8 100644 --- a/packages/plugins/Claim/src/locale/en-US.json +++ b/packages/plugins/Claim/src/locale/en-US.json @@ -22,6 +22,13 @@ "gWcGl/": ["Your wallet cancelled the transaction."], "hTbvD9": ["Sorry, you are not eligible to claim $ARB in this campaign."], "hom7qf": ["Claim"], + "kHDhjV": [ + "I just claimed airdrop with ", + ["amount"], + " ", + ["0"], + " on Mask Network extension. Follow @masknetwork to check if you are eligible to claim.\n Install https://mask.io to explore more airdrop activities." + ], "neBDpj": ["Please connect wallet"], "oN9XHJ": ["Start Time: <0>", ["0"], ""], "rJZPaP": ["No activities found."], diff --git a/packages/plugins/Claim/src/locale/en-US.po b/packages/plugins/Claim/src/locale/en-US.po index b1292f13e667..aab7e139f393 100644 --- a/packages/plugins/Claim/src/locale/en-US.po +++ b/packages/plugins/Claim/src/locale/en-US.po @@ -62,10 +62,16 @@ msgstr "" #. placeholder {0}: tokenDetail.symbol #: src/SiteAdaptor/components/ClaimSuccessDialog/index.tsx msgid "" -"I just claimed airdrop with {amount} {0} on Mask Network extension. Follow @realMaskNetwork to check if you are eligible to claim.\n" +"I just claimed airdrop with {amount} {0} on Mask Network extension. Follow @masknetwork to check if you are eligible to claim.\n" " Install https://mask.io to explore more airdrop activities." msgstr "" +#: src/SiteAdaptor/components/ClaimSuccessDialog/index.tsx +#~ msgid "" +#~ "I just claimed airdrop with {amount} {0} on Mask Network extension. Follow @realMaskNetwork to check if you are eligible to claim.\n" +#~ " Install https://mask.io to explore more airdrop activities." +#~ msgstr "" + #: src/SiteAdaptor/components/ClaimSuccessDialog/index.tsx #~ msgid "" #~ "I just claimed airdrop with {amount} {0} on Mask Network extension. Follow @realMaskNetwork to check if you are eligible to claim. \n" diff --git a/packages/plugins/Claim/src/locale/ja-JP.json b/packages/plugins/Claim/src/locale/ja-JP.json index 9ab655d42825..6e192244b00f 100644 --- a/packages/plugins/Claim/src/locale/ja-JP.json +++ b/packages/plugins/Claim/src/locale/ja-JP.json @@ -22,6 +22,13 @@ "gWcGl/": ["あなたのウォレットは取引をキャンセルしました。"], "hTbvD9": ["申し訳ありませんが、このキャンペーンで $ARB を請求する資格がありません。"], "hom7qf": ["受取る"], + "kHDhjV": [ + "I just claimed airdrop with ", + ["amount"], + " ", + ["0"], + " on Mask Network extension. Follow @masknetwork to check if you are eligible to claim.\n Install https://mask.io to explore more airdrop activities." + ], "neBDpj": ["ウォレットに接続してください"], "oN9XHJ": ["Start Time: <0>", ["0"], ""], "rJZPaP": ["アクティブティーはありません。"], diff --git a/packages/plugins/Claim/src/locale/ja-JP.po b/packages/plugins/Claim/src/locale/ja-JP.po index a58b02c59170..56e3dfeaacaf 100644 --- a/packages/plugins/Claim/src/locale/ja-JP.po +++ b/packages/plugins/Claim/src/locale/ja-JP.po @@ -67,10 +67,16 @@ msgstr "期限切れ" #. placeholder {0}: tokenDetail.symbol #: src/SiteAdaptor/components/ClaimSuccessDialog/index.tsx msgid "" -"I just claimed airdrop with {amount} {0} on Mask Network extension. Follow @realMaskNetwork to check if you are eligible to claim.\n" +"I just claimed airdrop with {amount} {0} on Mask Network extension. Follow @masknetwork to check if you are eligible to claim.\n" " Install https://mask.io to explore more airdrop activities." msgstr "" +#: src/SiteAdaptor/components/ClaimSuccessDialog/index.tsx +#~ msgid "" +#~ "I just claimed airdrop with {amount} {0} on Mask Network extension. Follow @realMaskNetwork to check if you are eligible to claim.\n" +#~ " Install https://mask.io to explore more airdrop activities." +#~ msgstr "" + #: src/SiteAdaptor/components/ClaimSuccessDialog/index.tsx #~ msgid "" #~ "I just claimed airdrop with {amount} {0} on Mask Network extension. Follow @realMaskNetwork to check if you are eligible to claim. \n" diff --git a/packages/plugins/Claim/src/locale/ko-KR.json b/packages/plugins/Claim/src/locale/ko-KR.json index b9ff611eb628..540ddbb448dd 100644 --- a/packages/plugins/Claim/src/locale/ko-KR.json +++ b/packages/plugins/Claim/src/locale/ko-KR.json @@ -22,6 +22,13 @@ "gWcGl/": ["월렛은 이미 해당 거래를 취소했습니다."], "hTbvD9": ["$ARB 수령하는 자격이 없습니다."], "hom7qf": ["수령"], + "kHDhjV": [ + "I just claimed airdrop with ", + ["amount"], + " ", + ["0"], + " on Mask Network extension. Follow @masknetwork to check if you are eligible to claim.\n Install https://mask.io to explore more airdrop activities." + ], "neBDpj": ["월렛을 연결하세요"], "oN9XHJ": ["Start Time: <0>", ["0"], ""], "rJZPaP": ["사용 활동을 찾을 수 없습니다"], diff --git a/packages/plugins/Claim/src/locale/ko-KR.po b/packages/plugins/Claim/src/locale/ko-KR.po index 95691ad60e92..fe06d7d68311 100644 --- a/packages/plugins/Claim/src/locale/ko-KR.po +++ b/packages/plugins/Claim/src/locale/ko-KR.po @@ -67,10 +67,16 @@ msgstr "만료됨" #. placeholder {0}: tokenDetail.symbol #: src/SiteAdaptor/components/ClaimSuccessDialog/index.tsx msgid "" -"I just claimed airdrop with {amount} {0} on Mask Network extension. Follow @realMaskNetwork to check if you are eligible to claim.\n" +"I just claimed airdrop with {amount} {0} on Mask Network extension. Follow @masknetwork to check if you are eligible to claim.\n" " Install https://mask.io to explore more airdrop activities." msgstr "" +#: src/SiteAdaptor/components/ClaimSuccessDialog/index.tsx +#~ msgid "" +#~ "I just claimed airdrop with {amount} {0} on Mask Network extension. Follow @realMaskNetwork to check if you are eligible to claim.\n" +#~ " Install https://mask.io to explore more airdrop activities." +#~ msgstr "" + #: src/SiteAdaptor/components/ClaimSuccessDialog/index.tsx #~ msgid "" #~ "I just claimed airdrop with {amount} {0} on Mask Network extension. Follow @realMaskNetwork to check if you are eligible to claim. \n" diff --git a/packages/plugins/Claim/src/locale/zh-CN.json b/packages/plugins/Claim/src/locale/zh-CN.json index 8b4a662750b8..471961db4f02 100644 --- a/packages/plugins/Claim/src/locale/zh-CN.json +++ b/packages/plugins/Claim/src/locale/zh-CN.json @@ -20,6 +20,13 @@ "gWcGl/": ["你的钱包已取消交易。"], "hTbvD9": ["对不起,您没有资格在此活动中领取 $ARB。"], "hom7qf": ["领取"], + "kHDhjV": [ + "I just claimed airdrop with ", + ["amount"], + " ", + ["0"], + " on Mask Network extension. Follow @masknetwork to check if you are eligible to claim.\n Install https://mask.io to explore more airdrop activities." + ], "neBDpj": ["请连接钱包"], "oN9XHJ": ["Start Time: <0>", ["0"], ""], "rJZPaP": ["未找到活动"], diff --git a/packages/plugins/Claim/src/locale/zh-CN.po b/packages/plugins/Claim/src/locale/zh-CN.po index a5c9d3e13efb..a21d9134f7cf 100644 --- a/packages/plugins/Claim/src/locale/zh-CN.po +++ b/packages/plugins/Claim/src/locale/zh-CN.po @@ -67,10 +67,16 @@ msgstr "已过期" #. placeholder {0}: tokenDetail.symbol #: src/SiteAdaptor/components/ClaimSuccessDialog/index.tsx msgid "" -"I just claimed airdrop with {amount} {0} on Mask Network extension. Follow @realMaskNetwork to check if you are eligible to claim.\n" +"I just claimed airdrop with {amount} {0} on Mask Network extension. Follow @masknetwork to check if you are eligible to claim.\n" " Install https://mask.io to explore more airdrop activities." msgstr "" +#: src/SiteAdaptor/components/ClaimSuccessDialog/index.tsx +#~ msgid "" +#~ "I just claimed airdrop with {amount} {0} on Mask Network extension. Follow @realMaskNetwork to check if you are eligible to claim.\n" +#~ " Install https://mask.io to explore more airdrop activities." +#~ msgstr "" + #: src/SiteAdaptor/components/ClaimSuccessDialog/index.tsx #~ msgid "" #~ "I just claimed airdrop with {amount} {0} on Mask Network extension. Follow @realMaskNetwork to check if you are eligible to claim. \n" diff --git a/packages/plugins/Claim/src/locale/zh-TW.json b/packages/plugins/Claim/src/locale/zh-TW.json index 8b4a662750b8..471961db4f02 100644 --- a/packages/plugins/Claim/src/locale/zh-TW.json +++ b/packages/plugins/Claim/src/locale/zh-TW.json @@ -20,6 +20,13 @@ "gWcGl/": ["你的钱包已取消交易。"], "hTbvD9": ["对不起,您没有资格在此活动中领取 $ARB。"], "hom7qf": ["领取"], + "kHDhjV": [ + "I just claimed airdrop with ", + ["amount"], + " ", + ["0"], + " on Mask Network extension. Follow @masknetwork to check if you are eligible to claim.\n Install https://mask.io to explore more airdrop activities." + ], "neBDpj": ["请连接钱包"], "oN9XHJ": ["Start Time: <0>", ["0"], ""], "rJZPaP": ["未找到活动"], diff --git a/packages/plugins/Claim/src/locale/zh-TW.po b/packages/plugins/Claim/src/locale/zh-TW.po index 7a5a1ba3b1b4..a186ed79c2ba 100644 --- a/packages/plugins/Claim/src/locale/zh-TW.po +++ b/packages/plugins/Claim/src/locale/zh-TW.po @@ -67,10 +67,16 @@ msgstr "" #. placeholder {0}: tokenDetail.symbol #: src/SiteAdaptor/components/ClaimSuccessDialog/index.tsx msgid "" -"I just claimed airdrop with {amount} {0} on Mask Network extension. Follow @realMaskNetwork to check if you are eligible to claim.\n" +"I just claimed airdrop with {amount} {0} on Mask Network extension. Follow @masknetwork to check if you are eligible to claim.\n" " Install https://mask.io to explore more airdrop activities." msgstr "" +#: src/SiteAdaptor/components/ClaimSuccessDialog/index.tsx +#~ msgid "" +#~ "I just claimed airdrop with {amount} {0} on Mask Network extension. Follow @realMaskNetwork to check if you are eligible to claim.\n" +#~ " Install https://mask.io to explore more airdrop activities." +#~ msgstr "" + #: src/SiteAdaptor/components/ClaimSuccessDialog/index.tsx #~ msgid "" #~ "I just claimed airdrop with {amount} {0} on Mask Network extension. Follow @realMaskNetwork to check if you are eligible to claim. \n" diff --git a/packages/plugins/RedPacket/src/SiteAdaptor/NftRedPacket/index.tsx b/packages/plugins/RedPacket/src/SiteAdaptor/NftRedPacket/index.tsx index 2f7f52100e45..06030c00d19b 100644 --- a/packages/plugins/RedPacket/src/SiteAdaptor/NftRedPacket/index.tsx +++ b/packages/plugins/RedPacket/src/SiteAdaptor/NftRedPacket/index.tsx @@ -86,11 +86,7 @@ export function NftRedPacket({ payload, currentPluginID }: NftRedPacketProps) { const account_promote = useMemo(() => { const isOnTwitter = Sniffings.is_twitter_page const isOnFacebook = Sniffings.is_facebook_page - return ( - isOnTwitter ? _(msg`Follow @realMaskNetwork (mask.io) to claim NFT lucky drops.`) - : isOnFacebook ? _(msg`Follow @masknetwork (mask.io) to claim NFT lucky drops.`) - : '' - ) + return isOnTwitter || isOnFacebook ? _(msg`Follow @masknetwork (mask.io) to claim NFT lucky drops.`) : '' }, [_]) // #endregion diff --git a/packages/plugins/RedPacket/src/SiteAdaptor/RedPacket/index.tsx b/packages/plugins/RedPacket/src/SiteAdaptor/RedPacket/index.tsx index 2f8ab3329bae..737d9be30e1d 100644 --- a/packages/plugins/RedPacket/src/SiteAdaptor/RedPacket/index.tsx +++ b/packages/plugins/RedPacket/src/SiteAdaptor/RedPacket/index.tsx @@ -123,7 +123,7 @@ export const RedPacket = memo(function RedPacket({ payload, currentPluginID }: R sender: payload.sender.name.replace(/^@/u, ''), payload: link!, network: network?.name ?? 'Mainnet', - account: isOnTwitter ? 'realMaskNetwork' : 'masknetwork', + account: 'masknetwork', interpolation: { escapeValue: false }, } const claimed = _( diff --git a/packages/plugins/RedPacket/src/SiteAdaptor/SolanaRedPacket/SolanaRedPacketCard.tsx b/packages/plugins/RedPacket/src/SiteAdaptor/SolanaRedPacket/SolanaRedPacketCard.tsx index c6d98f97251b..89ce19e9a892 100644 --- a/packages/plugins/RedPacket/src/SiteAdaptor/SolanaRedPacket/SolanaRedPacketCard.tsx +++ b/packages/plugins/RedPacket/src/SiteAdaptor/SolanaRedPacket/SolanaRedPacketCard.tsx @@ -93,7 +93,7 @@ export const SolanaRedPacketCard = memo(function SolanaRedPacketCard({ const isOnTwitter = Sniffings.is_twitter_page const isOnFacebook = Sniffings.is_facebook_page const sender = payload.sender.name.replace(/^@/u, '') - const account = isOnTwitter ? 'realMaskNetwork' : 'masknetwork' + const account = 'masknetwork' const claimed = _(msg`I just claimed a lucky drop from @${sender} on Solana.`) return isOnTwitter || isOnFacebook ? diff --git a/packages/plugins/RedPacket/src/SiteAdaptor/views/NftRedPacketConfirm.tsx b/packages/plugins/RedPacket/src/SiteAdaptor/views/NftRedPacketConfirm.tsx index c1762385ac12..00b490477b10 100644 --- a/packages/plugins/RedPacket/src/SiteAdaptor/views/NftRedPacketConfirm.tsx +++ b/packages/plugins/RedPacket/src/SiteAdaptor/views/NftRedPacketConfirm.tsx @@ -161,7 +161,7 @@ export function NftRedPacketConfirm() { const compositionType = useContext(CompositionTypeContext) const themeId = theme?.tid - const post = t`Hi friends, I just created an NFT Lucky Drop on Twitter through Mask Network extension. Feel free to claim and share. Follow @realMaskNetwork for Web3 updates and insights. + const post = t`Hi friends, I just created an NFT Lucky Drop on Twitter through Mask Network extension. Feel free to claim and share. Follow @masknetwork for Web3 updates and insights. 🧧🧧🧧 Try sending Lucky Drop to your friends with Mask.io.` const onSendPost = useCallback( diff --git a/packages/plugins/RedPacket/src/locale/en-US.json b/packages/plugins/RedPacket/src/locale/en-US.json index ed385ea6367d..8b475fae60c5 100644 --- a/packages/plugins/RedPacket/src/locale/en-US.json +++ b/packages/plugins/RedPacket/src/locale/en-US.json @@ -271,6 +271,9 @@ "ihTzdK": [ "By clicking \"Next\", you acknowledge the risk associated with decentralized networks and beta products." ], + "jJPsrT": [ + "Hi friends, I just created an NFT Lucky Drop on Twitter through Mask Network extension. Feel free to claim and share. Follow @masknetwork for Web3 updates and insights.\n\n🧧🧧🧧 Try sending Lucky Drop to your friends with Mask.io." + ], "jbu3VI": ["I just claimed an NFT lucky drop from @", ["sender"], " on ", ["networkName"], " network."], "jeLXsu": ["Who can claim"], "jpctdh": ["View"], diff --git a/packages/plugins/RedPacket/src/locale/en-US.po b/packages/plugins/RedPacket/src/locale/en-US.po index 324ee04178f7..1b414b869a65 100644 --- a/packages/plugins/RedPacket/src/locale/en-US.po +++ b/packages/plugins/RedPacket/src/locale/en-US.po @@ -437,8 +437,8 @@ msgid "Follow @masknetwork (mask.io) to claim NFT lucky drops." msgstr "" #: src/SiteAdaptor/NftRedPacket/index.tsx -msgid "Follow @realMaskNetwork (mask.io) to claim NFT lucky drops." -msgstr "" +#~ msgid "Follow @realMaskNetwork (mask.io) to claim NFT lucky drops." +#~ msgstr "" #: src/SiteAdaptor/Requirements/index.tsx #~ msgid "Follow <0/> on {platform}" @@ -486,11 +486,18 @@ msgstr "" #: src/SiteAdaptor/views/NftRedPacketConfirm.tsx msgid "" -"Hi friends, I just created an NFT Lucky Drop on Twitter through Mask Network extension. Feel free to claim and share. Follow @realMaskNetwork for Web3 updates and insights.\n" +"Hi friends, I just created an NFT Lucky Drop on Twitter through Mask Network extension. Feel free to claim and share. Follow @masknetwork for Web3 updates and insights.\n" "\n" "🧧🧧🧧 Try sending Lucky Drop to your friends with Mask.io." msgstr "" +#: src/SiteAdaptor/views/NftRedPacketConfirm.tsx +#~ msgid "" +#~ "Hi friends, I just created an NFT Lucky Drop on Twitter through Mask Network extension. Feel free to claim and share. Follow @realMaskNetwork for Web3 updates and insights.\n" +#~ "\n" +#~ "🧧🧧🧧 Try sending Lucky Drop to your friends with Mask.io." +#~ msgstr "" + #: src/SiteAdaptor/RedPacket/index.tsx #~ msgid "Hi friends, I just found a lucky drop sent by @{0} on {1} network." #~ msgstr "" diff --git a/packages/plugins/RedPacket/src/locale/ja-JP.json b/packages/plugins/RedPacket/src/locale/ja-JP.json index 62b68bba49ec..a7badf447f9a 100644 --- a/packages/plugins/RedPacket/src/locale/ja-JP.json +++ b/packages/plugins/RedPacket/src/locale/ja-JP.json @@ -272,6 +272,9 @@ "ihTzdK": [ "By clicking \"Next\", you acknowledge the risk associated with decentralized networks and beta products." ], + "jJPsrT": [ + "Hi friends, I just created an NFT Lucky Drop on Twitter through Mask Network extension. Feel free to claim and share. Follow @masknetwork for Web3 updates and insights.\n\n🧧🧧🧧 Try sending Lucky Drop to your friends with Mask.io." + ], "jbu3VI": ["I just claimed an NFT lucky drop from @", ["sender"], " on ", ["networkName"], " network."], "jeLXsu": ["Who can claim"], "jpctdh": ["表示"], diff --git a/packages/plugins/RedPacket/src/locale/ja-JP.po b/packages/plugins/RedPacket/src/locale/ja-JP.po index 7f0df0ea47e1..9e6eef642112 100644 --- a/packages/plugins/RedPacket/src/locale/ja-JP.po +++ b/packages/plugins/RedPacket/src/locale/ja-JP.po @@ -442,8 +442,8 @@ msgid "Follow @masknetwork (mask.io) to claim NFT lucky drops." msgstr "" #: src/SiteAdaptor/NftRedPacket/index.tsx -msgid "Follow @realMaskNetwork (mask.io) to claim NFT lucky drops." -msgstr "" +#~ msgid "Follow @realMaskNetwork (mask.io) to claim NFT lucky drops." +#~ msgstr "" #: src/SiteAdaptor/Requirements/index.tsx #~ msgid "Follow <0/> on {platform}" @@ -491,11 +491,18 @@ msgstr "{0} にラッキードロップスマートコントラクトへのア #: src/SiteAdaptor/views/NftRedPacketConfirm.tsx msgid "" -"Hi friends, I just created an NFT Lucky Drop on Twitter through Mask Network extension. Feel free to claim and share. Follow @realMaskNetwork for Web3 updates and insights.\n" +"Hi friends, I just created an NFT Lucky Drop on Twitter through Mask Network extension. Feel free to claim and share. Follow @masknetwork for Web3 updates and insights.\n" "\n" "🧧🧧🧧 Try sending Lucky Drop to your friends with Mask.io." msgstr "" +#: src/SiteAdaptor/views/NftRedPacketConfirm.tsx +#~ msgid "" +#~ "Hi friends, I just created an NFT Lucky Drop on Twitter through Mask Network extension. Feel free to claim and share. Follow @realMaskNetwork for Web3 updates and insights.\n" +#~ "\n" +#~ "🧧🧧🧧 Try sending Lucky Drop to your friends with Mask.io." +#~ msgstr "" + #: src/SiteAdaptor/RedPacket/index.tsx #~ msgid "Hi friends, I just found a lucky drop sent by @{0} on {1} network." #~ msgstr "" diff --git a/packages/plugins/RedPacket/src/locale/ko-KR.json b/packages/plugins/RedPacket/src/locale/ko-KR.json index cc0ef1eafadf..7eb95aad1c00 100644 --- a/packages/plugins/RedPacket/src/locale/ko-KR.json +++ b/packages/plugins/RedPacket/src/locale/ko-KR.json @@ -271,6 +271,9 @@ "ihTzdK": [ "By clicking \"Next\", you acknowledge the risk associated with decentralized networks and beta products." ], + "jJPsrT": [ + "Hi friends, I just created an NFT Lucky Drop on Twitter through Mask Network extension. Feel free to claim and share. Follow @masknetwork for Web3 updates and insights.\n\n🧧🧧🧧 Try sending Lucky Drop to your friends with Mask.io." + ], "jbu3VI": ["I just claimed an NFT lucky drop from @", ["sender"], " on ", ["networkName"], " network."], "jeLXsu": ["Who can claim"], "jpctdh": ["View"], diff --git a/packages/plugins/RedPacket/src/locale/ko-KR.po b/packages/plugins/RedPacket/src/locale/ko-KR.po index 032801170f4c..a67546b921a8 100644 --- a/packages/plugins/RedPacket/src/locale/ko-KR.po +++ b/packages/plugins/RedPacket/src/locale/ko-KR.po @@ -442,8 +442,8 @@ msgid "Follow @masknetwork (mask.io) to claim NFT lucky drops." msgstr "" #: src/SiteAdaptor/NftRedPacket/index.tsx -msgid "Follow @realMaskNetwork (mask.io) to claim NFT lucky drops." -msgstr "" +#~ msgid "Follow @realMaskNetwork (mask.io) to claim NFT lucky drops." +#~ msgstr "" #: src/SiteAdaptor/Requirements/index.tsx #~ msgid "Follow <0/> on {platform}" @@ -491,11 +491,18 @@ msgstr "" #: src/SiteAdaptor/views/NftRedPacketConfirm.tsx msgid "" -"Hi friends, I just created an NFT Lucky Drop on Twitter through Mask Network extension. Feel free to claim and share. Follow @realMaskNetwork for Web3 updates and insights.\n" +"Hi friends, I just created an NFT Lucky Drop on Twitter through Mask Network extension. Feel free to claim and share. Follow @masknetwork for Web3 updates and insights.\n" "\n" "🧧🧧🧧 Try sending Lucky Drop to your friends with Mask.io." msgstr "" +#: src/SiteAdaptor/views/NftRedPacketConfirm.tsx +#~ msgid "" +#~ "Hi friends, I just created an NFT Lucky Drop on Twitter through Mask Network extension. Feel free to claim and share. Follow @realMaskNetwork for Web3 updates and insights.\n" +#~ "\n" +#~ "🧧🧧🧧 Try sending Lucky Drop to your friends with Mask.io." +#~ msgstr "" + #: src/SiteAdaptor/RedPacket/index.tsx #~ msgid "Hi friends, I just found a lucky drop sent by @{0} on {1} network." #~ msgstr "" diff --git a/packages/plugins/RedPacket/src/locale/zh-CN.json b/packages/plugins/RedPacket/src/locale/zh-CN.json index e56721379633..5debb74ecb3b 100644 --- a/packages/plugins/RedPacket/src/locale/zh-CN.json +++ b/packages/plugins/RedPacket/src/locale/zh-CN.json @@ -271,6 +271,9 @@ "ihTzdK": [ "By clicking \"Next\", you acknowledge the risk associated with decentralized networks and beta products." ], + "jJPsrT": [ + "Hi friends, I just created an NFT Lucky Drop on Twitter through Mask Network extension. Feel free to claim and share. Follow @masknetwork for Web3 updates and insights.\n\n🧧🧧🧧 Try sending Lucky Drop to your friends with Mask.io." + ], "jbu3VI": ["I just claimed an NFT lucky drop from @", ["sender"], " on ", ["networkName"], " network."], "jeLXsu": ["Who can claim"], "jpctdh": ["View"], diff --git a/packages/plugins/RedPacket/src/locale/zh-CN.po b/packages/plugins/RedPacket/src/locale/zh-CN.po index a2f2b2500b8b..59496413a2a1 100644 --- a/packages/plugins/RedPacket/src/locale/zh-CN.po +++ b/packages/plugins/RedPacket/src/locale/zh-CN.po @@ -442,8 +442,8 @@ msgid "Follow @masknetwork (mask.io) to claim NFT lucky drops." msgstr "" #: src/SiteAdaptor/NftRedPacket/index.tsx -msgid "Follow @realMaskNetwork (mask.io) to claim NFT lucky drops." -msgstr "" +#~ msgid "Follow @realMaskNetwork (mask.io) to claim NFT lucky drops." +#~ msgstr "" #: src/SiteAdaptor/Requirements/index.tsx #~ msgid "Follow <0/> on {platform}" @@ -491,11 +491,18 @@ msgstr "" #: src/SiteAdaptor/views/NftRedPacketConfirm.tsx msgid "" -"Hi friends, I just created an NFT Lucky Drop on Twitter through Mask Network extension. Feel free to claim and share. Follow @realMaskNetwork for Web3 updates and insights.\n" +"Hi friends, I just created an NFT Lucky Drop on Twitter through Mask Network extension. Feel free to claim and share. Follow @masknetwork for Web3 updates and insights.\n" "\n" "🧧🧧🧧 Try sending Lucky Drop to your friends with Mask.io." msgstr "" +#: src/SiteAdaptor/views/NftRedPacketConfirm.tsx +#~ msgid "" +#~ "Hi friends, I just created an NFT Lucky Drop on Twitter through Mask Network extension. Feel free to claim and share. Follow @realMaskNetwork for Web3 updates and insights.\n" +#~ "\n" +#~ "🧧🧧🧧 Try sending Lucky Drop to your friends with Mask.io." +#~ msgstr "" + #: src/SiteAdaptor/RedPacket/index.tsx #~ msgid "Hi friends, I just found a lucky drop sent by @{0} on {1} network." #~ msgstr "" diff --git a/packages/plugins/RedPacket/src/locale/zh-TW.json b/packages/plugins/RedPacket/src/locale/zh-TW.json index 39c7263d6de9..6b6629fae873 100644 --- a/packages/plugins/RedPacket/src/locale/zh-TW.json +++ b/packages/plugins/RedPacket/src/locale/zh-TW.json @@ -271,6 +271,9 @@ "ihTzdK": [ "By clicking \"Next\", you acknowledge the risk associated with decentralized networks and beta products." ], + "jJPsrT": [ + "Hi friends, I just created an NFT Lucky Drop on Twitter through Mask Network extension. Feel free to claim and share. Follow @masknetwork for Web3 updates and insights.\n\n🧧🧧🧧 Try sending Lucky Drop to your friends with Mask.io." + ], "jbu3VI": ["I just claimed an NFT lucky drop from @", ["sender"], " on ", ["networkName"], " network."], "jeLXsu": ["Who can claim"], "jpctdh": ["View"], diff --git a/packages/plugins/RedPacket/src/locale/zh-TW.po b/packages/plugins/RedPacket/src/locale/zh-TW.po index a07ff55c5bda..dd3903a633d5 100644 --- a/packages/plugins/RedPacket/src/locale/zh-TW.po +++ b/packages/plugins/RedPacket/src/locale/zh-TW.po @@ -442,8 +442,8 @@ msgid "Follow @masknetwork (mask.io) to claim NFT lucky drops." msgstr "" #: src/SiteAdaptor/NftRedPacket/index.tsx -msgid "Follow @realMaskNetwork (mask.io) to claim NFT lucky drops." -msgstr "" +#~ msgid "Follow @realMaskNetwork (mask.io) to claim NFT lucky drops." +#~ msgstr "" #: src/SiteAdaptor/Requirements/index.tsx #~ msgid "Follow <0/> on {platform}" @@ -491,11 +491,18 @@ msgstr "" #: src/SiteAdaptor/views/NftRedPacketConfirm.tsx msgid "" -"Hi friends, I just created an NFT Lucky Drop on Twitter through Mask Network extension. Feel free to claim and share. Follow @realMaskNetwork for Web3 updates and insights.\n" +"Hi friends, I just created an NFT Lucky Drop on Twitter through Mask Network extension. Feel free to claim and share. Follow @masknetwork for Web3 updates and insights.\n" "\n" "🧧🧧🧧 Try sending Lucky Drop to your friends with Mask.io." msgstr "" +#: src/SiteAdaptor/views/NftRedPacketConfirm.tsx +#~ msgid "" +#~ "Hi friends, I just created an NFT Lucky Drop on Twitter through Mask Network extension. Feel free to claim and share. Follow @realMaskNetwork for Web3 updates and insights.\n" +#~ "\n" +#~ "🧧🧧🧧 Try sending Lucky Drop to your friends with Mask.io." +#~ msgstr "" + #: src/SiteAdaptor/RedPacket/index.tsx #~ msgid "Hi friends, I just found a lucky drop sent by @{0} on {1} network." #~ msgstr "" diff --git a/packages/plugins/Savings/src/SiteAdaptor/SavingsForm.tsx b/packages/plugins/Savings/src/SiteAdaptor/SavingsForm.tsx index 123787b311aa..1f5566e66495 100644 --- a/packages/plugins/Savings/src/SiteAdaptor/SavingsForm.tsx +++ b/packages/plugins/Savings/src/SiteAdaptor/SavingsForm.tsx @@ -14,7 +14,7 @@ import { WalletConnectedBoundary, useOpenShareTxDialog, } from '@masknet/shared' -import { NetworkPluginID, Sniffings } from '@masknet/shared-base' +import { NetworkPluginID } from '@masknet/shared-base' import { LoadingBase, makeStyles } from '@masknet/theme' import AaveLendingPoolAddressProviderABI from '@masknet/web3-contracts/abis/AaveLendingPoolAddressProvider.json' with { type: 'json' } import type { AaveLendingPoolAddressProvider } from '@masknet/web3-contracts/types/AaveLendingPoolAddressProvider.js' @@ -187,7 +187,7 @@ export function SavingsFormDialog({ chainId, protocol, tab, onClose }: SavingsFo amount: inputAmount, symbol: protocol.bareToken.symbol, chain: EVMChainResolver.chainName(chainId) ?? '', - account: Sniffings.is_twitter_page ? 'realMaskNetwork' : 'masknetwork', + account: 'masknetwork', } const shareText = isDeposit ? diff --git a/packages/plugins/Savings/src/SiteAdaptor/WithdrawForm.tsx b/packages/plugins/Savings/src/SiteAdaptor/WithdrawForm.tsx index 65fb749028cc..7b00b71ff420 100644 --- a/packages/plugins/Savings/src/SiteAdaptor/WithdrawForm.tsx +++ b/packages/plugins/Savings/src/SiteAdaptor/WithdrawForm.tsx @@ -25,7 +25,7 @@ import { type ChainId, formatAmount } from '@masknet/web3-shared-evm' import { add } from 'lodash-es' import { useAsyncFn } from 'react-use' import { share } from '@masknet/plugin-infra/content-script/context' -import { type NetworkPluginID, Sniffings } from '@masknet/shared-base' +import { type NetworkPluginID } from '@masknet/shared-base' import { queryClient } from '@masknet/shared-base-ui' import { Trans, useLingui } from '@lingui/react/macro' @@ -113,7 +113,7 @@ export function WithdrawFormDialog({ onClose, chainId, protocol }: WithdrawFormD amount, symbol: protocol.bareToken.symbol, chain: EVMChainResolver.chainName(chainId) ?? '', - account: Sniffings.is_twitter_page ? 'realMaskNetwork' : 'masknetwork', + account: 'masknetwork', } await openShareTxDialog({ diff --git a/packages/plugins/SmartPay/src/SiteAdaptor/components/InEligibilityTips.tsx b/packages/plugins/SmartPay/src/SiteAdaptor/components/InEligibilityTips.tsx index fcee60edc1ef..609e83390fe7 100644 --- a/packages/plugins/SmartPay/src/SiteAdaptor/components/InEligibilityTips.tsx +++ b/packages/plugins/SmartPay/src/SiteAdaptor/components/InEligibilityTips.tsx @@ -44,7 +44,7 @@ export const InEligibilityTips = memo(() => { You can follow Mask Network{' '} - + Twitter {' '} or{' '} diff --git a/packages/web3-shared/base/src/specs/index.ts b/packages/web3-shared/base/src/specs/index.ts index 9e335c9d2564..a2ac5c6ce53b 100644 --- a/packages/web3-shared/base/src/specs/index.ts +++ b/packages/web3-shared/base/src/specs/index.ts @@ -99,7 +99,7 @@ export enum SearchResultType { NonFungibleToken = 'NonFungibleToken', // e.g., #punks NonFungibleCollection = 'NonFungibleCollection', - // e.g., realMaskNetwork + // e.g., masknetwork CollectionListByTwitterHandle = 'CollectionListByTwitterHandle', // e.g., PancakeSwap DAO = 'DAO',