diff --git a/public/locales/zh/dashboard.json b/public/locales/zh/dashboard.json index bf8f79d7..a17673c5 100644 --- a/public/locales/zh/dashboard.json +++ b/public/locales/zh/dashboard.json @@ -163,5 +163,9 @@ "Stay tuned": "敬请期待", "This is a token used for interaction on the Crossbell blockchain, which can be claimed for free from the faucet, so there's no need to worry about its balance.": "这是一个用于 Crossbell 区块链上交互的代币,可以从水龙头免费领取,所以不用担心它的余额。", "Balance": "余额", - "Swap Tutorial": "兑换教程" + "Swap Tutorial": "兑换教程", + "DNS Checking": "DNS 检查中", + "DNS check passed.": "DNS 检查通过。", + "DNS check failed.": "DNS 检查失败。", + "Recheck": "重新检查" } \ No newline at end of file diff --git a/src/pages/dashboard/[subdomain]/settings/domains.tsx b/src/pages/dashboard/[subdomain]/settings/domains.tsx index 4f8bede5..41e73129 100644 --- a/src/pages/dashboard/[subdomain]/settings/domains.tsx +++ b/src/pages/dashboard/[subdomain]/settings/domains.tsx @@ -206,18 +206,22 @@ export default function SettingsDomainsPage() {
{domainCheckResult.isLoading ? ( - Checking... + {t("DNS Checking")}... ) : domainCheckResult.data ? ( - DNS check Passed. + + {t("DNS check passed.")} + ) : ( - DNS check failed. + + {t("DNS check failed.")} + )}