[JA] translate tomk-checker page

This commit is contained in:
tequ
2024-07-08 13:11:27 +09:00
parent d528533d39
commit 0fd67e830f
2 changed files with 19 additions and 5 deletions

View File

@@ -638,6 +638,20 @@ API Methods: APIメソッド
Methods: メソッド
Examples: の例
# resources/dev-tools/xrp-ledger-toml-checker.page.tsx
resources.dev-tools.toml-checker.p.part1: もしあなたがXRP Ledgerバリデータを運営していたり、XRP Ledgerをビジネスで利用しているのであれば、XRP Ledgerの利用状況に関する情報を、機械読み取り可能な
resources.dev-tools.toml-checker.p.part2: ファイル
resources.dev-tools.toml-checker.p.part3: で世界中に提供することができます。
Look Up By Domain: ドメインで検索
resources.dev-tools.toml-checker.domain.description.part1: ' '
resources.dev-tools.toml-checker.domain.description.part2: が構文的に正しく、正しくデプロイされているかどうかを確認することができます。
Check toml file: tomlファイルをチェック
example.com (Domain name to check): example.com (チェックするドメイン名)
Look Up By Account: アカウントで検索
resources.dev-tools.toml-checker.account.description.part1: XRP Ledgerのアドレスを入力し、そのアカウントがドメインによって所有されているかどうかを確認します。
Check account: アカウントをチェック
Wallet Address to check: チェックするウォレットアドレス
Open Source.: オープンソース
Jump to top of page: ページの先頭へ
Edit page: ページを編集

View File

@@ -50,8 +50,8 @@ export default function TomlChecker() {
const domainButtonProps: TextLookupFormProps = {
title: `Look Up By Domain`,
description: <p>{translate(`This tool allows you to verify that your `)}<code>{translate(`xrp-ledger.toml`)}</code>
{translate(` file is syntactically correct and deployed properly.`)}</p>,
description: <p>{translate('resources.dev-tools.toml-checker.domain.description.part1', `This tool allows you to verify that your `)}<code>{translate(`xrp-ledger.toml`)}</code>
{translate('resources.dev-tools.toml-checker.domain.description.part2', ` file is syntactically correct and deployed properly.`)}</p>,
buttonDescription: `Check toml file`,
formPlaceholder: "example.com (Domain name to check)",
handleSubmit: handleSubmitDomain,
@@ -59,7 +59,7 @@ export default function TomlChecker() {
const addressButtonProps: TextLookupFormProps = {
title: `Look Up By Account`,
description: <p>{translate(`Enter an XRP Ledger address to see if that account is claimed by the domain it says owns it.`)}</p>,
description: <p>{translate('resources.dev-tools.toml-checker.account.description.part1', `Enter an XRP Ledger address to see if that account is claimed by the domain it says owns it.`)}</p>,
buttonDescription: `Check account`,
formPlaceholder: `r... (${translate("Wallet Address to check")})`,
handleSubmit: handleSubmitWallet
@@ -74,9 +74,9 @@ export default function TomlChecker() {
<section className="container-fluid">
<div className="p-3">
<h1>{translate(`xrp-ledger.toml Checker`)}</h1>
<p>{translate(`If you run an XRP Ledger validator or use the XRP Ledger for your business,
<p>{translate('resources.dev-tools.toml-checker.p.part1', `If you run an XRP Ledger validator or use the XRP Ledger for your business,
you can provide information about your usage of the XRP Ledger to the world in a machine-readable `)}
<a href="https://xrpl.org/xrp-ledger-toml.html"><code>{translate(`xrp-ledger.toml`)}</code>{translate(` file`)}</a>.</p>
<a href="https://xrpl.org/xrp-ledger-toml.html"><code>{translate(`xrp-ledger.toml`)}</code>{translate('resources.dev-tools.toml-checker.p.part2', ` file`)}</a>{translate('resources.dev-tools.toml-checker.p.part3', `.`)}</p>
</div>
<TextLookupForm {...domainButtonProps} />