From 12eb0a81d3225a81ad52c1b0388e91c06ae8ec75 Mon Sep 17 00:00:00 2001 From: tequ Date: Tue, 26 Sep 2023 21:24:40 +0900 Subject: [PATCH 1/8] [JA] update concepts/ledgers --- .../concepts/ledgers/ledger-close-times.ja.md | 40 ++++++++++ .../concepts/ledgers/ledger-structure.ja.md | 68 ++++++++++++++++ content/concepts/ledgers/ledgers.ja.md | 80 +++---------------- .../open-closed-validated-ledgers.ja.md | 23 ++++++ .../troubleshooting/server-doesnt-sync.ja.md | 4 +- .../ledger_request.ja.md | 8 +- .../ledger-methods/ledger_entry.ja.md | 2 +- .../ledger-entry-types/directorynode.ja.md | 2 +- .../transaction-types/ammbid.ja.md | 4 +- dactyl-config.yml | 14 ++-- 10 files changed, 161 insertions(+), 84 deletions(-) create mode 100644 content/concepts/ledgers/ledger-close-times.ja.md create mode 100644 content/concepts/ledgers/ledger-structure.ja.md create mode 100644 content/concepts/ledgers/open-closed-validated-ledgers.ja.md diff --git a/content/concepts/ledgers/ledger-close-times.ja.md b/content/concepts/ledgers/ledger-close-times.ja.md new file mode 100644 index 0000000000..5aa4a6392b --- /dev/null +++ b/content/concepts/ledgers/ledger-close-times.ja.md @@ -0,0 +1,40 @@ +--- +html: ledger-close-times.html +parent: ledgers.html +blurb: XRP Ledgerが、レジャーバージョンごとに一意の閉鎖時刻を計算する方法。 +labels: + - ブロックチェーン +--- +# レジャーの閉鎖時刻 + +レジャーバージョンの閉鎖時刻は、[レジャーヘッダー](ledger-header.html)の`close_time`フィールドに記録されます。ネットワークの正確な閉鎖時刻についてコンセンサスを得やすくするため、この値は閉鎖時刻の精度に基づく秒数に丸められます(現在は10秒)。丸めによってレジャーの閉鎖時刻が親レジャーの閉鎖時刻と同じになる(または早くなる)場合、子レジャーの閉鎖時刻は親レジャーの閉鎖時刻に1を足した時刻に設定されます。これにより、有効なレジャーの閉鎖時刻が確実に増加することが保証されます。 + +通常、新しいレジャーバージョンは約3~5秒ごとに閉鎖するため、これらのルールの結果、レジャーの閉鎖時刻は、:00、:01、:02、:10、:11、:20、:21、...で終わるような、あいまいなパターンになります。2で終わることはあまりなく、3で終わることは非常にまれですが、どちらも、より多くのレジャーが10秒の時間内にランダムに閉鎖した場合にランダムに発生します。 + +一般的に、レジャーは閉鎖時刻よりも正確な時刻計測を行うことはできません。例えば、あるオブジェクトが有効期限を過ぎているかどうかを確認するには、親レジャーの閉鎖時刻と比較するルールになっています。(レジャーの閉鎖時刻は、そのレジャーに登録されるトランザクションの実行時点では確定していません)。これは、例えば[Escrow](escrow.html)が、Escrowオブジェクトで指定された時間ベースの有効期限より最大で約10秒遅い実世界の時刻に終了する可能性があることを意味します。 + +### 例 + +以下の例は、バリデータの観点から、レジャーの閉鎖時刻**12:00:00**の丸め動作を示しています。 + +**現在のコンセンサスラウンド** + +1. バリデータは、レジャーが閉鎖してコンセンサスに達したのが**12:00:03**であったことを記録します。バリデータはこの閉鎖時刻を自分の提案に含めます。 +2. バリデータは、(そのUNL上の)大多数のバリデータが閉鎖時刻を12:00:02と提案し、 残りのバリデータが閉鎖時刻を12:00:03と提案したことを確認します。そのバリデータは、提案された閉鎖時刻をコンセンサスの**12:00:02**に合わせます。 +3. バリデータはこの値を最も近い時間に丸め、**12:00:00** とします。 +4. 12:00:00は前のレジャーの閉鎖時刻より大きくないので、バリデータは閉鎖時刻を前のレジャーの閉鎖時刻のちょうど1秒後に調整します。その結果、調整後の閉鎖時刻は **12:00:01** となります。 +5. バリデータはこれらの詳細情報を使ってレジャーを作成し、ハッシュを計算します。 + +検証を行わないサーバは、記録した閉鎖時刻をネットワークの他のサーバに提案しないことを除いて、すべて同じ手順を踏みます。 + +**次のコンセンサスラウンド** + +1. 大多数のバリデータによると、次のレジャーは**12:00:04**にコンセンサスに入ります。 +2. 閉鎖時刻は再び切り捨てられ、**12:00:00**となります。 +3. これは前のレジャーの閉鎖時刻12:00:01より大きくないため、調整後の閉鎖時刻は**12:00:02**となります。 + +**その次のコンセンサスラウンド** + +1. 大多数のバリデータによると、この次のレジャーは**12:00:05**にコンセンサスに入ります。 +2. これは、閉鎖時刻の制度に基づいて、**12:00:10**に切り上げられます。 +3. この値は前のレジャーの閉鎖時刻より大きいので、調整する必要はありません。**12:00:10**が正式な閉鎖時刻となります。 diff --git a/content/concepts/ledgers/ledger-structure.ja.md b/content/concepts/ledgers/ledger-structure.ja.md new file mode 100644 index 0000000000..6c03edb21e --- /dev/null +++ b/content/concepts/ledgers/ledger-structure.ja.md @@ -0,0 +1,68 @@ +--- +html: ledger-structure.html +parent: ledgers.html +blurb: 個別のレジャーブロックの要素を詳しく見てみましょう。 +--- +# レジャーの構成要素 + +XRP Ledgerはブロックチェーンであり、データブロックの履歴を順番に並べたものです。XRP Ledgerブロックチェーンのブロックは、 _レジャーバージョン_ または略して _レジャー_ と呼ばれます。 + +コンセンサスプロトコルは、以前のレジャーバージョンを起点として、次に適用するトランザクションのセットについてバリデータ間の合意を形成し、それらのトランザクションを適用することで全員が同じ結果を得たことを確認します。これが成功すると、結果として新しいレジャーバージョンが作成されます。そこから、次のレジャーバージョンを構築するプロセスが繰り返されます。 + +各レジャーバージョンには、 _状態データ_ 、 _トランザクションセット_ 、メタデータを含む _ヘッダー_ が含まれます。 + +{{ include_svg("img/ledger.svg", "図: レジャーはヘッダー、トランザクションセット、状態データから構成されます。") }} + + +## 状態データ + +{{ include_svg("img/ledger-state-data.svg", "図: レジャーの状態データは、さまざまなオブジェクトで構成され、グラフのようにリンクされていることもあります。") }} + +_状態データ_ とは、そのレジャーバージョンにおけるすべてのアカウント、残高、設定、その他の情報のスナップショットを表します。サーバがネットワークに接続すると、最初に行うことの1つは、新しいトランザクションを処理し、現在の状態に関するクエリに答えることができるように、現在の状態データの完全なセットをダウンロードすることです。ネットワーク内のすべてのサーバが状態データの完全なコピーを持っているため、すべてのデータは公開され、どのコピーも同じように有効です。 + +状態データは _レジャーエントリ_ と呼ばれる個別のオブジェクトで構成され、ツリー形式で保存されます。各レジャーエントリには一意の256ビットのIDがあり、それを使用して状態ツリーから検索することができます。 + +## トランザクションセット + +{{ include_svg("img/ledger-transaction-set.svg", "図: レジャーのトランザクションセット、正規の順序で並べられたトランザクションのグループ") }} + +レジャーに加えられたすべての変更は、トランザクションの結果です。各レジャーバージョンには、特定の順序で新たに適用されたトランザクションのグループである _トランザクションセット_ が含まれています。あるレジャーのトランザクションセットを前のレジャーバージョンの状態データに適用すると、結果としてそのレジャーの状態データが得られます。 + +レジャーのトランザクションセット内のすべてのトランザクションは、以下の両方の要素を持ちます。 + +- 送信者がレジャーに何を指示したかを示す _トランザクションの内容_ 。 +- トランザクションがどのように処理され、レジャーの状態データにどのような影響を与えたかを正確に示す _トランザクションのメタデータ_ 。 + + +## レジャーヘッダー + +_レジャーヘッダー_ は、レジャーバージョンの概略を示すデータのブロックです。レポートの表紙のように、レジャーバージョンを一意に識別し、その内容を記載し、他の注意事項とともに作成時刻を表しています。レジャーヘッダーには以下の情報が含まれます。 + + + +- {{include_svg("img/ledger-index-icon.svg", "", classes="floating-diagram")}} チェーン内でのレジャーの位置を示す _レジャーインデックス_ 。レジャーは、1つ小さいインデックスを持つレジャーの上に構築され、 _ジェネシスレジャー_ として知られるスタート地点に戻ります。これは、すべてのトランザクションと結果の公開履歴を形成します。 +- {{include_svg("img/ledger-hash-icon.svg", "", classes="floating-diagram")}} レジャーの内容を一意に識別する _レジャーハッシュ_ 。ハッシュは、レジャーバージョンの内容が変更された場合、ハッシュが完全に異なるものになるように計算されます。これは、レジャーのデータが消失、変更、破損していないことを示すチェックサムのようなものでもあります。 +- {{include_svg("img/ledger-parent-icon.svg", "", classes="floating-diagram")}} 親レジャーのハッシュ。レジャーバージョンは、その前の _親レジャー_ との違いによって定義されることが多く、ヘッダーには親レジャーの一意なハッシュも含まれます。 +- {{include_svg("img/ledger-timestamp-icon.svg", "", classes="floating-diagram")}} このレジャーの内容が確定した正式なタイムスタンプとなる _閉鎖時刻_ 。この数値は秒数(一の位)が四捨五入され、通常は10です。 +- {{include_svg("img/ledger-state-data-hash-icon.svg", "", classes="floating-diagram")}} このレジャーの状態データのチェックサムとして機能する _状態データのハッシュ_ 。 +- {{include_svg("img/ledger-tx-set-hash-icon.svg", "", classes="floating-diagram")}} このレジャーのトランザクションセットのデータのチェックサムとして機能する _トランザクションセットのハッシュ_。 +- {{include_svg("img/ledger-notes-icon.svg", "", classes="floating-diagram")}} その他、存在するXRPの総量や、閉鎖時刻が四捨五入された値など、いくつかのメモがあります。 + +レジャーのトランザクションセットと状態データのサイズは無制限ですが、レジャーヘッダーは常に固定サイズです。レジャーヘッダーの正確なデータとバイナリ形式については、[レジャーヘッダー](ledger-header.html)を参照してください。 + + +## バリデーションの状況 + +{{ include_svg("img/ledger-validated-mark.svg", "Diagram: レジャーのバリデーション(検証)状況。レジャーの上に追加され、レジャー自体の一部ではありません。") }} + +サーバの Unique Node List のバリデータのコンセンサスがレジャーバージョンの内容に合意すると、そのレジャーバージョンは検証済みであり、変更不可であるとみなされます。レジャーの内容は、後続のトランザクションが新しいレジャーバージョンを作成し、チェーンを更新することによってのみ変更できます。 + +レジャーバージョンが新しく作成された時点では、まだ未検証です。候補となるトランザクションが異なるサーバに到着するタイミングが異なるため、ネットワークはチェーンの次のステップとなる複数の異なるレジャーバージョンを構築し、提案する可能性があります。[コンセンサスプロトコル](consensus.html)は、そのうちのどれを有効化するかを決定します。(検証済みのレジャーバージョンに存在しなかったトランザクション候補は、通常、次のレジャーバージョンのトランザクションセットに含まれます)。 + + +## レジャーインデックスとレジャーハッシュ +レジャーバージョンを識別する方法には、 _レジャーインデックス_ と _レジャーハッシュ_ の2種類があります。この2つのフィールドはどちらもレジャーを識別しますが、その目的は異なります。レジャーインデックスはチェーン内でのレジャーの位置を表し、レジャーハッシュはレジャーの内容を表します。 + +異なるチェーンのレジャーは、レジャーインデックスは同じでもハッシュが異なることがあります。また、検証されていないレジャーバージョンを扱う場合、インデックスが同じでも内容が異なるため、ハッシュが異なる複数のレジャー候補が存在する可能性があります。 + +同じレジャーハッシュを持つ2つのレジャーは、常に完全に同一です。 diff --git a/content/concepts/ledgers/ledgers.ja.md b/content/concepts/ledgers/ledgers.ja.md index 3ce129f6a2..9ed0ddb4da 100644 --- a/content/concepts/ledgers/ledgers.ja.md +++ b/content/concepts/ledgers/ledgers.ja.md @@ -1,93 +1,35 @@ --- html: ledgers.html parent: concepts.html -blurb: XRP Ledgerは、rippledによって内部データベースに保持されている一連の個別レジャー(レジャーバージョン)で構成されています。これらのレジャーの構造と内容について説明します。 +blurb: XRP Ledgerは、rippledによって内部データベースに保持されている一連の個別レジャー(レジャーバージョン)で構成されています。これらのレジャーの構造と内容について説明します。 labels: - ブロックチェーン - データ保持 --- # レジャー -XRP Ledgerは完全にオープンな共有グローバルレジャーです。個々の参加者はこのレジャーを管理する個々の機関を信頼しなくても、レジャーの整合性を信頼できます。`rippled`サーバーソフトウェアは、非常に特殊なルールによってのみ更新可能なレジャーデータベースを管理することにより、これを実現しています。各`rippled`インスタンスはレジャーの完全なコピーを保持し、`rippled`サーバーからなるピアツーピアネットワークはトランザクション候補を各サーバーに配信します。コンセンサスプロセスによって、レジャーの新しいバージョンに適用されるトランザクションが決定します。関連項目: [コンセンサスプロセス](consensus.html)。 +XRP Ledgerは、誰にでも開かれた共有のグローバル台帳(レジャー)です。個々の参加者は、単一の機関に台帳の管理を任せることなく、台帳の正当性を信頼することができます。XRP Ledgerプロトコルは、非常に特殊なルールに従ってのみ更新可能な台帳データベースを管理することで、これを実現しています。ピアツーピアネットワークのサーバは台帳データベースの完全なコピーを保持し、ネットワークは候補となるトランザクションを配信し、[コンセンサスプロセス](consensus.html)に従ってブロック単位で適用されます。 -![図: 各レジャーは、その前のレジャーバージョンにトランザクションを適用して生成されます。](img/ledger-changes.ja.png) +{{ include_svg("img/ledger-changes.svg", "図: 各レジャーは、その前のレジャーバージョンにトランザクションを適用して生成されます")}} -この共有グローバルレジャーは、実際には`rippled`の内部データベースに保持されている一連の個別レジャー(レジャーバージョン)です。各レジャーバージョンには、レジャーの生成順を示す[レジャーインデックス][]が付いています。各閉鎖済みレジャーバージョンにも、レジャーの内容を示す識別用ハッシュ値があります。`rippled`インスタンスには常に、1つの処理中の「現行」オープンレジャー、コンセンサスにより承認されていないいくつかの閉鎖済みレジャー、およびコンセンサスによる検証済みの任意の数の履歴レジャーがあります。検証済みレジャーだけが、その内容が正確で変更できません。 +共有グローバル台帳は、レジャーバージョンまたは単に _レジャー_ と呼ばれる一連のブロックから構成されます。すべてのレジャーバージョンには、台帳の正しい順序を識別する[レジャーインデックス][]があります。永続的にクローズされる各台帳には、固有の識別ハッシュ値も存在します。 -1つのレジャーバージョンはさまざまな要素で構成されています: +各XRP Ledgerサーバは常に、進行中の _オープン_ レジャー、保留中の _閉鎖済み_ レジャー、そして確定済みの _検証済み_ レジャーの履歴を持っており、これらは変更不可(immutable)です。 -![図: レジャーにはトランザクション、状態ツリー、閉鎖時刻、検証情報を含むヘッダーが含まれています。](img/anatomy-of-a-ledger-simplified.ja.png) +1つのレジャーバージョンはいくつかの要素から構成されています。 + +{{ include_svg("img/anatomy-of-a-ledger-simplified.svg", "レジャーにはトランザクション、状態ツリー、閉鎖時刻、検証情報を含むヘッダーが含まれています。")}} * **ヘッダー** - [レジャーインデックス][]、レジャーのその他のコンテンツのハッシュ、その他のメタデータ。 * **トランザクションツリー** - このレジャーの作成時に、直前のレジャーに適用された[トランザクション](transaction-formats.html)。トランザクションは、レジャーの変更を可能にする _唯一の_ 手段です。 -* **状態ツリー** - このバージョンのレジャーの設定、残高、オブジェクトを含むすべての[レジャーオブジェクト](ledger-object-types.html)。 +* **状態ツリー** - このレジャーの設定、残高などを含むすべての[レジャーエントリ](ledger-object-types.html)。 -## ツリーの形式 - -レジャーの状態ツリーは、その名前のとおりツリー型データ構造です。状態ツリーの各オブジェクトは256ビットのオブジェクトIDで識別されます。JSONではレジャーオブジェクトのIDは`index`フィールドです。このフィールドには64文字の16進数文字列が含まれています(例: `"193C591BF62482468422313F9D3274B5927CA80B4DD3707E42015DD609E39C94"`)。状態ツリーの各オブジェクトには、オブジェクトの検索に使用できるIDが設定されています。各トランザクションには、トランザクションツリーでトランザクションを検索するときに使用できる識別用ハッシュが含まれています。レジャーオブジェクトの`index`(ID)と[レジャーの`ledger_index`(シーケンス番号)][レジャーインデックス]を混同しないでください。 - -**ヒント:** レジャーの状態ツリーのオブジェクトは「レジャーノード」と呼ばれることもあります。たとえばトランザクションメタデータは`AffectedNodes`のリストを返します。これをピアツーピアネットワークの「ノード」(サーバー)と混同しないでください。 - -トランザクションの場合、識別用ハッシュは署名済みトランザクションの指示に基づいていますが、検索時のトランザクションオブジェクトにはトランザクションの結果とメタデータが含まれています。これは、ハッシュの生成時には反映されません。 - - - -## Open, Closed, and Validated Ledgers - -The `rippled` server makes a distinction between ledger versions that are _open_, _closed_, and _validated_. A server has one open ledger, any number of closed but unvalidated ledgers, and an immutable history of validated ledgers. The following table summarizes the difference: - -| Ledger Type: | Open | Closed | Validated | -|:---------------------------------|:----------------------------|:-------------------------------------------|:--| -| **Purpose:** | Temporary workspace | Proposed next state | Confirmed previous state | -| **Number used:** | 1 | Any number, but usually 0 or 1 | One per ledger index, growing over time | -| **Can contents change?** | Yes | No, but the whole ledger could be replaced | Never | -| **Transactions are applied in:** | The order they are received | Canonical order | Canonical order | - -Unintuitively, the XRP Ledger never "closes" an open ledger to convert it into a closed ledger. Instead, the server throws away the open ledger, creates a new closed ledger by applying transactions on top of a previous closed ledger, then creates a new open ledger using the latest closed ledger as a base. This is a consequence of [how consensus solves the double-spend problem](consensus-principles-and-rules.html#問題の単純化). - -For an open ledger, servers apply transactions in the order those transactions appear, but different servers may see transactions in different orders. Since there is no central timekeeper to decide which transaction was actually first, servers may disagree on the exact order of transactions that were sent around the same time. Thus, the process for calculating a closed ledger version that is eligible for [validation](consensus-structure.html#検証) is different than the process of building an open ledger from proposed transactions in the order they arrive. To create a "closed" ledger, each XRP Ledger server starts with a set of transactions and a previous, or "parent", ledger version. The server puts the transactions in a canonical order, then applies them to the previous ledger in that order. The canonical order is designed to be deterministic and efficient, but hard to game, to increase the difficulty of front-running Offers in the [decentralized exchange](decentralized-exchange.html). - -Thus, an open ledger is only ever used as a temporary workspace, which is a major reason why transactions' [tentative results may vary from their final results](finality-of-results.html). - -## Ledger Close Times - -The time that a ledger version closed is recorded at the `close_time` field of the [ledger header](ledger-header.html). To make it easier for the network to reach a consensus on an exact close time, this value is rounded to a number of seconds based on the close time resolution, currently 10 seconds. If rounding would cause a ledger's close time to be the same as (or earlier than) its parent ledger's, the child ledger has its close time set to the parent's close time plus 1. This guarantees that the close times of validated ledgers are strictly increasing. - -Since new ledger versions usually close about every 3 to 5 seconds, these rules result in a loose pattern where ledgers' close times end in :00, :01, :02, :10, :11, :20, :21, and so on. Times ending in 2 are less common and times ending in 3 are very rare, but both occur randomly when more ledgers randomly happen to close within a 10-second window. - -Generally speaking, the ledger cannot make any time-based measurements that are more precise than the close time resolution. For example, to check if an object has passed an expiration date, the rule is to compare it to the close time of the parent ledger. (The close time of a ledger is not yet known when executing transactions to go into that ledger.) This means that, for example, an [Escrow](escrow.html) could successfully finish at a real-world time that is up to about 10 seconds later than the time-based expiration specified in the Escrow object. - -### Example - -The following examples demonstrate the rounding behavior of ledger close times, from the perspective of an example validator, following a ledger with the close time **12:00:00**: - -**Current consensus round** - -1. A validator notes that it was **12:00:03** when the ledger closed and entered consensus. The validator includes this close time in its proposals. -2. The validator observes that most other validators (on its UNL) proposed a close time of 12:00:02, and one other proposed a close time of 12:00:03. It changes its proposed close time to match the consensus of **12:00:02**. -3. The validator rounds this value to the nearest close time interval, resulting in **12:00:00**. -4. Since 12:00:00 is not greater than the previous ledger's close time, the validator adjusts the close time to be exactly 1 second after the previous ledger's close time. The result is an adjusted close time of **12:00:01**. -5. The validator builds the ledger with these details, calculates the resulting hash, and confirms in the [validation step](consensus-structure.html#検証) that others did the same. - -Non-validating servers do all the same steps, except they don't propose their recorded close times to the rest of the network. - -**Next consensus round** - -1. The next ledger enters consensus at **12:00:04** according to most validators. -2. This rounds down again, to a close time of **12:00:00**. -3. Since this is not greater than the previous ledger's close time of 12:00:01, the adjusted close time is **12:00:02**. - -**Next consensus round after that** - -1. The ledger after that enters consensus at **12:00:05** according to most validators. -2. This rounds up, based on the close time resolution, to **12:00:10**. -3. Since this value is larger than the previous ledger's close time, it does not need to be adjusted. **12:00:10** becomes the official close time. - ## 関連項目 -レジャーヘッダー、レジャーオブジェクトID、レジャーオブジェクトタイプについての詳細は、[レジャーデータフォーマット](ledger-data-formats.html)を参照してください。 +- レジャーヘッダー、レジャーオブジェクトID、レジャーオブジェクトタイプの詳細については、[レジャーのデータ型](ledger-data-formats.html)をご覧ください。 +- レジャーの状態の変更履歴を追跡する方法については、[レジャーの履歴](ledger-history.html)をご覧ください。 diff --git a/content/concepts/ledgers/open-closed-validated-ledgers.ja.md b/content/concepts/ledgers/open-closed-validated-ledgers.ja.md new file mode 100644 index 0000000000..ed45564cf6 --- /dev/null +++ b/content/concepts/ledgers/open-closed-validated-ledgers.ja.md @@ -0,0 +1,23 @@ +--- +html: open-closed-validated-ledgers.html +parent: ledgers.html +blurb: レジャーオブジェクトには、オープン、閉鎖済み、検証済みの3つの状態があります。 +labels: + - ブロックチェーン +--- +# オープン、閉鎖済み、および検証済みレジャー + +`rippled`サーバはレジャーのバージョンを _オープン(open)_、_閉鎖済み(closed)_、_検証済み(validated)_ に区別します。サーバはオープンなレジャーを1つ、閉鎖済みだが未検証のレジャーをいくつでも、そして検証済みレジャーの変更不可能な履歴を持ちます。以下の表はその違いをまとめたものです。 + +| レジャーの種類: | オープン | 閉鎖済み | 検証済み | +|:--------------------------|:--------------|:--------------------------------------------|:--| +| **目的:** | 一時的な作業領域 | 次の状態の提案 | 直前の状態の確認 | +| **使用する数:** | 1 | 任意の数、通常は0または1 | レジャーインデックスごとに1つ、時間の経過とともに増加 | +| **内容は変更可能?** | はい | いいえ、ただし、別のレジャーが採用される可能性あり。 | いいえ | +| **トランザクションの適用方法:** | 受信順 | 正規順序 | 正規順序 | + +直感に反し、XRP Ledgerはオープンレジャーを「閉鎖」して閉鎖済みレジャーへと変換することはありません。その代わりに、サーバはオープンレジャーを捨て、以前の閉鎖済みレジャーの上にトランザクションを適用して閉鎖済みレジャーを作成し、最新の閉鎖済みレジャーをベースとして新しいオープンレジャーを作成します。これは、[コンセンサスが二重支出問題を解決する方法](consensus-principles-and-rules.html#simplifying-the-problem)の結果と言えます。 + +オープンレジャーでは、サーバはトランザクションを受信した順番にトランザクションを適用しますが、サーバによってトランザクションが異なる順番で表示されることがあります。実際にどのトランザクションが先だったかを決定するための中心的なタイムキーパーが存在しないため、同じ時刻に送信されたトランザクションの正確な順序について、サーバ間で見解が一致しない可能性があります。したがって、[検証](consensus-structure.html#validation)の対象となる閉鎖済みのレジャーバージョンを計算するプロセスは、提案されたトランザクションを受信順に並べてオープンレジャーを構築するプロセスとは異なります。「閉鎖済み」レジャーを作成するために、各XRP Ledgerサーバは、トランザクションのセットと、以前、つまり「親」レジャーを使用します。サーバはトランザクションを正規順序に並べ、その順序で前のレジャーに適用します。正規順序は、[分散型取引所](decentralized-exchange.html)におけるオファーのフロントランニングの難易度を高めるために、決定論的で効率的であるが、悪用されにくいように設計されています。 + +このように、オープンレジャーは一時的な作業領域としてしか使用されないため、トランザクションの[暫定的な結果と最終的な結果が異なる可能性がある](finality-of-results.html)という大きな特徴があります。 diff --git a/content/infrastructure/rippled/troubleshooting/server-doesnt-sync.ja.md b/content/infrastructure/rippled/troubleshooting/server-doesnt-sync.ja.md index 4113b42017..aa81dd8239 100644 --- a/content/infrastructure/rippled/troubleshooting/server-doesnt-sync.ja.md +++ b/content/infrastructure/rippled/troubleshooting/server-doesnt-sync.ja.md @@ -15,10 +15,10 @@ labels: ネットワークとの同期は、通常はおよそ5分から15分で完了します。その間に、サーバーは次のようなさまざまなことを行います。 -- 推奨バリデータリストを読み込み(通常は`vl.ripple.com`から)、信頼できるバリデータを判断します。 +- 推奨バリデータリストを読み込み(例: `vl.ripple.com`)、信頼できるバリデータを判断します。 - [ピアサーバーを検出](peer-protocol.html#ピアの検出)して接続します。 -- ピアから最新のレジャーの[ヘッダー](ledger-header.html)と完全な[状態情報](ledgers.html#ツリーの形式)をダウンロードし、それを使用してレジャーデータの内部データベースを構築します。 - 信頼できるバリデータをリッスンして、最近検証されたレジャーハッシュを見つけます。 +- ピアから最新のレジャーを完全にダウンロードし、それを使ってレジャーデータの内部データベースを構築します。 - 新たにブロードキャストされたトランザクションを収集し、それを進行中のレジャーに適用します。 サーバーがこれらのタスクを行うときにネットワークに同調して対応できなかった場合は、サーバーはネットワークと同期しない状態になります。 diff --git a/content/references/http-websocket-apis/admin-api-methods/logging-and-data-management-methods/ledger_request.ja.md b/content/references/http-websocket-apis/admin-api-methods/logging-and-data-management-methods/ledger_request.ja.md index 3611b05fdd..cb51d4e1ea 100644 --- a/content/references/http-websocket-apis/admin-api-methods/logging-and-data-management-methods/ledger_request.ja.md +++ b/content/references/http-websocket-apis/admin-api-methods/logging-and-data-management-methods/ledger_request.ja.md @@ -174,10 +174,10 @@ Connecting to 127.0.0.1:5005 |:----------------------------|:-----------------|:----------------------------| | `hash` | 文字列 | (省略される場合があります)要求されるレジャーの[ハッシュ][](サーバーがこのハッシュを認識している場合)。 | | `have_header` | ブール値 | 要求されたレジャーのヘッダーセクションがサーバーにあるかどうか。 | -| `have_state` | ブール値 | (省略される場合があります)要求されたレジャーの[アカウント状態セクション](ledgers.html#ツリーの形式)がサーバーにあるかどうか。 | -| `have_transactions` | ブール値 | (省略される場合があります)要求されたレジャーのトランザクションセクションがサーバーにあるかどうか。 | -| `needed_state_hashes` | 文字列の配列 | (省略される場合があります)サーバーが取得する必要がある[状態ツリー](ledgers.html#ツリーの形式)内のオブジェクトのハッシュ(最大16個)。 | -| `needed_transaction_hashes` | 文字列の配列 | (省略される場合があります)サーバーが取得する必要があるトランザクションツリー内のオブジェクトのハッシュ(最大16個)。 | +| `have_state` | ブール値 | (省略される場合があります)要求されたレジャーの完全な状態データがサーバーにあるかどうか。 | +| `have_transactions` | ブール値 | (省略される場合があります)要求されたレジャーの完全なトランザクションセットがサーバーにあるかどうか。 | +| `needed_state_hashes` | 文字列の配列 | (省略される場合があります)サーバーが取得する必要がある完全な状態データ内のオブジェクトのハッシュ(最大16個)。 | +| `needed_transaction_hashes` | 文字列の配列 | (省略される場合があります)サーバーが取得する必要があるトランザクションセットのオブジェクトのハッシュ(最大16個)。 | | `peers` | 数値 | このレジャーを見つけるためにサーバーが照会するピアの数。 | | `timeouts` | 数値 | これまでにこのレジャーの取得操作がタイムアウトした回数。 | diff --git a/content/references/http-websocket-apis/public-api-methods/ledger-methods/ledger_entry.ja.md b/content/references/http-websocket-apis/public-api-methods/ledger-methods/ledger_entry.ja.md index fafc7d6e92..d9380abdff 100644 --- a/content/references/http-websocket-apis/public-api-methods/ledger-methods/ledger_entry.ja.md +++ b/content/references/http-websocket-apis/public-api-methods/ledger-methods/ledger_entry.ja.md @@ -206,7 +206,7 @@ rippled json ledger_entry '{ "directory": { "owner": "rf1BiGeXwwQoi8Z2ueFYTEXSwu | フィールド | 型 | 説明 | |:------------------------|:---------------------------|:----------------------| -| `offer` | オブジェクトまたは 文字列 | 取得する[オファーオブジェクト](offer.html)。文字列の場合、オファーに対する[一意のオブジェクトID](ledgers.html#ツリーの形式)を指定します。オブジェクトの場合、オファーを一意に識別するためのサブフィールド`account`と`seq`を指定します。 | +| `offer` | オブジェクトまたは 文字列 | 取得する[オファーオブジェクト](offer.html)。文字列の場合、オファーに対する[一意のオブジェクトID](ledger-object-ids.html)を指定します。オブジェクトの場合、オファーを一意に識別するためのサブフィールド`account`と`seq`を指定します。 | | `offer.account` | 文字列 - [アドレス][] | _(`offer`がオブジェクト形式で指定されている場合、必須)_ オファーを作成したアカウント。 | | `offer.seq` | 符号なし整数 | _(`offer`がオブジェクト形式で指定されている場合、必須)_ オファーオブジェクトを作成したトランザクションの[シーケンス番号][]。 | diff --git a/content/references/protocol-reference/ledger-data/ledger-entry-types/directorynode.ja.md b/content/references/protocol-reference/ledger-data/ledger-entry-types/directorynode.ja.md index 071fd43702..2a6ffcb047 100644 --- a/content/references/protocol-reference/ledger-data/ledger-entry-types/directorynode.ja.md +++ b/content/references/protocol-reference/ledger-data/ledger-entry-types/directorynode.ja.md @@ -9,7 +9,7 @@ labels: # DirectoryNode [[ソース]](https://github.com/XRPLF/rippled/blob/5d2d88209f1732a0f8d592012094e345cbe3e675/src/ripple/protocol/impl/LedgerFormats.cpp#L44 "Source") -`DirectoryNode`オブジェクトタイプは、レジャーの状態ツリー内の他オブジェクトへのリンクのリストを提供します。概念上の1つの _ディレクトリー_ は、1つ以上の各DirectoryNodeオブジェクトが含まれる二重リンクリストの形式になっています。各DirectoryNodeオブジェクトには、他オブジェクトの[ID](ledgers.html#ツリーの形式)が最大32個まで含まれています。1番目のオブジェクトはディレクトリーのルートと呼ばれ、ルートオブジェクト以外のオブジェクトはすべて必要に応じて自由に追加または削除できます。 +`DirectoryNode`オブジェクトタイプは、レジャーの状態ツリー内の他オブジェクトへのリンクのリストを提供します。概念上の1つの _ディレクトリー_ は、1つ以上の各DirectoryNodeオブジェクトが含まれる二重リンクリストの形式になっています。各DirectoryNodeオブジェクトには、他オブジェクトの[ID](ledger-object-ids.html)が最大32個まで含まれています。1番目のオブジェクトはディレクトリーのルートと呼ばれ、ルートオブジェクト以外のオブジェクトはすべて必要に応じて自由に追加または削除できます。 2種類のディレクトリーがあります。 diff --git a/content/references/protocol-reference/transactions/transaction-types/ammbid.ja.md b/content/references/protocol-reference/transactions/transaction-types/ammbid.ja.md index 2667a29b29..e01a76abdb 100644 --- a/content/references/protocol-reference/transactions/transaction-types/ammbid.ja.md +++ b/content/references/protocol-reference/transactions/transaction-types/ammbid.ja.md @@ -99,7 +99,7 @@ AMMのLPトークンを使って落札すると、落札額はAMMに返金され P = M -**注記:** 台帳を作成する際に、ネットワーク上のすべてのサーバーが同じ結果になるように、時間の計測は前回の台帳の[正規の終了時刻](ledgers.html#ledger-close-times) に基づいており、これはおおよその目安の時間です。 +**注記:** 台帳を作成する際に、ネットワーク上のすべてのサーバーが同じ結果になるように、時間の計測は前回のレジャーの[正規の閉鎖時刻](ledger-close-times.html) に基づいており、これはおおよその目安の時間です。 ## 払い戻し @@ -115,7 +115,7 @@ R = B × (1 - t) 特殊なケースとして、オークションスロットの最終(20番目)区間では、払い戻し額は0となる。 -**注記:** XRP Ledgerの時刻と同様に、トランザクション処理では _前回の_ 台帳の[正規の終了時刻](ledgers.html#ledger-close-times)を使用するため、実時間と最大で約10秒の差が生じる場合があります。 +**注記:** XRP Ledgerの時刻と同様に、トランザクション処理では _前回の_ レジャーの[正規の閉鎖時刻](ledger-close-times.html)を使用するため、実時間と最大で約10秒の差が生じる場合があります。 ## エラーケース diff --git a/dactyl-config.yml b/dactyl-config.yml index c733bf5b5b..5960d306f5 100644 --- a/dactyl-config.yml +++ b/dactyl-config.yml @@ -920,28 +920,32 @@ pages: targets: - en - # TODO: update translation. Some parts split into "ledger structure" - md: concepts/ledgers/ledgers.ja.md - outdated_translation: true targets: - ja - # TODO: translate. Some parts taken from "ledgers.md" - md: concepts/ledgers/ledger-structure.md targets: - en + + - md: concepts/ledgers/ledger-structure.ja.md + targets: - ja - # TODO: translate. Content mostly split off from "ledgers.md" - md: concepts/ledgers/open-closed-validated-ledgers.md targets: - en + + - md: concepts/ledgers/open-closed-validated-ledgers.ja.md + targets: - ja - # TODO: translate. Content mostly split off from "ledgers.md" - md: concepts/ledgers/ledger-close-times.md targets: - en + + - md: concepts/ledgers/ledger-close-times.ja.md + targets: - ja # TODO: add a "ledger history" page that doesn't go too deep into From 9149e48da664fa20597f365759cddd24a7472880 Mon Sep 17 00:00:00 2001 From: tequ Date: Wed, 27 Sep 2023 01:25:48 +0900 Subject: [PATCH 2/8] [JA] fix some --- content/concepts/networks-and-servers/amendments.ja.md | 2 +- content/concepts/tokens/authorized-trust-lines.ja.md | 4 ++-- content/concepts/transactions/multi-signing.ja.md | 2 +- .../ledger-data/ledger-entry-types/accountroot.ja.md | 2 +- .../ledger-data/ledger-entry-types/negativeunl.ja.md | 2 +- .../ledger-data/ledger-entry-types/signerlist.ja.md | 2 +- .../transactions/pseudo-transaction-types/unlmodify.ja.md | 2 +- .../transactions/transaction-types/accountset.ja.md | 6 +++--- dactyl-config.yml | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/content/concepts/networks-and-servers/amendments.ja.md b/content/concepts/networks-and-servers/amendments.ja.md index e43c5eccd4..0da02e4c09 100644 --- a/content/concepts/networks-and-servers/amendments.ja.md +++ b/content/concepts/networks-and-servers/amendments.ja.md @@ -51,7 +51,7 @@ Amendmentが有効になるには、信頼できるバリデータの80%超か ### Amendmentブロックされたサーバ -AmendmentブロックはXRP Ledgerデータの正確性を守るためのセキュリティ機能です。Amendmentが有効になると、Amendmentのソースコードなしで以前のバージョンの`rippled`を実行しているサーバは、ネットワークのルールを認識できなくなります。レジャーデータを推測して誤って解釈するのではなく、これらのサーバーは**Amendmentブロック**された状態になります。Amendmentブロック状態のサーバは次のことが行えません。。 +AmendmentブロックはXRP Ledgerデータの正確性を守るためのセキュリティ機能です。Amendmentが有効になると、Amendmentのソースコードなしで以前のバージョンの`rippled`を実行しているサーバは、ネットワークのルールを認識できなくなります。レジャーデータを推測して誤って解釈するのではなく、これらのサーバーは**Amendmentブロック**された状態になります。Amendmentブロック状態のサーバは次のことが行えません。 * レジャーのバリデータの判断 * トランザクションの送信または処理 diff --git a/content/concepts/tokens/authorized-trust-lines.ja.md b/content/concepts/tokens/authorized-trust-lines.ja.md index 3658161049..9e1a8ae559 100644 --- a/content/concepts/tokens/authorized-trust-lines.ja.md +++ b/content/concepts/tokens/authorized-trust-lines.ja.md @@ -8,7 +8,7 @@ labels: --- # 認可トラストライン -XRP Ledgerの認可トラストライン機能により、発行者は、発行者が許可したアカウントのみが保有できるトークンを作成することができます。。認可トラストライン機能はトークンにのみ適用され、XRPには影響しません。 +XRP Ledgerの認可トラストライン機能により、発行者は、発行者が許可したアカウントのみが保有できるトークンを作成することができます。認可トラストライン機能はトークンにのみ適用され、XRPには影響しません。 認可トラストライン機能を使用するには、発行アドレスで**RequireAuth**フラグを有効にします。その後、他のアカウントは、あなたがそのアカウントのトラストラインをあなたの発行アカウントに承認した場合にのみ、あなたが発行したトークンを保持することができます。 @@ -27,7 +27,7 @@ XRP Ledger上のステーブルコインと認可トラストラインの使用 3. 顧客は[TrustSetトランザクション][]を送信し、発行者のアドレスにトラストラインを作成し、正のリミットを設定します。 4. 発行者はTrustSetトランザクションを送信し、顧客のトラストラインを認可します。 -**ヒント:** 2つのTrustSetトランザクション(ステップ3および4)は、どちらの順序で発生しても構いません。発行者がトラストラインを先に認可した場合、これにより限度額が0に設定されたトラストラインが作成され、顧客のTrustSetトランザクションは、事前に認可されたトラストラインの限度額を設定することになります。([TrustSetAuth amendment][]によって追加されました。)_ +**ヒント:** 2つのTrustSetトランザクション(ステップ3および4)は、どちらの順序で発生しても構いません。発行者がトラストラインを先に認可した場合、これにより限度額が0に設定されたトラストラインが作成され、顧客のTrustSetトランザクションは、事前に認可されたトラストラインの限度額を設定することになります。([TrustSetAuth amendment][]により追加されました。)_ ## 注意事項 認可トラストラインを使用するつもりがない場合でも、[運用アカウントと予備アカウント](account-types.html)のRequire Auth設定を有効にし、これらのアカウントにトラストラインを認可させないようにすることができます。これは、これらのアカウントが誤ってトークンを発行することを防止します(たとえば、ユーザーが誤って間違ったアドレスをトラストしてしまった場合など)。これはあくまで予防措置であり、運用アカウントと予備アカウントが意図したとおりに _発行者の_ トークンを転送することを止めるものではありません。 diff --git a/content/concepts/transactions/multi-signing.ja.md b/content/concepts/transactions/multi-signing.ja.md index 9f9c16038b..34e5b1088f 100644 --- a/content/concepts/transactions/multi-signing.ja.md +++ b/content/concepts/transactions/multi-signing.ja.md @@ -37,7 +37,7 @@ _([ExpandedSignerList amendment][]により更新されました。)_ また、リスト内の各署名者のエントリに最大256ビットの任意のデータを追加することができます。このデータはネットワークで必要とされたり使用されたりすることはありませんが、スマートコントラクトや他のアプリケーションが署名者に関する他のデータを特定したり確認したりするために使用することができます。 -_([ExpandedSignerList amendment][]によって追加されました。)_ +_([ExpandedSignerList amendment][]により追加されました。)_ ### Signer WeightとQuorumの使用例 diff --git a/content/references/protocol-reference/ledger-data/ledger-entry-types/accountroot.ja.md b/content/references/protocol-reference/ledger-data/ledger-entry-types/accountroot.ja.md index 4a831d7377..a573a9f673 100644 --- a/content/references/protocol-reference/ledger-data/ledger-entry-types/accountroot.ja.md +++ b/content/references/protocol-reference/ledger-data/ledger-entry-types/accountroot.ja.md @@ -55,7 +55,7 @@ labels: | `PreviousTxnLgrSeq` | 数値 | UInt32 | はい | 最後にこのオブジェクトを変更したトランザクションが記録された[レジャーインデックス][]。 | | `RegularKey` | 文字列 | AccountID | いいえ | このアカウントのトランザクションに署名するときにマスターキーの代わりに使用できる[キーペア](cryptographic-keys.html)のアドレス。この値を変更するには[SetRegularKeyトランザクション][]を使用してください。 | | `Sequence` | 数値 | UInt32 | はい | このアカウントの有効な次のトランザクションの[シーケンス番号](basic-data-types.html#アカウントシーケンス) を表します。 | -| `TicketCount` | 数値 | UInt32 | いいえ | このアカウントが台帳に保有する[チケット](tickets.html)の数です。これは、アカウントが一度に250 チケットという上限以内に留まることを保証するために自動的に更新されます。このフィールドは、チケットの数がゼロの場合は省略されます。 _([TicketBatch amendment][]によって追加されました)_ | +| `TicketCount` | 数値 | UInt32 | いいえ | このアカウントが台帳に保有する[チケット](tickets.html)の数です。これは、アカウントが一度に250 チケットという上限以内に留まることを保証するために自動的に更新されます。このフィールドは、チケットの数がゼロの場合は省略されます。 _([TicketBatch amendment][]により追加されました)_ | | `TickSize` | 数値 | UInt8 | いいえ | このアドレスが発行した通貨が関わるオファーの為替レートに使用する有効桁数。有効な値は`3`以上`15`以下です。_([TickSize Amendment][]が必要です。)_ | | `TransferRate` | 数値 | UInt32 | いいえ | このアカウントが発行した通貨を他のユーザーが相互に送金する際に、これらのユーザーに請求する[送金手数料](transfer-fees.html)。 | | `WalletLocator` | 文字列 | Hash256 | いいえ | ユーザーが設定できる任意の256bit値。 | diff --git a/content/references/protocol-reference/ledger-data/ledger-entry-types/negativeunl.ja.md b/content/references/protocol-reference/ledger-data/ledger-entry-types/negativeunl.ja.md index 8ffc35107a..bd5649320e 100644 --- a/content/references/protocol-reference/ledger-data/ledger-entry-types/negativeunl.ja.md +++ b/content/references/protocol-reference/ledger-data/ledger-entry-types/negativeunl.ja.md @@ -7,7 +7,7 @@ labels: --- # NegativeUNL -_([NegativeUNL amendment][]によって追加されました。)_ +_([NegativeUNL amendment][]により追加されました。)_ `NegativeUNL`オブジェクトタイプは、[ネガティブUNL](negative-unl.html)の現在の状態、つまり現在オフラインであると考えられる信頼できるバリデーションのリストを含んでいます。 diff --git a/content/references/protocol-reference/ledger-data/ledger-entry-types/signerlist.ja.md b/content/references/protocol-reference/ledger-data/ledger-entry-types/signerlist.ja.md index 168b7f0033..4998726a46 100644 --- a/content/references/protocol-reference/ledger-data/ledger-entry-types/signerlist.ja.md +++ b/content/references/protocol-reference/ledger-data/ledger-entry-types/signerlist.ja.md @@ -73,7 +73,7 @@ _([MultiSign Amendment][]が必要です。)_ |:---------------|:----------|:--------------|:--------------------------------| | `Account` | 文字列 | AccountID | 署名がマルチシグに提供されるXRP Ledgerアドレス。レジャーの資金供給のあるアドレスである必要はありません。 | | `SignerWeight` | 数値 | UInt16 | この署名者による署名の重み。マルチシグは、付与された署名の重みの合計がSignerListの`SignerQuorum`値を超えている場合にのみ有効となります。 | -| `WalletLocator` | 文字列 | Hash256 | (省略可)任意の16進数データ。これは署名者を識別するため、または他の関連する目的のために使用することができます。[ExpandedSignerList amendment][]によって追加されました。 | +| `WalletLocator` | 文字列 | Hash256 | (省略可)任意の16進数データ。これは署名者を識別するため、または他の関連する目的のために使用することができます。[ExpandedSignerList amendment][]により追加されました。 | マルチシグトランザクションを処理する際に、サーバーはトランザクション実行時にレジャーに関する`Account`値を間接参照します。アドレスが資金供給のある[AccountRootオブジェクト](accountroot.html)に対応して _いない_ 場合、そのアドレスに関連付けられているマスターシークレットによってのみ有効な署名を生成できます。アカウントがレジャーに _確かに_ 存在している場合は、アカウントの状態により異なります。アカウントにレギュラーキーが設定されている場合はレギュラーキーを使用できます。アカウントのマスターキーが無効化されていない場合に限り、アカウントのマスターキーを使用できます。マルチシグを別のマルチシグの一部として使用することはできません。 diff --git a/content/references/protocol-reference/transactions/pseudo-transaction-types/unlmodify.ja.md b/content/references/protocol-reference/transactions/pseudo-transaction-types/unlmodify.ja.md index e75fb8c899..24d5a38dbd 100644 --- a/content/references/protocol-reference/transactions/pseudo-transaction-types/unlmodify.ja.md +++ b/content/references/protocol-reference/transactions/pseudo-transaction-types/unlmodify.ja.md @@ -7,7 +7,7 @@ labels: --- # UNLModify -_([NegativeUNL amendment][]によって追加されました)_ +_([NegativeUNL amendment][]により追加されました)_ `UNLModify`[疑似トランザクション](pseudo-transaction-types.html)は[Negative UNL](negative-unl.html)の変更を示し、信頼できるバリデータがオフラインになったかオンラインに戻ってきたことを示します。 diff --git a/content/references/protocol-reference/transactions/transaction-types/accountset.ja.md b/content/references/protocol-reference/transactions/transaction-types/accountset.ja.md index 95ea88788a..3fbd3b105f 100644 --- a/content/references/protocol-reference/transactions/transaction-types/accountset.ja.md +++ b/content/references/protocol-reference/transactions/transaction-types/accountset.ja.md @@ -38,9 +38,9 @@ AccountSetトランザクションは、[XRP Ledgerのアカウント](accountro | `NFTokenMinter` | 文字列 | Blob | _(省略可)_ あなたのために[NFTokensをミントする](assign-an-authorized-minter-using-javascript.html)ことができる別のアカウント。 _([NonFungibleTokensV1_1 amendment][]により追加されました.)_ | | [`SetFlag`](#accountsetのフラグ) | 数値 | UInt32 | _(省略可)_ このアカウントについてオプションを有効にするための整数フラグ。 | | [`TransferRate`](#transferrate) | 符号なし整数 | UInt32 | _(省略可)_ ユーザーがこのアカウントの発行済み通貨を送金するときに請求される手数料。通貨単位の10億分の1で表現されます。手数料なしを意味する特殊なケースの`0`を除いて、`2000000000`より大きくしたり、`1000000000`より小さくしたりすることはできません。 | -| [`TickSize`](ticksize.html) | 符号なし整数 | UInt8 | _(省略可)_このアドレスによって発行されている通貨が関係するオファーに使用する為替レートの呼値の単位。それらのオファーの為替レートは、この有効桁数へと丸められます。有効な値は`3`から`15`、または無効にするための`0`です_([TickSize Amendment][]によって追加されました)。_ | +| [`TickSize`](ticksize.html) | 符号なし整数 | UInt8 | _(省略可)_このアドレスによって発行されている通貨が関係するオファーに使用する為替レートの呼値の単位。それらのオファーの為替レートは、この有効桁数へと丸められます。有効な値は`3`から`15`、または無効にするための`0`です_([TickSize Amendment][]により追加されました)。_ | | `WalletLocator` | 文字列 | Hash256 | _(省略可)_ 任意の256ビット値です。指定された場合、この値はアカウントの設定の一部として保存さ れますが、固有の定義や要件を持ちません。 | -| `WalletSize` | 数値 | UInt32 | _(省略可)_ 使用されません。このフィールドはAccountSetトランザクションで有効ですが、何の機能もありません。。 | +| `WalletSize` | 数値 | UInt32 | _(省略可)_ 使用されません。このフィールドはAccountSetトランザクションで有効ですが、何の機能もありません | これらのオプションがいずれも指定されていない場合、AccountSetトランザクションは(取引コストの消却以外に)意味がありません。詳細は、[トランザクションのキャンセルまたはスキップ](cancel-or-skip-a-transaction.html)を参照してください。 @@ -74,7 +74,7 @@ AccountSetトランザクションは、[XRP Ledgerのアカウント](accountro | `asfAccountTxnID` | 5 | (なし) | このアカウントの直近のトランザクションのIDを追跡します。[AccountTxnID](transaction-common-fields.html#accounttxnid)については必須です。 | | `asfAuthorizedNFTokenMinter` | 10 | (なし) | このアカウントの代わりに、別のアカウントが非代替性トークン(NFToken)をミントすることを許可するために使用します。認可されたアカウントを[AccountRoot](accountroot.html)オブジェクトの`NFTokenMinter`フィールドで指定します。認可されたアカウントを削除するには、このフラグを有効にして`NFTokenMinter`フィールドを省略します。 _([NonFungibleTokensV1_1 amendment][]により追加されました。)_ | | `asfDefaultRipple` | 8 | `lsfDefaultRipple` | このアカウントのトラストラインでの[リップリング](rippling.html)をデフォルトで有効にします。 | -| `asfDepositAuth` | 9 | `lsfDepositAuth` | このアカウントに対して[Deposit Authorization](depositauth.html)を有効にします _([DepositAuth Amendment][]によって追加されました)。_ | +| `asfDepositAuth` | 9 | `lsfDepositAuth` | このアカウントに対して[Deposit Authorization](depositauth.html)を有効にします _([DepositAuth Amendment][]により追加されました)。_ | | `asfDisableMaster` | 4 | `lsfDisableMaster` | マスターキーペアの使用を禁止します。[レギュラーキー](cryptographic-keys.html)や[署名者リスト](multi-signing.html)など、トランザクションに署名するための別の手段がアカウントで設定されている場合のみ有効にできます。 | | `asfDisallowIncomingCheck` | 13 | `lsfDisallowIncomingCheck` | チェックの着信をブロックします。_([DisallowIncoming amendment][] :not_enabled: が必要です。)_ | | `asfDisallowIncomingNFTokenOffer` | 12 | `lsfDisallowIncomingNFTokenOffer` | NFTokenOffersの着信をブロックします。_([DisallowIncoming amendment][] :not_enabled: が必要です)_。 | diff --git a/dactyl-config.yml b/dactyl-config.yml index c733bf5b5b..519d4ad95c 100644 --- a/dactyl-config.yml +++ b/dactyl-config.yml @@ -3729,7 +3729,7 @@ pages: - name: キー生成メソッド html: key-generation-methods.html parent: admin-api-methods.html - blurb: 以下のメソッドを使用してキーを生成および管理することができます。。 + blurb: 以下のメソッドを使用してキーを生成および管理することができます。 template: pagetype-category.html.jinja targets: - ja From f421a2c86bcc05e73d71c521a46feb379429ceee Mon Sep 17 00:00:00 2001 From: tequ Date: Wed, 27 Sep 2023 01:49:22 +0900 Subject: [PATCH 3/8] [JA] add `untranslated_warning` to untranslated page(build-run-rippled-in-reporting-mode) --- dactyl-config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/dactyl-config.yml b/dactyl-config.yml index 519d4ad95c..0b6b0defa2 100644 --- a/dactyl-config.yml +++ b/dactyl-config.yml @@ -4255,6 +4255,7 @@ pages: # TODO: translate - md: infrastructure/rippled/installation/build-run-rippled-in-reporting-mode.md top_nav_grouping: 人気ページ + untranslated_warning: true targets: - ja From 99c94b12eb6f9b976edc90dc247696e68ab1ba76 Mon Sep 17 00:00:00 2001 From: JST5000 Date: Tue, 26 Sep 2023 10:20:44 -0700 Subject: [PATCH 4/8] Remove bounty from funding page --- template/page-funding.html.jinja | 71 -------------------------------- 1 file changed, 71 deletions(-) diff --git a/template/page-funding.html.jinja b/template/page-funding.html.jinja index 175a0d5682..1f143f92a6 100644 --- a/template/page-funding.html.jinja +++ b/template/page-funding.html.jinja @@ -298,77 +298,6 @@
- -
-
-
-

