forked from XRPLF/xrpl-dev-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dactyl-config.yml
4646 lines (3826 loc) · 152 KB
/
dactyl-config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# HTML, PDF, GFM all get output here unless you specify -o
out_path: out
# These folders get copied into the output directory
template_static_path: assets
content_static_path: img
template_path: template
default_template: pagetype-doc.html.jinja
default_pdf_template: pdf-doc.html.jinja
# MD files should be here (and in subdirs)
content_path: content
default_html_names: tail
# Custom filters live here and start with filter_
filter_paths:
- tool
default_filters:
- multicode_tabs
- buttonize
- callouts
- badges
- link_replacement
- external_links
- status_badges
- include_code
- include_svg
- css_tables
- slug
- copy_code_to_clipboard
callout_class: "devportal-callout"
callout_types:
- "tip"
- "ヒント" # equiv. of "Tip" in Japanese (lit. "Hint")
- "note"
- "注記" # equiv of "Note" in Japanese
- "caution"
- "注意" # equiv. of "Caution" in Japanese
- "warning"
- "警告" # equiv. of "Warning" in Japanese
cover_page:
name: Home
html: index.html
template: page-home.html.jinja
sidebar: disabled
canonical_url: https://xrpl.org/
languages:
- code: en
display_name: English
prefix: "/"
- code: ja
display_name: 日本語
prefix: "/ja/"
default_keys: &defaults
# These github_ fields are used by the template's "Edit on GitHub" link.
# Override them with --vars to change which fork/branch to edit.
github_forkurl: https://github.com/XRPLF/xrpl-dev-portal
github_branch: master
# Hover icon markup for permalinking headers
hover_anchors: <i class="fa fa-link"></i>
light_theme_enabled: true
# Script tags used in a variety of tools & examples.
ripple_lib_tag: '<script type="application/javascript" src="assets/js/xrpl-2.2.0.min.js"></script>'
targets:
# First member is the default that gets built when target not specified
- name: en
lang: en
display_name: XRPL.org
<<: *defaults
prefix: ""
blurb: XRPL.org is a community-driven site for the XRP Ledger (XRPL), an open-source, public blockchain. Get technical documentation, reference materials, and tools.
- name: ja
lang: ja
display_name: XRPL.org (日本語)
<<: *defaults
prefix: "/ja/"
locale_file: locale/ja/LC_MESSAGES/messages.mo
blurb: XRPとXRP Ledgerの全てに対してのコミュニティーリーソース
link_subs:
# Fix 9 links from untranslated use-an-escrow-as-a-smart-contract.html:
"send-a-conditionally-held-escrow.html#1-generate-condition-and-fulfillment": "send-a-conditionally-held-escrow.html#1条件とフルフィルメントの生成"
"send-a-conditionally-held-escrow.html#2-calculate-release-or-cancel-time": "send-a-conditionally-held-escrow.html#2リリース時刻または取消し時刻の計算"
"send-a-conditionally-held-escrow.html#3-submit-escrowcreate-transaction": "send-a-conditionally-held-escrow.html#3escrowcreateトランザクションの送信"
"send-a-conditionally-held-escrow.html#4-wait-for-validation": "send-a-conditionally-held-escrow.html#4検証の待機"
"send-a-conditionally-held-escrow.html#5-confirm-that-the-escrow-was-created": "send-a-conditionally-held-escrow.html#5escrowが作成されたことの確認"
"send-a-conditionally-held-escrow.html#6-submit-escrowfinish-transaction": "send-a-conditionally-held-escrow.html#6escrowfinishトランザクションの送信"
"send-a-conditionally-held-escrow.html#7-wait-for-validation": "send-a-conditionally-held-escrow.html#7検証の待機"
"send-a-conditionally-held-escrow.html#8-confirm-final-result": "send-a-conditionally-held-escrow.html#8最終結果の確認"
"accounts.html#creating-accounts": "accounts.html#アカウントの作成"
# Fix 2 links from untranslated demurrage.html:
"currency-formats.html#issued-currency-precision": "currency-formats.html#発行済み通貨の計算"
"currency-formats.html#currency-codes": "currency-formats.html#通貨コード"
# Fix links from untranslated become-an-xrp-ledger-gateway.html
"paths.html#default-paths": "paths.html#デフォルトパス"
"payment.html#payment-flags": "payment.html#paymentのフラグ"
"accountroot.html#accountroot-flags": "accountroot.html#accountrootのフラグ"
"trustset.html#trustset-flags": "trustset.html#trustsetのフラグ"
"basic-data-types.html#ledger-index": "basic-data-types.html#レジャーインデックス"
"partial-payments.html#the-delivered_amount-field": "partial-payments.html#delivered_amountフィールド"
"partial-payments.html#partial-payments-exploit": "partial-payments.html#partial-paymentの悪用"
# nearest approximation. this translation is also out of date
"rippled-server-modes.html#validators": "rippled-server-modes.html#バリデータを運用する理由"
# Fix links from untranslated open-a-payment-channel-to-enable-an-inter-exchange-network.html
"use-payment-channels.html#1-the-payer-creates-a-payment-channel-to-a-particular-recipient": "use-payment-channels.html#1-支払人が特定の受取人へのpayment-channelを作成します"
"use-payment-channels.html#2-the-payee-checks-specifics-of-the-payment-channel": "use-payment-channels.html#2-受取人がpayment-channelの特性を確認します"
"use-payment-channels.html#3-the-payer-creates-one-or-more-signed-claims-for-the-xrp-in-the-channel": "use-payment-channels.html#3-支払人がchannelのxrpに対して1つ以上の署名付き-クレーム-を作成します"
"use-payment-channels.html#4-the-payer-sends-a-claim-to-the-payee-as-payment-for-goods-or-services": "use-payment-channels.html#4-支払人が商品またはサービスに対する支払いとしてクレームを受取人に送信します"
"use-payment-channels.html#5-the-payee-verifies-the-claims": "use-payment-channels.html#5-受取人がクレームを検証します"
"use-payment-channels.html#7-repeat-steps-3-6-as-desired": "use-payment-channels.html#7-必要に応じてステップ36を繰り返します"
"use-payment-channels.html#8-when-ready-the-payee-redeems-a-claim-for-the-authorized-amount": "use-payment-channels.html#8-準備が完了すれば受取人は承認された額のクレームを清算します"
"use-payment-channels.html#9-when-the-payer-and-payee-are-done-doing-business-the-payer-requests-for-the-channel-to-be-closed": "use-payment-channels.html#9-支払人と受取人の取引完了後支払人はchannelの閉鎖を要求します"
"reserves.html#owner-reserves": "reserves.html#所有者準備金"
# Fix links from untranslated issue-a-fungible-token.html:
"transaction-common-fields.html#auto-fillable-fields": "transaction-common-fields.html#自動入力可能なフィールド"
# Fix links from untranslated validator-list.html
"run-rippled-as-a-validator.html#3-enable-validation-on-your-rippled-server": "run-rippled-as-a-validator.html#3-rippledサーバーで検証を有効化"
"basic-data-types.html#specifying-time": "basic-data-types.html#時間の指定"
# Fix link from untranslated run-rippled-as-a-wallet-server.html
"run-rippled-as-a-validator.html#6-provide-domain-verification": "run-rippled-as-a-validator.html#6-ドメイン検証の提供"
# Fix link from untranslated tutorial-submit-step.md snippet
"transaction-cost.html#queued-transactions": "transaction-cost.html#キューに入れられたトランザクション"
# Fix links from multiple untranslated API method reference pages:
"error-formatting.html#universal-errors": "error-formatting.html#汎用エラー"
# Fix link to un-updated transaction-metadata.html. REMOVE when the affected nodes section is updated
"transaction-metadata.html#affectednodes": "transaction-metadata.html"
# Fix link from untranslated peer-crawler.html:
"peer-protocol.html#private-peers": "peer-protocol.html#プライベートピア"
# Fix links from untranslated health-check.html:
"rippled-server-modes.html#stand-alone-mode": "rippled-server-modes.html#rippledサーバーをスタンドアロンモードで実行する理由"
"server-doesnt-sync.html#normal-syncing-behavior": "server-doesnt-sync.html#通常の同期動作"
# Fix link from untranslated negativeunl.html and ledgers.html:
"consensus.html#validation": "consensus.html#検証"
# Fix link from untranslated manifest.html:
"rippled-server-modes.html#reporting-mode": "rippled-server-modes.html#レポーティングモード"
# Fix links for untranslated get-started-using-python.html:
"xrpl-servers.html#reasons-to-run-your-own-server": "rippled-server-modes.html#ストックサーバーを運用する理由"
"cryptographic-keys.html#key-components": "cryptographic-keys.html#キーの生成"
"accounts.html#addresses": "accounts.html#アドレス"
"cryptographic-keys.html#private-key": "cryptographic-keys.html#キーの生成"
"basic-data-types.html#specifying-currency-amounts": "basic-data-types.html#通貨額の指定"
"transaction-cost.html#current-transaction-cost": "transaction-cost.html#現在のトランザクションコスト"
"ledgers.html#open-closed-and-validated-ledgers": "ledgers.html#ツリーの形式"
"account_info.html#response-format": "account_info.html#応答フォーマット"
# Fix link from untranslated rate-limiting.html:
"get-started-using-http-websocket-apis.html#admin-access": "get-started-using-http-websocket-apis.html#管理者アクセス権限"
# Fix links from untranslated issue-a-fungible-token.html
"xrp-ledger-toml.html#account-verification": "xrp-ledger-toml.html#アカウント検証"
"offers.html#offers-and-trust": "offers.html#オファーとトラスト"
"authorized-trust-lines.html#authorizing-trust-lines": "authorized-trust-lines.html#トラストラインの承認"
# Fix links from untranslated freeze tutorials:
"basic-data-types.html#account-sequence": "basic-data-types.html#アカウントシーケンス"
"accountset.html#accountset-flags": "accountset.html#accountsetのフラグ"
"ripplestate.html#ripplestate-flags": "ripplestate.html#ripplestateのフラグ"
# the updates to ledger_entry aren't translated either
"ledger_entry.html#get-paychannel-object": "ledger_entry.html"
"reliable-transaction-submission.html#ledger-gaps": "reliable-transaction-submission.html#レジャーのギャップ"
# "transaction-common-fields.html#memos-field": "transaction-common-fields.html#memosフィールド"
"basic-data-types.html#specifying-ledgers": "basic-data-types.html#レジャーの指定"
# Fix links from untranslated build-a-desktop-wallet-in-python.html:
"subscribe.html#ledger-stream": "subscribe.html#レジャーストリーム"
"subscribe.html#transaction-streams": "subscribe.html#トランザクションストリーム"
# cryptographic-keys.html hasn't been updated in Japanese, so this is the
# next-nearest equivalent of the #seed anchor:
"cryptographic-keys.html#seed": "cryptographic-keys.html#キーの生成"
"cryptographic-keys.html#regular-key-pair": "cryptographic-keys.html#レギュラーキーペア"
# Fix links from untranslated common-misconceptions-about-freezes.html
# Not updated to have the table. The top-level of the page is pretty close.
"currency-formats.html#comparison": "currency-formats.html"
# Fix links from untranslated Clio server_info:
"peer-protocol.html#node-key-pair": "peer-protocol.html#ノードキーペア"
"transaction-cost.html#local-load-cost": "transaction-cost.html#ローカル負荷コスト"
"transaction-cost.html#open-ledger-cost": "transaction-cost.html#オープンレジャーコスト"
# Fix links from untranslated ledger-clio.html
"basic-data-types.html#hashes": "basic-data-types.html#ハッシュ"
"transaction-cost.html#fee-levels": "transaction-cost.html#手数料レベル"
"offers.html#lifecycle-of-an-offer": "offers.html#オファーのライフサイクル"
"subscribe.html#order-book-streams": "subscribe.html#オーダーブックストリーム"
"transaction-basics.html#authorizing-transactions": "transaction-basics.html#トランザクションの識別"
"ledger-header.html#close-flags": "ledger-header.html#closeフラグ"
# Fix link from untranslated account_nfts.html
"nftoken.html#nftokentaxon": "nftoken.html#分類群"
# Fix links from untranslated NFT API methods:
"transaction-common-fields.html#flags-field": "transaction-common-fields.html#flagsフィールド"
"nftoken.html#nftoken-flags": "nftoken.html#nftoken-フラグ"
"basic-data-types.html#addresses": "basic-data-types.html#アドレス"
"nftokenoffer.html#nftokenoffer-flags": "nftokenoffer.html#nftokenoffer-フラグ"
# Fix links from untranslated AMM pages:
"transaction-common-fields.html#global-flags": "transaction-common-fields.html#グローバルフラグ"
"currency-formats.html#nonstandard-currency-codes": "currency-formats.html#非標準通貨コード"
# Fix link from untranslated health-check.html:
"amendments.html#amendment-blocked-servers": "amendments.html#amendment-blocked"
pages:
# About tab --------------------------------------------------------------------
# "XRP Ledger" Grouping
- name: XRPL Overview
template: page-xrpl-overview.html.jinja
html: xrp-ledger-overview.html
parent: index.html
top_nav_name: About
top_nav_grouping: XRP Ledger
sidebar: disabled
blurb: An introduction to the key benefits and features of the XRP Ledger, a public blockchain driven by the XRPL developer community.
targets:
- en
- name: XRPL オーバービュー
template: page-xrpl-overview.html.jinja
html: xrp-ledger-overview.html
parent: index.html
top_nav_name: アバウト
top_nav_grouping: XRP Ledger
sidebar: disabled
targets:
- ja
# Redirect from the old overview.html
- name: XRP Ledger Overview
html: overview.html
template: pagetype-redirect.html.jinja
nav_omit: true
redirect_url: xrp-ledger-overview.html
targets:
- en
- ja
# Redirect for rename from 'wallet server' to 'stock server'
- name: Run rippled as a Stock Server
html: run-rippled-as-a-wallet-server.html
template: pagetype-redirect.html.jinja
nav_omit: true
redirect_url: run-rippled-as-a-stock-server.html
targets:
- en
- ja
- name: Use Cases & Featured Projects
template: page-uses.html.jinja
html: uses.html
parent: xrp-ledger-overview.html
blurb: Here’s how the XRP Ledger is used to power innovative technology across the payments and public blockchain landscape.
top_nav_grouping: XRP Ledger
sidebar: disabled
targets:
- en
- name: ユースケースと注目プロジェクト
template: page-uses.html.jinja
html: uses.html
parent: xrp-ledger-overview.html
top_nav_grouping: XRP Ledger
sidebar: disabled
targets:
- ja
- name: History
template: page-history.html.jinja
html: history.html
parent: xrp-ledger-overview.html
blurb: The history of the XRP Ledger (XRPL), launched in 2012 as a faster, scalable, more sustainable blockchain.
top_nav_grouping: XRP Ledger
sidebar: disabled
targets:
- en
- name: 沿革
template: page-history.html.jinja
html: history.html
parent: xrp-ledger-overview.html
top_nav_grouping: XRP Ledger
sidebar: disabled
targets:
- ja
- name: Ledger Explorer
html: https://livenet.xrpl.org/
parent: xrp-ledger-overview.html
top_nav_grouping: XRP Ledger
targets:
- en
- name: XRP Ledger エクスプローラ
html: https://livenet.xrpl.org/
parent: xrp-ledger-overview.html
top_nav_grouping: XRP Ledger
targets:
- ja
- name: XRP
template: page-xrp-overview.html.jinja
html: xrp-overview.html
parent: xrp-ledger-overview.html
blurb: Learn more about XRP Ledger’s native digital asset, XRP.
top_nav_grouping: XRP
top_nav_name: XRP Overview
sidebar: disabled
targets:
- en
- ja
- name: Impact
html: impact.html
parent: xrp-ledger-overview.html
template: page-impact.html.jinja
top_nav_grouping: Sustainability
blurb: Learn how the XRP Ledger helps move money around the world faster, cheaper and more sustainably than any other currency available today.
sidebar: disabled
targets:
- en
- name: インパクト
html: impact.html
parent: xrp-ledger-overview.html
template: page-impact.html.jinja
top_nav_grouping: Sustainability
sidebar: disabled
targets:
- ja
- name: Carbon Calculator
html: carbon-calculator.html
parent: xrp-ledger-overview.html
template: page-calculator.html.jinja
top_nav_grouping: Sustainability
sidebar: disabled
blurb: Whether it's cash, credit, or crypto, every transaction you make consumes energy. Use the XRPL cryptocurrency carbon calculator to compare.
fb_card: currency-calculator-card-fb.png
twitter_card: currency-calculator-card-tw.png
targets:
- en
- name: 二酸化炭素電卓
html: carbon-calculator.html
parent: xrp-ledger-overview.html
template: page-calculator.html.jinja
top_nav_grouping: Sustainability
sidebar: disabled
blurb: 現金、クレジットカード、暗号資産でもエネルギー消費する。インタラクティブツールで消費量を比較しましょう。
fb_card: currency-calculator-card-fb.png
twitter_card: currency-calculator-card-tw.png
targets:
- ja
- name: XRPL Foundation
html: https://foundation.xrpl.org/
parent: xrp-ledger-overview.html
top_nav_grouping: About
targets:
- en
- name: XRPL財団
html: https://foundation.xrpl.org/
parent: xrp-ledger-overview.html
top_nav_grouping: About
targets:
- ja
- md: faq.md
targets:
- en
- md: faq.ja.md
targets:
- ja
- md: privacy-policy.md
targets:
- en
- ja
# Redirect old technical-faq.html to new faq.html URL
- name: FAQ
html: technical-faq.html
template: pagetype-redirect.html.jinja
redirect_url: faq.html
nav_omit: true
targets:
- en
- ja
# "Documentation" section ------------------------------------------------------
- name: Documentation
html: docs.html
parent: index.html
template: page-docs.html.jinja
sidebar: disabled
top_nav_name: Docs
top_nav_shortcuts:
# Programming Languages
- get-started-using-python.html
- get-started-using-javascript.html
- get-started-using-java.html
- get-started-using-http-websocket-apis.html
# Popular pages
- send-xrp.html
- reserves.html
- xrp-testnet-faucet.html
- run-rippled-as-a-validator.html
- build-run-rippled-in-reporting-mode.html
- intro-to-consensus.html
- public-api-methods.html
top_nav_hero_image: top-nav-hero-docs
popular_pages: # TODO: find a way so this isn't a partial duplicate of top_nav_shortcuts?
- send-xrp.html
- reserves.html
- xrp-testnet-faucet.html
- run-rippled-as-a-validator.html
- build-run-rippled-in-reporting-mode.html
- intro-to-consensus.html
- public-api-methods.html
blurb: Explore XRP Ledger documentation and everything you need to know to start building and integrating with the ledger.
top_nav_blurb: Dive into XRP Ledger technology and start integrating.
filters:
- labels
targets:
- en
- name: ドキュメント
html: docs.html
parent: index.html
template: page-docs.html.jinja
sidebar: disabled
top_nav_level: 1
top_nav_name: ドキュメント
top_nav_shortcuts:
# Programming Languages
- get-started-using-python.html
- get-started-using-javascript.html
- get-started-using-java.html
- get-started-using-http-websocket-apis.html
# Popular pages
- send-xrp.html
- reserves.html
- xrp-testnet-faucet.html
- run-rippled-as-a-validator.html
- build-run-rippled-in-reporting-mode.html
- intro-to-consensus.html
- public-api-methods.html
top_nav_hero_image: top-nav-hero-docs
popular_pages: # TODO: find a way so this isn't a partial duplicate of top_nav_shortcuts?
- send-xrp.html
- reserves.html
- xrp-testnet-faucet.html
- run-rippled-as-a-validator.html
- build-run-rippled-in-reporting-mode.html
- intro-to-consensus.html
blurb: Dive into XRP Ledger technology and start integrating. # TODO: translate
filters:
- labels
targets:
- ja
# Concepts ---------------------------------------------------------------------
- name: Concepts
html: concepts.html
parent: docs.html
top_nav_grouping: Article Types
template: pagetype-category.html.jinja
blurb: Learn the "what" and "why" behind fundamental aspects of the XRP Ledger.
targets:
- en
- name: コンセプト
html: concepts.html
parent: docs.html
top_nav_grouping: Article Types
template: pagetype-category.html.jinja
blurb: XRP Ledgerの基本的な部分の背景に「何があるか」、「なぜなのか」を学びましょう。
targets:
- ja
- name: Introduction
html: introduction.html
parent: concepts.html
template: pagetype-category.html.jinja
blurb: Learn the "what" and "why" of the XRP Ledger.
targets:
- en
- name: 基本
html: introduction.html
parent: concepts.html
template: pagetype-category.html.jinja
blurb: XRP Ledgerとは「何なのか」、「なぜなのか」を学びましょう。
targets:
- ja
# Supplanted by the new xrp-ledger-overview.html landing page.
# TODO: fully replace. https://github.com/XRPLF/xrpl-dev-portal/issues/1202
# - md: concepts/introduction/xrp-ledger-overview.md
# targets:
# - en
#
# - md: concepts/introduction/xrp-ledger-overview.ja.md
# targets:
# - ja
- md: concepts/introduction/intro-to-consensus.md
targets:
- en
- md: concepts/introduction/intro-to-consensus.ja.md
targets:
- ja
- md: concepts/introduction/xrp.md
targets:
- en
- md: concepts/introduction/xrp.ja.md
targets:
- ja
- md: concepts/introduction/software-ecosystem.md
targets:
- en
- md: concepts/introduction/software-ecosystem.ja.md
targets:
- ja
- name: Payment System Basics
html: payment-system-basics.html
parent: concepts.html
template: pagetype-category.html.jinja
blurb: One of the primary purposes of the XRP Ledger is payment processing. Learn more about key concepts that will help you understand the XRP Ledger payment system.
targets:
- en
- name: 支払いシステムの基本
html: payment-system-basics.html
parent: concepts.html
template: pagetype-category.html.jinja
blurb: XRP Ledgerの主な狙いは決済処理です。主要なコンセプトを詳しく学んで、XRP Ledgerの決済システムの理解を深めましょう。
targets:
- ja
- md: concepts/payment-system-basics/accounts/accounts.md
targets:
- en
- md: concepts/payment-system-basics/accounts/accounts.ja.md
targets:
- ja
- md: concepts/payment-system-basics/accounts/cryptographic-keys.md
targets:
- en
# TODO: update translation based on latest English version
- md: concepts/payment-system-basics/accounts/cryptographic-keys.ja.md
targets:
- ja
- md: concepts/payment-system-basics/accounts/multi-signing.md
targets:
- en
- md: concepts/payment-system-basics/accounts/multi-signing.ja.md
targets:
- ja
- md: concepts/payment-system-basics/accounts/reserves.md
targets:
- en
- md: concepts/payment-system-basics/accounts/reserves.ja.md
targets:
- ja
- md: concepts/payment-system-basics/accounts/tickets.md
targets:
- en
- md: concepts/payment-system-basics/accounts/tickets.ja.md
targets:
- ja
- md: concepts/payment-system-basics/accounts/depositauth.md
targets:
- en
- md: concepts/payment-system-basics/accounts/depositauth.ja.md
targets:
- ja
- md: concepts/payment-system-basics/fees.md
targets:
- en
- md: concepts/payment-system-basics/fees.ja.md
targets:
- ja
- md: concepts/payment-system-basics/ledgers.md
targets:
- en
# TODO: translation needs to be updated based on ledgers.md
- md: concepts/payment-system-basics/ledgers.ja.md
targets:
- ja
- md: concepts/payment-system-basics/transaction-basics/transaction-basics.md
targets:
- en
- md: concepts/payment-system-basics/transaction-basics/transaction-basics.ja.md
targets:
- ja
- md: concepts/payment-system-basics/transaction-basics/transaction-cost.md
targets:
- en
- md: concepts/payment-system-basics/transaction-basics/transaction-cost.ja.md
targets:
- ja
- md: concepts/payment-system-basics/transaction-basics/finality-of-results.md
targets:
- en
- md: concepts/payment-system-basics/transaction-basics/finality-of-results.ja.md
targets:
- ja
- md: concepts/payment-system-basics/transaction-basics/source-and-destination-tags.md
targets:
- en
# TODO: Somehow this page's blurb got translated into Japanese but the page itself wasn't?
# For now we overwrite the blurb but use the page otherwise as-is.
- md: concepts/payment-system-basics/transaction-basics/source-and-destination-tags.md
blurb: 多目的アドレスとの間で支払いのやり取りをする具体的な目的を示すためにソースタグと宛先タグを使用します。
untranslated_warning: true
targets:
- ja
- name: Payment Types
html: payment-types.html
parent: concepts.html
template: pagetype-category.html.jinja
blurb: The XRP Ledger supports point-to-point XRP payments alongside other, more specialized payment types.
targets:
- en
- name: 支払いのタイプ
html: payment-types.html
parent: concepts.html
template: pagetype-category.html.jinja
blurb: XRP LedgerはポイントツーポイントのXRPペイメントのほかに、より専門化した支払いタイプをサポートしています。
targets:
- ja
# Redirect from the old landing name/URL
- name: Complex Payment Types
html: complex-payment-types.html
template: pagetype-redirect.html.jinja
nav_omit: true
redirect_url: payment-types.html
targets:
- en
- ja
- md: concepts/payment-types/direct-xrp-payments.md
targets:
- en
- md: concepts/payment-types/direct-xrp-payments.ja.md
targets:
- ja
- md: concepts/payment-types/cross-currency-payments.md
targets:
- en
- md: concepts/payment-types/cross-currency-payments.ja.md
targets:
- ja
- md: concepts/payment-types/checks.md
targets:
- en
- md: concepts/payment-types/checks.ja.md
targets:
- ja
- md: concepts/payment-types/escrow.md
targets:
- en
- md: concepts/payment-types/escrow.ja.md
targets:
- ja
- md: concepts/payment-types/partial-payments.md
targets:
- en
- md: concepts/payment-types/partial-payments.ja.md
targets:
- ja
- md: concepts/payment-types/payment-channels.md
targets:
- en
- md: concepts/payment-types/payment-channels.ja.md
targets:
- ja
- md: concepts/tokens/tokens.md
targets:
- en
# TODO: Outdated translation
- md: concepts/tokens/tokens.ja.md
targets:
- ja
# Redirects from old (emptyish) landing pages.
- name: Tokens
html: issued-currencies.html
template: pagetype-redirect.html.jinja
redirect_url: tokens.html
blurb: Anyone can make tokens representing digital value on the XRP Ledger.
targets:
- en
- name: トークン
html: issued-currencies.html
template: pagetype-redirect.html.jinja
redirect_url: tokens.html
blurb: 誰もがXRP Ledger上でデジタル価値を表すトークンを作ることができます。
targets:
- ja
- md: concepts/tokens/trust-lines-and-issuing.md
targets:
- en
- md: concepts/tokens/trust-lines-and-issuing.ja.md
targets:
- ja
- md: concepts/tokens/authorized-trust-lines.md
targets:
- en
- md: concepts/tokens/authorized-trust-lines.ja.md
targets:
- ja
- md: concepts/tokens/non-fungible-tokens.md
targets:
- en
- md: concepts/tokens/non-fungible-tokens.ja.md
targets:
- ja
- md: concepts/tokens/non-fungible-token-transfers.md
targets:
- en
- md: concepts/tokens/non-fungible-token-transfers.ja.md
targets:
- ja
- md: concepts/tokens/nftoken-batch-minting.md
targets:
- en
- ja
- md: concepts/tokens/nftoken-authorized-minting.md
targets:
- en
- ja
- md: concepts/tokens/freezes.md
targets:
- en
- md: concepts/tokens/freezes.ja.md
targets:
- ja
- md: concepts/tokens/common-misconceptions-about-freezes.md
targets:
- en
- ja
- md: concepts/tokens/rippling.md
targets:
- en
- md: concepts/tokens/rippling.ja.md
targets:
- ja
- md: concepts/tokens/transfer-fees.md
targets:
- en
- md: concepts/tokens/transfer-fees.ja.md
targets:
- ja
- md: concepts/tokens/issuing-and-operational-addresses.md
targets:
- en
- md: concepts/tokens/issuing-and-operational-addresses.ja.md
targets:
- ja
- md: concepts/tokens/paths.md
targets:
- en
- md: concepts/tokens/paths.ja.md
targets:
- ja
- md: concepts/tokens/demurrage.md
targets:
- en
- md: concepts/tokens/demurrage.ja.md
targets:
- ja
- md: concepts/decentralized-exchange/decentralized-exchange.md
- name: 分散型取引所
html: decentralized-exchange.html
parent: concepts.html
template: pagetype-category.html.jinja
blurb: XRP Ledgerには多機能な取引所が含まれており、この取引所を利用してユーザーは発行済み通貨をXRPに、あるいはXRPを発行済み通貨に交換できます。
targets:
- ja
- md: concepts/decentralized-exchange/automated-market-makers.md
targets:
- en
- ja
- md: concepts/decentralized-exchange/offers.md
targets:
- en
- md: concepts/decentralized-exchange/offers.ja.md
targets:
- ja
- md: concepts/decentralized-exchange/autobridging.md
targets:
- en
- md: concepts/decentralized-exchange/autobridging.ja.md
targets:
- ja
- md: concepts/decentralized-exchange/ticksize.md
targets:
- en
- md: concepts/decentralized-exchange/ticksize.ja.md
targets:
- ja
- name: Consensus Network
html: consensus-network.html
parent: concepts.html
template: pagetype-category.html.jinja
blurb: The XRP Ledger uses a consensus algorithm to resolve the double spend problem and choose which transactions to execute in which order. Consensus also governs rules of transaction processing.
targets:
- en
- name: コンセンサスネットワーク
html: consensus-network.html
parent: concepts.html
template: pagetype-category.html.jinja
blurb: XRP Ledgerはコンセンサスアルゴリズムを使用して、二重支払いの問題を解決し、どのトランザクションをどのような順番で実行するか選択します。コンセンサスは、トランザクション処理のルールを左右します。
targets:
- ja
- md: concepts/consensus-network/consensus.md
targets:
- en
- md: concepts/consensus-network/consensus.ja.md
targets:
- ja
- md: concepts/consensus-network/consensus-principles-and-rules.md
targets:
- en
- md: concepts/consensus-network/consensus-principles-and-rules.ja.md
targets:
- ja
- md: concepts/consensus-network/consensus-protections.md
targets:
- en
- md: concepts/consensus-network/consensus-protections.ja.md
targets:
- ja
- md: concepts/consensus-network/invariant-checking.md
targets:
- en
- md: concepts/consensus-network/invariant-checking.ja.md
targets:
- ja
- md: concepts/consensus-network/negative-unl.md
targets:
- en
# TODO: update translation
- md: concepts/consensus-network/negative-unl.ja.md
targets:
- ja
- md: concepts/consensus-network/transaction-queue.md
targets:
- en
- md: concepts/consensus-network/transaction-queue.ja.md
targets:
- ja
- md: concepts/consensus-network/about-canceling-a-transaction.md
targets:
- en
- md: concepts/consensus-network/about-canceling-a-transaction.ja.md
targets:
- ja
- md: concepts/consensus-network/transaction-malleability.md
targets:
- en
- md: concepts/consensus-network/transaction-malleability.ja.md
targets:
- ja
- md: concepts/consensus-network/amendments/amendments.md
targets:
- en
- md: concepts/consensus-network/amendments/amendments.ja.md
targets:
- ja
- md: concepts/consensus-network/amendments/known-amendments.md
targets:
- en
- md: concepts/consensus-network/amendments/known-amendments.ja.md
targets:
- ja
- md: concepts/consensus-network/fee-voting.md
targets:
- en
- md: concepts/consensus-network/fee-voting.ja.md
targets:
- ja
- md: concepts/consensus-network/consensus-research.md
targets:
- en
- md: concepts/consensus-network/consensus-research.ja.md
targets:
- ja
# TODO: add pseudo-transactions concept page
- md: concepts/consensus-network/parallel-networks.md