{% trans %}XRPL Bounties{% endtrans %}

-
{% trans %}Go Deep{% endtrans %}
-
-

{% trans %}Bounties are awards for developing software and integrations that enable and improve specific use cases for the XRP Ledger.{% endtrans %}

- -
- -
-
- -
-
{% trans %}Best for{% endtrans %}
-

{% trans %}Software developers and teams{% endtrans %}

-
-
- -
- -
-
{% trans %}Required{% endtrans %}
-

{% trans %}Coding experience Specialized skills (depending on the bounty){% endtrans %}

-
-
-
- -
-
{% trans %}Level{% endtrans %}
-

{% trans %}Intermediate to advanced (prior XRPL experience not required){% endtrans %}

-
-
- - -
- -
-
{% trans %}Funding Levels{% endtrans %}
-

{% trans %}$500 - $100,000 per milestone{% endtrans %}

-
-
-
- - - -
-
- -
-
{% trans %}Required{% endtrans %}
-

{% trans %}Intermediate to advanced (prior XRPL experience not required){% endtrans %}

-
-
- -
- -
-
{% trans %}Funding Levels{% endtrans %}
-

{% trans %}$500 - $100,000 per milestone{% endtrans %}

-
-
-
- -
- -
-
{% endblock %} From d73dae201e218b8539b78df293d36c729ef459ed Mon Sep 17 00:00:00 2001 From: tequ Date: Wed, 27 Sep 2023 02:40:28 +0900 Subject: [PATCH 5/8] remove-hi --- locale/hi/LC_MESSAGES/messages.mo | Bin 43388 -> 0 bytes locale/hi/LC_MESSAGES/messages.po | 5761 ----------------------------- tool/generate_all_message.sh | 1 - 3 files changed, 5762 deletions(-) delete mode 100644 locale/hi/LC_MESSAGES/messages.mo delete mode 100644 locale/hi/LC_MESSAGES/messages.po diff --git a/locale/hi/LC_MESSAGES/messages.mo b/locale/hi/LC_MESSAGES/messages.mo deleted file mode 100644 index cca850a2685fce3c7c22bafab7f064d44820c9dd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 43388 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 CkC1Wz diff --git a/locale/hi/LC_MESSAGES/messages.po b/locale/hi/LC_MESSAGES/messages.po deleted file mode 100644 index 01c1240f3e..0000000000 --- a/locale/hi/LC_MESSAGES/messages.po +++ /dev/null @@ -1,5761 +0,0 @@ -# Hindi translations for PROJECT. -# Copyright (C) 2021 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR tpardhe@gmail.com, 2021. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-09-22 20:20+0000\n" -"PO-Revision-Date: 2021-11-05 20:34+0530\n" -"Last-Translator: FULL NAME tpardhe@gmail.com\n" -"Language: hi\n" -"Language-Team: hi \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" - -#: template/component-footer.html.jinja:25 -msgid "Open Source." -msgstr "" - -#: template/component-footer.html.jinja:33 -msgid "Jump to top of page" -msgstr "पृष्ठ के शीर्ष पर जाएं" - -#: template/component-github-edit.html.jinja:26 -msgid "Edit page" -msgstr "" - -#: template/component-top-nav.html.jinja:69 template/page-404.html.jinja:11 -#, fuzzy -msgid "Search" -msgstr "खोज बंद करें" - -#: template/component-top-nav.html.jinja:70 -msgid "Search site..." -msgstr "अनुसंधान क्षेत्र..." - -#: template/page-404.html.jinja:12 -msgid "Search for articles, training, and code samples..." -msgstr "" - -#: template/page-ambassadors.html.jinja:27 -msgid "Become an XRP Ledger Campus Ambassador" -msgstr "" - -#: template/page-ambassadors.html.jinja:28 -msgid "Join the Student Cohort" -msgstr "" - -#: template/page-ambassadors.html.jinja:30 -msgid "" -"The XRPL Campus Ambassador program engages, supports, connects, and " -"recognizes a group of student champions of the XRPL and empowers them to " -"further advance engagement on the ledger." -msgstr "" - -#: template/page-ambassadors.html.jinja:45 -msgid "XRPL Campus Ambassadors" -msgstr "" - -#: template/page-ambassadors.html.jinja:46 -msgid "Current Students" -msgstr "" - -#: template/page-ambassadors.html.jinja:48 -msgid "" -"The XRPL Campus Ambassador program aims to elevate the impact of college " -"students who are passionate about blockchain technology. In their role, " -"Campus Ambassadors help educate other students about crypto and how to " -"start building on the XRPL." -msgstr "" - -#: template/page-ambassadors.html.jinja:78 -msgid "Why become an XRPL Campus Ambassador?" -msgstr "" - -#: template/page-ambassadors.html.jinja:79 template/page-home.html.jinja:50 -#: template/page-xrp-overview.html.jinja:63 -msgid "Benefits" -msgstr "लाभ" - -#: template/page-ambassadors.html.jinja:81 -msgid "Join a global cohort of students empowering others to build on the XRPL." -msgstr "" - -#: template/page-ambassadors.html.jinja:94 -msgid "Exclusive Opportunities" -msgstr "" - -#: template/page-ambassadors.html.jinja:95 -msgid "" -" Get access and invitations to Ambassador-only events, conferences, and " -"opportunities" -msgstr "" - -#: template/page-ambassadors.html.jinja:102 -#: template/page-ambassadors.html.jinja:150 -msgid "Education" -msgstr "" - -#: template/page-ambassadors.html.jinja:103 -#: template/page-ambassadors.html.jinja:151 -msgid "Tutorials and workshops from leading XRPL and blockchain developers" -msgstr "" - -#: template/page-ambassadors.html.jinja:110 -msgid "Swag" -msgstr "" - -#: template/page-ambassadors.html.jinja:111 -msgid "New XRPL swag for Ambassadors and swag to share with other students" -msgstr "" - -#: template/page-ambassadors.html.jinja:119 -#: template/page-ambassadors.html.jinja:158 -msgid "Mentorship" -msgstr "" - -#: template/page-ambassadors.html.jinja:120 -#: template/page-ambassadors.html.jinja:159 -msgid "" -"Serve as an advocate and receive support from notable members of the " -"community" -msgstr "" - -#: template/page-ambassadors.html.jinja:127 -msgid "Career Acceleration" -msgstr "" - -#: template/page-ambassadors.html.jinja:128 -msgid "" -"Gain hands-on experience building communities and grow your professional " -"network in the blockchain industry" -msgstr "" - -#: template/page-ambassadors.html.jinja:136 -#: template/page-ambassadors.html.jinja:166 -msgid "Stipend" -msgstr "" - -#: template/page-ambassadors.html.jinja:137 -#: template/page-ambassadors.html.jinja:167 -msgid "" -"Receive a stipend to fund your ideas and initiatives that fuel XRPL " -"growth on your campus" -msgstr "" - -#: template/page-ambassadors.html.jinja:187 -msgid "Should You Apply?" -msgstr "" - -#: template/page-ambassadors.html.jinja:188 -msgid "Eligibility for XRPL Campus Ambassadors" -msgstr "" - -#: template/page-ambassadors.html.jinja:190 -msgid "" -"Students currently enrolled in an undergraduate or postgraduate program " -"at an accredited college or university are eligible to apply." -msgstr "" - -#: template/page-ambassadors.html.jinja:202 -#, fuzzy -msgid "A Leader" -msgstr "एक्सआरपी लेजर" - -#: template/page-ambassadors.html.jinja:203 -msgid "" -"Interested in leading meetups and workshops for your local campus " -"community" -msgstr "" - -#: template/page-ambassadors.html.jinja:211 -#: template/page-ambassadors.html.jinja:250 -msgid "Active" -msgstr "" - -#: template/page-ambassadors.html.jinja:212 -#: template/page-ambassadors.html.jinja:251 -msgid "" -"An active participant in the XRPL community or interested in blockchain " -"and crypto technologies" -msgstr "" - -#: template/page-ambassadors.html.jinja:219 -msgid "Curious" -msgstr "" - -#: template/page-ambassadors.html.jinja:220 -msgid "Eager to learn more about technical blockchain topics and the XRPL" -msgstr "" - -#: template/page-ambassadors.html.jinja:228 -#: template/page-ambassadors.html.jinja:257 -msgid "Passionate" -msgstr "" - -#: template/page-ambassadors.html.jinja:229 -#: template/page-ambassadors.html.jinja:258 -msgid "" -"Passionate about increasing XRPL education and awareness through events, " -"content, and classroom engagement" -msgstr "" - -#: template/page-ambassadors.html.jinja:236 -msgid "Creative" -msgstr "" - -#: template/page-ambassadors.html.jinja:237 -msgid "Ability to think outside the box to grow the XRPL student community" -msgstr "" - -#: template/page-ambassadors.html.jinja:331 -msgid "Process to become a Campus Ambassador" -msgstr "" - -#: template/page-ambassadors.html.jinja:332 -#, fuzzy -msgid "How it Works" -msgstr "एक्सआरपी लेजर कैसे काम करता है?" - -#: template/page-ambassadors.html.jinja:335 -msgid "Apply now to become an XRPL Campus Ambassador." -msgstr "" - -#: template/page-ambassadors.html.jinja:354 template/page-uses.html.jinja:309 -#: template/page-uses.html.jinja:334 -msgid "Apply" -msgstr "" - -#: template/page-ambassadors.html.jinja:355 -msgid "Submit an application to be considered for the Campus Ambassador program." -msgstr "" - -#: template/page-ambassadors.html.jinja:363 -#: template/page-ambassadors.html.jinja:393 -#, fuzzy -msgid "Interview" -msgstr "एक्सआरपी अवलोकन" - -#: template/page-ambassadors.html.jinja:364 -#: template/page-ambassadors.html.jinja:394 -msgid "" -"Tell the XRPL community-led panel more about yourself and your interest " -"in the program during an interview." -msgstr "" - -#: template/page-ambassadors.html.jinja:371 -msgid "Join" -msgstr "" - -#: template/page-ambassadors.html.jinja:372 -msgid "" -"Congrats on your new role! Join the global cohort of Ambassadors and meet" -" with community participants during onboarding." -msgstr "" - -#: template/page-ambassadors.html.jinja:380 -#: template/page-ambassadors.html.jinja:400 -#, fuzzy -msgid "Learn" -msgstr "एक्सप्लोरर" - -#: template/page-ambassadors.html.jinja:381 -#: template/page-ambassadors.html.jinja:401 -msgid "" -"Participate in personalized learning and training sessions for " -"Ambassadors on the XRPL and blockchain technology." -msgstr "" - -#: template/page-ambassadors.html.jinja:414 -msgid "Apply for Fall 2023" -msgstr "" - -#: template/page-ambassadors.html.jinja:431 -msgid "Join a global cohort of Student Ambassadors" -msgstr "" - -#: template/page-ambassadors.html.jinja:432 -#, fuzzy -msgid "Global Community" -msgstr "एक्सआरपी समुदाय" - -#: template/page-ambassadors.html.jinja:458 -msgid "Stay connected to the XRPL Campus Ambassadors" -msgstr "" - -#: template/page-ambassadors.html.jinja:459 template/page-impact.html.jinja:146 -#: template/page-impact.html.jinja:167 -#, fuzzy -msgid "Connect" -msgstr "जुड़े नहीं हैं" - -#: template/page-ambassadors.html.jinja:462 -msgid "" -"To stay up-to-date on the latest activity, meetups, and events of the " -"XRPL Campus Ambassadors be sure to follow these channels:" -msgstr "" - -#: template/page-ambassadors.html.jinja:477 -msgid "MeetUp" -msgstr "" - -#: template/page-ambassadors.html.jinja:478 -msgid "Attend an XRPL Meetup in your local area" -msgstr "" - -#: template/page-ambassadors.html.jinja:484 -msgid "Dev.to Blog" -msgstr "" - -#: template/page-ambassadors.html.jinja:485 -msgid "Read more about the activity of the XRPL Ambassadors" -msgstr "" - -#: template/page-ambassadors.html.jinja:496 -msgid "Discord" -msgstr "" - -#: template/page-ambassadors.html.jinja:497 -msgid "Join the conversation on the XRPL Developer Discord" -msgstr "" - -#: template/page-code-samples.html.jinja:13 -msgid "Start Building with Example Code" -msgstr "" - -#: template/page-code-samples.html.jinja:14 -msgid "Code Samples" -msgstr "" - -#: template/page-code-samples.html.jinja:26 -msgid "Browse sample code for building common use cases on the XRP Ledger" -msgstr "" - -#: template/page-code-samples.html.jinja:65 -msgid "Contribute Code Samples" -msgstr "" - -#: template/page-code-samples.html.jinja:66 -msgid "Help the XRPL community by submitting your
own code samples" -msgstr "" - -#: template/page-community.html.jinja:33 -msgid "Open for Business,
 Driven to Innovate" -msgstr "" - -#: template/page-community.html.jinja:34 -#, fuzzy -msgid "The XRPL Community" -msgstr "एक्सआरपी समुदाय" - -#: template/page-community.html.jinja:42 -msgid "Find the community on the platforms below" -msgstr "" - -#: template/page-community.html.jinja:43 -msgid "Join the Conversation" -msgstr "" - -#: template/page-community.html.jinja:87 -msgid "Run an XRP Ledger network node" -msgstr "" - -#: template/page-community.html.jinja:88 -msgid "Contribute to Consensus" -msgstr "" - -#: template/page-community.html.jinja:121 -msgid "Apply for funding to build your XRPL project" -msgstr "" - -#: template/page-community.html.jinja:122 template/page-funding.html.jinja:134 -msgid "XRPL Grants" -msgstr "" - -#: template/page-community.html.jinja:124 -msgid "" -"The XRPL Grants program funds select open-source projects that solve " -"problems and grow the XRP Ledger community." -msgstr "" - -#: template/page-community.html.jinja:128 -msgid "Apply for a Grant" -msgstr "" - -#: template/page-community.html.jinja:134 -msgid "Awarded in a single grant" -msgstr "" - -#: template/page-community.html.jinja:138 -msgid "Distributed to grant recipients" -msgstr "" - -#: template/page-community.html.jinja:142 -msgid "Open-source projects funded " -msgstr "" - -#: template/page-community.html.jinja:148 template/page-events.html.jinja:56 -#: template/page-home.html.jinja:161 template/page-xrpl-overview.html.jinja:99 -#, fuzzy -msgid "Learn More" -msgstr "एक्सप्लोरर" - -#: template/page-community.html.jinja:164 -msgid "Showcase your XRPL project, application or product" -msgstr "" - -#: template/page-community.html.jinja:165 -msgid "XRPL Community Spotlight" -msgstr "" - -#: template/page-community.html.jinja:167 -msgid "" -"Get featured on the Developer Reflections blog or Blockchain Use Cases page, and explore XRPL " -"community highlights." -msgstr "" - -#: template/page-community.html.jinja:174 -msgid "Submit Your Projects" -msgstr "" - -#: template/page-community.html.jinja:175 -msgid "Read the Blog" -msgstr "" - -#: template/page-community.html.jinja:191 -#: template/page-community.html.jinja:216 -msgid "Welcome to Apex 2021" -msgstr "" - -#: template/page-community.html.jinja:195 -#: template/page-community.html.jinja:220 -msgid "XRPL Community Meetup" -msgstr "" - -#: template/page-community.html.jinja:199 -#: template/page-community.html.jinja:224 -msgid "XRPL Hackathon 2022" -msgstr "" - -#: template/page-community.html.jinja:206 -msgid "Check out global events across the XRPL community" -msgstr "" - -#: template/page-community.html.jinja:207 -#, fuzzy -msgid "XRPL Events" -msgstr "एक्सआरपी वॉलेट" - -#: template/page-community.html.jinja:209 -msgid "" -"Meet the XRPL community at meetups, hackathons, conferences, and more " -"across global regions." -msgstr "" - -#: template/page-community.html.jinja:229 -#, fuzzy -msgid "View All Events" -msgstr "पर्स" - -#: template/page-community.html.jinja:247 -msgid "Discover your next career opportunity in the XRPL community" -msgstr "" - -#: template/page-community.html.jinja:248 -#, fuzzy -msgid "XRPL Careers" -msgstr "उपयोग का अन्वेषण करें" - -#: template/page-community.html.jinja:250 -msgid "" -"Teams across the XRPL community are looking for talented individuals to " -"help build their next innovation." -msgstr "" - -#: template/page-community.html.jinja:256 -msgid "View Open Roles" -msgstr "" - -#: template/page-community.html.jinja:268 -msgid "Review guidelines for using XRPL design assets" -msgstr "" - -#: template/page-community.html.jinja:269 -#, fuzzy -msgid "XRPL Assets" -msgstr "एक्सआरपी वॉलेट" - -#: template/page-community.html.jinja:271 -msgid "" -"Just like the technology itself, XRPL assets are open source and " -"available for anyone to use. Check out this helpful framework for using " -"XRPL visuals. " -msgstr "" - -#: template/page-community.html.jinja:279 -msgid "Download the PDF and Assets" -msgstr "" - -#: template/page-community.html.jinja:297 -#, fuzzy -msgid "A community-driven resource for all things XRPL.org" -msgstr "सभी चीजों के लिए एक समुदाय-संचालित संसाधन एक्सआरपी और एक्सआरपी लेजर" - -#: template/page-community.html.jinja:298 -msgid "Contribute to XRPL.org" -msgstr "" - -#: template/page-community.html.jinja:300 -#, fuzzy -msgid "" -"Thank you for your interest in contributing to XRPL.org. This website was" -" created as an XRPL community resource and is meant to be a living, " -"breathing source of truth for XRP Ledger resources. This portal is open-" -"source and anyone can suggest changes." -msgstr "" -"XRPL.org में योगदान करने में आपकी रुचि के लिए धन्यवाद। यह वेबसाइट समुदाय " -"के लिए बनाई गई थी और यह XRP और XRP लेजर संसाधनों के लिए सत्य का एक जीवित," -" सांस लेने वाला स्रोत है।" - -#: template/page-community.html.jinja:301 -msgid "Read Contributor Guidelines" -msgstr "" - -#: template/page-dev-tools.html.jinja:13 -msgid "" -"Use the developer tools to test, explore, and validate XRP Ledger\n" -" API requests and behavior." -msgstr "" - -#: template/page-dev-tools.html.jinja:16 -msgid "Dev Tools" -msgstr "" - -#: template/page-dev-tools.html.jinja:28 template/page-dev-tools.html.jinja:74 -#, fuzzy -msgid "Explorers" -msgstr "एक्सप्लोरर" - -#: template/page-dev-tools.html.jinja:31 template/page-dev-tools.html.jinja:89 -msgid "API Access" -msgstr "" - -#: template/page-dev-tools.html.jinja:34 template/page-dev-tools.html.jinja:146 -#: template/page-uses.html.jinja:82 template/page-uses.html.jinja:299 -#, fuzzy -msgid "Other" -msgstr "एथेरियम" - -#: template/page-dev-tools.html.jinja:203 -msgid "Have an Idea For a Tool?" -msgstr "" - -#: template/page-dev-tools.html.jinja:204 -msgid "" -"Contribute to the XRP Ledger community by submitting your idea for a tool" -" or open a pull request if you've developed a tool." -msgstr "" - -#: template/page-dev-tools.html.jinja:205 -msgid "Open a pull Request" -msgstr "" - -#: template/page-docs-index.html.jinja:8 -#, fuzzy -msgid "Full documentation index" -msgstr "पूर्ण दस्तावेज़ीकरण सूचकांक" - -#: template/page-docs-index.html.jinja:9 -msgid "See Everything" -msgstr "" - -#: template/page-docs.html.jinja:16 -#, fuzzy -msgid "XRP Ledger Developer Resources" -msgstr "2011 एक्सआरपी लेजर विकास" - -#: template/page-docs.html.jinja:17 -#, fuzzy -msgid "Documentation" -msgstr "पूर्ण दस्तावेज़ीकरण सूचकांक" - -#: template/page-docs.html.jinja:90 -msgid "rippled API Reference" -msgstr "" - -#: template/page-docs.html.jinja:94 -#, fuzzy -msgid "XRP Faucet" -msgstr "एक्सआरपी वॉलेट" - -#: template/page-docs.html.jinja:98 -msgid "Getting Started with Python" -msgstr "" - -#: template/page-docs.html.jinja:102 -msgid "Websocket API Tool" -msgstr "" - -#: template/page-docs.html.jinja:105 template/page-docs.html.jinja:226 -#, fuzzy -msgid "XRP Ledger Explorer" -msgstr "2011 एक्सआरपी लेजर विकास" - -#: template/page-docs.html.jinja:112 -msgid "Advanced Payment Features" -msgstr "" - -#: template/page-docs.html.jinja:117 -msgid "Governance and the Amendment Process" -msgstr "" - -#: template/page-docs.html.jinja:122 -msgid "Federated Sidechains" -msgstr "" - -#: template/page-docs.html.jinja:129 -msgid "On-Chain Finance" -msgstr "" - -#: template/page-docs.html.jinja:134 -msgid "Trade on the decentralized exchange" -msgstr "" - -#: template/page-docs.html.jinja:138 -#, fuzzy -msgid "Make payments" -msgstr "सूक्ष्म भुगतान" - -#: template/page-docs.html.jinja:142 -#, fuzzy -msgid "Use specialized payment types" -msgstr "आंशिक भुगतान भेजें" - -#: template/page-docs.html.jinja:148 template/page-home.html.jinja:103 -msgid "Tokens" -msgstr "" - -#: template/page-docs.html.jinja:153 -msgid "Non-fungible Tokens" -msgstr "" - -#: template/page-docs.html.jinja:157 -msgid "Issue a stablecoin" -msgstr "" - -#: template/page-docs.html.jinja:161 -msgid "Assign an authorized minter" -msgstr "" - -#: template/page-docs.html.jinja:167 template/page-uses.html.jinja:66 -#: template/page-uses.html.jinja:186 template/page-uses.html.jinja:293 -#: template/page-uses.html.jinja:394 -#, fuzzy -msgid "Payments" -msgstr "सूक्ष्म भुगतान" - -#: template/page-docs.html.jinja:172 -msgid "Peer to peer payments" -msgstr "" - -#: template/page-docs.html.jinja:176 -#, fuzzy -msgid "Cross-currency payments" -msgstr "सीमा पार से भुगतान" - -#: template/page-docs.html.jinja:180 -#, fuzzy -msgid "Escrows" -msgstr "एस्क्रो बनाएं" - -#: template/page-docs.html.jinja:191 -#, fuzzy -msgid "Intro to XRP Ledger" -msgstr "स्थिरता" - -#: template/page-docs.html.jinja:196 -msgid "Accounts" -msgstr "" - -#: template/page-docs.html.jinja:201 template/page-home.html.jinja:91 -msgid "Decentralized Exchange" -msgstr "" - -#: template/page-docs.html.jinja:206 -#, fuzzy -msgid "Tokenization" -msgstr "वेब मुद्रीकरण" - -#: template/page-docs.html.jinja:214 -#, fuzzy -msgid "Faucets" -msgstr "एक्सआरपी वॉलेट" - -#: template/page-docs.html.jinja:217 -msgid "Get credentials and test-XRP for XRP Ledger Testnet or Devnet." -msgstr "" - -#: template/page-docs.html.jinja:220 -msgid "WebSocket Tool" -msgstr "" - -#: template/page-docs.html.jinja:223 -msgid "Send sample requests and get responses from the rippled API." -msgstr "" - -#: template/page-docs.html.jinja:229 -msgid "" -"View validations of new ledger versions in real-time, chart the location " -"of servers in the XRP Ledger." -msgstr "" - -#: template/page-docs.html.jinja:232 template/page-tx-sender.html.jinja:30 -msgid "Transaction Sender" -msgstr "लेन-देन प्रेषक" - -#: template/page-docs.html.jinja:235 -msgid "" -"Test how your code handles various XRP Ledger transactions by sending " -"them over the Testnet to the address." -msgstr "" - -#: template/page-docs.html.jinja:244 -#, fuzzy -msgid "Concepts" -msgstr "जुड़े नहीं हैं" - -#: template/page-docs.html.jinja:245 -msgid "" -"Learn the \"what\" and the \"why\" behind fundamental aspects of the XRP " -"Ledger." -msgstr "" - -#: template/page-docs.html.jinja:246 -#, fuzzy -msgid "Read the Docs" -msgstr "तकनीकी प्राप्त करें" - -#: template/page-docs.html.jinja:251 -msgid "Tutorials" -msgstr "" - -#: template/page-docs.html.jinja:252 -msgid "Get step-by-step guidance to perform common tasks with the XRP Ledger." -msgstr "" - -#: template/page-docs.html.jinja:253 -msgid "View Tutorials" -msgstr "" - -#: template/page-docs.html.jinja:258 -msgid "References" -msgstr "" - -#: template/page-docs.html.jinja:259 -msgid "" -"Look up reference documentation for the XRP Ledger protocol, API methods," -" and more." -msgstr "" - -#: template/page-docs.html.jinja:260 -#, fuzzy -msgid "View References" -msgstr "पर्स" - -#: template/page-docs.html.jinja:267 -#, fuzzy -msgid "Use Cases" -msgstr "उपयोग का अन्वेषण करें" - -#: template/page-docs.html.jinja:276 -msgid "Getting Started" -msgstr "" - -#: template/page-docs.html.jinja:280 -#, fuzzy -msgid "Quickstart to XRP Ledger" -msgstr "स्थिरता" - -#: template/page-docs.html.jinja:282 -msgid "An introduction to fundamental aspects of the XRP Ledger." -msgstr "" - -#: template/page-docs.html.jinja:288 -#, fuzzy -msgid "Get Started" -msgstr "शुरू हो जाओ" - -#: template/page-docs.html.jinja:306 -msgid "Watch Full Series" -msgstr "" - -#: template/page-docs.html.jinja:314 -msgid "Interact with the XRP Ledger in a language of your choice" -msgstr "" - -#: template/page-docs.html.jinja:315 -#, fuzzy -msgid "Explore SDKs" -msgstr "एक्सप्लोरर" - -#: template/page-docs.html.jinja:327 -msgid "Javascript" -msgstr "" - -#: template/page-docs.html.jinja:337 -msgid "Python" -msgstr "" - -#: template/page-docs.html.jinja:347 -msgid "Java" -msgstr "" - -#: template/page-docs.html.jinja:361 -msgid "Intermediate Learning Sources" -msgstr "" - -#: template/page-docs.html.jinja:378 -msgid "Explore, Test, Verify" -msgstr "" - -#: template/page-docs.html.jinja:379 -#, fuzzy -msgid "Explore Dev Tools" -msgstr "एक्सप्लोरर" - -#: template/page-docs.html.jinja:382 -msgid "" -"Use these web-based tools to assist during all stages of development, " -"from getting your first payment to testing your implementation for best " -"practices." -msgstr "" - -#: template/page-docs.html.jinja:398 -msgid "Browse By Recommended Pages" -msgstr "" - -#: template/page-docs.html.jinja:410 -msgid "Get Free Test XRP" -msgstr "" - -#: template/page-docs.html.jinja:411 -msgid "" -"Connect to the XRP Ledger Testnet network to develop and test your apps " -"built on the XRP Ledger, without risking real money or impacting " -"production XRP Ledger users." -msgstr "" - -#: template/page-docs.html.jinja:412 -msgid "Generate Testnet Credentials" -msgstr "" - -#: template/page-docs.html.jinja:419 -#, fuzzy -msgid "See full documentation index" -msgstr "पूर्ण दस्तावेज़ीकरण सूचकांक" - -#: template/page-events.html.jinja:27 -msgid "Find the XRPL Community Around the World" -msgstr "" - -#: template/page-events.html.jinja:28 template/page-impact.html.jinja:131 -#: template/page-impact.html.jinja:159 -#, fuzzy -msgid "Events" -msgstr "लाभ" - -#: template/page-events.html.jinja:42 -msgid "The XRPL Developer Summit" -msgstr "" - -#: template/page-events.html.jinja:43 -msgid "Save the Date" -msgstr "" - -#: template/page-events.html.jinja:45 -msgid "" -"Apex is back and headed to Amsterdam. Apex XRPL Developer Summit is the " -"annual event where developers, contributors, and thought leaders come " -"together to learn, build, share, network, and celebrate all things XRP " -"Ledger." -msgstr "" - -#: template/page-events.html.jinja:66 -msgid "" -"Check out meetups, hackathons, and other events hosted by the XRPL " -"Community" -msgstr "" - -#: template/page-events.html.jinja:67 -msgid "Upcoming Events" -msgstr "" - -#: template/page-events.html.jinja:494 -msgid "Explore past community-hosted events" -msgstr "" - -#: template/page-events.html.jinja:495 -msgid "Past Events" -msgstr "" - -#: template/page-faq2.html.jinja:17 template/pagetype-doc.html.jinja:25 -msgid "Sorry, this page is not available in your language." -msgstr "क्षमा करें, यह पृष्ठ आपकी भाषा में उपलब्ध नहीं है।" - -#: template/page-faq2.html.jinja:18 template/pagetype-doc.html.jinja:26 -#, fuzzy -msgid "" -"We are making an effort to offer the XRP Ledger Dev Portal in a variety " -"of languages, but not all pages are available in all languages. If you'd " -"like to help, please contribute!" -msgstr "" -"हम एक्सआरपी लेजर देव पोर्टल को विभिन्न भाषाओं में पेश करने का प्रयास कर " -"रहे हैं, लेकिन सभी पेज सभी भाषाओं में उपलब्ध नहीं हैं। अगर आप मदद करना " -"चाहते हैं, तो कृपया योगदान दें!" - -#: template/page-faq2.html.jinja:23 template/pagetype-doc.html.jinja:31 -msgid "" -"This translated page is not updated to match the latest changes in the " -"English version." -msgstr "" - -#: template/page-faq2.html.jinja:24 template/pagetype-doc.html.jinja:32 -#, fuzzy -msgid "" -"We are making an effort to offer the XRP Ledger Dev Portal in a variety " -"of languages, but not all translated contents are up-to-date. If you'd " -"like to help, please contribute!" -msgstr "" -"हम एक्सआरपी लेजर देव पोर्टल को विभिन्न भाषाओं में पेश करने का प्रयास कर " -"रहे हैं, लेकिन सभी पेज सभी भाषाओं में उपलब्ध नहीं हैं। अगर आप मदद करना " -"चाहते हैं, तो कृपया योगदान दें!" - -#: template/page-funding.html.jinja:27 -msgid "XRPL Developer Funding Programs" -msgstr "" - -#: template/page-funding.html.jinja:28 -msgid "Project Resources" -msgstr "" - -#: template/page-funding.html.jinja:36 -msgid "Explore funding opportunities for developers and teams" -msgstr "" - -#: template/page-funding.html.jinja:37 -#, fuzzy -msgid "Funding Overview" -msgstr "एक्सआरपी अवलोकन" - -#: template/page-funding.html.jinja:39 -msgid "" -"If you’re a software developer or team looking to build your next project" -" or venture on the XRP Ledger (XRPL), there are a number of opportunities" -" to fund your next innovation." -msgstr "" - -#: template/page-funding.html.jinja:50 -msgid "XRPL Hackathons" -msgstr "" - -#: template/page-funding.html.jinja:51 -#, fuzzy -msgid "Join an Event" -msgstr "पर्स" - -#: template/page-funding.html.jinja:53 -msgid "" -"Hackathons are open to all developers to explore and invent a project on " -"the XRP Ledger. Visit the events page for updates on upcoming hackathons." -msgstr "" - -#: template/page-funding.html.jinja:56 template/page-funding.html.jinja:121 -msgid "See Upcoming Events" -msgstr "" - -#: template/page-funding.html.jinja:67 template/page-funding.html.jinja:156 -#: template/page-funding.html.jinja:239 template/page-funding.html.jinja:316 -#, fuzzy -msgid "Best for" -msgstr "के लिए भरोसा करें" - -#: template/page-funding.html.jinja:68 -msgid "Software developers and teams building directly on the XRP Ledger" -msgstr "" - -#: template/page-funding.html.jinja:75 template/page-funding.html.jinja:104 -#: template/page-funding.html.jinja:164 template/page-funding.html.jinja:192 -#: template/page-funding.html.jinja:247 template/page-funding.html.jinja:276 -#: template/page-funding.html.jinja:324 template/page-funding.html.jinja:352 -msgid "Required" -msgstr "" - -#: template/page-funding.html.jinja:76 template/page-funding.html.jinja:105 -msgid "Some coding experience" -msgstr "" - -#: template/page-funding.html.jinja:82 template/page-funding.html.jinja:171 -#: template/page-funding.html.jinja:254 template/page-funding.html.jinja:331 -msgid "Level" -msgstr "" - -#: template/page-funding.html.jinja:83 -msgid "XRPL beginner to advanced developers" -msgstr "" - -#: template/page-funding.html.jinja:91 template/page-funding.html.jinja:112 -#: template/page-funding.html.jinja:179 template/page-funding.html.jinja:200 -#: template/page-funding.html.jinja:263 template/page-funding.html.jinja:284 -#: template/page-funding.html.jinja:340 template/page-funding.html.jinja:360 -msgid "Funding Levels" -msgstr "" - -#: template/page-funding.html.jinja:92 template/page-funding.html.jinja:113 -msgid "Prize money and awards" -msgstr "" - -#: template/page-funding.html.jinja:135 -msgid "Fund Your Project" -msgstr "" - -#: template/page-funding.html.jinja:137 -msgid "" -"Developer grants for projects that contribute to the growing XRP Ledger " -"community." -msgstr "" - -#: template/page-funding.html.jinja:140 -msgid "Past awardees include:" -msgstr "" - -#: template/page-funding.html.jinja:145 template/page-funding.html.jinja:210 -msgid "Visit XRPL Grants" -msgstr "" - -#: template/page-funding.html.jinja:157 -msgid "" -"Software developers, teams, and start-ups building directly on the XRP " -"Ledger" -msgstr "" - -#: template/page-funding.html.jinja:165 -msgid "" -"Coding experience Github " -"repository Project " -"narrative/description At " -"least one developer on the core team Budget and milestones" -msgstr "" - -#: template/page-funding.html.jinja:172 -msgid "XRPL intermediate to advanced developers" -msgstr "" - -#: template/page-funding.html.jinja:180 template/page-funding.html.jinja:201 -msgid "$10,000 - $200,000" -msgstr "" - -#: template/page-funding.html.jinja:193 -msgid "" -"Coding experience Github " -"repository Project " -"narrative/description At " -"least one developer on the core team Budget and milestone" -msgstr "" - -#: template/page-funding.html.jinja:222 -#, fuzzy -msgid "XRPL Accelerator" -msgstr "उपयोग का अन्वेषण करें" - -#: template/page-funding.html.jinja:223 -msgid "Advance your project" -msgstr "" - -#: template/page-funding.html.jinja:225 -msgid "" -"12-week program for entrepreneurs building on the XRP Ledger to scale " -"their projects into thriving businesses." -msgstr "" - -#: template/page-funding.html.jinja:228 template/page-funding.html.jinja:293 -msgid "View XRPL Accelerator" -msgstr "" - -#: template/page-funding.html.jinja:240 -msgid "" -"Start-ups building scalable products on XRPL that can capture a large " -"market opportunity" -msgstr "" - -#: template/page-funding.html.jinja:248 template/page-funding.html.jinja:277 -msgid "" -" Strong founding team
" -" Bold, ambitious vision " -"
Ideally an MVP and " -"monetization strategy" -msgstr "" - -#: template/page-funding.html.jinja:255 -msgid "" -" XRPL advanced developers " -"
Business acumen" -msgstr "" - -#: template/page-funding.html.jinja:264 template/page-funding.html.jinja:285 -msgid "$50,000 (grant) + pitch for venture funding" -msgstr "" - -#: template/page-funding.html.jinja:305 -#, fuzzy -msgid "XRPL Bounties" -msgstr "एक्सआरपी वॉलेट" - -#: template/page-funding.html.jinja:306 -msgid "Go Deep" -msgstr "" - -#: template/page-funding.html.jinja:308 -msgid "" -"Bounties are awards for developing software and integrations that enable " -"and improve specific use cases for the XRP Ledger." -msgstr "" - -#: template/page-funding.html.jinja:317 -msgid "Software developers and teams" -msgstr "" - -#: template/page-funding.html.jinja:325 -msgid "" -"Coding experience " -"Specialized skills (depending on the bounty)" -msgstr "" - -#: template/page-funding.html.jinja:332 template/page-funding.html.jinja:353 -msgid "Intermediate to advanced (prior XRPL experience not required)" -msgstr "" - -#: template/page-funding.html.jinja:341 template/page-funding.html.jinja:361 -msgid "$500 - $100,000 per milestone" -msgstr "" - -#: template/page-funding.html.jinja:368 -msgid "Visit XRPL Bounties" -msgstr "" - -#: template/page-history.html.jinja:28 -msgid "Provide a Better Alternative to Bitcoin" -msgstr "" - -#: template/page-history.html.jinja:29 -msgid "XRPL's Origin" -msgstr "" - -#: template/page-history.html.jinja:36 -#, fuzzy -msgid "" -"In 2011, three engineers—David Schwartz, Jed McCaleb, and Arthur " -"Britto—began developing the XRP Ledger (XRPL). Fascinated by Bitcoin, " -"they set out to create a better version that improved upon its " -"limitations—with the goal of creating a digital asset that was more " -"sustainable and built specifically for payments." -msgstr "" -"बिटकॉइन से मोहित होकर, उन्होंने एक बेहतर संस्करण बनाने के लिए निर्धारित " -"किया जो इसकी सीमाओं में सुधार करता है-एक डिजिटल संपत्ति बनाने के लक्ष्य " -"के साथ जो अधिक टिकाऊ और विशेष रूप से भुगतान के लिए बनाया गया था।" - -#: template/page-history.html.jinja:37 -#, fuzzy -msgid "" -"The XRP Ledger first launched in June 2012. Shortly thereafter, they were" -" joined by Chris Larsen, and the group started the Company NewCoin in " -"September 2012 (quickly renamed OpenCoin and now named Ripple)." -msgstr "" -"एक्सआरपी लेजर को पहली बार जून 2012 में लॉन्च किया गया था। इसके तुरंत बाद," -" वे क्रिस लार्सन से जुड़ गए और समूह ने सितंबर 2012 में कंपनी ओपनकॉइन शुरू" -" किया (जिसे अब रिपल नाम दिया गया है)।" - -#: template/page-history.html.jinja:38 -msgid "" -"The XRPL founders gifted 80 billion XRP, the platform’s native currency, " -"to the company. Ripple has since put the majority in escrow." -msgstr "" - -#: template/page-history.html.jinja:54 -msgid "2011 XRP Ledger Development" -msgstr "2011 एक्सआरपी लेजर विकास" - -#: template/page-history.html.jinja:57 -msgid "" -"In early 2011, three developers—David Schwartz, Jed McCaleb, and Arthur " -"Britto—were fascinated with Bitcoin but observed the waste inherent in " -"mining. They sought to create a more sustainable system for sending value" -" (an idea outlined in a May 2011 forum post: “Bitcoin without mining”)." -msgstr "" - -#: template/page-history.html.jinja:60 -#, fuzzy -msgid "" -"Their initial observations about the high energy consumption and " -"scalability issues that would plague Bitcoin proved prescient. In 2019, " -"estimates suggest Bitcoin mining used more energy than the entire country" -" of Portugal. Moreover, their initial read indicated that significant " -"problems could arise if any miner obtained (or miners colluded to obtain)" -" greater than 50% of the mining power. That risk persists with " -"Bitcoin (and Ethereum) today as mining power has consolidated in China." -msgstr "" -"उच्च ऊर्जा खपत और मापनीयता के मुद्दों के बारे में उनकी प्रारंभिक " -"टिप्पणियां जो बिटकॉइन को प्रभावित करती हैं, प्रेजेंटेटिव साबित हुईं। " -"(2019 में, अनुमान बताते हैं कि बिटकॉइन" -" माइनिंग का इस्तेमाल किया गया पूरे पुर्तगाल देश की तुलना में अधिक " -"ऊर्जा है!) इसके अलावा, उनके प्रारंभिक पढ़ने से संकेत मिलता है कि यदि कोई " -"खनिक (या खनिक प्राप्त करने के लिए मिलीभगत) 50% से अधिक; खनन शक्ति का -" -" यह जोखिम आज भी बिटकॉइन (और एथेरियम) के साथ बना हुआ है क्योंकि खनन शक्ति " -"चीन में समेकित हो गई है।" - -#: template/page-history.html.jinja:68 -msgid "XRPL Launches its Native Currency, XRP" -msgstr "" - -#: template/page-history.html.jinja:71 -msgid "" -"The trio of developers continued the work to build a distributed ledger " -"that improved upon these fundamental limitations of Bitcoin, originally " -"naming the code Ripple. The ledger included a digital asset that would " -"originally be called “ripples” (XRP as the currency code) to follow the " -"same naming convention as Bitcoin (BTC). At the time, the name Ripple " -"stood for the open-source project, the unique consensus ledger (Ripple " -"Consensus Ledger), transaction protocol (Ripple Transaction Protocol or " -"RTXP), the network (Ripple network), and the digital asset (known as " -"“ripples”)." -msgstr "" - -#: template/page-history.html.jinja:74 -#, fuzzy -msgid "" -"In practice, this approach led to many broad uses of “Ripple.” For " -"clarity, the community simply started calling the digital asset by its " -"currency code, “XRP.”" -msgstr "" -"व्यवहार में, इस दृष्टिकोण ने \"रिपल\" के कई व्यापक उपयोगों को जन्म दिया। " -"स्पष्ट करने के लिए, समुदाय ने डिजिटल संपत्ति को \"XRP\" कहना शुरू कर " -"दिया।" - -#: template/page-history.html.jinja:75 -#, fuzzy -msgid "" -"By June 2012, Schwartz, McCaleb, and Britto finished code development, " -"and the Ledger was complete." -msgstr "" -"जून 2012 तक, श्वार्ट्ज, मैककेलेब और ब्रिटो ने कोड विकास पूरा कर लिया और " -"एक्सआरपी लेजर पूरी तरह से काम कर रहा था।" - -#: template/page-history.html.jinja:76 -#, fuzzy -msgid "" -"Once the XRP Ledger was live, 80% of the XRP was gifted to a new " -"company that set out to build use cases for the digital asset—initially " -"called NewCoin and renamed quickly to OpenCoin." -msgstr "" -"एक बार एक्सआरपी लेजर पूरी तरह से काम कर रहा था, 80% XRP का उपहार " -"कंपनी को उपहार में दिया गया था - शुरू में इसे NewCoin कहा जाता था और " -"जल्दी से इसका नाम बदलकर OpenCoin कर दिया गया।" - -#: template/page-history.html.jinja:77 -msgid "" -"Chris Larsen was the CEO of OpenCoin, and at the company's founding, Jed " -"was co-founder and CTO, David Schwartz was the Chief Cryptography " -"Officer, and Arthur Britto an advisor." -msgstr "" -"क्रिस लार्सन ओपनकॉइन के सीईओ थे, और कंपनी की स्थापना में, जेड सह-संस्थापक" -" और सीटीओ थे, डेविड श्वार्ट्ज मुख्य क्रिप्टोग्राफी अधिकारी थे, और आर्थर " -"ब्रिटो एक सलाहकार थे।" - -#: template/page-history.html.jinja:85 -#, fuzzy -msgid "OpenCoin Rebranded to Ripple Labs" -msgstr "2013 ओपनकॉइन को रिपल लैब्स में रीब्रांड किया गया" - -#: template/page-history.html.jinja:88 -msgid "" -"Since the early days, OpenCoin set out to revolutionize the global " -"financial system. Despite the revolutionary ideals of many of Bitcoin’s " -"early believers, Larsen never thought blockchain technology should be " -"used to overthrow the existing financial system. He believed that " -"history’s most transformative innovations have always relied on the great" -" ideas that came before them—not displacing them." -msgstr "" - -#: template/page-history.html.jinja:91 -#, fuzzy -msgid "" -"In early conversations with potential customers, the team was asked about" -" the differences between the Ripple project and OpenCoin company. With " -"the community starting to refer to the digital asset as XRP, company " -"leaders decided to rebrand the company to Ripple Labs, which has been " -"shortened over time to “Ripple.”" -msgstr "" -"संभावित ग्राहकों के साथ शुरुआती बातचीत में, टीम से रिपल प्रोजेक्ट और " -"ओपनकॉइन कंपनी के बीच अंतर के बारे में पूछा गया था। समुदाय ने  डिजिटल एसेट" -" को अपने मुद्रा कोड \\XRP\\ द्वारा अधिक व्यापक रूप से कॉल करना शुरू कर " -"दिया, कंपनी के नेताओं ने कंपनी को Ripple Labs में रीब्रांड करने का निर्णय" -" लिया, जिसे समय के साथ \\Ripple में छोटा कर दिया गया।" - -#: template/page-history.html.jinja:92 -#, fuzzy -msgid "" -"Today, Ripple has created a use case leveraging the XRP Ledger and XRP " -"for liquidity management in its cross-border payments business. Ripple " -"also remains a stakeholder and contributor to the broader XRPL community." -msgstr "" -"आज, कंपनी अपने सीमा-पार भुगतान व्यवसाय में तरलता प्रबंधन के लिए XRP और " -"XRP लेजर का उपयोग करती है। रिपल भी व्यापक एक्सआरपी समुदाय में एक हितधारक " -"और योगदानकर्ता बना हुआ है।" - -#: template/page-history.html.jinja:100 -msgid "XRPL Foundation Launched" -msgstr "" - -#: template/page-history.html.jinja:103 -msgid "" -"Founded September 24, 2020, the XRPL " -"Foundation is an independent and nonprofit entity with a mission to " -"accelerate the development and adoption of the decentralized XRP Ledger. " -"The Foundation received an initial donation of over $6.5M from Coil, " -"Ripple, and Gatehub to fund the Foundation’s work in service of the " -"growing number of developers and other global " -"blockchain community members building on the XRP Ledger." -msgstr "" - -#: template/page-home.html.jinja:27 -msgid "The Blockchain
Built for Business" -msgstr "" - -#: template/page-home.html.jinja:28 -msgid "XRPL | XRP Ledger" -msgstr "" - -#: template/page-home.html.jinja:30 -msgid "Start Building" -msgstr "" - -#: template/page-home.html.jinja:41 -msgid "The XRP Ledger: The Blockchain Built for Business" -msgstr "" - -#: template/page-home.html.jinja:42 -msgid "" -"The XRP Ledger (XRPL) is a decentralized, public blockchain led by a " -"global community of businesses and developers looking to solve problems " -"and create value." -msgstr "" - -#: template/page-home.html.jinja:43 -msgid "" -"Proven reliable over more than a decade of error-free functioning, the " -"XRPL offers streamlined development, low transaction costs, high " -"performance, and sustainability. So you can build with confidence–and " -"move your most critical projects forward." -msgstr "" - -#: template/page-home.html.jinja:49 -msgid "Why developers choose the XRP Ledger" -msgstr "" - -#: template/page-home.html.jinja:55 -msgid "Public and Decentralized" -msgstr "" - -#: template/page-home.html.jinja:56 -msgid "Open source, open to anyone to build on, maintained by the community" -msgstr "" - -#: template/page-home.html.jinja:58 -#, fuzzy -msgid "Streamlined Development" -msgstr "2011 एक्सआरपी लेजर विकास" - -#: template/page-home.html.jinja:59 -msgid "Intentional innovations, tools and documentation reduce time to market" -msgstr "" - -#: template/page-home.html.jinja:61 -msgid "High Performance" -msgstr "" - -#: template/page-home.html.jinja:62 -msgid "Thousands of transactions settled in seconds" -msgstr "" - -#: template/page-home.html.jinja:64 -#, fuzzy -msgid "Low Cost" -msgstr "कम लागत" - -#: template/page-home.html.jinja:65 -msgid "" -"At fractions of a penny per transaction, costs are inexpensive enough to " -"enable a wide variety of blockchain use cases" -msgstr "" - -#: template/page-home.html.jinja:67 -#, fuzzy -msgid "Motivated Community" -msgstr "एक्सआरपी समुदाय" - -#: template/page-home.html.jinja:68 -msgid "" -"Companies, developers, validators, and users work together to make the " -"XRP Ledger better every day" -msgstr "" - -#: template/page-home.html.jinja:70 -msgid "Proven Reliability" -msgstr "" - -#: template/page-home.html.jinja:71 -msgid "" -"10+ years of error-free, uninterrupted performance over more than 63 " -"million ledgers" -msgstr "" - -#: template/page-home.html.jinja:85 -msgid "" -"Activate the proven potential of the XRP Ledger and find a trusted " -"foundation for your next innovation" -msgstr "" - -#: template/page-home.html.jinja:86 -msgid "Powerful Features" -msgstr "" - -#: template/page-home.html.jinja:92 -msgid "" -"A high-performance decentralized peer-to-peer multi-currency exchange " -"built directly into the blockchain" -msgstr "" - -#: template/page-home.html.jinja:94 -#, fuzzy -msgid "Cross-Currency Payments" -msgstr "सीमा पार से भुगतान" - -#: template/page-home.html.jinja:95 -msgid "" -"Atomically settle multi-hop payments that cross currency or national " -"boundaries with ease" -msgstr "" - -#: template/page-home.html.jinja:97 -msgid "Payment
Channels" -msgstr "" - -#: template/page-home.html.jinja:98 -msgid "Batched micropayments with unlimited speed, secured with XRP" -msgstr "" - -#: template/page-home.html.jinja:100 -msgid "Multi-Signing" -msgstr "" - -#: template/page-home.html.jinja:101 -msgid "Flexible options for custody and security of on-ledger accounts" -msgstr "" - -#: template/page-home.html.jinja:104 -msgid "" -"All currencies other than XRP can be represented in the XRP Ledger as " -"tokens, sometimes called “IOUs”" -msgstr "" - -#: template/page-home.html.jinja:121 -msgid "Choose a path, and bring your project to life on the XRP Ledger" -msgstr "" - -#: template/page-home.html.jinja:122 -#, fuzzy -msgid "Where to Start" -msgstr "शुरू हो जाओ" - -#: template/page-home.html.jinja:127 -msgid "Quickstart" -msgstr "" - -#: template/page-home.html.jinja:128 -msgid "Access everything you need to get started working with the XRPL" -msgstr "" - -#: template/page-home.html.jinja:130 -msgid "Guided Tutorials" -msgstr "" - -#: template/page-home.html.jinja:131 -msgid "Follow step-by-step guides for frequent tasks" -msgstr "" - -#: template/page-home.html.jinja:133 -msgid "XRPL Fundamentals" -msgstr "" - -#: template/page-home.html.jinja:134 -msgid "Read about the XRPL’s foundational concepts" -msgstr "" - -#: template/page-home.html.jinja:136 -msgid "Choose a Language" -msgstr "" - -#: template/page-home.html.jinja:137 -msgid "" -"Find tools, documentation, and sample code in Python, Java, Javascript, " -"or use HTTP APIs" -msgstr "" - -#: template/page-home.html.jinja:139 -msgid "Get Inspired" -msgstr "" - -#: template/page-home.html.jinja:140 -msgid "See what your peers have built on the XRPL" -msgstr "" - -#: template/page-home.html.jinja:159 -msgid "Our Shared Vision for XRPL’s Future" -msgstr "" - -#: template/page-home.html.jinja:160 -msgid "" -"Together, we're building the greenest infrastructure to drive blockchain " -"innovation that doesn't sacrifice utility or performance, to bring the " -"developer community's vision to life." -msgstr "" - -#: template/page-home.html.jinja:168 -msgid "" -"Explore what the community is building to enable new features and use " -"cases on XRPL" -msgstr "" - -#: template/page-home.html.jinja:169 -msgid "Preview New Features" -msgstr "" - -#: template/page-home.html.jinja:173 -msgid "In Development" -msgstr "" - -#: template/page-home.html.jinja:174 -msgid "Smart Contracts" -msgstr "" - -#: template/page-home.html.jinja:175 -msgid "" -"Hooks are small, efficient WebAssembly modules designed specifically for " -"the XRPL. Check out the hooks amendment and public testnet that enable smart " -"contract functionality." -msgstr "" - -#: template/page-home.html.jinja:177 -msgid "Enabled" -msgstr "" - -#: template/page-home.html.jinja:178 -msgid "Non-Fungible Tokens" -msgstr "" - -#: template/page-home.html.jinja:179 -msgid "" -"Lower fees, faster transactions, and custom token functionality make the " -"XRPL ideally suited for building an ecosystem for NFTs. Explore the XRP " -"Ledger's NFT capabilities." -msgstr "" - -#: template/page-home.html.jinja:197 -msgid "Join the Community
at XRPL.org" -msgstr "" - -#: template/page-home.html.jinja:199 -msgid "" -"Connect at XRPL.org, a community by and for the developers
and entrepeneurs who rely on the XRPL." -msgstr "" - -#: template/page-home.html.jinja:200 -#, fuzzy -msgid "Get Involved" -msgstr "जानकारी मिलना" - -#: template/page-impact.html.jinja:31 -msgid "Today’s Value, Tomorrow’s Vision" -msgstr "" - -#: template/page-impact.html.jinja:32 template/page-xrpl-overview.html.jinja:40 -msgid "XRPL Today, XRPL Tomorrow" -msgstr "" - -#: template/page-impact.html.jinja:44 -msgid "Building for the Future" -msgstr "" - -#: template/page-impact.html.jinja:46 -msgid "Consensus protocol is efficient and sustainable" -msgstr "" - -#: template/page-impact.html.jinja:48 -msgid "" -"For more than 272 million migrants worldwide, sending and receiving money" -" across borders is expensive, unreliable and complex." -msgstr "" - -#: template/page-impact.html.jinja:49 -#, fuzzy -msgid "" -"Open and decentralized, blockchain and crypto are seeing an increase in " -"adoption across the financial services industry, from retail and " -"institutional investment to commercial use cases " -"like CBDCs, NFTs, and cross-border payments." -msgstr "" -"इसने वित्तीय सेवा उद्योग में खुदरा और संस्थागत निवेश से लेकर सीमा पार से " -"भुगतान जैसे व्यावसायिक उपयोग के मामलों में प्रौद्योगिकी को अपनाने में " -"वृद्धि की है।" - -#: template/page-impact.html.jinja:74 -#, fuzzy -msgid "A Sustainable Future" -msgstr "टिकाऊ" - -#: template/page-impact.html.jinja:75 -#, fuzzy -msgid "What makes the XRPL sustainable?" -msgstr "एक्सआरपी और एक्सआरपी लेजर ग्रीन क्या बनाता है?" - -#: template/page-impact.html.jinja:76 -msgid "" -"XRPL’s unique consensus mechanism is eco-friendly—it does not require " -"mining to settle transactions. This results in efficiency without " -"sacrificing security, decentralization, or scalability." -msgstr "" - -#: template/page-impact.html.jinja:77 -msgid "" -"The trivial amount of energy it does consume is then neutralized with " -"carbon credits through EW Zero, an open-source blockchain decarbonization" -" tool." -msgstr "" - -#: template/page-impact.html.jinja:91 -msgid "Featured companies & projects running on the XRP Ledger." -msgstr "" - -#: template/page-impact.html.jinja:92 -#, fuzzy -msgid "Sustainable Projects" -msgstr "टिकाऊ" - -#: template/page-impact.html.jinja:94 -msgid "" -"Learn more about companies and developers who are using the XRP Ledger to" -" solve interesting problems efficiently and sustainably." -msgstr "" - -#: template/page-impact.html.jinja:95 -#, fuzzy -msgid "See More" -msgstr "एक्सप्लोरर" - -#: template/page-impact.html.jinja:107 -msgid "How can businesses and developers connect and contribute?" -msgstr "" - -#: template/page-impact.html.jinja:109 -msgid "" -"If you want to advance business with sustainable solutions to real-world " -"problems, you’re invited to join the global, growing XRPL community. Here" -" are some ways to get involved:" -msgstr "" - -#: template/page-impact.html.jinja:112 template/page-impact.html.jinja:177 -msgid "Join the Community" -msgstr "" - -#: template/page-impact.html.jinja:123 -msgid "Blog" -msgstr "" - -#: template/page-impact.html.jinja:124 -msgid "" -"Check out the XRPL dev blog to " -"stay up-to-date on the latest innovations and developments in the XRPL " -"community." -msgstr "" - -#: template/page-impact.html.jinja:132 template/page-impact.html.jinja:160 -msgid "" -"Attend meetups, hackathons, and conferences " -"to meet other members of the community." -msgstr "" - -#: template/page-impact.html.jinja:138 -msgid "Code" -msgstr "" - -#: template/page-impact.html.jinja:139 -msgid "" -"View the Github repositories to find blockchain projects to " -"see how you can contribute." -msgstr "" - -#: template/page-impact.html.jinja:147 template/page-impact.html.jinja:168 -msgid "Join the conversation on social media using #XRPLCommunity." -msgstr "" - -#: template/page-references.html.jinja:9 -msgid "References and APIs" -msgstr "" - -#: template/page-references.html.jinja:10 -msgid "Everything You Need to Know" -msgstr "" - -#: template/page-rpc-tool.html.jinja:10 -msgid "" -"This is a debug tool for printing raw information about an account (by " -"classic address), a transaction (by hash) or a ledger (by sequence " -"number)." -msgstr "" - -#: template/page-rpc-tool.html.jinja:13 -msgid "XRP Ledger address, transaction ID, or ledger index" -msgstr "" - -#: template/page-rpc-tool.html.jinja:14 -msgid "Try an account like rf1BiGeXwwQoi8Z2ueFYTEXSwuJYfV2Jpn." -msgstr "rf1BiGeXwwQoi8Z2ueFYTEXSwuJYfV2Jpn जैसा खाता आज़माएं." - -#: template/page-rpc-tool.html.jinja:15 -msgid "Get info" -msgstr "जानकारी मिलना" - -#: template/page-rpc-tool.html.jinja:18 -#: template/page-validator-domain-verifier.html.jinja:20 -msgid "Result" -msgstr "नतीजा" - -#: template/page-rpc-tool.html.jinja:24 -msgid "Permalink" -msgstr "स्थायी लिंक" - -#: template/page-rpc-tool.html.jinja:25 -msgid "Explorer" -msgstr "एक्सप्लोरर" - -#: template/page-rpc-tool.html.jinja:30 template/page-rpc-tool.html.jinja:35 -#: template/page-rpc-tool.html.jinja:45 template/page-rpc-tool.html.jinja:50 -#: template/page-rpc-tool.html.jinja:56 template/page-rpc-tool.html.jinja:64 -#: template/page-rpc-tool.html.jinja:71 template/page-rpc-tool.html.jinja:76 -#: template/page-rpc-tool.html.jinja:85 template/page-rpc-tool.html.jinja:91 -msgid "expand all" -msgstr "सभी का विस्तार करें" - -#: template/page-rpc-tool.html.jinja:31 template/page-rpc-tool.html.jinja:36 -#: template/page-rpc-tool.html.jinja:46 template/page-rpc-tool.html.jinja:51 -#: template/page-rpc-tool.html.jinja:57 template/page-rpc-tool.html.jinja:65 -#: template/page-rpc-tool.html.jinja:72 template/page-rpc-tool.html.jinja:77 -#: template/page-rpc-tool.html.jinja:86 template/page-rpc-tool.html.jinja:92 -msgid "collapse all" -msgstr "सभी को संकुचित करें" - -#: template/page-rpc-tool.html.jinja:53 -msgid "(last 20)" -msgstr "" - -#: template/page-rpc-tool.html.jinja:55 template/page-rpc-tool.html.jinja:63 -#: template/page-rpc-tool.html.jinja:84 template/page-rpc-tool.html.jinja:90 -msgid "expand tx" -msgstr "tx . का विस्तार करें" - -#: template/page-rpc-tool.html.jinja:58 template/page-rpc-tool.html.jinja:66 -msgid "next 20" -msgstr "अगले 20" - -#: template/page-rpc-tool.html.jinja:59 template/page-rpc-tool.html.jinja:67 -msgid "prev 20" -msgstr "पिछला 20" - -#: template/page-tx-sender.html.jinja:8 -msgid "Status" -msgstr "स्थिति" - -#: template/page-tx-sender.html.jinja:12 -msgid "XRP Testnet:" -msgstr "एक्सआरपी टेस्टनेट:" - -#: template/page-tx-sender.html.jinja:13 -msgid "Not Connected" -msgstr "जुड़े नहीं हैं" - -#: template/page-tx-sender.html.jinja:14 -msgid "Sending Address:" -msgstr "भेजने का पता:" - -#: template/page-tx-sender.html.jinja:15 template/page-tx-sender.html.jinja:17 -msgid "(None)" -msgstr "(कोई नहीं)" - -#: template/page-tx-sender.html.jinja:16 -msgid "Testnet XRP Available:" -msgstr "टेस्टनेट एक्सआरपी उपलब्ध:" - -#: template/page-tx-sender.html.jinja:20 -msgid "Transaction History" -msgstr "लेनदेन इतिहास" - -#: template/page-tx-sender.html.jinja:33 -msgid "" -"This tool sends transactions to the XRP Testnet address of your choice so you can test how " -"you monitor and respond to incoming transactions." -msgstr "" -"यह टूल लेन-देन को आपकी पसंद के XRP " -"टेस्टनेट पते पर भेजता है ताकि आप परीक्षण कर सकें कि आप आने वाले " -"लेन-देन की निगरानी और प्रतिक्रिया कैसे करते हैं।" - -#: template/page-tx-sender.html.jinja:37 -msgid "Initialize" -msgstr "प्रारंभ" - -#: template/page-tx-sender.html.jinja:38 -msgid "Set up the necessary Testnet XRP addresses to send test payments." -msgstr "परीक्षण भुगतान भेजने के लिए आवश्यक टेस्टनेट एक्सआरपी पते सेट करें।" - -#: template/page-tx-sender.html.jinja:42 -msgid "Destination Address" -msgstr "गंतव्य पता" - -#: template/page-tx-sender.html.jinja:44 -msgid "Send transactions to this XRP Testnet address" -msgstr "इस एक्सआरपी टेस्टनेट पते पर लेनदेन भेजें" - -#: template/page-tx-sender.html.jinja:46 -msgid "" -"Caution: This X-address is intended for use on Mainnet. " -"Testnet addresses have a \"T\" prefix instead." -msgstr "" -"सावधानी: यह X-पता मेननेट पर उपयोग के लिए है। इसके बजाय " -"टेस्टनेट पतों में \\T\\ उपसर्ग होता है।" - -#: template/page-tx-sender.html.jinja:48 -msgid "Send Transaction" -msgstr "लेनदेन भेजें" - -#: template/page-tx-sender.html.jinja:53 -msgid "(loading)" -msgstr "(लोड हो रहा है)" - -#: template/page-tx-sender.html.jinja:55 -msgid "Send XRP Payment" -msgstr "एक्सआरपी भुगतान भेजें" - -#: template/page-tx-sender.html.jinja:58 template/page-tx-sender.html.jinja:116 -msgid "drops of XRP" -msgstr "एक्सआरपी की बूँदें" - -#: template/page-tx-sender.html.jinja:62 -msgid "Send a simple XRP-to-XRP payment." -msgstr "एक साधारण XRP-to-XRP भुगतान भेजें।" - -#: template/page-tx-sender.html.jinja:70 -msgid "(Getting ready to send partial payments)" -msgstr "(आंशिक भुगतान भेजने की तैयारी)" - -#: template/page-tx-sender.html.jinja:76 -msgid "Send Partial Payment" -msgstr "आंशिक भुगतान भेजें" - -#: template/page-tx-sender.html.jinja:78 -msgid "" -"Deliver a small amount of XRP with a large Amount value, to " -"test your handling of partial " -"payments." -msgstr "" -"आंशिक भुगतान के अपने प्रबंधन का " -"परीक्षण करने के लिए, एक बड़े राशि मान के साथ XRP की एक छोटी " -"राशि वितरित करें।" - -#: template/page-tx-sender.html.jinja:88 -msgid "Create Escrow" -msgstr "एस्क्रो बनाएं" - -#: template/page-tx-sender.html.jinja:91 -msgid "seconds" -msgstr "सेकंड" - -#: template/page-tx-sender.html.jinja:96 -msgid "Finish automatically" -msgstr "स्वचालित रूप से समाप्त करें" - -#: template/page-tx-sender.html.jinja:99 -msgid "" -"Create a time-based escrow of 1 XRP for the " -"specified number of seconds." -msgstr "" -"निर्दिष्ट सेकंड के लिए 1 XRP का समय-आधारित " -"एस्क्रो बनाएं।" - -#: template/page-tx-sender.html.jinja:102 -msgid "(Waiting to release Escrow when it's ready)" -msgstr "(एस्क्रो के तैयार होने की प्रतीक्षा में)" - -#: template/page-tx-sender.html.jinja:113 -msgid "Create Payment Channel" -msgstr "भुगतान चैनल बनाएं" - -#: template/page-tx-sender.html.jinja:119 -msgid "" -"Create a payment channel and fund " -"it with the specified amount of XRP." -msgstr "" -"एक भुगतान चैनल बनाएं और एक्सआरपी की" -" निर्दिष्ट राशि से इसे निधि दें।" - -#: template/page-tx-sender.html.jinja:129 -msgid "Send Issued Currency" -msgstr "जारी मुद्रा भेजें" - -#: template/page-tx-sender.html.jinja:135 -msgid "" -"Your destination address needs a trust line to (the test sender) for the currency in question. Otherwise, " -"you'll get tecPATH_DRY." -msgstr "" -"आपके गंतव्य पते के लिए ट्रस्ट " -"लाइन से (परीक्षा प्रेषक) " -"की आवश्यकता है प्रश्न में मुद्रा। अन्यथा, आपको tecPATH_DRY मिलेगा।" - -#: template/page-tx-sender.html.jinja:145 -msgid "Trust for" -msgstr "के लिए भरोसा करें" - -#: template/page-tx-sender.html.jinja:151 -msgid "" -"The test sender creates a trust " -"line to your account for the given currency." -msgstr "" -"परीक्षण प्रेषक दी गई मुद्रा के लिए आपके खाते में एक ट्रस्ट लाइन बनाता है।" - -#: template/page-uses.html.jinja:23 -msgid "Aesthetes" -msgstr "" - -#: template/page-uses.html.jinja:24 -msgid "" -"Aesthetes is a bridge between fine art and blockchain, enabling everyone," -" around the world, to buy and sell with just a click for fractional " -"ownership of international physical art." -msgstr "" - -#: template/page-uses.html.jinja:26 template/page-uses.html.jinja:42 -#: template/page-uses.html.jinja:146 template/page-uses.html.jinja:162 -#: template/page-uses.html.jinja:170 template/page-uses.html.jinja:202 -#: template/page-uses.html.jinja:234 template/page-uses.html.jinja:289 -#: template/page-uses.html.jinja:378 -#, fuzzy -msgid "NFTs" -msgstr "लाभ" - -#: template/page-uses.html.jinja:31 -msgid "Anchain.AI" -msgstr "" - -#: template/page-uses.html.jinja:32 -msgid "" -"AnChain.AI offers AI-powered intelligence enhancing blockchain security, " -"risk, and compliance strategies." -msgstr "" - -#: template/page-uses.html.jinja:34 template/page-uses.html.jinja:292 -#: template/page-uses.html.jinja:390 -msgid "Security" -msgstr "सुरक्षा" - -#: template/page-uses.html.jinja:39 -msgid "Audiotarky" -msgstr "" - -#: template/page-uses.html.jinja:40 -msgid "" -"Audiotarky is a new music streaming platform that prioritises artists and" -" privacy over algorithms and shareholders." -msgstr "" - -#: template/page-uses.html.jinja:47 -#, fuzzy -msgid "BitGo" -msgstr "बिटकॉइन" - -#: template/page-uses.html.jinja:48 -msgid "" -"BitGo provides custodial and non-custodial asset holdings for digital " -"assets including XRP. BitGo's enterprise-level security empowers " -"businesses to integrate digital currencies like XRP into new and existing" -" financial systems." -msgstr "" -"BitGo, XRP सहित डिजिटल परिसंपत्तियों के लिए कस्टोडियल और गैर-कस्टोडियल " -"एसेट होल्डिंग्स प्रदान करता है। BitGo की उद्यम-स्तरीय सुरक्षा व्यवसायों " -"को XRP जैसी डिजिटल मुद्राओं को नई और मौजूदा वित्तीय प्रणालियों में एकीकृत" -" करने का अधिकार देती है।" - -#: template/page-uses.html.jinja:50 template/page-uses.html.jinja:297 -#: template/page-uses.html.jinja:410 -#, fuzzy -msgid "Custody" -msgstr "एसेट कस्टडी" - -#: template/page-uses.html.jinja:55 -msgid "Bithomp" -msgstr "" - -#: template/page-uses.html.jinja:56 -msgid "" -"Bithomp is an XRPL explorer and toolkit, used by many cryptocurrency " -"exchanges. Bithomp was launched in 2015 with a mission to build the most " -"user-friendly XRPL explorer." -msgstr "" - -#: template/page-uses.html.jinja:58 template/page-uses.html.jinja:114 -#: template/page-uses.html.jinja:154 template/page-uses.html.jinja:210 -#: template/page-uses.html.jinja:242 template/page-uses.html.jinja:250 -#: template/page-uses.html.jinja:258 template/page-uses.html.jinja:266 -#: template/page-uses.html.jinja:282 template/page-uses.html.jinja:366 -msgid "Infrastructure" -msgstr "आधारभूत संरचना" - -#: template/page-uses.html.jinja:63 -msgid "bitpay" -msgstr "" - -#: template/page-uses.html.jinja:64 -msgid "" -"BitPay builds powerful, enterprise-grade tools for accepting and spending" -" cryptocurrencies, including XRP." -msgstr "" -"बिटपे एक्सआरपी सहित क्रिप्टोकरेंसी को स्वीकार करने और खर्च करने के लिए " -"शक्तिशाली, एंटरप्राइज-ग्रेड टूल बनाता है।" - -#: template/page-uses.html.jinja:71 -msgid "Carbonland Trust" -msgstr "" - -#: template/page-uses.html.jinja:72 -msgid "" -"Carbonland Trust offers transparent nature-based carbon credits, and " -"inclusive access to voluntary carbon markets for landowners and " -"corporations alike. " -msgstr "" - -#: template/page-uses.html.jinja:74 -#, fuzzy -msgid "Carbon Markets/Sustainability" -msgstr "स्थिरता" - -#: template/page-uses.html.jinja:79 -msgid "Casino Coin" -msgstr "" - -#: template/page-uses.html.jinja:80 -msgid "" -"CasinoCoin (CSC) is a digital currency developed specifically for the " -"regulated gaming industry." -msgstr "" - -#: template/page-uses.html.jinja:87 -#, fuzzy -msgid "Cryptum" -msgstr "क्रिप्टो" - -#: template/page-uses.html.jinja:88 -msgid "" -"Cryptum is an API/SDK platform for integrating the XRP Ledger with any " -"application." -msgstr "" - -#: template/page-uses.html.jinja:90 template/page-uses.html.jinja:98 -#: template/page-uses.html.jinja:218 template/page-uses.html.jinja:283 -#: template/page-uses.html.jinja:370 -#, fuzzy -msgid "Developer Tooling" -msgstr "डेवलपर्स" - -#: template/page-uses.html.jinja:95 -msgid "Evernode" -msgstr "" - -#: template/page-uses.html.jinja:96 -msgid "" -"Evernode proposes a permissionless, flexible, scalable Layer 2 smart " -"contract network built from the XRP Ledger." -msgstr "" - -#: template/page-uses.html.jinja:103 -msgid "Forte" -msgstr "" - -#: template/page-uses.html.jinja:104 -msgid "" -"Forte offers an unprecedented set of easy-to-use tools and services for " -"game developers to integrate blockchain technology into their games, to " -"unlock new economic and creative opportunities for gamers across the " -"world." -msgstr "" -"Forte गेम डेवलपर्स के लिए उपयोग में आसान टूल और सेवाओं का एक अभूतपूर्व " -"सेट प्रदान करता है ताकि दुनिया भर के गेमर्स के लिए नए आर्थिक और रचनात्मक " -"अवसरों को अनलॉक करने के लिए अपने गेम में ब्लॉकचेन तकनीक को एकीकृत किया जा" -" सके।" - -#: template/page-uses.html.jinja:106 template/page-uses.html.jinja:130 -#: template/page-uses.html.jinja:291 template/page-uses.html.jinja:386 -#, fuzzy -msgid "Gaming" -msgstr "ऑनलाइन गेमिंग" - -#: template/page-uses.html.jinja:111 template/page-xrp-overview.html.jinja:171 -msgid "Gatehub" -msgstr "" - -#: template/page-uses.html.jinja:112 -msgid "" -"Gatehub XRP Ledger Markets is an explorer to track Gatehub's inssuances " -"on the XRP Ledger." -msgstr "" - -#: template/page-uses.html.jinja:119 -#, fuzzy -msgid "Gem Wallet" -msgstr "एक्सआरपी वॉलेट" - -#: template/page-uses.html.jinja:120 -msgid "" -"GemWallet is a web extension that enables users to make fast payments on " -"the XRP Ledger via a browser. It's a safer alternative to copying and " -"pasting private keys for use with web applications." -msgstr "" - -#: template/page-uses.html.jinja:122 template/page-uses.html.jinja:274 -#: template/page-uses.html.jinja:288 template/page-uses.html.jinja:374 -#, fuzzy -msgid "Wallet" -msgstr "पर्स" - -#: template/page-uses.html.jinja:127 -#, fuzzy -msgid "Ledger City" -msgstr "एक्सआरपी लेजर" - -#: template/page-uses.html.jinja:128 -msgid "Ledger City is a crypto real estate game powered by the XRP Ledger." -msgstr "" - -#: template/page-uses.html.jinja:135 -msgid "Multichain" -msgstr "" - -#: template/page-uses.html.jinja:136 -msgid "" -"Multichain is the ultimate Router for web3. It is an infrastructure " -"developed for arbitrary cross-chain interactions." -msgstr "" - -#: template/page-uses.html.jinja:138 template/page-uses.html.jinja:287 -#, fuzzy -msgid "Interoperability" -msgstr "स्थिरता" - -#: template/page-uses.html.jinja:143 -#, fuzzy -msgid "NFT Master" -msgstr "मास्टर कार्ड" - -#: template/page-uses.html.jinja:144 -msgid "" -"NFT Master is an NFT marketplace where creators can buy, mint and sell " -"NFTs." -msgstr "" - -#: template/page-uses.html.jinja:151 -msgid "OnTheDex" -msgstr "" - -#: template/page-uses.html.jinja:152 -msgid "" -"OnTheDex is a quality source of information for aggregator sites to take " -"live feeds of XRPL token activity." -msgstr "" - -#: template/page-uses.html.jinja:159 -#, fuzzy -msgid "onXRP" -msgstr "एक्सआरपी" - -#: template/page-uses.html.jinja:160 -msgid "" -"onXRP is an NFT marketplace where creators can buy, mint and sell NFTs " -"built by the XPUNKs." -msgstr "" - -#: template/page-uses.html.jinja:167 -msgid "Peerkat" -msgstr "" - -#: template/page-uses.html.jinja:168 -msgid "Peerkat is an NFT services and tooling provider for the XRPL community." -msgstr "" - -#: template/page-uses.html.jinja:175 -#, fuzzy -msgid "Ripple's CBDC Platform" -msgstr "वॉलेट और प्लेटफॉर्म" - -#: template/page-uses.html.jinja:176 -msgid "" -"Ripple's Central Bank Digital Currency (CBDC) solution enables banks to " -"mint, manage, transact and redeem currency to easily manage the full CBDC" -" lifecycle. Each solution is built on a private ledger that is based upon" -" XRP Ledger technology." -msgstr "" - -#: template/page-uses.html.jinja:178 template/page-uses.html.jinja:406 -msgid "CBDC" -msgstr "" - -#: template/page-uses.html.jinja:183 -#, fuzzy -msgid "Ripple's On-Demand Liquidity" -msgstr "मांग पर चलनिधि" - -#: template/page-uses.html.jinja:184 -msgid "" -"Ripple powers real-time, low-cost cross-border payment settlement by " -"using XRP as a bridge currency between two fiat currencies." -msgstr "" - -#: template/page-uses.html.jinja:191 -msgid "Sologenic DEX" -msgstr "" - -#: template/page-uses.html.jinja:192 -msgid "" -"Sologenic DEX is a popular decentralized exchange on the XRP Ledger made " -"by Sologenic." -msgstr "" - -#: template/page-uses.html.jinja:194 template/page-uses.html.jinja:226 -#: template/page-uses.html.jinja:290 template/page-uses.html.jinja:382 -msgid "Exchanges" -msgstr "एक्सचेंजों" - -#: template/page-uses.html.jinja:199 -msgid "Sologenic NFT" -msgstr "" - -#: template/page-uses.html.jinja:200 -msgid "Sologenic NFT is an NFT marketplace designed by Sologenic." -msgstr "" - -#: template/page-uses.html.jinja:207 -msgid "Towo Labs" -msgstr "" - -#: template/page-uses.html.jinja:208 -msgid "" -"Towo Labs was founded in 2019, to develop XRP Ledger and Interledger " -"infrastructures and make non-custodial crypto management easier." -msgstr "" -"टोवो लैब्स की स्थापना 2019 में एक्सआरपी लेजर और इंटरलेजर इन्फ्रास्ट्रक्चर" -" को विकसित करने और गैर-कस्टोडियल क्रिप्टो प्रबंधन को आसान बनाने के लिए की" -" गई थी।" - -#: template/page-uses.html.jinja:215 -msgid "X-tokenize" -msgstr "" - -#: template/page-uses.html.jinja:216 -msgid "" -"X-Tokenize is a command line tool to simplify the process of creating, " -"managing and distributing issued currencies and eventually NFTs on the " -"XRPL." -msgstr "" - -#: template/page-uses.html.jinja:223 -#, fuzzy -msgid "XP Market" -msgstr "एक्सआरपी वॉलेट" - -#: template/page-uses.html.jinja:224 -msgid "" -"XP Market is a price-tracking website for cryptoassets on the XRPL " -"coupled with a decentralized exchange." -msgstr "" - -#: template/page-uses.html.jinja:231 -#, fuzzy -msgid "XRP Cafe" -msgstr "उपयोग का अन्वेषण करें" - -#: template/page-uses.html.jinja:232 -msgid "" -"XRP Cafe is an NFT marketplace built by the community that aims to be the" -" easiest way to build, sell and mint NFTs." -msgstr "" - -#: template/page-uses.html.jinja:239 -msgid "XRP Toolkit" -msgstr "" - -#: template/page-uses.html.jinja:240 -msgid "" -"XRP Toolkit is a platform for managing crypto assets and trading on the " -"XRP Ledger's decentralized exchange." -msgstr "" - -#: template/page-uses.html.jinja:247 -#, fuzzy -msgid "XRPL Rosetta" -msgstr "उपयोग का अन्वेषण करें" - -#: template/page-uses.html.jinja:248 -msgid "XRPL Rosetta explores fiat data on XRPL through visualization." -msgstr "" - -#: template/page-uses.html.jinja:255 -msgid "XRPL.org Ledger Explorer" -msgstr "" - -#: template/page-uses.html.jinja:256 -msgid "XRPL.org's Ledger Explorer is a block explorer of the XRP Ledger." -msgstr "" - -#: template/page-uses.html.jinja:263 -#, fuzzy -msgid "XRPScan" -msgstr "एक्सआरपी एक्सचेंज" - -#: template/page-uses.html.jinja:264 -msgid "" -"XRPSCAN is an explorer and analytics platform for the XRP Ledger. We " -"provide a clean and simple way to look up accounts, ledgers and " -"transactions." -msgstr "" - -#: template/page-uses.html.jinja:271 -#, fuzzy -msgid "Xumm Wallet" -msgstr "एक्सआरपी वॉलेट" - -#: template/page-uses.html.jinja:272 -msgid "Xumm Wallet is a non custodial wallet with superpower for the XRP Ledger." -msgstr "" - -#: template/page-uses.html.jinja:294 template/page-uses.html.jinja:398 -msgid "Web Monetization" -msgstr "वेब मुद्रीकरण" - -#: template/page-uses.html.jinja:295 template/page-uses.html.jinja:402 -msgid "Sustainability" -msgstr "स्थिरता" - -#: template/page-uses.html.jinja:296 -msgid "CBDCs" -msgstr "" - -#: template/page-uses.html.jinja:298 template/page-uses.html.jinja:414 -msgid "DeFi" -msgstr "" - -#: template/page-uses.html.jinja:308 template/page-uses.html.jinja:335 -msgid "Cancel" -msgstr "" - -#: template/page-uses.html.jinja:315 template/page-uses.html.jinja:448 -msgid "Featured Categories" -msgstr "" - -#: template/page-uses.html.jinja:322 template/page-uses.html.jinja:456 -msgid "Other Categories" -msgstr "" - -#: template/page-uses.html.jinja:348 -msgid "Proven Powerful for Innovation" -msgstr "" - -#: template/page-uses.html.jinja:349 -#, fuzzy -msgid "XRPL Use Cases" -msgstr "उपयोग का अन्वेषण करें" - -#: template/page-uses.html.jinja:357 -msgid "Building businesses and creating new value" -msgstr "" - -#: template/page-uses.html.jinja:358 -#, fuzzy -msgid "XRPL Ecosystem" -msgstr "डेवलपर्स" - -#: template/page-uses.html.jinja:367 -msgid "" -"Build and operate components or systems that help the functionality of " -"the XRP Ledger, such as Nodes, dev tools, storage, security and more." -msgstr "" - -#: template/page-uses.html.jinja:371 -msgid "" -"Developers can leverage open-source libraries, SDKs and more to help " -"build their blockchain project and " -"across essential XRP Ledger functionality." -msgstr "" - -#: template/page-uses.html.jinja:375 -#, fuzzy -msgid "" -"Build digital wallets to store passwords and interact with various " -"blockchains to send and receive digital assets, including XRP." -msgstr "" -"व्यक्ति निजी और सार्वजनिक पासवर्ड स्टोर करने के लिए मोबाइल वॉलेट का उपयोग" -" कर सकते हैं और एक्सआरपी सहित डिजिटल संपत्ति भेजने और प्राप्त करने के लिए" -" विभिन्न ब्लॉकचेन के साथ बातचीत कर सकते हैं।" - -#: template/page-uses.html.jinja:379 -msgid "" -"XRPL supports the issuance of IOUs that represent a currency of any " -"value, as well as non-fungible tokens (NFTs)." -msgstr "" - -#: template/page-uses.html.jinja:383 -msgid "" -"Build sophisticated exchanges where users can invest and trade crypto and" -" assets such as stocks, ETFs, and commodities." -msgstr "" - -#: template/page-uses.html.jinja:387 -msgid "" -"The XRPL supports gaming at high speed given its reliable throughput, low" -" fees, and sidechain interoperability." -msgstr "" - -#: template/page-uses.html.jinja:391 -msgid "" -"Build services and tools that help prevent and combat fraudulent activity" -" with the XRPL." -msgstr "" - -#: template/page-uses.html.jinja:395 -msgid "" -"Leverage the efficiency and speed of the XRP Ledger to move value all " -"over the globe." -msgstr "" - -#: template/page-uses.html.jinja:399 -msgid "" -"Support creators and their content directly leveraging the power of the " -"XRP Ledger." -msgstr "" - -#: template/page-uses.html.jinja:403 -msgid "" -"Use the XRP Ledger to tokenize carbon offsets as non-fungible tokens " -"(NFTs)." -msgstr "" - -#: template/page-uses.html.jinja:407 -msgid "" -"A private version of the XRP Ledger provides Central Banks a secure, " -"controlled, and flexible solution to issue and manage Central Bank Issued" -" Digital Currencies (CBDCs)." -msgstr "" - -#: template/page-uses.html.jinja:411 -msgid "" -"Use the XRP Ledger to build crypto custody and securely hold, store and " -"use your assets." -msgstr "" - -#: template/page-uses.html.jinja:415 -msgid "" -"Provide access to financial products and services replacing the " -"traditional role of financial institutions." -msgstr "" - -#: template/page-uses.html.jinja:431 -msgid "Businesses and developers 
rely on the XRP Ledger" -msgstr "" - -#: template/page-uses.html.jinja:432 -#, fuzzy -msgid "Solving Real-World Problems" -msgstr "उद्योगों में वास्तविक समस्याओं का समाधान" - -#: template/page-uses.html.jinja:434 -msgid "" -"With intentional innovations, tools and documentation that accelerate " -"development and minimize time to market, XRP Ledger is used to create " -"solutions across an expansive range of industries and use cases." -msgstr "" - -#: template/page-uses.html.jinja:438 -msgid "Filter by Categories" -msgstr "" - -#: template/page-validator-domain-verifier.html.jinja:5 -msgid "Domain Verification Checker" -msgstr "डोमेन सत्यापन परीक्षक" - -#: template/page-validator-domain-verifier.html.jinja:7 -msgid "" -"This tool allows you to verify that domain verification is properly configured." -msgstr "" -"यह टूल आपको यह सत्यापित करने की अनुमति देता है कि डोमेन सत्यापन ठीक से कॉन्फ़िगर किया " -"गया है।" - -#: template/page-validator-domain-verifier.html.jinja:8 -msgid "" -"Enter the manifest found in your validator-keys.json file. Do not confuse" -" this with your validator's secret key." -msgstr "" -"अपनी सत्यापनकर्ता-keys.json फ़ाइल में पाया गया मेनिफेस्ट दर्ज करें। इसे " -"अपने सत्यापनकर्ता की गुप्त कुंजी के साथ भ्रमित न करें।" - -#: template/page-validator-domain-verifier.html.jinja:9 -msgid "To do this with the validator-keys-tool use the following command:" -msgstr "सत्यापनकर्ता-कुंजी-उपकरण के साथ ऐसा करने के लिए निम्न आदेश का उपयोग करें:" - -#: template/page-validator-domain-verifier.html.jinja:14 -msgid "Your Manifest Here" -msgstr "आपका प्रकट यहाँ" - -#: template/page-xrp-overview.html.jinja:26 -#, fuzzy -msgid "Your Questions About XRP, Answered" -msgstr "एक्सआरपी के बारे में आपके प्रश्न, उत्तर दिए गए।" - -#: template/page-xrp-overview.html.jinja:27 -msgid "XRP Overview" -msgstr "एक्सआरपी अवलोकन" - -#: template/page-xrp-overview.html.jinja:37 -msgid "#about-xrp" -msgstr "" - -#: template/page-xrp-overview.html.jinja:38 -msgid "About XRP" -msgstr "" - -#: template/page-xrp-overview.html.jinja:39 -#, fuzzy -msgid "#xrp-trading" -msgstr "व्यापार" - -#: template/page-xrp-overview.html.jinja:40 -msgid "XRP in Trading" -msgstr "" - -#: template/page-xrp-overview.html.jinja:41 -msgid "#ripple" -msgstr "" - -#: template/page-xrp-overview.html.jinja:42 -msgid "Ripple vs. XRP" -msgstr "रिपल बनाम एक्सआरपी" - -#: template/page-xrp-overview.html.jinja:43 -#, fuzzy -msgid "#wallets" -msgstr "पर्स" - -#: template/page-xrp-overview.html.jinja:44 -msgid "XRP Wallets" -msgstr "एक्सआरपी वॉलेट" - -#: template/page-xrp-overview.html.jinja:45 -#, fuzzy -msgid "#exchanges" -msgstr "एक्सचेंजों" - -#: template/page-xrp-overview.html.jinja:46 -msgid "XRP Exchanges" -msgstr "एक्सआरपी एक्सचेंज" - -#: template/page-xrp-overview.html.jinja:56 -#, fuzzy -msgid "What Is XRP?" -msgstr "एक्सआरपी क्या है?" - -#: template/page-xrp-overview.html.jinja:57 -#, fuzzy -msgid "" -"XRP is a digital asset that’s native to the XRP Ledger—an open-source, " -"permissionless and decentralized blockchain technology." -msgstr "" -"एक्सआरपी एक डिजिटल संपत्ति है जो एक्सआरपी लेजर के मूल निवासी है, एक खुला " -"स्रोत, अनुमति रहित और विकेंद्रीकृत ब्लॉकचैन तकनीक." - -#: template/page-xrp-overview.html.jinja:58 -#, fuzzy -msgid "" -"Created in 2012 specifically for payments, XRP can settle transactions on" -" the ledger in 3-5 seconds. It was built to be a better Bitcoin—faster, " -"cheaper and greener than any other digital asset." -msgstr "" -"2012 में विशेष रूप से भुगतान के लिए बनाया गया, XRP 3-5 सेकंड में खाता बही" -" पर लेनदेन का निपटान कर सकता है। यह किसी भी अन्य डिजिटल संपत्ति की तुलना " -"में बेहतर बिटकॉइन-तेज, सस्ता और हरित होने के लिए बनाया गया था।" - -#: template/page-xrp-overview.html.jinja:64 -msgid "XRP" -msgstr "एक्सआरपी" - -#: template/page-xrp-overview.html.jinja:65 -msgid "Bitcoin" -msgstr "बिटकॉइन" - -#: template/page-xrp-overview.html.jinja:70 -msgid "Fast" -msgstr "तेज़" - -#: template/page-xrp-overview.html.jinja:71 -msgid "3-5 seconds to settle" -msgstr "3-5 सेकंड बसने के लिए" - -#: template/page-xrp-overview.html.jinja:72 -msgid "500 seconds to settle" -msgstr "सेटल होने के लिए 500 सेकंड" - -#: template/page-xrp-overview.html.jinja:75 -msgid "Low-Cost" -msgstr "कम लागत" - -#: template/page-xrp-overview.html.jinja:76 -#, fuzzy -msgid "$0.0002/tx" -msgstr "$0.0002/लेनदेन" - -#: template/page-xrp-overview.html.jinja:77 -msgid "$0.50/tx" -msgstr "" - -#: template/page-xrp-overview.html.jinja:80 -msgid "Scalable" -msgstr "मापनीय" - -#: template/page-xrp-overview.html.jinja:81 -#, fuzzy -msgid "1,500 tx per second" -msgstr "प्रति सेकंड 1,500 लेनदेन" - -#: template/page-xrp-overview.html.jinja:82 -#, fuzzy -msgid "3 tx per second" -msgstr "प्रति सेकंड 3 लेनदेन" - -#: template/page-xrp-overview.html.jinja:85 -msgid "Sustainable" -msgstr "टिकाऊ" - -#: template/page-xrp-overview.html.jinja:86 -#, fuzzy -msgid "Environmentally sustainable (negligible energy consumption)" -msgstr "पर्यावरण की दृष्टि से टिकाऊ और कार्बन न्यूट्रल" - -#: template/page-xrp-overview.html.jinja:87 -#, fuzzy -msgid "0.3% of global energy consumption" -msgstr "0.3% वैश्विक ऊर्जा खपत का" - -#: template/page-xrp-overview.html.jinja:93 -msgid "" -"XRP can be sent directly without needing a central intermediary, making " -"it a convenient instrument in bridging two different currencies quickly " -"and efficiently. It is freely exchanged on the open market and used in " -"the real world for enabling cross-border payments and microtransactions." -msgstr "" -"एक्सआरपी को केंद्रीय मध्यस्थ की आवश्यकता के बिना सीधे भेजा जा सकता है, " -"जिससे यह दो अलग-अलग मुद्राओं को जल्दी और कुशलता से पाटने में एक सुविधाजनक" -" साधन बन जाता है। खुले बाजार में इसका स्वतंत्र रूप से आदान-प्रदान किया " -"जाता है और वास्तविक दुनिया में सीमा पार से भुगतान और सूक्ष्म लेनदेन को " -"सक्षम करने के लिए उपयोग किया जाता है।" - -#: template/page-xrp-overview.html.jinja:97 -msgid "Financial Institutions" -msgstr "" - -#: template/page-xrp-overview.html.jinja:98 -msgid "" -"Leverage XRP as a bridge currency to facilitate faster, more affordable " -"cross-border payments around the world." -msgstr "" - -#: template/page-xrp-overview.html.jinja:102 -#, fuzzy -msgid "Individual Consumers" -msgstr "व्यक्तियों" - -#: template/page-xrp-overview.html.jinja:103 -msgid "Use XRP to move different currencies around the world. " -msgstr "" - -#: template/page-xrp-overview.html.jinja:109 -msgid "The XRP Ledger was designed with sustainability in mind." -msgstr "" - -#: template/page-xrp-overview.html.jinja:110 -msgid "" -"Explore the impact of the world's first major, global, public carbon-" -"neutral blockchain." -msgstr "" - -#: template/page-xrp-overview.html.jinja:111 -msgid "Impact" -msgstr "प्रभाव" - -#: template/page-xrp-overview.html.jinja:117 -msgid "How Is XRP Used in Trading?" -msgstr "ट्रेडिंग में एक्सआरपी का उपयोग कैसे किया जाता है?" - -#: template/page-xrp-overview.html.jinja:118 -#, fuzzy -msgid "XRP is traded on more than 100 markets and exchanges worldwide." -msgstr "XRP का दुनिया भर में 100 से अधिक बाजारों और एक्सचेंजों पर कारोबार होता है" - -#: template/page-xrp-overview.html.jinja:119 -#, fuzzy -msgid "" -"XRP’s low transaction fees, reliability and high-speed enable traders to " -"use the digital asset as high-speed, cost-efficient and reliable " -"collateral across trading venues—seizing arbitrage " -"opportunities, servicing margin calls and managing general trading " -"inventory in real time." -msgstr "" -"एक्सआरपी की कम लेनदेन शुल्क, विश्वसनीयता और उच्च गति व्यापारियों को " -"डिजिटल संपत्ति का उपयोग व्यापारिक स्थानों पर तेज, लागत प्रभावी और " -"विश्वसनीय संपार्श्विक के रूप में करने में सक्षम बनाती है—आर्बिट्रेज के " -"अवसरों को जब्त करना, मार्जिन कॉल की सर्विसिंग और वास्तविक समय में " -"सामान्य ट्रेडिंग इन्वेंट्री का प्रबंधन करना।" - -#: template/page-xrp-overview.html.jinja:120 -msgid "" -"Because of the properties inherent to XRP and the ecosystem around it, " -"traders worldwide are able to shift collateral, bridge currencies and " -"switch from one crypto into another nearly instantly, across any exchange" -" on the planet." -msgstr "" -"एक्सआरपी और उसके आसपास के पारिस्थितिकी तंत्र में निहित गुणों के कारण, " -"दुनिया भर के व्यापारी ग्रह पर किसी भी एक्सचेंज में संपार्श्विक, पुल " -"मुद्राओं को स्थानांतरित करने और एक क्रिप्टो से दूसरी क्रिप्टो में स्विच " -"करने में सक्षम हैं।" - -#: template/page-xrp-overview.html.jinja:124 -msgid "What Is the Relationship Between Ripple and XRP?" -msgstr "रिपल और एक्सआरपी के बीच क्या संबंध है?" - -#: template/page-xrp-overview.html.jinja:125 -msgid "" -"Ripple is a " -"technology company that makes it easier to build a high-performance, " -"global payments business. XRP is a digital asset independent of this." -msgstr "" - -#: template/page-xrp-overview.html.jinja:126 -msgid "" -"There is a finite amount of XRP. All XRP is already in existence today—no" -" more than the original 100 billion can be created. The XRPL founders " -"gifted 80 billion XRP, the platform’s native currency, to Ripple. To " -"provide predictability to the XRP supply, Ripple has locked 55 billion " -"XRP (55% of the total possible supply) into a series of escrows using" -" the XRP Ledger itself. The XRPL's transaction processing rules, enforced" -" by the consensus protocol, control the release of the XRP." -msgstr "" - -#: template/page-xrp-overview.html.jinja:130 -msgid "" -"As of December " -"2017
\n" -" 55B
\n" -" XRP remains in escrow" -msgstr "" - -#: template/page-xrp-overview.html.jinja:153 -msgid "What Wallets Support XRP?" -msgstr "" - -#: template/page-xrp-overview.html.jinja:154 -#, fuzzy -msgid "" -"Digital wallets are pieces of software that allow people to send, " -"receive, and store cryptocurrencies, including XRP. There are two types " -"of digital wallets: hardware and software." -msgstr "" -"डिजिटल वॉलेट सॉफ्टवेयर के टुकड़े हैं जो लोगों को XRP सहित क्रिप्टोकरेंसी " -"भेजने, प्राप्त करने और संग्रहीत करने की अनुमति देते हैं। डिजिटल वॉलेट दो " -"प्रकार के होते हैं: कस्टोडियल और नॉन-कस्टोडियल।" - -#: template/page-xrp-overview.html.jinja:157 -#, fuzzy -msgid "Software Wallets" -msgstr "हार्डवेयर वॉलेट:" - -#: template/page-xrp-overview.html.jinja:162 -msgid "Towo" -msgstr "" - -#: template/page-xrp-overview.html.jinja:165 -msgid "Xumm" -msgstr "" - -#: template/page-xrp-overview.html.jinja:166 -msgid "https://trustwallet.com/" -msgstr "" - -#: template/page-xrp-overview.html.jinja:168 -msgid "Trust Wallet" -msgstr "" - -#: template/page-xrp-overview.html.jinja:169 -msgid "https://gatehub.net/" -msgstr "" - -#: template/page-xrp-overview.html.jinja:180 -#, fuzzy -msgid "Hardware Wallets" -msgstr "हार्डवेयर वॉलेट:" - -#: template/page-xrp-overview.html.jinja:185 -#, fuzzy -msgid "Ledger" -msgstr "एक्सआरपी लेजर" - -#: template/page-xrp-overview.html.jinja:189 -msgid "Keystone" -msgstr "" - -#: template/page-xrp-overview.html.jinja:193 -msgid "Dcent" -msgstr "" - -#: template/page-xrp-overview.html.jinja:197 -msgid "Trezor" -msgstr "" - -#: template/page-xrp-overview.html.jinja:206 -#: template/page-xrp-overview.html.jinja:269 -msgid "" -"Disclaimer: This information is drawn from other sources on the internet." -" XRPL.org does not endorse or recommend any exchanges or make any " -"representations with respect to exchanges or the purchase or sale of " -"digital assets more generally. It’s advisable to conduct your own due " -"diligence before relying on any third party or third-party technology, " -"and providers may vary significantly in their compliance, data security, " -"and privacy practices." -msgstr "" -"अस्वीकरण: यह जानकारी इंटरनेट पर अन्य स्रोतों से ली गई है। XRPL.org आम तौर" -" पर एक्सचेंजों या डिजिटल संपत्तियों की खरीद या बिक्री के संबंध में किसी " -"भी एक्सचेंज का समर्थन या अनुशंसा नहीं करता है या कोई प्रतिनिधित्व नहीं " -"करता है। किसी भी तीसरे पक्ष या तीसरे पक्ष की तकनीक पर भरोसा करने से पहले " -"अपने स्वयं के उचित परिश्रम का संचालन करने की सलाह दी जाती है, और प्रदाता " -"उनके अनुपालन, डेटा सुरक्षा और गोपनीयता प्रथाओं में महत्वपूर्ण रूप से " -"भिन्न हो सकते हैं।" - -#: template/page-xrp-overview.html.jinja:210 -msgid "What Exchanges Support XRP?" -msgstr "" - -#: template/page-xrp-overview.html.jinja:211 -#, fuzzy -msgid "" -"Exchanges are where people trade currencies. XRP is traded on more than " -"100 markets and exchanges worldwide." -msgstr "XRP का दुनिया भर में 100 से अधिक बाजारों और एक्सचेंजों पर कारोबार होता है" - -#: template/page-xrp-overview.html.jinja:212 -msgid "" -"There are different types of exchanges that vary depending on the type of" -" market (spot, futures, options, swaps), and the type of security model " -"(custodial, non-custodial)." -msgstr "" -"विभिन्न प्रकार के एक्सचेंज हैं जो बाजार के प्रकार (स्पॉट, फ्यूचर्स, " -"ऑप्शंस, स्वैप्स) और सुरक्षा मॉडल के प्रकार (कस्टोडियल, नॉन-कस्टोडियल) के " -"आधार पर भिन्न होते हैं।" - -#: template/page-xrp-overview.html.jinja:215 -#, fuzzy -msgid "Spot Exchanges" -msgstr "एक्सचेंजों का अन्वेषण करें" - -#: template/page-xrp-overview.html.jinja:216 -msgid "" -"Spot exchanges allow people to buy and sell cryptocurrencies at current " -"(spot) market rates." -msgstr "" - -#: template/page-xrp-overview.html.jinja:219 -msgid "Futures, Options and Swap Exchanges" -msgstr "" - -#: template/page-xrp-overview.html.jinja:220 -#, fuzzy -msgid "" -"Futures, options and swap exchanges allow people to buy and sell " -"standardized contracts of cryptocurrency market rates in the future." -msgstr "" -"स्पॉट एक्सचेंज लोगों को वर्तमान (स्पॉट) बाजार दरों पर क्रिप्टोकरेंसी " -"खरीदने और बेचने की अनुमति देते हैं। फ्यूचर्स, ऑप्शंस और स्वैप एक्सचेंज " -"लोगों को भविष्य में क्रिप्टोक्यूरेंसी बाजार दरों के मानकीकृत अनुबंधों को " -"खरीदने और बेचने की अनुमति देते हैं।" - -#: template/page-xrp-overview.html.jinja:223 -msgid "Custodial Exchanges" -msgstr "" - -#: template/page-xrp-overview.html.jinja:224 -msgid "" -"Custodial exchanges manage a user’s private keys, and publish centralized" -" order books of buyers and sellers." -msgstr "" - -#: template/page-xrp-overview.html.jinja:227 -msgid "Non-Custodial Exchanges" -msgstr "" - -#: template/page-xrp-overview.html.jinja:228 -#, fuzzy -msgid "" -"Non-custodial exchanges, also known as decentralized exchanges, do not " -"manage a user’s private keys, and publish decentralized order books of " -"buyers and sellers on a blockchain." -msgstr "" -"कस्टोडियल एक्सचेंज उपयोगकर्ता की निजी कुंजी का प्रबंधन करते हैं, और " -"खरीदारों और विक्रेताओं की केंद्रीकृत ऑर्डर बुक प्रकाशित करते हैं। " -"गैर-कस्टोडियल एक्सचेंज, जिसे विकेंद्रीकृत एक्सचेंज के रूप में भी जाना " -"जाता है, उपयोगकर्ता की निजी कुंजी का प्रबंधन नहीं करता है, और एक ब्लॉकचेन" -" पर खरीदारों और विक्रेताओं की विकेन्द्रीकृत ऑर्डर बुक प्रकाशित करता है।" - -#: template/page-xrp-overview.html.jinja:231 -#, fuzzy -msgid "Top Exchanges, according to CryptoCompare" -msgstr "क्रिप्टोकरंसी के अनुसार शीर्ष एक्सचेंज (अगस्त 2020 तक):" - -#: template/page-xrp-overview.html.jinja:236 -msgid "Bitstamp" -msgstr "" - -#: template/page-xrp-overview.html.jinja:237 -msgid "https://www.kraken.com/" -msgstr "" - -#: template/page-xrp-overview.html.jinja:239 -msgid "Kraken" -msgstr "" - -#: template/page-xrp-overview.html.jinja:240 -msgid "https://cex.io/" -msgstr "" - -#: template/page-xrp-overview.html.jinja:242 -msgid "Cex.io" -msgstr "" - -#: template/page-xrp-overview.html.jinja:243 -msgid "https://www.liquid.com/" -msgstr "" - -#: template/page-xrp-overview.html.jinja:245 -msgid "Liquid" -msgstr "" - -#: template/page-xrp-overview.html.jinja:246 -msgid "https://www.lmax.com/" -msgstr "" - -#: template/page-xrp-overview.html.jinja:248 -msgid "LMAX" -msgstr "" - -#: template/page-xrp-overview.html.jinja:249 -msgid "https://www.bitfinex.com/" -msgstr "" - -#: template/page-xrp-overview.html.jinja:251 -msgid "Bitfinex" -msgstr "" - -#: template/page-xrp-overview.html.jinja:252 -msgid "https://www.etoro.com/crypto/exchange/" -msgstr "" - -#: template/page-xrp-overview.html.jinja:254 -msgid "eToro" -msgstr "" - -#: template/page-xrp-overview.html.jinja:255 -msgid "https://currency.com" -msgstr "" - -#: template/page-xrp-overview.html.jinja:257 -msgid "Currency.com" -msgstr "" - -#: template/page-xrp-overview.html.jinja:258 -msgid "https://bittrex.com/" -msgstr "" - -#: template/page-xrp-overview.html.jinja:260 -msgid "Bittrex" -msgstr "" - -#: template/page-xrpl-overview.html.jinja:39 -msgid "The Business
of Impact" -msgstr "" - -#: template/page-xrpl-overview.html.jinja:53 -#, fuzzy -msgid "How the XRP Ledger works" -msgstr "एक्सआरपी लेजर कैसे काम करता है?" - -#: template/page-xrpl-overview.html.jinja:54 -msgid "XRP Ledger Basics" -msgstr "" - -#: template/page-xrpl-overview.html.jinja:56 -msgid "The XRP Ledger is a decentralized public blockchain built for business. " -msgstr "" - -#: template/page-xrpl-overview.html.jinja:57 -msgid "" -"The peer-to-peer network that manages the ledger is open to everyone. The" -" XRP Ledger is maintained by software engineers, server operators, users," -" and businesses–a global community working to solve problems and create " -"real-world value." -msgstr "" - -#: template/page-xrpl-overview.html.jinja:59 -#: template/page-xrpl-overview.html.jinja:69 -#, fuzzy -msgid "Read Technical Docs" -msgstr "तकनीकी प्राप्त करें" - -#: template/page-xrpl-overview.html.jinja:59 -#: template/page-xrpl-overview.html.jinja:69 -msgid "Watch Explainer Videos " -msgstr "" - -#: template/page-xrpl-overview.html.jinja:80 -msgid "How the Consensus Protocol works" -msgstr "" - -#: template/page-xrpl-overview.html.jinja:81 -msgid "Consensus" -msgstr "" - -#: template/page-xrpl-overview.html.jinja:83 -msgid "" -"To uphold performance, XRPL uses a consensus protocol. Designated servers" -" called validators, which " -"anyone can operate, come to an agreement on the order and outcome of XRP " -"transactions every three to five seconds." -msgstr "" - -#: template/page-xrpl-overview.html.jinja:84 -#, fuzzy -msgid "" -"All servers in the network process each transaction according to the same" -" rules, and any transaction that follows the protocol is confirmed right " -"away. All transactions are public, and strong cryptography guarantees the" -" integrity of the system." -msgstr "" -"नेटवर्क में सभी सर्वर समान नियमों के अनुसार प्रत्येक लेनदेन को संसाधित " -"करते हैं, और जैसे ही सत्यापनकर्ता कोरम तक पहुंचते हैं, प्रोटोकॉल का पालन " -"करने वाले किसी भी लेनदेन की पुष्टि की जाती है।" - -#: template/page-xrpl-overview.html.jinja:85 -#, fuzzy -msgid "" -"Currently, over 120 validators are active on the ledger, operated by " -"universities, exchanges, businesses, and individuals. As the validator " -"pool grows, the consensus protocol ensures decentralization of the " -"blockchain over time." -msgstr "" -"कोई भी सत्यापनकर्ता संचालित कर सकता है; वर्तमान में, 150 से अधिक सत्यापनकर्ता " -"विश्वविद्यालय, एक्सचेंजों, व्यवसायों और व्यक्तियों द्वारा संचालित बहीखाता" -" पर सक्रिय हैं।" - -#: template/page-xrpl-overview.html.jinja:97 -#, fuzzy -msgid "A Sustainable Blockchain" -msgstr "टिकाऊ" - -#: template/page-xrpl-overview.html.jinja:98 -msgid "" -"Unlike most other blockchains, the XRP Ledger requires no mining and uses" -" negligible energy, key to long-term growth and stability." -msgstr "" - -#: template/page-xrpl-overview.html.jinja:108 -msgid "Building with confidence on
proven technology" -msgstr "" - -#: template/page-xrpl-overview.html.jinja:109 -msgid "XRPL Today" -msgstr "" - -#: template/page-xrpl-overview.html.jinja:111 -msgid "" -"With 10+ years of error-free functioning and enterprise companies as " -"champions, XRPL has established reliability." -msgstr "" - -#: template/page-xrpl-overview.html.jinja:112 -msgid "" -"With the XRPL, these developers are building innovative blockchain " -"projects and applications across use cases including tokenization of " -"assets, online gaming, asset custody, NFTs, and DeFi." -msgstr "" - -#: template/page-xrpl-overview.html.jinja:113 -#, fuzzy -msgid "Explore More" -msgstr "एक्सप्लोरर" - -#: template/page-xrpl-overview.html.jinja:117 -msgid "Creating new value for long-term growth" -msgstr "" - -#: template/page-xrpl-overview.html.jinja:118 -msgid "XRPL Tomorrow" -msgstr "" - -#: template/page-xrpl-overview.html.jinja:120 -msgid "" -"As a community-led blockchain built for business, XRPL attracts companies" -" and developers driven to solve real problems and generate real value–now" -" and into the future." -msgstr "" - -#: template/page-xrpl-overview.html.jinja:121 -msgid "" -"Significant investment in development, along with low transaction costs " -"and energy usage, is fueling growth and opening up a wide variety of use " -"cases at scale." -msgstr "" - -#: template/page-xrpl-overview.html.jinja:128 -msgid "Watch the explainer video series to learn more about the XRP Ledger" -msgstr "" - -#: template/page-xrpl-overview.html.jinja:129 -msgid "Tune In" -msgstr "" - -#: template/page-xrpl-overview.html.jinja:138 -msgid "The Consensus Mechanism" -msgstr "" - -#: template/page-xrpl-overview.html.jinja:146 -#, fuzzy -msgid "Nodes and Validators" -msgstr "वॉलेट और प्लेटफॉर्म" - -#: template/page-xrpl-overview.html.jinja:154 -#, fuzzy -msgid "Sustainability of the XRP Ledger" -msgstr "स्थिरता" - -#: template/page-xrpl-overview.html.jinja:159 -msgid "Watch Full Series on YouTube" -msgstr "" - -#: template/page-xrpl-overview.html.jinja:167 -msgid "Tomorrow’s Blockchain Starts With You" -msgstr "" - -#: template/page-xrpl-overview.html.jinja:168 -msgid "" -"XRP Ledger’s innovation relies on the shared community experience of " -"builders like you. If you’re ready to start your next big blockchain " -"project, explore the XRPL now and consider applying for funding on your " -"next blockchain project." -msgstr "" - -#: template/page-xrpl-overview.html.jinja:169 -msgid "Explore XRPL Developer Funding" -msgstr "" - -#: template/page-xrpl-overview.html.jinja:177 -msgid "Is XRPL a private blockchain, owned by Ripple?" -msgstr "" - -#: template/page-xrpl-overview.html.jinja:178 -#, python-format -msgid "" -"No, the XRP Ledger is a decentralized, public blockchain. Any changes " -"that would impact transaction processing or consensus need to be approved" -" by at least 80%% of the network. Ripple is a contributor to the network," -" but its rights are the same as those of other contributors. In terms of " -"validation, there are 150+ validators on the network with 35+ on the " -"Unique Node List (see “What are Unique Node Lists (UNLs)?” in the Full " -"FAQ) — Ripple runs 6 of these nodes." -msgstr "" - -#: template/page-xrpl-overview.html.jinja:179 -msgid "Isn’t Proof of Work the best validation mechanism?" -msgstr "" - -#: template/page-xrpl-overview.html.jinja:180 -msgid "" -"Proof of Work (PoW) was the first mechanism to solve the double spend " -"problem without requiring a trusted 3rd party. However the XRP Ledger’s " -"consensus mechanism solves the same problem in a far faster, cheaper and " -"more energy efficient way." -msgstr "" - -#: template/page-xrpl-overview.html.jinja:181 -msgid "How can a blockchain be sustainable?" -msgstr "" - -#: template/page-xrpl-overview.html.jinja:182 -msgid "" -"It’s been widely reported that Bitcoin’s energy consumption, as of 2021, " -"is equivalent to that used by Argentina, with much of the electricity " -"Bitcoin miners use coming from polluting sources. The XRP Ledger confirms" -" transactions through a “consensus” mechanism - which does not waste " -"energy like proof of work does - and leverages carbon offsets to be one of the first " -"truly carbon neutral blockchains." -msgstr "" - -#: template/page-xrpl-overview.html.jinja:198 -msgid "View Full FAQ" -msgstr "" - -#: template/pagetype-doc.html.jinja:51 -msgid "In this document" -msgstr "इस दस्तावेज़ में" - -#~ msgid "Sustainability icon" -#~ msgstr "स्थिरता आइकन" - -#~ msgid "*Calculations in million tonne (Mt)" -#~ msgstr "*गणना मिलियन टन (माउंट) में" - -#~ msgid "For Developers" -#~ msgstr "डेवलपर्स के लिए" - -#~ msgid "" -#~ "Contributing to XRPL.org is a great " -#~ "way to learn about the XRP Ledger." -#~ " This portal is open-source and " -#~ "anyone can suggest changes. For more " -#~ "information, please read " -#~ "and consider the contributing guidelines." -#~ msgstr "" -#~ "XRPL.org में योगदान करना XRP लेजर " -#~ "के बारे में जानने का एक शानदार " -#~ "तरीका है। यह पोर्टल ओपन-सोर्स है " -#~ "और कोई भी बदलाव का सुझाव दे " -#~ "सकता है। अधिक जानकारी के लिए, " -#~ "कृपया योगदान दिशानिर्देशों को पढ़ें " -#~ "और उन पर विचार करें ." - -#~ msgid "" -#~ "You may also be interested in " -#~ "learning about Interledger, RippleX, " -#~ "and PayString." -#~ msgstr "" -#~ "आपको Interledger, RippleX, और PayString।" - -#~ msgid "Businesses Running on the XRP Ledger" -#~ msgstr "एक्सआरपी लेजर पर चलने वाले व्यवसाय" - -#~ msgid "" -#~ "While exchanges and wallet providers are" -#~ " the most common businesses running " -#~ "on the XRP Ledger, there are many" -#~ " other companies that leverage the " -#~ "technology to solve interesting problems " -#~ "across myriad industries." -#~ msgstr "" -#~ "जबकि एक्सचेंज और वॉलेट प्रदाता एक्सआरपी" -#~ " लेजर पर चलने वाले सबसे आम " -#~ "व्यवसाय हैं, कई अन्य कंपनियां हैं " -#~ "जो असंख्य उद्योगों में दिलचस्प समस्याओं" -#~ " को हल करने के लिए प्रौद्योगिकी " -#~ "का लाभ उठाती हैं।" - -#~ msgid "Gaming" -#~ msgstr "खेल" - -#~ msgid "Businesses Using XRP" -#~ msgstr "एक्सआरपी का उपयोग करने वाले व्यवसाय" - -#~ msgid "" -#~ "Coil provides an alternative to the " -#~ "status quo of paid advertisements with" -#~ " web monetization. Coil's web monetization" -#~ " uses the interledger protocol (ILP) " -#~ "to stream micropayments as users consume" -#~ " content. The XRP Ledger's payment " -#~ "channels provide an ideal system for " -#~ "settling these micropayments at high " -#~ "speed and low cost." -#~ msgstr "" -#~ "कॉइल वेब मुद्रीकरण के साथ भुगतान " -#~ "किए गए विज्ञापनों की यथास्थिति का " -#~ "एक विकल्प प्रदान करता है। जब " -#~ "उपयोगकर्ता सामग्री का उपभोग करते हैं " -#~ "तो कॉइल का वेब मुद्रीकरण माइक्रोपेमेंट" -#~ " को स्ट्रीम करने के लिए इंटरलेजर " -#~ "प्रोटोकॉल (ILP) का उपयोग करता है। " -#~ "एक्सआरपी लेजर के भुगतान चैनल इन " -#~ "सूक्ष्म भुगतानों को उच्च गति और कम" -#~ " लागत पर निपटाने के लिए एक " -#~ "आदर्श प्रणाली प्रदान करते हैं।" - -#~ msgid "" -#~ "Disclaimer: XRPL.org does not endorse or" -#~ " recommend any wallets or exchanges, " -#~ "or make any representations with respect" -#~ " to wallets. It’s advisable to " -#~ "conduct your own due diligence before" -#~ " relying on any third party or " -#~ "third-party technology." -#~ msgstr "" -#~ "अस्वीकरण: XRPL.org किसी भी वॉलेट या " -#~ "एक्सचेंज का समर्थन या अनुशंसा नहीं " -#~ "करता है, या वॉलेट के संबंध में " -#~ "कोई प्रतिनिधित्व नहीं करता है। यह " -#~ "सलाह दी जाती है कि किसी भी " -#~ "तृतीय पक्ष या तृतीय-पक्ष तकनीक पर " -#~ "भरोसा करने से पहले अपना स्वयं का" -#~ " उचित परिश्रम करें।" - -#~ msgid "Exchanges are where people trade currencies." -#~ msgstr "एक्सचेंज वे हैं जहां लोग मुद्राओं का व्यापार करते हैं।" - -#~ msgid "Options for Storing XRP" -#~ msgstr "एक्सआरपी स्टोर करने के विकल्प" - -#~ msgid "" -#~ "Custodial wallets manage a user's " -#~ "private key, which allows the wallet " -#~ "to withdraw cryptocurrency on a user's" -#~ " behalf. Non-custodial wallets do not" -#~ " manage a user's private key, which" -#~ " is up to the user to manage," -#~ " and therefore cannot send cryptocurrency" -#~ " on the user's behalf." -#~ msgstr "" -#~ "कस्टोडियल वॉलेट उपयोगकर्ता की निजी कुंजी" -#~ " का प्रबंधन करते हैं, जो वॉलेट " -#~ "को उपयोगकर्ता की ओर से क्रिप्टोकरेंसी" -#~ " को वापस लेने की अनुमति देता " -#~ "है। गैर-कस्टोडियल वॉलेट उपयोगकर्ता की " -#~ "निजी कुंजी का प्रबंधन नहीं करते " -#~ "हैं, जो उपयोगकर्ता को प्रबंधित करने " -#~ "के लिए है, और इसलिए उपयोगकर्ता की" -#~ " ओर से क्रिप्टोकुरेंसी नहीं भेज सकता" -#~ " है।" - -#~ msgid "XRP Ledger Software Wallets:" -#~ msgstr "एक्सआरपी लेजर सॉफ्टवेयर वॉलेट:" - -#~ msgid "" -#~ "Disclaimer: XRPL.org does not endorse or" -#~ " recommend any wallets or make any" -#~ " representations with respect to wallets" -#~ " or the purchase or sale of " -#~ "digital assets more generally. It’s " -#~ "advisable to conduct your own due " -#~ "diligence before relying on any third" -#~ " party or third-party technology, and" -#~ " providers may vary significantly in " -#~ "their compliance, data security, and " -#~ "privacy practices." -#~ msgstr "" -#~ "अस्वीकरण: XRPL.org किसी भी वॉलेट का " -#~ "समर्थन या अनुशंसा नहीं करता है या" -#~ " आमतौर पर वॉलेट या डिजिटल संपत्ति " -#~ "की खरीद या बिक्री के संबंध में " -#~ "कोई प्रतिनिधित्व नहीं करता है। किसी " -#~ "भी तीसरे पक्ष या तीसरे पक्ष की " -#~ "तकनीक पर भरोसा करने से पहले अपने" -#~ " स्वयं के उचित परिश्रम का संचालन " -#~ "करने की सलाह दी जाती है, और " -#~ "प्रदाता उनके अनुपालन, डेटा सुरक्षा और" -#~ " गोपनीयता प्रथाओं में महत्वपूर्ण रूप " -#~ "से भिन्न हो सकते हैं।" - -#~ msgid "License" -#~ msgstr "लाइसेंस" - -#~ msgid "Top" -#~ msgstr "शीर्ष" - -#~ msgid "Edit" -#~ msgstr "संपादित करें" - -#~ msgid "Scroll Down" -#~ msgstr "नीचे स्क्रॉल करें" - -#~ msgid "XRP: The Best Digital Asset for Payments" -#~ msgstr "एक्सआरपी: भुगतान के लिए सर्वश्रेष्ठ डिजिटल संपत्ति" - -#~ msgid "Learn More" -#~ msgstr "और अधिक जानें" - -#~ msgid "Build with the XRP Ledger" -#~ msgstr "एक्सआरपी लेजर के साथ निर्माण" - -#~ msgid "What is XRPL.org?" -#~ msgstr "XRPL.org क्या है?" - -#~ msgid "" -#~ "Whether you’re a developer building on" -#~ " the XRP Ledger (XRPL) or just " -#~ "getting acquainted with blockchain and " -#~ "digital assets, XRPL.org is your source" -#~ " for technical information, reference " -#~ "materials, tools and all things XRP." -#~ msgstr "" -#~ "चाहे आप एक्सआरपी लेजर (एक्सआरपीएल) पर" -#~ " एक डेवलपर बिल्डिंग हों या सिर्फ " -#~ "ब्लॉकचैन और डिजिटल संपत्तियों से परिचित" -#~ " हों, एक्सआरपीएल.org तकनीकी जानकारी, संदर्भ" -#~ " सामग्री, टूल और सभी चीजों के " -#~ "लिए एक्सआरपी का स्रोत है।" - -#~ msgid "A Digital Asset Built for Payments" -#~ msgstr "भुगतान के लिए निर्मित एक डिजिटल संपत्ति" - -#~ msgid "" -#~ "XRP is a digital asset built for" -#~ " payments. It is the native digital" -#~ " asset on the XRP Ledger—an open-" -#~ "source, permissionless and decentralized " -#~ "blockchain technology that can settle " -#~ "transactions in 3-5 seconds." -#~ msgstr "" -#~ "XRP भुगतान के लिए बनाई गई एक " -#~ "डिजिटल संपत्ति है। यह एक्सआरपी लेजर " -#~ "पर मूल डिजिटल संपत्ति है - एक " -#~ "खुला स्रोत, अनुमति रहित और विकेन्द्रीकृत" -#~ " ब्लॉकचेन तकनीक जो 3-5 सेकंड में " -#~ "लेनदेन का निपटान कर सकती है।" - -#~ msgid "" -#~ "It is the best way to move " -#~ "money around the world; the fuel " -#~ "for our growing digital economy." -#~ msgstr "" -#~ "यह दुनिया भर में पैसा स्थानांतरित " -#~ "करने का सबसे अच्छा तरीका है; हमारी" -#~ " बढ़ती डिजिटल अर्थव्यवस्था के लिए " -#~ "ईंधन।" - -#~ msgid "Learn about XRP" -#~ msgstr "एक्सआरपी के बारे में जानें" - -#~ msgid "XRP History" -#~ msgstr "एक्सआरपी इतिहास" - -#~ msgid "Use Cases" -#~ msgstr "उपयोग का अन्वेषण करें" - -#~ msgid "XRP in the Real World" -#~ msgstr "वास्तविक दुनिया में एक्सआरपी" - -#~ msgid "Uses of XRP" -#~ msgstr "एक्सआरपी के उपयोग" - -#~ msgid "" -#~ "XRP is helping solve previously " -#~ "unsolvable problems for people and " -#~ "industries around the world, and is " -#~ "one of the only digital assets " -#~ "with a commercial use case." -#~ msgstr "" -#~ "एक्सआरपी दुनिया भर के लोगों और " -#~ "उद्योगों के लिए पहले से न सुलझाई" -#~ " जा सकने वाली समस्याओं को हल " -#~ "करने में मदद कर रहा है, और " -#~ "व्यावसायिक उपयोग के मामले में एकमात्र" -#~ " डिजिटल संपत्ति में से एक है।" - -#~ msgid "Businesses on the Ledger" -#~ msgstr "खाता बही पर व्यवसाय" - -#~ msgid "" -#~ "From gaming to web monetization, XRP " -#~ "and the XRP Ledger are powering " -#~ "innovative new technology across the " -#~ "payments space." -#~ msgstr "" -#~ "गेमिंग से लेकर वेब मुद्रीकरण तक, " -#~ "एक्सआरपी और एक्सआरपी लेजर भुगतान क्षेत्र" -#~ " में नवीन नई तकनीक को सशक्त कर" -#~ " रहे हैं।" - -#~ msgid "Explore Businesses" -#~ msgstr "व्यवसायों का अन्वेषण करें" - -#~ msgid "Real-World Impact" -#~ msgstr "वास्तविक-विश्व प्रभाव" - -#~ msgid "" -#~ "With its real-world utility and " -#~ "inherently green design, XRP helps " -#~ "ensure a more sustainable future for " -#~ "our planet and global economy." -#~ msgstr "" -#~ "अपनी वास्तविक दुनिया की उपयोगिता और " -#~ "स्वाभाविक रूप से हरे रंग के डिजाइन" -#~ " के साथ, एक्सआरपी हमारे ग्रह और " -#~ "वैश्विक अर्थव्यवस्था के लिए एक अधिक " -#~ "टिकाऊ भविष्य सुनिश्चित करने में मदद " -#~ "करता है।" - -#~ msgid "Explore Impact" -#~ msgstr "प्रभाव का अन्वेषण करें" - -#~ msgid "Green by Nature" -#~ msgstr "प्रकृति द्वारा हरा" - -#~ msgid "" -#~ "XRP was designed with sustainability in" -#~ " mind. Contrary to other blockchains " -#~ "that use proof-of-work, the XRP" -#~ " Ledger confirms transactions through a " -#~ "unique “consensus” mechanism and is " -#~ "one of the first truly carbon neutral" -#~ " blockchains." -#~ msgstr "" -#~ "XRP को स्थिरता को ध्यान में रखकर" -#~ " बनाया गया था। काम के सबूत का" -#~ " उपयोग करने वाले अन्य ब्लॉकचेन के " -#~ "विपरीत, एक्सआरपी लेजर एक अद्वितीय \"Consensus\" " -#~ "तंत्र के माध्यम से लेनदेन की " -#~ "पुष्टि करता है और यह वास्तव में" -#~ " पहले Consensus में से एक है।" -#~ " a href=\\https://ripple.com/ripple-press/ripple-" -#~ "leads-sustainability-agenda-to-achieve-" -#~ "carbon-neutrality-by-2030/\\ target=\\_blank\\>कार्बन" -#~ " न्यूट्रल ब्लॉकचेन ." - -#~ msgid "" -#~ "Explore the energy consumption of XRP" -#~ " compared to cash, credit cards and" -#~ " other popular crypto with the Green Currency " -#~ "Calculator." -#~ msgstr "" -#~ "ग्रीन करेंसी " -#~ "कैलकुलेटर के साथ नकद, क्रेडिट कार्ड" -#~ " और अन्य लोकप्रिय क्रिप्टो की तुलना" -#~ " में XRP की ऊर्जा खपत का " -#~ "अन्वेषण करें।" - -#~ msgid "Go Green" -#~ msgstr "पर्यावरण के अनुकूल बनें" - -#~ msgid "Partners in Sustainability" -#~ msgstr "स्थिरता में भागीदार" - -#~ msgid "Dive into our documentation and start integrating with the XRP Ledger." -#~ msgstr "हमारे दस्तावेज़ीकरण में गोता लगाएँ और XRP लेजर के साथ एकीकरण शुरू करें।" - -#~ msgid "" -#~ "Browse by category, or skip straight " -#~ "to the full" -#~ " documentation index." -#~ msgstr "" -#~ "श्रेणी के अनुसार ब्राउज़ करें, या " -#~ "सीधे पूर्ण " -#~ "दस्तावेज़ीकरण अनुक्रमणिका पर जाएं।" - -#~ msgid "View All %(parent_name)s" -#~ msgstr "सभी देखें %(parent_name)s" - -#~ msgid "" -#~ "Or, skip ahead to the Full Reference " -#~ "Index." -#~ msgstr "" -#~ "या, पूर्ण" -#~ " संदर्भ अनुक्रमणिका पर जाएं।" - -#~ msgid "Full Reference Index" -#~ msgstr "पूर्ण संदर्भ सूचकांक" - -#~ msgid "Build a Better Bitcoin" -#~ msgstr "एक बेहतर बिटकॉइन बनाएं" - -#~ msgid "XRP’s Origin" -#~ msgstr "एक्सआरपी की उत्पत्ति" - -#~ msgid "" -#~ "In 2011, three engineers—David Schwartz, " -#~ "Jed McCaleb and Arthur Britto—began " -#~ "developing the XRP Ledger." -#~ msgstr "" -#~ "2011 में, तीन इंजीनियरों- डेविड " -#~ "श्वार्ट्ज, जेड मैककलेब और आर्थर ब्रिटो-" -#~ " ने एक्सआरपी लेजर विकसित करना शुरू" -#~ " किया।" - -#~ msgid "" -#~ "The founders of the XRP Ledger " -#~ "gifted 80 billion XRP to the " -#~ "company. Ripple has since sold some " -#~ "of its XRP and put the rest " -#~ "in escrow." -#~ msgstr "" -#~ "XRP लेजर के संस्थापकों ने कंपनी को" -#~ " 80 बिलियन XRP उपहार में दिए। " -#~ "रिपल ने तब से अपने कुछ एक्सआरपी" -#~ " को बेच दिया है और बाकी को " -#~ "एस्क्रो " -#~ "में डाल दिया है।" - -#~ msgid "Timeline of XRP Evolution" -#~ msgstr "एक्सआरपी विकास की समयरेखा" - -#~ msgid "" -#~ "The history of the XRP Ledger and" -#~ " its native digital asset XRP dates" -#~ " back to early 2011 when three " -#~ "developers—David Schwartz, Jed McCaleb and " -#~ "Arthur Britto—were fascinated with Bitcoin " -#~ "but observed the waste inherent in mining. " -#~ "They sought to create a better " -#~ "system for sending value (an idea " -#~ "outlined in a May 2011 forum post: " -#~ "“Bitcoin without mining”)." -#~ msgstr "" -#~ "एक्सआरपी लेजर और इसकी मूल डिजिटल " -#~ "संपत्ति एक्सआरपी का इतिहास 2011 की " -#~ "शुरुआत में है, जब तीन डेवलपर्स-डेविड " -#~ "श्वार्ट्ज, जेड मैककेलेब और आर्थर " -#~ "ब्रिटो-बिटकॉइन से मोहित थे, लेकिन " -#~ "उन्होंने अपशिष्ट" -#~ " देखा खनन में निहित। उन्होंने " -#~ "मूल्य भेजने के लिए एक बेहतर " -#~ "प्रणाली बनाने की मांग की (एक मई 2011 फोरम पोस्ट में " -#~ "उल्लिखित एक विचार: \"बिटकॉइन खनन के " -#~ "बिना\")।" - -#~ msgid "2012 XRP Launched" -#~ msgstr "2012 एक्सआरपी लॉन्च किया गया" - -#~ msgid "" -#~ "In 2011 and early 2012, the trio" -#~ " of developers started a project to" -#~ " build a distributed ledger that " -#~ "improved upon these fundamental limitations" -#~ " of Bitcoin—their first ever code " -#~ "commit was in November 2011." -#~ msgstr "" -#~ "2011 और 2012 की शुरुआत में, " -#~ "डेवलपर्स की तिकड़ी ने एक वितरित " -#~ "बहीखाता बनाने के लिए एक परियोजना " -#~ "शुरू की, जो बिटकॉइन की इन मूलभूत" -#~ " सीमाओं में सुधार करती है - " -#~ "उनकी पहली कोड प्रतिबद्धता नवंबर 2011 " -#~ "में थी।" - -#~ msgid "" -#~ "They wrote code, that when executed, " -#~ "would create a distributed ledger, which" -#~ " they named Ripple. It included a " -#~ "digital asset that would be called " -#~ "“ripples” (XRP as the currency code) " -#~ "to follow the same naming convention " -#~ "as Bitcoin (BTC). At the time, " -#~ "Ripple stood for the open-source " -#~ "project, the unique consensus ledger " -#~ "(Ripple Consensus Ledger), transaction " -#~ "protocol (Ripple Transaction Protocol or " -#~ "RTXP), the network (Ripple network) and" -#~ " the digital asset (known as " -#~ "“ripples”)." -#~ msgstr "" -#~ "उन्होंने कोड लिखा, कि निष्पादित होने " -#~ "पर, एक वितरित खाता बही बनाएगा, " -#~ "जिसे उन्होंने रिपल नाम दिया। इसमें " -#~ "एक डिजिटल संपत्ति शामिल थी जिसे " -#~ "बिटकॉइन (बीटीसी) के समान नामकरण सम्मेलन" -#~ " का पालन करने के लिए \"रिपल्स\" " -#~ "(मुद्रा कोड के रूप में एक्सआरपी) " -#~ "कहा जाएगा। उस समय, रिपल ओपन-सोर्स " -#~ "प्रोजेक्ट के लिए खड़ा था, अद्वितीय " -#~ "सर्वसम्मति बहीखाता (रिपल सर्वसम्मति लेजर), " -#~ "लेनदेन प्रोटोकॉल (रिपल लेनदेन प्रोटोकॉल " -#~ "या आरटीएक्सपी), नेटवर्क (रिपल नेटवर्क) " -#~ "और डिजिटल संपत्ति (जिसे \"लहर\" के " -#~ "रूप में जाना जाता है) ." - -#~ msgid "" -#~ "At that time, they decided their " -#~ "next move would be to gift 80 " -#~ "billion XRP to a not-yet-formed" -#~ " private company that would work with" -#~ " the broader community as well as " -#~ "pursue its own payments mission. The " -#~ "ledger code itself would be open " -#~ "source and for anyone to use." -#~ msgstr "" -#~ "उस समय, उन्होंने फैसला किया कि " -#~ "उनका अगला कदम 80 बिलियन एक्सआरपी " -#~ "को एक अभी तक गठित निजी कंपनी " -#~ "को उपहार में देना होगा जो व्यापक" -#~ " समुदाय के साथ काम करेगी और साथ" -#~ " ही अपने स्वयं के भुगतान मिशन " -#~ "को आगे बढ़ाएगी। लेज़र कोड स्वयं " -#~ "खुला स्रोत होगा और किसी के भी " -#~ "उपयोग के लिए होगा।" - -#~ msgid "" -#~ "They all agreed on how to allocate" -#~ " the XRP among themselves and the " -#~ "future company, and they eventually " -#~ "created the company along with Chris " -#~ "Larsen in September 2012." -#~ msgstr "" -#~ "वे सभी इस बात पर सहमत हुए कि" -#~ " एक्सआरपी को आपस में और भविष्य " -#~ "की कंपनी के बीच कैसे आवंटित किया" -#~ " जाए, और उन्होंने अंततः सितंबर 2012" -#~ " में क्रिस लार्सन के साथ कंपनी " -#~ "बनाई।" - -#~ msgid "" -#~ "At the outset of the company, " -#~ "OpenCoin set out to revolutionize the" -#~ " global financial system. Despite the " -#~ "revolutionary ideals of many of " -#~ "Bitcoin’s early believers, Larsen never " -#~ "thought blockchain technology should be " -#~ "used to overthrow the existing financial" -#~ " system. He believed that history’s " -#~ "most transformative innovations have always" -#~ " relied on the great ideas that " -#~ "came before them—not disrupting them." -#~ msgstr "" -#~ "कंपनी की शुरुआत में, OpenCoin ने " -#~ "वैश्विक वित्तीय प्रणाली में क्रांति लाने" -#~ " की शुरुआत की। बिटकॉइन के शुरुआती " -#~ "विश्वासियों के क्रांतिकारी आदर्शों के " -#~ "बावजूद, लार्सन ने कभी नहीं सोचा था" -#~ " कि मौजूदा वित्तीय प्रणाली को उखाड़" -#~ " फेंकने के लिए ब्लॉकचेन तकनीक का " -#~ "इस्तेमाल किया जाना चाहिए। उनका मानना " -#~ "​​​​था कि इतिहास के सबसे परिवर्तनकारी" -#~ " नवाचारों ने हमेशा उनके सामने आए " -#~ "महान विचारों पर भरोसा किया है -" -#~ " उन्हें बाधित नहीं किया है।" - -#~ msgid "Podcast" -#~ msgstr "पॉडकास्ट" - -#~ msgid "How Digital Assets Will Help Create a Sustainable Global Economy" -#~ msgstr "कैसे डिजिटल संपत्ति एक सतत वैश्विक अर्थव्यवस्था बनाने में मदद करेगी" - -#~ msgid "" -#~ "Hear from Ripple co-founder Chris " -#~ "Larsen in the inaugural episode of " -#~ "the Block Stars podcast." -#~ msgstr "" -#~ "ब्लॉक स्टार्स पॉडकास्ट के उद्घाटन एपिसोड" -#~ " में रिपल के सह-संस्थापक क्रिस लार्सन" -#~ " से सुनें।" - -#~ msgid "Listen Now" -#~ msgstr "सुनो अब" - -#~ msgid "Global Payments" -#~ msgstr "वैश्विक भुगतान" - -#~ msgid "XRP and the XRP Ledger are changing that." -#~ msgstr "एक्सआरपी और एक्सआरपी लेजर इसे बदल रहे हैं।" - -#~ msgid "" -#~ "The technology has been adopted by " -#~ "financial institutions around the world. " -#~ "They use it to source liquidity " -#~ "for international transactions, and because" -#~ " of the unprecedented efficiency it " -#~ "offers, they’re able to both bring " -#~ "down costs and improve services." -#~ msgstr "" -#~ "प्रौद्योगिकी को दुनिया भर के वित्तीय " -#~ "संस्थानों द्वारा अपनाया गया है। वे " -#~ "इसका उपयोग अंतरराष्ट्रीय लेनदेन के लिए" -#~ " तरलता के स्रोत के लिए करते " -#~ "हैं, और इसकी अभूतपूर्व दक्षता के " -#~ "कारण, वे लागत कम करने और सेवाओं" -#~ " में सुधार करने में सक्षम हैं।" - -#~ msgid "Future of Finance" -#~ msgstr "वित्त का भविष्य" - -#~ msgid "Digital Assets" -#~ msgstr "डिजिटल संपत्ति" - -#~ msgid "" -#~ "XRP is optimal for transacting—it’s " -#~ "fast, cheap, scalable and energy-" -#~ "efficient. It was designed for use " -#~ "in global payments." -#~ msgstr "" -#~ "XRP लेन-देन के लिए इष्टतम है - " -#~ "यह तेज़, सस्ता, स्केलेबल और ऊर्जा-कुशल" -#~ " है। इसे वैश्विक भुगतान में उपयोग " -#~ "के लिए डिज़ाइन किया गया था।" - -#~ msgid "" -#~ "The digital asset XRP was designed " -#~ "with sustainability in mind. The XRP " -#~ "Ledger processes transactions through a " -#~ "unique “consensus” mechanism that consumes " -#~ "negligible energy and all XRP currency" -#~ " is already in circulation. It is " -#~ "the first major blockchain network to" -#~ " be fully carbon neutral." -#~ msgstr "" -#~ "डिजिटल संपत्ति एक्सआरपी को स्थिरता को" -#~ " ध्यान में रखकर डिजाइन किया गया " -#~ "था। एक्सआरपी लेजर एक अद्वितीय \"आम " -#~ "सहमति\" तंत्र के माध्यम से लेनदेन " -#~ "की प्रक्रिया करता है जो नगण्य " -#~ "ऊर्जा की खपत करता है और सभी " -#~ "एक्सआरपी मुद्रा पहले से ही प्रचलन " -#~ "में है। यह पहला प्रमुख ब्लॉकचेन " -#~ "नेटवर्क है जो पूरी तरह से " -#~ "कार्बन न्यूट्रल." - -#~ msgid "$0.50/transaction" -#~ msgstr "$0.50/लेनदेन" - -#~ msgid "Finite Supply of XRP" -#~ msgstr "एक्सआरपी की सीमित आपूर्ति" - -#~ msgid "" -#~ "Unlike Bitcoin, there is a finite " -#~ "amount of XRP. All XRP is already" -#~ " in existence today—100 billion in " -#~ "total." -#~ msgstr "" -#~ "बिटकॉइन के विपरीत, एक्सआरपी की एक " -#~ "सीमित मात्रा है। आज सभी एक्सआरपी " -#~ "पहले से मौजूद हैं—कुल मिलाकर 100 " -#~ "अरब।" - -#~ msgid "History of XRP" -#~ msgstr "एक्सआरपी का इतिहास" - -#~ msgid "" -#~ "The XRP Ledger is open-source " -#~ "technology on which anyone can build." -#~ " The XRP Ledger is maintained by " -#~ "a global “XRP Community”—a diverse set" -#~ " of participants composed of software " -#~ "engineers, server operators and validators." -#~ msgstr "" -#~ "एक्सआरपी लेजर ओपन-सोर्स तकनीक है जिस " -#~ "पर कोई भी निर्माण कर सकता है। " -#~ "XRP लेजर को एक वैश्विक \"XRP " -#~ "समुदाय\" द्वारा बनाए रखा जाता है -" -#~ " सॉफ्टवेयर इंजीनियरों, सर्वर ऑपरेटरों और" -#~ " validators से बना" -#~ " प्रतिभागियों का एक विविध समूह।" - -#~ msgid "" -#~ "The XRP Ledger uses a consensus " -#~ "protocol, in which validators come to" -#~ " an agreement on the order of " -#~ "XRP transactions every 3-5 seconds. This" -#~ " agreement serves as the final and" -#~ " irreversible settlement." -#~ msgstr "" -#~ "एक्सआरपी लेजर एक आम सहमति प्रोटोकॉल " -#~ "का उपयोग करता है, जिसमें सत्यापनकर्ता" -#~ " हर 3-5 सेकंड में एक्सआरपी लेनदेन " -#~ "के आदेश पर एक समझौते पर आते " -#~ "हैं। यह समझौता अंतिम और अपरिवर्तनीय " -#~ "निपटान के रूप में कार्य करता है।" - -#~ msgid "" -#~ "Transactions are executed in a " -#~ "deterministic order to prevent double " -#~ "spending and malicious activity. Unlike " -#~ "other blockchains, transaction fees are " -#~ "destroyed as part of transaction " -#~ "execution. The XRP Ledger adjusts fees" -#~ " in near real time to respond " -#~ "to network conditions, with the twin " -#~ "goals of maximizing transaction throughput " -#~ "while keeping transaction fees as low" -#~ " as possible." -#~ msgstr "" -#~ "दोहरे खर्च और दुर्भावनापूर्ण गतिविधि को" -#~ " रोकने के लिए लेन-देन एक नियतात्मक" -#~ " क्रम में निष्पादित किए जाते हैं। " -#~ "अन्य ब्लॉकचेन के विपरीत, लेन-देन " -#~ "निष्पादन के हिस्से के रूप में " -#~ "लेनदेन शुल्क नष्ट हो जाते हैं। XRP" -#~ " लेजर नेटवर्क स्थितियों का जवाब देने" -#~ " के लिए लगभग वास्तविक समय में " -#~ "शुल्क को समायोजित करता है, लेन-देन " -#~ "शुल्क को यथासंभव कम रखते हुए " -#~ "लेनदेन थ्रूपुट को अधिकतम करने के " -#~ "दोहरे लक्ष्यों के साथ।" - -#~ msgid "XRP Validators" -#~ msgstr "एक्सआरपी सत्यापनकर्ता" - -#~ msgid "Why Is XRP Useful?" -#~ msgstr "एक्सआरपी क्यों उपयोगी है?" - -#~ msgid "" -#~ "XRP is fast, low-cost, sustainable " -#~ "and scalable. It is the key to " -#~ "fueling growth and realizing the true" -#~ " potential of our global economy—the " -#~ "Internet of Value." -#~ msgstr "" -#~ "एक्सआरपी तेज, कम लागत वाला, टिकाऊ " -#~ "और स्केलेबल है। यह विकास को बढ़ावा" -#~ " देने और हमारी वैश्विक अर्थव्यवस्था " -#~ "की वास्तविक क्षमता को साकार करने " -#~ "की कुंजी है—इंटरनेट ऑफ " -#~ "वैल्यू।" - -#~ msgid "Businesses" -#~ msgstr "व्यवसायों" - -#~ msgid "" -#~ "Many businesses are building on the " -#~ "XRP Ledger, pursuing powerful use cases" -#~ " in decentralized finance, micropayments, " -#~ "gaming, web monetization and more. " -#~ "Additionally, Ripple, the technology company," -#~ " is focused on building a network " -#~ "and infrastructure that leverages XRP to" -#~ " power faster, more affordable cross-" -#~ "border payments around the world." -#~ msgstr "" -#~ "कई व्यवसाय एक्सआरपी लेजर पर निर्माण " -#~ "कर रहे हैं, विकेंद्रीकृत वित्त, सूक्ष्म" -#~ " भुगतान, गेमिंग, वेब मुद्रीकरण और " -#~ "अधिक में शक्तिशाली उपयोग के मामलों " -#~ "का पीछा कर रहे हैं। इसके अतिरिक्त," -#~ " रिपल, प्रौद्योगिकी कंपनी, एक नेटवर्क " -#~ "और बुनियादी ढांचे के निर्माण पर " -#~ "ध्यान केंद्रित कर रही है जो दुनिया" -#~ " भर में तेजी से, अधिक किफायती " -#~ "सीमा पार से भुगतान करने के लिए " -#~ "एक्सआरपी का लाभ उठाती है।" - -#~ msgid "More About Businesses" -#~ msgstr "व्यवसायों के बारे में अधिक" - -#~ msgid "" -#~ "Individual consumers can use XRP to " -#~ "move different currencies around the " -#~ "world. For example, through wallets and" -#~ " exchanges that use PayID, " -#~ "anyone can use XRP—or any currency, " -#~ "be it fiat or digital assets—to " -#~ "easily make purchases across any " -#~ "payments network." -#~ msgstr "" -#~ "अलग-अलग उपभोक्ता दुनिया भर में विभिन्न" -#~ " मुद्राओं को स्थानांतरित करने के लिए" -#~ " एक्सआरपी का उपयोग कर सकते हैं। " -#~ "उदाहरण के लिए, वॉलेट और एक्सचेंजों " -#~ "के माध्यम से जो PayID " -#~ "का उपयोग करते हैं, कोई भी XRP—या" -#~ " किसी भी मुद्रा का उपयोग कर " -#~ "सकता है, चाहे वह कानूनी संपत्ति हो" -#~ " या डिजिटल संपत्ति —किसी भी भुगतान" -#~ " नेटवर्क पर आसानी से खरीदारी करने " -#~ "के लिए।" - -#~ msgid "More About Uses" -#~ msgstr "उपयोग के बारे में अधिक" - -#~ msgid "" -#~ "By building on the XRP Ledger, " -#~ "developers can easily integrate payments " -#~ "into their products—seamlessly putting money" -#~ " at the center of their applications." -#~ " Projects like xrpl-py are " -#~ "making it easier for developers to " -#~ "leverage XRP." -#~ msgstr "" -#~ "एक्सआरपी लेजर पर निर्माण करके, डेवलपर्स" -#~ " आसानी से अपने उत्पादों में भुगतान" -#~ " को एकीकृत कर सकते हैं-मूल रूप " -#~ "से अपने अनुप्रयोगों के केंद्र में " -#~ "पैसा डालते हैं। xrpl-py जैसी परियोजनाएं डेवलपर्स के" -#~ " लिए XRP का लाभ उठाना आसान बना" -#~ " रही हैं।" - -#~ msgid "More About Developers" -#~ msgstr "डेवलपर्स के बारे में" - -#~ msgid "Internet of Value" -#~ msgstr "मूल्य का इंटरनेट" - -#~ msgid "" -#~ "The XRP Ledger settles transactions " -#~ "faster than any other blockchain—in 3-5" -#~ " seconds." -#~ msgstr "" -#~ "एक्सआरपी लेजर किसी भी अन्य ब्लॉकचेन " -#~ "की तुलना में 3-5 सेकंड में लेनदेन" -#~ " को तेजी से निपटाता है।" - -#~ msgid "" -#~ "XRP transactions cost a fraction of " -#~ "a penny ($0.0002)—much less than other" -#~ " cryptocurrencies and average fiat " -#~ "payments." -#~ msgstr "" -#~ "एक्सआरपी लेनदेन में एक पैसा ($ " -#~ "0.0002) का एक अंश खर्च होता है " -#~ "- अन्य क्रिप्टोकरेंसी और औसत कानूनी " -#~ "भुगतानों की तुलना में बहुत कम।" - -#~ msgid "The XRP Ledger can handle up to 1,500 transactions per second." -#~ msgstr "XRP लेजर प्रति सेकंड 1,500 लेनदेन तक संभाल सकता है।" - -#~ msgid "" -#~ "XRP transactions settle without the " -#~ "enormous and unsustainable energy costs " -#~ "associated with proof-of-work (or " -#~ "mining)." -#~ msgstr "" -#~ "XRP लेन-देन प्रूफ-ऑफ-वर्क (या माइनिंग) " -#~ "से जुड़ी भारी और अस्थिर ऊर्जा " -#~ "लागतों के बिना निपटता है।" - -#~ msgid "Real" -#~ msgstr "असली" - -#~ msgid "" -#~ "XRP is one of the only digital " -#~ "assets with a proven, real-world " -#~ "use case: cross-border payments." -#~ msgstr "" -#~ "XRP एकमात्र ऐसी डिजिटल संपत्ति में " -#~ "से एक है, जो एक सिद्ध, वास्तविक" -#~ " दुनिया के उपयोग के मामले में " -#~ "है: सीमा पार से भुगतान।" - -#~ msgid "" -#~ "XRP is traded on more than 140 " -#~ "markets and exchanges" -#~ " worldwide." -#~ msgstr "" -#~ "XRP का दुनिया भर में 140 से " -#~ "अधिक बाजारों और एक्सचेंजों में कारोबार " -#~ "होता है।" - -#~ msgid "Find Out More" -#~ msgstr "और अधिक जानकारी प्राप्त करें" - -#~ msgid "" -#~ "Ripple is a technology company that " -#~ "makes it easier to build a " -#~ "high-performance, global payments business " -#~ "through its platform, RippleNet. XRP is" -#~ " a digital asset independent of this," -#~ " and is used in Ripple’s On-" -#~ "Demand Liquidity service to facilitate " -#~ "efficient and cost-effective cross-" -#~ "border transactions. In December of " -#~ "2017, Ripple placed 55 Billion XRP " -#~ "into a cryptographically secured escrow account " -#~ "to support stable and healthy XRP markets." -#~ msgstr "" -#~ "Ripple एक प्रौद्योगिकी कंपनी है जो " -#~ "अपने प्लेटफॉर्म RippleNet के माध्यम से" -#~ " एक उच्च-प्रदर्शन, वैश्विक भुगतान व्यवसाय" -#~ " बनाना आसान बनाती है। एक्सआरपी इससे" -#~ " स्वतंत्र एक डिजिटल संपत्ति है, और" -#~ " इसका उपयोग कुशल और लागत प्रभावी " -#~ "सीमा पार लेनदेन की सुविधा के लिए" -#~ " रिपल की ऑन-डिमांड तरलता सेवा में " -#~ "किया जाता है। 2017 के दिसंबर में," -#~ " Ripple ने क्रिप्टोग्राफ़िक रूप से " -#~ "सुरक्षित एस्क्रो खाते में 55 " -#~ "बिलियन XRP रखा। स्थिर और स्वस्थ XRP बाजारों का समर्थन " -#~ "करने के लिए।" - -#~ msgid "Visit Ripple's Website" -#~ msgstr "रिपल की वेबसाइट पर जाएँ" - -#~ msgid "" -#~ "XRPL.org is a community-driven resource" -#~ " for all things XRP and XRP " -#~ "Ledger (XRPL). If you’d like to " -#~ "suggest additional information around XRP, " -#~ "you can suggest changes here." -#~ msgstr "" -#~ "XRPL.org सभी चीजों के लिए XRP और" -#~ " XRP लेजर (XRPL) के लिए एक " -#~ "समुदाय-संचालित संसाधन है। यदि आप XRP " -#~ "के बारे में अतिरिक्त जानकारी का " -#~ "सुझाव देना चाहते हैं, तो आप यहां परिवर्तनों का " -#~ "सुझाव दे सकते हैं।" - -#~ msgid "Suggest Changes" -#~ msgstr "परिवर्तन सुझाएं" - -#~ msgid "The Best Way To Move Money Around the World" -#~ msgstr "दुनिया भर में पैसा स्थानांतरित करने का सबसे अच्छा तरीका" - -#~ msgid "Using XRP" -#~ msgstr "एक्सआरपी का उपयोग करना" - -#~ msgid "" -#~ "XRP and the XRP Ledger are used" -#~ " to power innovative technology across " -#~ "the payments space." -#~ msgstr "" -#~ "एक्सआरपी और एक्सआरपी लेजर का उपयोग " -#~ "भुगतान क्षेत्र में नवीन प्रौद्योगिकी को" -#~ " शक्ति प्रदान करने के लिए किया " -#~ "जाता है।" - -#~ msgid "" -#~ "From cross-border payments to " -#~ "decentralized finance, businesses and " -#~ "developers around the world are " -#~ "leveraging the XRP Ledger and its " -#~ "native digital asset, XRP—a faster, " -#~ "cheaper and greener currency." -#~ msgstr "" -#~ "सीमा पार से भुगतान से लेकर " -#~ "विकेंद्रीकृत वित्त तक, दुनिया भर के " -#~ "व्यवसाय और डेवलपर्स एक्सआरपी लेजर और " -#~ "इसकी मूल डिजिटल संपत्ति, एक्सआरपी-एक " -#~ "तेज, सस्ती और हरित मुद्रा का लाभ" -#~ " उठा रहे हैं।" - -#~ msgid "" -#~ "Through RippleNet, financial institutions can" -#~ " use XRP to bridge two currencies " -#~ "in 3-5 seconds, ensuring payments are" -#~ " quickly sent and received in the " -#~ "local currency on either side of a" -#~ " transaction." -#~ msgstr "" -#~ "RippleNet के माध्यम से, वित्तीय संस्थान" -#~ " 3-5 सेकंड में दो मुद्राओं को " -#~ "पाटने के लिए XRP का उपयोग कर " -#~ "सकते हैं, यह सुनिश्चित करते हुए कि" -#~ " लेनदेन के दोनों ओर स्थानीय मुद्रा" -#~ " में भुगतान जल्दी से भेजा और " -#~ "प्राप्त किया जाता है।" - -#~ msgid "Learn About On-Demand Liquidity" -#~ msgstr "ऑन-डिमांड लिक्विडिटी के बारे में जानें" - -#~ msgid "Learn About XRP Ledger Businesses" -#~ msgstr "एक्सआरपी लेजर व्यवसायों के बारे में जानें" - -#~ msgid "Digital Cryptocurrency" -#~ msgstr "डिजिटल क्रिप्टोक्यूरेंसी" - -#~ msgid "Explore Wallets" -#~ msgstr "वॉलेट का अन्वेषण करें" - -#~ msgid "" -#~ "Market makers and individuals use " -#~ "exchanges to trade XRP and other " -#~ "digital assets. Exchanges are often also" -#~ " intermediaries in cross-border payments" -#~ " among financial institutions." -#~ msgstr "" -#~ "बाजार निर्माता और व्यक्ति एक्सआरपी और" -#~ " अन्य डिजिटल संपत्तियों का व्यापार " -#~ "करने के लिए एक्सचेंजों का उपयोग " -#~ "करते हैं। एक्सचेंज अक्सर वित्तीय " -#~ "संस्थानों के बीच सीमा पार भुगतान " -#~ "में मध्यस्थ भी होते हैं।" - -#~ msgid "Institutional Trading" -#~ msgstr "संस्थागत व्यापार" - -#~ msgid "" -#~ "Market participants use XRP as a " -#~ "high-speed, cost-efficient and reliable " -#~ "trading collateral. This means seizing " -#~ "arbitrage opportunities, servicing margin " -#~ "calls and managing general trade " -#~ "inventory in real time." -#~ msgstr "" -#~ "बाजार सहभागी एक्सआरपी का उपयोग उच्च " -#~ "गति, लागत प्रभावी और विश्वसनीय व्यापारिक" -#~ " संपार्श्विक के रूप में करते हैं। " -#~ "इसका मतलब है कि आर्बिट्राज के " -#~ "अवसरों को जब्त करना, मार्जिन कॉल " -#~ "की सेवा करना और वास्तविक समय में" -#~ " सामान्य व्यापार सूची का प्रबंधन " -#~ "करना।" - -#~ msgid "Open Search" -#~ msgstr "ओपन सर्च" - -#~ msgid "" -#~ "Fund your XRPL project with a " -#~ "developer grant. Apply " -#~ "now!" -#~ msgstr "" - -#~ msgid "Green Currency Interactive Tool" -#~ msgstr "इंटरएक्टिव टूल का अन्वेषण करें" - -#~ msgid "How Green Is Your Currency?" -#~ msgstr "आपकी मुद्रा कितनी हरित है?" - -#~ msgid "Energy Consumption for Cash, Credit Cards and Crypto" -#~ msgstr "नकद, क्रेडिट कार्ड और क्रिप्टो के लिए ऊर्जा की खपत" - -#~ msgid "" -#~ "Moving money carries cost—and not just" -#~ " the fee on your transaction or " -#~ "the value of your payment." -#~ msgstr "" -#~ "पैसे ले जाने में लागत होती है- " -#~ "न कि केवल आपके लेन-देन पर शुल्क" -#~ " या आपके भुगतान का मूल्य।" - -#~ msgid "" -#~ "Whether it’s in cash, on a credit" -#~ " card or with crypto, every " -#~ "transaction you make consumes energy, " -#~ "and therefore, emits pollutants into the" -#~ " environment." -#~ msgstr "" -#~ "चाहे वह नकद में हो, क्रेडिट कार्ड" -#~ " पर या क्रिप्टो के साथ, आपके " -#~ "द्वारा किया गया प्रत्येक लेनदेन ऊर्जा" -#~ " की खपत करता है, और इसलिए, " -#~ "पर्यावरण में प्रदूषकों का उत्सर्जन करता" -#~ " है।" - -#~ msgid "" -#~ "The impact of this is startling " -#~ "when you look at the total " -#~ "transactions across an entire year—for " -#~ "any one form of currency." -#~ msgstr "" -#~ "इसका प्रभाव चौंका देने वाला होता " -#~ "है जब आप एक पूरे वर्ष के कुल" -#~ " लेन-देन को देखते हैं—मुद्रा के किसी" -#~ " एक रूप के लिए।" - -#~ msgid "" -#~ "Find out more about the environmental" -#~ " cost of some of the world’s " -#~ "most popular and innovative currencies, " -#~ "and start making more educated choices" -#~ " about how you transact." -#~ msgstr "" -#~ "दुनिया की कुछ सबसे लोकप्रिय और " -#~ "नवोन्मेषी मुद्राओं की पर्यावरणीय लागत के" -#~ " बारे में और जानें, और आप कैसे" -#~ " लेन-देन करते हैं, इसके बारे में " -#~ "अधिक शिक्षित विकल्प बनाना शुरू करें।" - -#~ msgid "How Does XRP Compare to Other Currencies?" -#~ msgstr "एक्सआरपी अन्य मुद्राओं की तुलना कैसे करता है?" - -#~ msgid "Change Inputs" -#~ msgstr "इनपुट बदलें" - -#~ msgid "Comparing
Transaction Data" -#~ msgstr "तुलना
लेन-देन डेटा" - -#~ msgid "Credit Cards" -#~ msgstr "क्रेडिट कार्ड" - -#~ msgid "Cash" -#~ msgstr "नकद" - -#~ msgid "Twitter share" -#~ msgstr "ट्विटर शेयर" - -#~ msgid "LinkedIn share" -#~ msgstr "लिंक्डइन शेयर" - -#~ msgid "Facebook share" -#~ msgstr "फेसबुक शेयर" - -#~ msgid "Learn more about the methodology" -#~ msgstr "कार्यप्रणाली के बारे में अधिक जानें" - -#~ msgid "Energy Consumption of Portugal" -#~ msgstr "पुर्तगाल की ऊर्जा खपत" - -#~ msgid "" -#~ "Comparing " -#~ "Million Transactions in 2019" -#~ msgstr "तुलना 2019 में मिलियन लेनदेन" - -#~ msgid "" -#~ "The country of Portugal consumes 46.94" -#~ " billion Kilowatt hours (kWh) of " -#~ "energy annually. Explore how much energy" -#~ " today’s various currencies consume in " -#~ "relation to Portugal." -#~ msgstr "" -#~ "पुर्तगाल देश सालाना 46.94 बिलियन किलोवाट" -#~ " घंटे (kWh) ऊर्जा की खपत करता " -#~ "है। अन्वेषण करें कि पुर्तगाल के " -#~ "संबंध में आज की विभिन्न मुद्राएं " -#~ "कितनी ऊर्जा की खपत करती हैं।" - -#~ msgid "Portugal" -#~ msgstr "पुर्तगाल" - -#~ msgid "kWh" -#~ msgstr "किलोवाट" - -#~ msgid "Visa" -#~ msgstr "वीसा" - -#~ msgid "CO2 Emissions from Airline Flights" -#~ msgstr "CO2 एयरलाइन उड़ानों से उत्सर्जन" - -#~ msgid "" -#~ "A 12-hour flight from London to " -#~ "Hong Kong releases 3 tons of " -#~ "carbon dioxide (CO2). Discover how" -#~ " much CO2 different forms of " -#~ "currency release in comparison to " -#~ "emissions from airline flights." -#~ msgstr "" -#~ "लंदन से हांगकांग के लिए 12 घंटे" -#~ " की उड़ान से 3 टन कार्बन " -#~ "डाइऑक्साइड (CO2) निकलती है। पता " -#~ "लगाएं कि एयरलाइन उड़ानों से उत्सर्जन " -#~ "की तुलना में कितनी CO2 मुद्रा" -#~ " जारी करने के विभिन्न रूप हैं।" - -#~ msgid "metric tons of CO2" -#~ msgstr "मीट्रिक टन CO2" - -#~ msgid "Gas Consumption by the Gallon" -#~ msgstr "गैलन द्वारा गैस की खपत" - -#~ msgid "" -#~ "An Ultra Large Crude Carrier (ULCC) " -#~ "carries approximately 120 million gallons " -#~ "of gas. Measure the environmental impact" -#~ " between currencies in relation to " -#~ "the amount of gas they would " -#~ "consume in the real-world." -#~ msgstr "" -#~ "एक अल्ट्रा लार्ज क्रूड कैरियर (ULCC) " -#~ "लगभग 120 मिलियन गैलन गैस वहन करता" -#~ " है। वास्तविक दुनिया में उनके द्वारा" -#~ " उपभोग की जाने वाली गैस की " -#~ "मात्रा के संबंध में मुद्राओं के " -#~ "बीच पर्यावरणीय प्रभाव को मापें।" - -#~ msgid "Gallons of Gas" -#~ msgstr "गैस के गैलन" - -#~ msgid "Breaking Down Individual Transactions" -#~ msgstr "व्यक्तिगत लेनदेन को तोड़ना" - -#~ msgid "" -#~ "Looking at individual transactions below, " -#~ "compare how a single transaction across" -#~ " each form of currency equates to " -#~ "kWh, CO2 emissions, and gallons " -#~ "of gas." -#~ msgstr "" -#~ "नीचे दिए गए व्यक्तिगत लेन-देन को " -#~ "देखते हुए, तुलना करें कि मुद्रा के" -#~ " प्रत्येक रूप में एक एकल लेनदेन " -#~ "kWh, CO2 उत्सर्जन और गैलन गैस" -#~ " के बराबर कैसे होता है।" - -#~ msgid "Kilowatt Hour" -#~ msgstr "किलोवाट घंटा" - -#~ msgid "CO2 Emissions" -#~ msgstr "CO2 उत्सर्जन*" - -#~ msgid "Paper Currency" -#~ msgstr "कागज़ी मुद्रा" - -#~ msgid "Participate in the XRPL Community" -#~ msgstr "" - -#~ msgid "Join and Contribute" -#~ msgstr "" - -#~ msgid "Run an XRP Ledger Network Node" -#~ msgstr "" - -#~ msgid "Find us on the platforms below" -#~ msgstr "" - -#~ msgid "" -#~ "Interested in non-fungible tokens, but" -#~ " concerned about their large carbon footprint? " -#~ "Check out these proposed standards for" -#~ " issuing NFTs on the XRP Ledger:" -#~ msgstr "" - -#~ msgid "" -#~ "Founded September 24, " -#~ "2020, the XRPL Foundation is an " -#~ "independent and nonprofit entity with a" -#~ " mission to accelerate the development " -#~ "and adoption of the decentralized XRP" -#~ " Ledger. The Foundation received an " -#~ "initial donation of over $6.5M from " -#~ "Coil, Ripple, and Gatehub to fund " -#~ "the Foundation’s work in service of " -#~ "the growing number of developers and " -#~ "other community members building on the" -#~ " XRP Ledger." -#~ msgstr "" - -#~ msgid "Issued Currencies" -#~ msgstr "जारी मुद्रा भेजें" - -#~ msgid "" -#~ "All currencies other than XRP can " -#~ "be represented in the XRP Ledger " -#~ "as issued currencies, sometimes called " -#~ "“IOUs”" -#~ msgstr "" - -#~ msgid "Faster, Cheaper, Green Money" -#~ msgstr "तेज़, सस्ता, हरा धन" - -#~ msgid "" -#~ "The digital asset XRP is a truly" -#~ " global currency—ideally suited to enable" -#~ " today’s global economy." -#~ msgstr "" -#~ "डिजिटल संपत्ति एक्सआरपी वास्तव में एक" -#~ " वैश्विक मुद्रा है-आज की बढ़ती डिजिटल" -#~ " अर्थव्यवस्था को सक्षम करने के लिए" -#~ " आदर्श रूप से उपयुक्त है।" - -#~ msgid "" -#~ "As an optimal medium of exchange, " -#~ "XRP and the XRP Ledger on which" -#~ " it operates help to move money " -#~ "around the world faster, cheaper and " -#~ "more sustainably than any other currency" -#~ " available today. " -#~ msgstr "" -#~ "एक्सचेंज के इष्टतम माध्यम के रूप " -#~ "में, एक्सआरपी और एक्सआरपी लेजर, जिस " -#~ "पर यह संचालित होता है, आज उपलब्ध" -#~ " किसी भी अन्य मुद्रा की तुलना " -#~ "में दुनिया भर में तेजी से, सस्ता" -#~ " और अधिक स्थायी रूप से पैसा " -#~ "स्थानांतरित करने में मदद करता है।" - -#~ msgid "" -#~ "It was designed this way, and it’s" -#~ " proving its impact in global " -#~ "payments and beyond." -#~ msgstr "" -#~ "इसे इस तरह से डिजाइन किया गया " -#~ "था, और यह वैश्विक भुगतान और उससे" -#~ " आगे के प्रभाव को साबित कर रहा" -#~ " है।" - -#~ msgid "Creating Economic Opportunity" -#~ msgstr "आर्थिक अवसर बनाना" - -#~ msgid "" -#~ "For more than 272 million migrants " -#~ "worldwide, sending and receiving money " -#~ "across borders is expensive, unreliable " -#~ "and complex." -#~ msgstr "" -#~ "दुनिया भर में 272 मिलियन प्रवासियों से " -#~ "अधिक के लिए, भेजने और सीमाओं के" -#~ " पार धन प्राप्त करना महंगा, " -#~ "अविश्वसनीय और जटिल है।" - -#~ msgid "" -#~ "XRP and the XRP Ledger are " -#~ "changing that. The technology has been" -#~ " adopted by financial institutions around" -#~ " the world to source liquidity for" -#~ " international transactions. Because of the" -#~ " unprecedented efficiency it offers, " -#~ "they’re able to bring down costs " -#~ "and improve services." -#~ msgstr "" - -#~ msgid "" -#~ "This means hundreds of millions of " -#~ "people worldwide who need to move " -#~ "money safely and securely across borders" -#~ " can do so more affordably and " -#~ "reliably than ever before." -#~ msgstr "" -#~ "इसका मतलब यह है कि दुनिया भर " -#~ "में करोड़ों लोग जिन्हें सीमाओं के " -#~ "पार सुरक्षित और सुरक्षित रूप से धन" -#~ " स्थानांतरित करने की आवश्यकता है, वे" -#~ " पहले से कहीं अधिक किफायती और " -#~ "मज़बूती से ऐसा कर सकते हैं।" - -#~ msgid "Building for the Future" -#~ msgstr "भविष्य के लिए भवन" - -#~ msgid "" -#~ "Digital assets and blockchain technology " -#~ "are the future of finance. Open " -#~ "and decentralized, they offer the " -#~ "first-ever global standards for value " -#~ "exchange broadly—whether it’s money, stocks," -#~ " loyalty points, intellectual property or" -#~ " more." -#~ msgstr "" -#~ "डिजिटल संपत्ति और ब्लॉकचेन तकनीक वित्त" -#~ " का भविष्य हैं। खुले और विकेंद्रीकृत," -#~ " वे व्यापक रूप से मूल्य विनिमय " -#~ "के लिए पहले वैश्विक मानकों की " -#~ "पेशकश करते हैं-चाहे वह पैसा, स्टॉक, " -#~ "वफादारी अंक, बौद्धिक संपदा या अधिक " -#~ "हो।" - -#~ msgid "Projected BTC, ETH and XRP Transactions in USD" -#~ msgstr "" - -#~ msgid "2025" -#~ msgstr "" - -#~ msgid "+195.3%%" -#~ msgstr "" - -#~ msgid "$8.6T" -#~ msgstr "" - -#~ msgid "2030" -#~ msgstr "" - -#~ msgid "+21.4%%" -#~ msgstr "" - -#~ msgid "$10.5T" -#~ msgstr "" - -#~ msgid "Are All Digital Assets Alike?" -#~ msgstr "क्या सभी डिजिटल एसेट एक जैसे हैं?" - -#~ msgid "" -#~ "All digital assets have different " -#~ "strengths that make them ideal for " -#~ "various use cases." -#~ msgstr "" -#~ "प्रत्येक डिजिटल संपत्ति में अलग-अलग ताकत" -#~ " होती है जो इसे आज के विभिन्न" -#~ " उपयोग के मामलों के लिए आदर्श " -#~ "बनाती है।" - -#~ msgid "" -#~ "Bitcoin has historically been recognized " -#~ "as a store of value and Ether " -#~ "(ETH) for its smart contract " -#~ "capabilities." -#~ msgstr "" -#~ "बिटकॉइन को मोटे तौर पर स्मार्ट " -#~ "अनुबंधों में उपयोग के लिए मूल्य और" -#~ " ईथर (ETH) के भंडार के रूप में" -#~ " मान्यता प्राप्त है।" - -#~ msgid "" -#~ "XRP was designed to be optimal for" -#~ " global payments—it’s fast, cheap, scalable" -#~ " and energy-efficient. But the XRP" -#~ " Ledger is also increasingly popular " -#~ "for innovative blockchain use cases, " -#~ "like NFTs and DeFi." -#~ msgstr "" - -#~ msgid "" -#~ "The same characteristics that make XRP" -#~ " ideal for global transactions mean " -#~ "it’s also better for our environment." -#~ " XRP is green by nature." -#~ msgstr "" -#~ "और, वही विशेषताएं जो इसे भुगतान के" -#~ " लिए आदर्श बनाती हैं, इसका मतलब " -#~ "है कि यह हमारे पर्यावरण के लिए " -#~ "भी बेहतर है। एक्सआरपी स्वभाव से " -#~ "हरा है।" - -#~ msgid "" -#~ "Most currencies today—whether digital or " -#~ "physical—are not environmentally friendly. The" -#~ " potential for long-term impact on" -#~ " our planet could hold startling " -#~ "consequences. " -#~ msgstr "" -#~ "आज अधिकांश मुद्रा - चाहे डिजिटल हो" -#~ " या भौतिक - पर्यावरण के अनुकूल " -#~ "नहीं है। हमारे ग्रह पर संभावित " -#~ "दीर्घकालिक प्रभाव के चौंकाने वाले परिणाम" -#~ " हो सकते हैं।" - -#~ msgid "" -#~ "The XRP Ledger processes transactions " -#~ "through a unique “consensus” mechanism " -#~ "that consumes negligible energy and all" -#~ " XRP currency is already in " -#~ "circulation." -#~ msgstr "" - -#~ msgid "" -#~ "Cash also leaves a substantial carbon" -#~ " footprint, and the environmental impact" -#~ " goes beyond energy consumption—eutrophication" -#~ " (due to waste), photochemical ozone " -#~ "creation, greenhouse gas emissions and " -#~ "more factor into the equation." -#~ msgstr "" -#~ "नकद भी एक पर्याप्त कार्बन पदचिह्न " -#~ "छोड़ देता है, और पर्यावरणीय प्रभाव " -#~ "ऊर्जा खपत से परे चला जाता " -#~ "है-यूट्रोफिकेशन (अपशिष्ट के कारण), फोटोकैमिकल" -#~ " ओजोन निर्माण, ग्रीनहाउस गैस उत्सर्जन " -#~ "और समीकरण में अधिक कारक।" - -#~ msgid "" -#~ "Other digital assets, like Bitcoin, rely" -#~ " on a different mechanism to both " -#~ "validate transactions and create new " -#~ "coins. This “proof-of-work” algorithm" -#~ " requires “mining.” Mining is an " -#~ "incredibly energy-intensive process for " -#~ "validating transactions that consumes more " -#~ "energy in a year than entire " -#~ "countries." -#~ msgstr "" -#~ "अन्य डिजिटल संपत्ति, जैसे बिटकॉइन, " -#~ "लेनदेन को मान्य करने और नए सिक्के" -#~ " बनाने के लिए एक अलग तंत्र पर" -#~ " भरोसा करते हैं। इस \"प्रूफ-ऑफ-वर्क\" " -#~ "एल्गोरिथम के लिए \"खनन\" की आवश्यकता " -#~ "होती है। पूरे देशों की तुलना में" -#~ " एक वर्ष में अधिक ऊर्जा की खपत" -#~ " करने वाले लेनदेन को मान्य करने " -#~ "के लिए खनन एक अविश्वसनीय रूप से" -#~ " ऊर्जा-गहन प्रक्रिया है।" - -#~ msgid "" -#~ "Adopting XRP more broadly will help " -#~ "limit this waste and ensure a " -#~ "sustainable future for our planet and" -#~ " global economy." -#~ msgstr "" -#~ "एक्सआरपी को अधिक व्यापक रूप से " -#~ "अपनाने से इस कचरे को सीमित करने" -#~ " और हमारे ग्रह और वैश्विक " -#~ "अर्थव्यवस्था के लिए एक स्थायी भविष्य " -#~ "सुनिश्चित करने में मदद मिलेगी।" - -#~ msgid "Explore the Carbon Calculator" -#~ msgstr "" - -#~ msgid "" -#~ "Developers are using the XRP Ledger " -#~ "to build innovative products for gaming," -#~ " content, and web monetization, among " -#~ "other applications where currency is at" -#~ " the center." -#~ msgstr "" -#~ "गेमिंग, सामग्री और वेब मुद्रीकरण के " -#~ "लिए अभिनव उत्पादों के निर्माण के " -#~ "लिए व्यवसाय एक्सआरपी और एक्सआरपी लेजर" -#~ " का लाभ उठा रहे हैं, अन्य " -#~ "अनुप्रयोगों के बीच जहां पैसा केंद्र " -#~ "में है।" - -#~ msgid "Cryptocurrency Wallets" -#~ msgstr "डिजिटल क्रिप्टोक्यूरेंसी वॉलेट" - -#~ msgid "" -#~ "Build sophisticated exchanges where users " -#~ "can invest and trade crypto and " -#~ "non-blockchain assets such as stocks, " -#~ "ETFs, and commodities." -#~ msgstr "" - -#~ msgid "Stablecoins" -#~ msgstr "सेकंड" - -#~ msgid "" -#~ "Financial institutions can use Issued " -#~ "Currencies to issue stablecoins on the" -#~ " XRP Ledger. XRPL’s integrated " -#~ "decentralized exchange (DEX) allows neutral," -#~ " counterparty-free digital assets to " -#~ "be seamlessly exchanged to and from " -#~ "“issued assets,” including stablecoins." -#~ msgstr "" - -#~ msgid "" -#~ "XRPL allows issuance of IOUs which " -#~ "can represent a currency of any " -#~ "value, which can be extended to " -#~ "the issuance of non-fungible tokens " -#~ "(NFTs)." -#~ msgstr "" - -#~ msgid "" -#~ "Provide access to financial products and" -#~ " services online in a decentralized " -#~ "and borderless manner on XRPL, with " -#~ "decentralized smart contract protocols " -#~ "replacing the traditional role of " -#~ "financial institutions." -#~ msgstr "" - -#~ msgid "CBDCs" -#~ msgstr "" - -#~ msgid "" -#~ "The CBDC Private Ledger provides Central" -#~ " Banks a secure, controlled, and " -#~ "flexible solution to issue and manage" -#~ " Central Bank Issued Digital Currencies " -#~ "(CBDCs)." -#~ msgstr "" - -#~ msgid "Payment Processing" -#~ msgstr "भुगतान प्रक्रिया" - -#~ msgid "" -#~ "Coil provides web monetization as an " -#~ "alternative to traditional paid advertising." -#~ " Coil uses the interledger protocol " -#~ "(ILP) to stream micropayments as users" -#~ " consume content. The XRPL’s payment " -#~ "channels provide an ideal system for " -#~ "settling these micropayments at high " -#~ "speed and low cost." -#~ msgstr "" - -#~ msgid "" -#~ "GateHub is a platform for the " -#~ "Internet of Value, built on the " -#~ "XRP Ledger protocol. It allows everyone" -#~ " to send, receive, trade and manage" -#~ " any type of assets." -#~ msgstr "" -#~ "गेटहब इंटरनेट ऑफ वैल्यू के लिए एक" -#~ " प्लेटफॉर्म है, जिसे एक्सआरपी लेजर " -#~ "प्रोटोकॉल पर बनाया गया है। यह सभी" -#~ " को किसी भी प्रकार की संपत्ति " -#~ "भेजने, प्राप्त करने, व्यापार करने और " -#~ "प्रबंधित करने की अनुमति देता है।" - -#~ msgid "Wallets and Apps" -#~ msgstr "वॉलेट और ऐप्स" - -#~ msgid "" -#~ "Exodus offers wallets and applications " -#~ "for securing, managing and exchanging " -#~ "crypto." -#~ msgstr "" -#~ "एक्सोडस क्रिप्टो को सुरक्षित करने, " -#~ "प्रबंधित करने और एक्सचेंज करने के " -#~ "लिए वॉलेट और एप्लिकेशन प्रदान करता " -#~ "है।" - -#~ msgid "" -#~ "Ripple powers instant, lower-cost " -#~ "settlement of cross-border payments " -#~ "using XRP to source liquidity on " -#~ "demand. XRP is ideally suited for " -#~ "global payments because it's quicker, " -#~ "less costly, and more scalable than " -#~ "any other digital asset." -#~ msgstr "" -#~ "रिपल ने मांग पर तरलता के स्रोत " -#~ "के लिए एक्सआरपी का उपयोग करके सीमा" -#~ " पार से भुगतान के तत्काल, कम " -#~ "लागत वाले निपटान की शक्ति प्रदान " -#~ "की। एक्सआरपी वैश्विक भुगतान के लिए " -#~ "आदर्श रूप से अनुकूल है क्योंकि यह" -#~ " किसी भी अन्य डिजिटल संपत्ति की " -#~ "तुलना में तेज, कम खर्चीला और अधिक" -#~ " स्केलेबल है।" - -#~ msgid "Music" -#~ msgstr "संगीत" - -#~ msgid "" -#~ "Raised in Space is a music/tech " -#~ "investment group focused on raising the" -#~ " value of music, innovating across " -#~ "the entire value chain of the " -#~ "music industry." -#~ msgstr "" -#~ "राइज़्ड इन स्पेस एक संगीत/तकनीक निवेश" -#~ " समूह है जो संगीत उद्योग की " -#~ "संपूर्ण मूल्य श्रृंखला में नवाचार करते" -#~ " हुए संगीत के मूल्य को बढ़ाने " -#~ "पर केंद्रित है।" - -#~ msgid "Applications" -#~ msgstr "अनुप्रयोग" - -#~ msgid "" -#~ "From cold storage to apps for " -#~ "signing transactions, XRPL Labs is " -#~ "dedicated to building software on the" -#~ " XRP Ledger." -#~ msgstr "" -#~ "लेनदेन पर हस्ताक्षर करने के लिए " -#~ "कोल्ड स्टोरेज से लेकर ऐप्स तक, " -#~ "एक्सआरपीएल लैब्स एक्सआरपी लेजर पर " -#~ "सॉफ्टवेयर बनाने के लिए समर्पित है।" - -#~ msgid "" -#~ "Xrplorer offers services and tools that" -#~ " help prevent and combat fraudulent " -#~ "activity on the XRPL as well as" -#~ " custom APIs and analytics that " -#~ "supplement the XRPL APIs where they " -#~ "are not enough." -#~ msgstr "" -#~ "Xrplorer सेवाएं और उपकरण प्रदान करता " -#~ "है जो XRP लेजर के साथ-साथ कस्टम" -#~ " API और एनालिटिक्स पर धोखाधड़ी " -#~ "गतिविधि को रोकने और मुकाबला करने " -#~ "में मदद करता है जो XRP लेजर " -#~ "एपीआई के पूरक हैं जहां वे पर्याप्त" -#~ " नहीं हैं।" - -#~ msgid "XRP was designed with sustainability in mind." -#~ msgstr "" - -#~ msgid "Explore how the energy consumption of XRP compares to other currencies." -#~ msgstr "" - -#~ msgid "Green Currency Calculator" -#~ msgstr "ग्रीन करेंसी कैलकुलेटर की खोज करें" - -#~ msgid "" -#~ "There is a finite amount of XRP." -#~ " All XRP is already in existence " -#~ "today—no more than the original 100 " -#~ "billion can be created. The XRPL " -#~ "founders gifted 80 billion XRP, the " -#~ "platform’s native currency, to Ripple. " -#~ "To provide predictability to the XRP " -#~ "supply, Ripple has locked 55 billion " -#~ "XRP (55%% of the total possible " -#~ "supply) into a series of escrows " -#~ "using the XRP Ledger itself. The " -#~ "XRPL's transaction processing rules, enforced" -#~ " by the consensus protocol, control " -#~ "the release of the XRP." -#~ msgstr "" - -#~ msgid "Secalot" -#~ msgstr "" - -#~ msgid "https://ftx.com/" -#~ msgstr "" - -#~ msgid "FTX" -#~ msgstr "" - -#~ msgid "" -#~ "Unlike most other blockchains, the XRP" -#~ " Ledger does not need mining, so " -#~ "no energy is " -#~ "wasted in the transaction process. " -#~ "Learn how this compares to other " -#~ "platforms with our Green Currency Calculator." -#~ msgstr "" - -#~ msgid "" -#~ "It’s been widely reported that Bitcoin’s" -#~ " energy consumption, as of 2021, is" -#~ " equivalent to that used by " -#~ "Argentina, with much of the electricity" -#~ " Bitcoin miners use coming from " -#~ "polluting sources. The XRP Ledger " -#~ "confirms transactions through a “consensus”" -#~ " mechanism - which does not waste " -#~ "energy like proof of work does -" -#~ " and leverages carbon offsets to be" -#~ " one " -#~ "of the first truly carbon neutral " -#~ "blockchains. Explore the energy " -#~ "consumption of XRP compared to cash, " -#~ "credit cards and other popular " -#~ "cryptocurrencies with the Green Currency Calculator." -#~ msgstr "" - -#~ msgid "A Global Community of Builders and Innovators" -#~ msgstr "" - -#~ msgid "Apply for funding for your next XRPL project" -#~ msgstr "" - -#~ msgid "" -#~ "The XRPL Grants program funds select " -#~ "open-source projects that contribute to" -#~ " the growing XRP Ledger community." -#~ msgstr "" - -#~ msgid "" -#~ "Get featured on the Developer " -#~ "Reflections blog or Use Cases page, " -#~ "and explore XRPL community highlights." -#~ msgstr "" - -#~ msgid "What Would You Like to Learn?" -#~ msgstr "" - -#~ msgid "Browse By Popular Topics" -#~ msgstr "" - -#~ msgid "Browse By Label" -#~ msgstr "" - -#~ msgid "Software and SDKs" -#~ msgstr "" - -#~ msgid "Start Developing" -#~ msgstr "" - -#~ msgid "Article types" -#~ msgstr "" - -#~ msgid "Dive In" -#~ msgstr "" - -#~ msgid "Participate in the Network" -#~ msgstr "" - -#~ msgid "Hot Topic" -#~ msgstr "" - -#~ msgid "" -#~ "Interested in non-fungible tokens, but" -#~ " concerned about their large carbon footprint? " -#~ "Read more about issuing NFTs on " -#~ "the XRP Ledger:" -#~ msgstr "" - -#~ msgid "" -#~ "Founded September 24, 2020," -#~ " the XRPL Foundation is an " -#~ "independent and nonprofit entity with a" -#~ " mission to accelerate the development " -#~ "and adoption of the decentralized XRP" -#~ " Ledger. The Foundation received an " -#~ "initial donation of over $6.5M from " -#~ "Coil, Ripple, and Gatehub to fund " -#~ "the Foundation’s work in service of " -#~ "the growing number of developers and " -#~ "other community members building on the" -#~ " XRP Ledger." -#~ msgstr "" - -#~ msgid "Community
Powered Utility" -#~ msgstr "" - -#~ msgid "The XRP Ledger: A Scalable, Sustainable Blockchain" -#~ msgstr "" - -#~ msgid "" -#~ "The XRP Ledger (XRPL) is a " -#~ "decentralized, public blockchain led by " -#~ "a global developer community." -#~ msgstr "" - -#~ msgid "" -#~ "It’s fast, energy efficient, and " -#~ "reliable. With ease of development, low" -#~ " transaction costs, and a knowledgeable " -#~ "community, it provides developers with a" -#~ " strong open-source foundation for " -#~ "executing on the most demanding " -#~ "projects—without hurting the environment." -#~ msgstr "" - -#~ msgid "Discover Benefits" -#~ msgstr "" - -#~ msgid "Public and Decentralized Structure" -#~ msgstr "" - -#~ msgid "Streamlined
Development" -#~ msgstr "" - -#~ msgid "" -#~ "Tools and documentation that speed " -#~ "development and reduce time to market" -#~ msgstr "" - -#~ msgid "High
Performance" -#~ msgstr "" - -#~ msgid "Capable of settling thousands of transactions in seconds" -#~ msgstr "" - -#~ msgid "" -#~ "At fractions of a penny per " -#~ "transaction, costs are inexpensive enough " -#~ "to enable a wide variety of use" -#~ " cases" -#~ msgstr "" - -#~ msgid "" -#~ "Developers, validators, users, and businesses" -#~ " make the XRP Ledger better every " -#~ "day" -#~ msgstr "" - -#~ msgid "8+ years of consistent performance over more than 63 million ledgers" -#~ msgstr "" - -#~ msgid "" -#~ "Activate the power of the XRP " -#~ "Ledger and find the building blocks " -#~ "for your next innovation" -#~ msgstr "" - -#~ msgid "Explore Advanced Features" -#~ msgstr "" - -#~ msgid "Choose a path to start building on the XRPL" -#~ msgstr "" - -#~ msgid "" -#~ "Lower fees, faster transactions, and " -#~ "custom token functionality make the XRPL" -#~ " ideally suited for building an " -#~ "ecosystem for NFTs. Explore proposed " -#~ "standards for issuing NFTs." -#~ msgstr "" - -#~ msgid "XRPL.org: by the community, for the community" -#~ msgstr "XRPL.org: समुदाय के लिए, समुदाय द्वारा" - -#~ msgid "" -#~ "XRPL.org is a community-driven resource" -#~ " by and for developers who build " -#~ "on the XRP Ledger (XRPL)." -#~ msgstr "" - -#~ msgid "The first major, global, public carbon-neutral blockchain" -#~ msgstr "" - -#~ msgid "XRPL Sustainability & Impact" -#~ msgstr "स्थिरता" - -#~ msgid "" -#~ "With usage growing, it’s critical that" -#~ " measures are taken today to ensure" -#~ " that the technology is environmentally " -#~ "sustainable tomorrow." -#~ msgstr "" -#~ "उपयोग बढ़ने के साथ, यह महत्वपूर्ण " -#~ "है कि यह सुनिश्चित करने के लिए " -#~ "आज उपाय किए जाएं कि प्रौद्योगिकी " -#~ "कल पर्यावरण की दृष्टि से टिकाऊ हो।" - -#~ msgid "How can developers connect and contribute?" -#~ msgstr "" - -#~ msgid "" -#~ "If sustainability, security and " -#~ "decentralization are important to you, " -#~ "you’re invited to join the XRPL " -#~ "community in its quest to build a" -#~ " better world. Here are some ways " -#~ "to get involved:" -#~ msgstr "" - -#~ msgid "Powering Innovative Technology" -#~ msgstr "" - -#~ msgid "Powering innovative use cases and projects" -#~ msgstr "" - -#~ msgid "" -#~ "Developers can leverage open-source " -#~ "libraries, SDKs and more to help " -#~ "build their project and access essential" -#~ " XRP Ledger functionality." -#~ msgstr "" - -#~ msgid "" -#~ "Businesses and projects running
on the XRP Ledger" -#~ msgstr "" - -#~ msgid "" -#~ "There are companies and developer " -#~ "projects around the world that leverage" -#~ " the XRP Ledger to solve interesting" -#~ " problems across a variety of " -#~ "industries and use cases." -#~ msgstr "" - -#~ msgid "XRPL Today and the Vision for Tomorrow" -#~ msgstr "" - -#~ msgid "XRPL | XRP Ledger Overview" -#~ msgstr "" - -#~ msgid "The XRP Ledger is a decentralized public blockchain. " -#~ msgstr "" - -#~ msgid "" -#~ "Anyone can connect their computer to " -#~ "the peer-to-peer network that " -#~ "manages the ledger. The global XRP " -#~ "Ledger community—a diverse set of " -#~ "software engineers, server operators, users," -#~ " and businesses—maintains the ledger." -#~ msgstr "" - -#~ msgid "" -#~ "XRPL uses a consensus protocol, in " -#~ "which designated servers called validators come" -#~ " to an agreement on the order " -#~ "and outcome of XRP transactions every" -#~ " 3-5 seconds." -#~ msgstr "" - -#~ msgid "A Greener Blockchain" -#~ msgstr "" - -#~ msgid "" -#~ "Unlike most other blockchains, the XRP" -#~ " Ledger does not need mining, so " -#~ "no energy is " -#~ "wasted in the transaction process." -#~ msgstr "" - -#~ msgid "XRPL provides powerful utility across the blockchain space" -#~ msgstr "" - -#~ msgid "" -#~ "The ledger’s unique properties, such as" -#~ " its fast and efficient consensus " -#~ "algorithm and censorship-resistant transaction" -#~ " processing, are leveraged by thousands " -#~ "of developers." -#~ msgstr "" - -#~ msgid "" -#~ "With the XRPL, these developers are " -#~ "building innovative projects and applications" -#~ " across blockchain use cases including " -#~ "tokenization of assets, online gaming, " -#~ "asset custody, NFTs, and DeFi." -#~ msgstr "" - -#~ msgid "Fulfilling the vision of the XRPL community" -#~ msgstr "" - -#~ msgid "" -#~ "While XRPL is the choice of " -#~ "developers who don’t want to sacrifice" -#~ " security or performance and who want" -#~ " to build on the greenest blockchain," -#~ " that’s only the beginning." -#~ msgstr "" - -#~ msgid "" -#~ "As a community-led blockchain, XRPL’s" -#~ " vision is also a community effort." -#~ " The" -#~ " XRPL Foundation is currently " -#~ "collaborating with community members to " -#~ "define a shared vision statement. Stay" -#~ " tuned for more on this effort—we " -#~ "can’t wait to share it with you." -#~ msgstr "" - -#~ msgid "" -#~ "There is a finite amount of XRP." -#~ " All XRP is already in existence " -#~ "today—no more than the original 100 " -#~ "billion can be created. The XRPL " -#~ "founders gifted 80 billion XRP, the " -#~ "platform’s native currency, to Ripple. " -#~ "To provide predictability to the XRP " -#~ "supply, Ripple has locked 55 billion " -#~ "XRP (55% of the total possible " -#~ "supply) into a series of escrows " -#~ "using the XRP Ledger itself. The " -#~ "XRPL's transaction processing rules, enforced" -#~ " by the consensus protocol, control " -#~ "the release of the XRP." -#~ msgstr "" - -#~ msgid "Countdown to" -#~ msgstr "" - -#~ msgid "XRPL Zone " -#~ msgstr "उपयोग का अन्वेषण करें" - -#~ msgid "@Token2049" -#~ msgstr "" - -#~ msgid " Singapore" -#~ msgstr "" - -#~ msgid " 12 September 2023 " -#~ msgstr "" - -#~ msgid "Register Now" -#~ msgstr "" - -#~ msgid "Register for APEX Dev Summit 2023" -#~ msgstr "" - -#~ msgid "Amsterdam" -#~ msgstr "" - -#~ msgid "XRP Ledger Developer Resources" -#~ msgstr "2011 एक्सआरपी लेजर विकास" - -#~ msgid "Documentation" -#~ msgstr "एक्सआरपी लेजर दस्तावेज़ीकरण" - -#~ msgid "rippled API Reference" -#~ msgstr "" - -#~ msgid "XRP Faucet" -#~ msgstr "एक्सआरपी वॉलेट" - -#~ msgid "Getting Started with Python" -#~ msgstr "" - -#~ msgid "Websocket API Tool" -#~ msgstr "" - -#~ msgid "XRP Ledger Explorer" -#~ msgstr "2011 एक्सआरपी लेजर विकास" - -#~ msgid "Getting Started" -#~ msgstr "शुरू हो जाओ" - -#~ msgid "Quickstart to XRP Ledger" -#~ msgstr "स्थिरता" - -#~ msgid "An introduction to fundamental aspects of the XRP Ledger" -#~ msgstr "" - -#~ msgid "Get Started" -#~ msgstr "शुरू हो जाओ" - -#~ msgid "Interact with the XRP Ledger in a language of your choice" -#~ msgstr "" - -#~ msgid "Explore SDKs" -#~ msgstr "एक्सप्लोरर" - -#~ msgid "Javascript" -#~ msgstr "" - -#~ msgid "Python" -#~ msgstr "" - -#~ msgid "Java" -#~ msgstr "" - -#~ msgid "Explore, Test, Verify" -#~ msgstr "" - -#~ msgid "Explore Dev Tools" -#~ msgstr "एक्सप्लोरर" - -#~ msgid "" -#~ "Use these web-based tools to " -#~ "assist during all stages of development," -#~ " from getting your first payment to" -#~ " testing your implementation for best " -#~ "practices." -#~ msgstr "" - -#~ msgid "Browse By Recommended Pages" -#~ msgstr "" - -#~ msgid "Get Free Test XRP" -#~ msgstr "" - -#~ msgid "" -#~ "Connect to the XRP Ledger Testnet " -#~ "network to develop and test your " -#~ "apps built on the XRP Ledger, " -#~ "without risking real money or impacting" -#~ " production XRP Ledger users." -#~ msgstr "" - -#~ msgid "Generate Testnet Credentials" -#~ msgstr "" - -#~ msgid "See full documentation index" -#~ msgstr "पूर्ण दस्तावेज़ीकरण सूचकांक" - -#~ msgid "" -#~ "Coding experience Github repository Project " -#~ "narrative/description At least one " -#~ "developer on the core team Budget and" -#~ " milestones" -#~ msgstr "" - -#~ msgid "" -#~ "Coding experience Github repository
" -#~ " " -#~ "Project narrative/description
At least " -#~ "one developer on the core team " -#~ "
" -#~ " Budget and milestones" -#~ msgstr "" - -#~ msgid "XRPL Developer Funding Programs" -#~ msgstr "" - -#~ msgid "Project Resources" -#~ msgstr "" - -#~ msgid "Explore funding opportunities for developers and teams" -#~ msgstr "" - -#~ msgid "Funding Overview" -#~ msgstr "एक्सआरपी अवलोकन" - -#~ msgid "" -#~ "If you’re a software developer or " -#~ "team looking to build your next " -#~ "project or venture on the XRP " -#~ "Ledger (XRPL), there are a number " -#~ "of opportunities to fund your next " -#~ "innovation." -#~ msgstr "" - -#~ msgid "XRPL Hackathons" -#~ msgstr "" - -#~ msgid "Join an Event" -#~ msgstr "" - -#~ msgid "" -#~ "Hackathons are open to all developers" -#~ " to explore and invent a project " -#~ "on the XRP Ledger. Visit the " -#~ "events page for updates on upcoming " -#~ "hackathons." -#~ msgstr "" - -#~ msgid "See Upcoming Events" -#~ msgstr "" - -#~ msgid "Best for" -#~ msgstr "के लिए भरोसा करें" - -#~ msgid "Software developers and teams building directly on the XRP Ledger" -#~ msgstr "" - -#~ msgid "Required" -#~ msgstr "" - -#~ msgid "Some coding experience" -#~ msgstr "" - -#~ msgid "Level" -#~ msgstr "" - -#~ msgid "XRPL beginner to advanced developers" -#~ msgstr "" - -#~ msgid "Funding Levels" -#~ msgstr "एक्सआरपी अवलोकन" - -#~ msgid "Prize money and awards" -#~ msgstr "" - -#~ msgid "Fund Your Project" -#~ msgstr "" - -#~ msgid "" -#~ "Developer grants for projects that " -#~ "contribute to the growing XRP Ledger " -#~ "community." -#~ msgstr "" - -#~ msgid "Past awardees include:" -#~ msgstr "" - -#~ msgid "Visit XRPL Grants" -#~ msgstr "" - -#~ msgid "" -#~ "Software developers, teams, and start-" -#~ "ups building directly on the XRP " -#~ "Ledger" -#~ msgstr "" - -#~ msgid "XRPL intermediate to advanced developers" -#~ msgstr "" - -#~ msgid "$10,000 - $200,000" -#~ msgstr "" - -#~ msgid "" -#~ "Coding experience Github repository Project " -#~ "narrative/description At least one " -#~ "developer on the core team Budget and" -#~ " milestone" -#~ msgstr "" - -#~ msgid "XRPL Accelerator" -#~ msgstr "" - -#~ msgid "Advance your project" -#~ msgstr "" - -#~ msgid "" -#~ "12-week program for entrepreneurs building " -#~ "on the XRP Ledger to scale their" -#~ " projects into thriving businesses." -#~ msgstr "" - -#~ msgid "View XRPL Accelerator" -#~ msgstr "" - -#~ msgid "" -#~ "Start-ups building scalable products on" -#~ " XRPL that can capture a large " -#~ "market opportunity" -#~ msgstr "" - -#~ msgid "" -#~ " Strong" -#~ " founding team
Bold, ambitious vision" -#~ "
Ideally an MVP and" -#~ " monetization strategy" -#~ msgstr "" - -#~ msgid "" -#~ " XRPL" -#~ " advanced developers
Business " -#~ "acumen" -#~ msgstr "" - -#~ msgid "$50,000 (grant) + pitch for venture funding" -#~ msgstr "" - -#~ msgid "XRPL Bounties" -#~ msgstr "" - -#~ msgid "Go Deep" -#~ msgstr "" - -#~ msgid "" -#~ "Bounties are awards for developing " -#~ "software and integrations that enable " -#~ "and improve specific use cases for " -#~ "the XRP Ledger." -#~ msgstr "" - -#~ msgid "Visit XRPL Bounties" -#~ msgstr "" - -#~ msgid "Are you an independent creator?" -#~ msgstr "" - -#~ msgid "Ripple’s Creator Fund" -#~ msgstr "वॉलेट और प्लेटफॉर्म" - -#~ msgid "" -#~ "If you’re a creator looking to " -#~ "mint NFTs on the XRP Ledger and" -#~ " do not have technical experience, " -#~ "check out Ripple’s Creator Fund." -#~ msgstr "" - -#~ msgid "Fostering the Development of the XRP Ledger" -#~ msgstr "" - -#~ msgid "XRPL Foundation" -#~ msgstr "" - -#~ msgid "The Vision" -#~ msgstr "" - -#~ msgid "" -#~ "The Foundation’s vision is to support" -#~ " the development of a diverse XRP " -#~ "Ledger community by focusing on " -#~ "governance, amendments to the core code," -#~ " and an evolving list of robust " -#~ "validators — all key to creating a" -#~ " dynamic ecosystem that supports a " -#~ "growing and innovative Ledger. " -#~ msgstr "" - -#~ msgid "Key Areas of Focus" -#~ msgstr "" - -#~ msgid "Core Technology" -#~ msgstr "" - -#~ msgid "" -#~ "Enhance and develop infrastructure including" -#~ " high capacity hubs, full history " -#~ "servers, and monitoring systems." -#~ msgstr "" - -#~ msgid "Unique Node List" -#~ msgstr "" - -#~ msgid "" -#~ "Establish a list of public and " -#~ "objective criteria for evaluating the " -#~ "performance of validators." -#~ msgstr "" - -#~ msgid "Developer Ecosystem" -#~ msgstr "डेवलपर्स" - -#~ msgid "" -#~ "Support a growing ecosystem of global" -#~ " developers to help with the Ledger" -#~ " adoption and use." -#~ msgstr "" - -#~ msgid "Encourage scalable and sustainable practices." -#~ msgstr "" - -#~ msgid "Social and Community Initiatives" -#~ msgstr "" - -#~ msgid "" -#~ "Support development of tools and " -#~ "platforms for financial inclusion globally." -#~ msgstr "" - -#~ msgid "XRP Ledger Foundation Values and Beliefs" -#~ msgstr "" - -#~ msgid "We Value:" -#~ msgstr "" - -#~ msgid "" -#~ "Our role as an independent organization" -#~ " acting in the best interests of " -#~ "the XRP Ledger community" -#~ msgstr "" - -#~ msgid "" -#~ "Having the resources and support to " -#~ "compete on an equal playing field " -#~ "with other blockhain foundations to " -#~ "achieve our goals" -#~ msgstr "" - -#~ msgid "" -#~ "Cultivating a diverse developer ecosystem, " -#~ "where many entities contribute to and" -#~ " benefit from the XRP Ledger" -#~ msgstr "" - -#~ msgid "We Believe:" -#~ msgstr "" - -#~ msgid "" -#~ "Trust is foundational to our mission " -#~ "and understand building trust is a " -#~ "slow, steady process" -#~ msgstr "" - -#~ msgid "" -#~ "Close working relationships between developers" -#~ " and organizations that build on and" -#~ " contribute to the XRP Ledger are " -#~ "critical to its innovation and success" -#~ msgstr "" - -#~ msgid "Contact Us" -#~ msgstr "स्थिति" - -#~ msgid "" -#~ "View the Github " -#~ "repositories to find blockchain projects to" -#~ " see how you can contribute." -#~ msgstr "" - -#~ msgid "" -#~ "With the XRPL, these developers are " -#~ "building innovative blockchain projects and " -#~ "applications across use cases including " -#~ "tokenization of assets, online gaming, " -#~ "asset custody, NFTs, and DeFi." -#~ msgstr "" - -#~ msgid "" -#~ "XRP Ledger’s innovation relies on the" -#~ " shared community experience of builders" -#~ " like you. If you’re ready to " -#~ "start your next big blockchain project," -#~ " explore the XRPL now and consider" -#~ " applying for an XRPL Grant." -#~ msgstr "" - diff --git a/tool/generate_all_message.sh b/tool/generate_all_message.sh index 3b6facde84..84eb233776 100755 --- a/tool/generate_all_message.sh +++ b/tool/generate_all_message.sh @@ -5,6 +5,5 @@ TZ="UTC" pybabel extract -F ./locale/babel.cfg -o ./locale/messages.pot ./ pybabel update -l ja -d ./locale/ -i ./locale/messages.pot -pybabel update -l hi -d ./locale/ -i ./locale/messages.pot pybabel compile -f -d ./locale/ From 611c71f456c99966e5e428f51410430245ebdfda Mon Sep 17 00:00:00 2001 From: Dennis Dawson Date: Tue, 26 Sep 2023 11:39:35 -0700 Subject: [PATCH 6/8] Update nftokenmint.md Remove outdated sentence. --- .../transactions/transaction-types/nftokenmint.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/references/protocol-reference/transactions/transaction-types/nftokenmint.md b/content/references/protocol-reference/transactions/transaction-types/nftokenmint.md index e7686bf1dd..faabce9750 100644 --- a/content/references/protocol-reference/transactions/transaction-types/nftokenmint.md +++ b/content/references/protocol-reference/transactions/transaction-types/nftokenmint.md @@ -8,7 +8,7 @@ labels: # NFTokenMint [[Source]](https://github.com/XRPLF/rippled/blob/master/src/ripple/app/tx/impl/NFTokenMint.cpp "Source") -The `NFTokenMint` transaction creates a non-fungible token and adds it to the relevant [NFTokenPage object][] of the `NFTokenMinter` as an [NFToken][] object. A required parameter to this transaction is the `Token` field specifying the actual token. This transaction is the only opportunity the `NFTokenMinter` has to specify any token fields that are defined as immutable (for example, the `TokenFlags`). +The `NFTokenMint` transaction creates a non-fungible token and adds it to the relevant [NFTokenPage object][] of the `NFTokenMinter` as an [NFToken][] object. This transaction is the only opportunity the `NFTokenMinter` has to specify any token fields that are defined as immutable (for example, the `TokenFlags`). _(Added by the [NonFungibleTokensV1_1 amendment][].)_ From 87543932153bea96779afb68903a4af7a0923566 Mon Sep 17 00:00:00 2001 From: mDuo13 Date: Tue, 26 Sep 2023 12:08:15 -0700 Subject: [PATCH 7/8] Clarify address length & prefix The type prefix is not part of the 20-byte AccountID, but it is used when calculating both the checksum and the base58 address itself, so I have updated the diagram accordingly. Fixes #1405. --- content/_img-sources/address-encoding.uxf | 106 ++++++++------- img/address-encoding.svg | 149 +++++++++++----------- 2 files changed, 137 insertions(+), 118 deletions(-) diff --git a/content/_img-sources/address-encoding.uxf b/content/_img-sources/address-encoding.uxf index cfb0ed671e..aa009bb122 100644 --- a/content/_img-sources/address-encoding.uxf +++ b/content/_img-sources/address-encoding.uxf @@ -4,10 +4,10 @@ UMLObject - 40 - 70 + 100 + 340 220 - 70 + 80 Master Public Key -- @@ -18,8 +18,8 @@ UMLObject - 340 - 160 + 430 + 340 180 80 @@ -31,33 +31,34 @@ Relation - 250 - 70 - 220 + 310 + 350 + 140 160 lt=<- - -RIPEMD160 of SHA-256 +RIPEMD160 of +SHA-256 - 90.0;110.0;40.0;110.0;40.0;40.0;10.0;40.0 + 120.0;20.0;10.0;20.0 UMLObject - 670 - 160 + 960 + 320 180 80 Address -- +Type Prefix (1 byte) AccountID (20 bytes) Checksum (4 bytes) @@ -65,9 +66,9 @@ Checksum (4 bytes) UMLObject - 40 - 160 - 190 + 430 + 210 + 180 80 Type Prefix @@ -76,22 +77,11 @@ Checksum (4 bytes) ("r" in XRPL base58) - - Relation - - 220 - 200 - 140 - 30 - - lt=<- - 120.0;10.0;10.0;10.0 - UMLObject - 380 - 290 + 670 + 350 100 70 @@ -103,32 +93,32 @@ Checksum (4 bytes) Relation - 470 - 200 + 760 + 360 120 - 140 + 40 lt=<- - 100.0;10.0;80.0;10.0;80.0;120.0;10.0;120.0 + 100.0;10.0;80.0;10.0;80.0;20.0;10.0;20.0 Relation - 510 - 180 - 80 - 30 + 630 + 290 + 250 + 80 lt=<- - 60.0;10.0;10.0;10.0 + 230.0;60.0;210.0;60.0;210.0;10.0;10.0;10.0 UMLState - 570 - 180 + 860 + 330 100 - 40 + 60 base58 type=sender @@ -137,20 +127,20 @@ type=sender Relation - 400 - 230 - 130 + 630 + 290 + 180 80 lt=<- SHA-256 twice - 10.0;60.0;10.0;10.0 + 60.0;60.0;60.0;10.0;10.0;10.0 Text - 40 - 30 + 100 + 210 280 30 @@ -158,4 +148,26 @@ SHA-256 twice style=wordwrap + + Relation + + 610 + 200 + 50 + 240 + + lt=.. + 10.0;10.0;30.0;10.0;30.0;220.0;10.0;220.0 + + + Text + + 510 + 300 + 30 + 30 + + + + + diff --git a/img/address-encoding.svg b/img/address-encoding.svg index ceef7b6c1c..b8a9fe7f22 100644 --- a/img/address-encoding.svg +++ b/img/address-encoding.svg @@ -1,7 +1,7 @@ -+Address Encodingbase58Checksum(4 bytes)Type Prefix0x00("r" in XRPL base58)AddressType Prefix (1 byte)AccountID (20 bytes)Checksum (4 bytes)Account ID(20 bytes)Master Public Key33 bytes (secp256k1)0xED + 32 bytes (Ed25519)SHA-256 twiceRIPEMD160 of SHA-256RIPEMD160 of SHA-256 Date: Tue, 26 Sep 2023 12:14:56 -0700 Subject: [PATCH 8/8] Cryptographic keys: update graphic w/ correct address length --- content/_img-sources/cryptographic-keys.uxf | 2 +- img/cryptographic-keys.svg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/_img-sources/cryptographic-keys.uxf b/content/_img-sources/cryptographic-keys.uxf index 42e8c6ca47..68e9fa02fd 100644 --- a/content/_img-sources/cryptographic-keys.uxf +++ b/content/_img-sources/cryptographic-keys.uxf @@ -150,7 +150,7 @@ halign=center Address -- -24 bytes (classic) +25 bytes (classic) 32 bytes (X-address) diff --git a/img/cryptographic-keys.svg b/img/cryptographic-keys.svg index 73b9b73edc..03ef304309 100644 --- a/img/cryptographic-keys.svg +++ b/img/cryptographic-keys.svg @@ -36,7 +36,7 @@ >Address24 bytes (classic)25 bytes (classic)32 bytes (X-address)