forked from XRPLF/xrpl-dev-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dactyl-config.yml
6378 lines (5727 loc) · 240 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
# Relative paths work OK as long as you start the tool from its local dir
template_path: tool
# This folder gets copied into the output directory
template_static_path: assets
# Templates should have filenames starting in template-
default_template: template-doc.html
default_pdf_template: template-forpdf.html
# HTML, PDF, GFM all get output here
out_path: out
# MD files should be here (and in subdirs)
content_path: content
# This folder gets copied into the output directory
content_static_path: img
# PDF creation needs a dir for temporary files
temporary_files_path: /tmp/
# Custom filters live here and start with filter_
filter_paths:
- tool
default_filters:
- multicode_tabs
- unicode_header_ids
- buttonize
- callouts
- badges
- link_replacement
- external_links
- status_badges
- include_svg
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: template-home.html
sidebar: disabled
canonical_url: https://xrpl.org/
languages:
- code: en
display_name: Eng
prefix: "/"
- code: ja
display_name: 日本語
prefix: "/ja/"
targets:
# First member is the default that gets built when target not specified
- name: en
lang: en
display_name: XRPL.org
# 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/ripple/xrpl-dev-portal
github_branch: master
prefix: ""
link_subs:
"./src/api-v3/paths/preparations/payments.ts": "https://github.com/xpring-eng/xrp-api/blob/master/src/api-v3/paths/preparations/payments.ts"
readability_goals:
flesch_reading_ease: 50 # or higher
blurb: XRPL.org is a community-driven resource for all things XRP and the XRP Ledger—your source for technical information, reference materials and tools.
- name: ja
lang: ja
display_name: XRPL.org (日本語)
github_forkurl: https://github.com/ripple/xrpl-dev-portal
github_branch: master
prefix: "/ja/"
locale_file: locale/ja/LC_MESSAGES/messages.mo
blurb: XRPとXRP Ledgerの全てに対してのコミュニティーリーソース
link_subs:
# Adjust XRP-API readme link to point to the right place in the repo
"./src/api-v3/paths/preparations/payments.ts": "https://github.com/xpring-eng/xrp-api/blob/master/src/api-v3/paths/preparations/payments.ts"
# 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 5 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#レジャーインデックス"
# 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 disable-master-key-pair.html.
"transaction-basics.html#authorizing-transactions": "transaction-basics.html#トランザクションの承認"
"transaction-common-fields.html#auto-fillable-fields": "transaction-common-fields.html#自動入力可能なフィールド"
"set-up-secure-signing.html#use-a-dedicated-signing-device": "set-up-secure-signing.html#専用の署名デバイスを使用する"
"set-up-secure-signing.html#run-rippled-locally": "set-up-secure-signing.html#ローカルでrippledを実行する"
# Fix link from untranslated rate-limiting.html
"get-started-with-the-rippled-api.html#admin-access": "get-started-with-the-rippled-api.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 invariant-checking.html
"basic-data-types.html#account-sequence": "basic-data-types.html#アカウントシーケンス"
"xrp.html#xrp-properties": "xrp.html#xrpの特性"
# Fix links from untranslated health-check.html:
"rippled-server-modes.html#reasons-to-run-a-rippled-server-in-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:
"consensus.html#validation": "consensus.html#検証"
- name: xrp-api-only
lang: en
display_name: XRP API Reference
github_forkurl: https://github.com/ripple/xrpl-dev-portal
github_branch: master
no_cover: true
link_subs:
"./src/api-v3/paths/preparations/payments.ts": "https://github.com/xpring-eng/xrp-api/blob/master/src/api-v3/paths/preparations/payments.ts"
# Data API target for porting changes to the README in the upstream repo
# Intended for use in markdown (--md) mode.
- name: data-api-only
lang: en
display_name: XRP Ledger Data API
github_forkurl: https://github.com/ripple/xrpl-dev-portal
github_branch: master
no_cover: True
link_re_subs:
"([\\w-]+\\.html)": https://xrpl.org/\1
pages:
# "Learn" funnel ---------------------------------------------------------------
- name: Learn
funnel: Learn
category: Uses
template: template-learn-overview.html
html: overview.html
top_nav_level: 1
top_nav_name: Overview
sidebar: disabled
targets:
- en
- name: 学ぶ
funnel: Learn
category: Uses
template: template-learn-overview.html
html: overview.html
top_nav_level: 1
top_nav_name: オーバービュー
sidebar: disabled
targets:
- ja
- name: Uses
funnel: Learn
category: Uses
template: template-learn-uses.html
html: uses.html
top_nav_level: 1
sidebar: disabled
targets:
- en
- name: 使用
funnel: Learn
category: Uses
template: template-learn-uses.html
html: uses.html
top_nav_level: 1
sidebar: disabled
targets:
- ja
- name: History
funnel: Learn
category: History
template: template-learn-history.html
html: history.html
top_nav_level: 1
sidebar: disabled
targets:
- en
- name: 沿革
funnel: Learn
category: History
template: template-learn-history.html
html: history.html
top_nav_level: 1
sidebar: disabled
targets:
- ja
- name: Impact
funnel: Learn
category: Impact
template: template-learn-impact.html
html: impact.html
top_nav_level: 1
sidebar: disabled
targets:
- en
- name: インパクト
funnel: Learn
category: Impact
template: template-learn-impact.html
html: impact.html
top_nav_level: 1
sidebar: disabled
targets:
- ja
- name: Carbon Calculator
funnel: Learn
category: Carbon Calculator
template: template-calculator.html
html: carbon-calculator.html
top_nav_level: 1
sidebar: disabled
blurb: Whether it's cash, credit, or crypto, every transaction you make consumes energy. Use the green currency calculator to compare.
fb_card: currency-calculator-card-fb.png
twitter_card: currency-calculator-card-tw.png
targets:
- en
- name: 二酸化炭素電卓
funnel: Learn
category: Carbon Calculator
template: template-calculator.html
html: carbon-calculator.html
top_nav_level: 1
sidebar: disabled
blurb: 現金、クレジットカード、暗号資産でもエネルギー消費する。インタラクティブツールで消費量を比較しましょう。
fb_card: currency-calculator-card-fb.png
twitter_card: currency-calculator-card-tw.png
targets:
- ja
# "Explore" funnel -------------------------------------------------------------
- name: Explore
html: explore.html
template: template-redirect.html
redirect_url: businesses.html
funnel: Explore
targets:
- en
- name: 探る
html: explore.html
template: template-redirect.html
redirect_url: businesses.html
funnel: Explore
targets:
- ja
- name: Wallets
funnel: Explore
category: Wallets
template: template-explore-wallets.html
html: wallets.html
top_nav_level: 1
sidebar: disabled
targets:
- en
- name: ウォレット
funnel: Explore
category: Wallets
template: template-explore-wallets.html
html: wallets.html
top_nav_level: 1
sidebar: disabled
targets:
- ja
- name: Exchanges
funnel: Explore
category: Exchanges
template: template-explore-exchanges.html
html: exchanges.html
top_nav_level: 1
sidebar: disabled
targets:
- en
- name: 取引所
funnel: Explore
category: Exchanges
template: template-explore-exchanges.html
html: exchanges.html
top_nav_level: 1
sidebar: disabled
targets:
- ja
- name: Businesses
funnel: Explore
category: Businesses
template: template-explore-businesses.html
html: businesses.html
top_nav_level: 1
sidebar: disabled
targets:
- en
- name: 企業
funnel: Explore
category: Businesses
template: template-explore-businesses.html
html: businesses.html
top_nav_level: 1
sidebar: disabled
targets:
- ja
# "Build" funnel ---------------------------------------------------------------
- name: Build
funnel: Build
template: template-landing-docs.html
html: docs.html
sidebar: disabled
top_nav_level: 1
top_nav_name: Docs
targets:
- en
- name: 作る
funnel: Build
template: template-landing-docs.html
html: docs.html
top_nav_level: 1
top_nav_name: ドキュメント
sidebar: disabled
targets:
- ja
# Concepts ---------------------------------------------------------------------
- name: Concepts
funnel: Build
doc_type: Concepts
html: concepts.html
top_nav_level: 2
template: template-landing-children.html
blurb: Learn the "what" and "why" behind fundamental aspects of the XRP Ledger.
targets:
- en
- name: コンセプト
funnel: Build
doc_type: Concepts
html: concepts.html
top_nav_level: 2
template: template-landing-children.html
blurb: XRP Ledgerの基本的な部分の背景に「何があるか」、「なぜなのか」を学びましょう。
targets:
- ja
- name: Introduction
funnel: Build
doc_type: Concepts
category: Introduction
html: introduction.html
template: template-landing-children.html
blurb: Learn the "what" and "why" of the XRP Ledger.
targets:
- en
- name: 基本
funnel: Build
doc_type: Concepts
category: Introduction
html: introduction.html
template: template-landing-children.html
blurb: XRP Ledgerとは「何なのか」、「なぜなのか」を学びましょう。
targets:
- ja
- md: concepts/introduction/xrp-ledger-overview.md
html: xrp-ledger-overview.html
funnel: Build
doc_type: Concepts
category: Introduction
blurb: Get a quick and concise introduction to key features of the XRP Ledger.
targets:
- en
- md: concepts/introduction/xrp-ledger-overview.ja.md
html: xrp-ledger-overview.html
funnel: Build
doc_type: Concepts
category: Introduction
blurb: XRP Ledgerの基本機能を簡単に紹介します。
targets:
- ja
- md: concepts/introduction/intro-to-consensus.md
html: intro-to-consensus.html
funnel: Build
doc_type: Concepts
category: Introduction
blurb: Develop a basic understanding of the XRP Ledger's consensus mechanism.
targets:
- en
- md: concepts/introduction/intro-to-consensus.ja.md
html: intro-to-consensus.html
funnel: Build
doc_type: Concepts
category: Introduction
blurb: XRP Ledgerのコンセンサスメカニズムについて基本的な理解を深めましょう。
targets:
- ja
- md: concepts/introduction/xrp.md
html: xrp.html
funnel: Build
doc_type: Concepts
category: Introduction
blurb: Learn about the uses and properties of XRP, the digital asset for payments.
targets:
- en
- md: concepts/introduction/xrp.ja.md
html: xrp.html
funnel: Build
doc_type: Concepts
category: Introduction
blurb: 送金のためのデジタルアセットである、XRPの使い方と特性について学びましょう。
targets:
- ja
- md: concepts/introduction/software-ecosystem.md
html: software-ecosystem.html
funnel: Build
doc_type: Concepts
category: Introduction
blurb: Get an overview of what XRP Ledger software is out there and how it fits together. #TODO:translate
targets:
- en
- md: concepts/introduction/software-ecosystem.ja.md
html: software-ecosystem.html
funnel: Build
doc_type: Concepts
category: Introduction
blurb: XRP Ledgerソフトウェアで注目されている特性と、それらがどう組み合わさっているのか大まかに紹介します。
targets:
- ja
- md: concepts/introduction/technical-faq.md
html: technical-faq.html
funnel: Build
doc_type: Concepts
category: Introduction
blurb: Get answers to frequently asked questions, covering topics such as validators, unique node lists, the role of XRP, and security.
targets:
- en
- md: concepts/introduction/technical-faq.ja.md
html: technical-faq.html
funnel: Build
doc_type: Concepts
category: Introduction
blurb: バリデータ、ユニークノードリスト、XRPの役割、セキュリティなどのトピックに関するよくある質問に対しての答えを見つけてください。
targets:
- ja
- name: Payment System Basics
html: payment-system-basics.html
funnel: Build
doc_type: Concepts
category: Payment System Basics
template: template-landing-children.html
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
funnel: Build
doc_type: Concepts
category: Payment System Basics
template: template-landing-children.html
blurb: XRP Ledgerの主な狙いは決済処理です。主要なコンセプトを詳しく学んで、XRP Ledgerの決済システムの理解を深めましょう。
targets:
- ja
- md: concepts/payment-system-basics/accounts/accounts.md
html: accounts.html
funnel: Build
doc_type: Concepts
category: Payment System Basics
subcategory: Accounts
blurb: Learn about accounts in the XRP Ledger. Accounts can send transactions and hold XRP.
targets:
- en
- md: concepts/payment-system-basics/accounts/accounts.ja.md
html: accounts.html
funnel: Build
doc_type: Concepts
category: Payment System Basics
subcategory: Accounts
blurb: XRP Ledgerのアカウントについて説明します。アカウントはトランザクションを送信でき、XRPを保有できます。
targets:
- ja
- md: concepts/payment-system-basics/accounts/cryptographic-keys.md
html: cryptographic-keys.html
funnel: Build
doc_type: Concepts
category: Payment System Basics
subcategory: Accounts
blurb: Use cryptographic keys to approve transactions so the XRP Ledger can execute them.
targets:
- en
- md: concepts/payment-system-basics/accounts/cryptographic-keys.ja.md
html: cryptographic-keys.html
funnel: Build
doc_type: Concepts
category: Payment System Basics
subcategory: Accounts
blurb: 暗号鍵を使用してトランザクションを承認し、XRP Ledgerがトランザクションを実行できるようにします。
targets:
- ja
- md: concepts/payment-system-basics/accounts/multi-signing.md
html: multi-signing.html
funnel: Build
doc_type: Concepts
category: Payment System Basics
subcategory: Accounts
blurb: Use multi-signing for greater security sending transactions.
targets:
- en
- md: concepts/payment-system-basics/accounts/multi-signing.ja.md
html: multi-signing.html
funnel: Build
doc_type: Concepts
category: Payment System Basics
subcategory: Accounts
blurb: マルチ署名を使用することで、トランザクション送信時のセキュリティが強化されます。
targets:
- ja
- md: concepts/payment-system-basics/accounts/reserves.md
html: reserves.html
funnel: Build
doc_type: Concepts
category: Payment System Basics
subcategory: Accounts
blurb: XRP Ledger accounts require a reserve of XRP to reduce spam in ledger data.
targets:
- en
- md: concepts/payment-system-basics/accounts/reserves.ja.md
html: reserves.html
funnel: Build
doc_type: Concepts
category: Payment System Basics
subcategory: Accounts
blurb: XRP Ledgerアカウントでは、レジャーデータ内のスパムを減らすためにXRPの準備金が必要です。
targets:
- ja
- md: concepts/payment-system-basics/accounts/depositauth.md
html: depositauth.html
funnel: Build
doc_type: Concepts
category: Payment System Basics
subcategory: Accounts
blurb: The DepositAuth setting lets an account block incoming payments by default.
targets:
- en
- md: concepts/payment-system-basics/accounts/depositauth.ja.md
html: depositauth.html
funnel: Build
doc_type: Concepts
category: Payment System Basics
subcategory: Accounts
blurb: DepositAuth設定をすると、アカウントは着信ペイメントをデフォルトでブロックします。
targets:
- ja
- md: concepts/payment-system-basics/fees.md
html: fees.html
funnel: Build
doc_type: Concepts
category: Payment System Basics
blurb: Learn about the types of fees allowed by the XRP Ledger, including neutral fees (payable to no one) that protect the ledger against abuse, as well as fees that users can collect from each other.
targets:
- en
- md: concepts/payment-system-basics/fees.ja.md
html: fees.html
funnel: Build
doc_type: Concepts
category: Payment System Basics
blurb: レジャーを悪用から守る中立的な手数料(誰にも支払われません)や、ユーザーが互いから徴収できる手数料など、XRP Ledgerで許可されている手数料のタイプについて説明します。
targets:
- ja
- md: concepts/payment-system-basics/ledgers.md
html: ledgers.html
funnel: Build
doc_type: Concepts
category: Payment System Basics
blurb: The XRP Ledger is composed of a series of individual ledgers, or ledger versions, which rippled keeps in its internal database. Learn about the structure and contents of these ledgers.
targets:
- en
# TODO: translation needs to be updated based on ledgers.md
- md: concepts/payment-system-basics/ledgers.ja.md
html: ledgers.html
funnel: Build
doc_type: Concepts
category: Payment System Basics
blurb: XRP Ledgerは、rippledによって内部データベースに保持されている一連の個別レジャー(レジャーバージョン)で構成されています。これらのレジャーの構造と内容について説明します。
targets:
- ja
- md: concepts/payment-system-basics/transaction-basics/transaction-basics.md
html: transaction-basics.html
funnel: Build
doc_type: Concepts
category: Payment System Basics
subcategory: Transaction Basics
blurb: Transactions are the only way to change the XRP Ledger. Understand what forms they take and how to use them.
targets:
- en
- md: concepts/payment-system-basics/transaction-basics/transaction-basics.ja.md
html: transaction-basics.html
funnel: Build
doc_type: Concepts
category: Payment System Basics
subcategory: Transaction Basics
blurb: トランザクションは、XRP Ledgerの変更を可能にする唯一の手段です。トランザクションの形態とその使用方法について説明します。
targets:
- ja
- md: concepts/payment-system-basics/transaction-basics/transaction-cost.md
html: transaction-cost.html
funnel: Build
doc_type: Concepts
category: Payment System Basics
subcategory: Transaction Basics
blurb: The transaction cost is a small amount of XRP destroyed to send a transaction, which protects the ledger from spam. Learn how the transaction cost applies.
targets:
- en
- md: concepts/payment-system-basics/transaction-basics/transaction-cost.ja.md
html: transaction-cost.html
funnel: Build
doc_type: Concepts
category: Payment System Basics
subcategory: Transaction Basics
blurb: トランザクションコストとはトランザクション送信のために償却される少額のXRPで、これによってレジャーがスパムから保護されます。トランザクションコストの適用方法について説明します。
targets:
- ja
- md: concepts/payment-system-basics/transaction-basics/finality-of-results.md
html: finality-of-results.html
funnel: Build
doc_type: Concepts
category: Payment System Basics
subcategory: Transaction Basics
blurb: Learn when the outcome of a transaction is final and immutable.
targets:
- en
- md: concepts/payment-system-basics/transaction-basics/finality-of-results.ja.md
html: finality-of-results.html
funnel: Build
doc_type: Concepts
category: Payment System Basics
subcategory: Transaction Basics
blurb: トランザクション結果が最終的かつ不変になるタイミングについて説明します。
targets:
- ja
- md: concepts/payment-system-basics/transaction-basics/source-and-destination-tags.md
html: source-and-destination-tags.html
funnel: Build
doc_type: Concepts
category: Payment System Basics
subcategory: Transaction Basics
blurb: Use source and destination tags to indicate specific purposes for payments from and to multi-purpose addresses.
targets:
- en
# TODO: Somehow this page's blurb got translated into Japanese but the page itself wasn't?
- md: concepts/payment-system-basics/transaction-basics/source-and-destination-tags.md
html: source-and-destination-tags.html
funnel: Build
doc_type: Concepts
category: Payment System Basics
subcategory: Transaction Basics
blurb: 多目的アドレスとの間で支払いのやり取りをする具体的な目的を示すためにソースタグと宛先タグを使用します。
targets:
- ja
- name: Payment Types
html: payment-types.html
funnel: Build
doc_type: Concepts
category: Payment Types
template: template-landing-children.html
blurb: The XRP Ledger supports point-to-point XRP payments alongside other, more specialized payment types.
targets:
- en
- name: 支払いのタイプ
html: payment-types.html
funnel: Build
doc_type: Concepts
category: Payment Types
template: template-landing-children.html
blurb: XRP LedgerはポイントツーポイントのXRPペイメントのほかに、より専門化した支払いタイプをサポートしています。
targets:
- ja
# Redirect from the old landing name/URL
- name: Complex Payment Types
html: complex-payment-types.html
funnel: Build
doc_type: Concepts
category: Payment Types
template: template-redirect.html
redirect_url: payment-types.html
targets:
- en
- ja
- md: concepts/payment-types/direct-xrp-payments.md
html: direct-xrp-payments.html
funnel: Build
doc_type: Concepts
category: Payment Types
blurb: Direct XRP payments are the simplest way to send value in the XRP Ledger.
targets:
- en
- md: concepts/payment-types/direct-xrp-payments.ja.md
html: direct-xrp-payments.html
funnel: Build
doc_type: Concepts
category: Payment Types
blurb: XRPによる直接支払いは、XRP Ledgerで資産を送金する最も簡単な方法です。
targets:
- ja
- md: concepts/payment-types/cross-currency-payments.md
html: cross-currency-payments.html
funnel: Build
doc_type: Concepts
category: Payment Types
blurb: Cross-currency payments atomically deliver a different currency than they send by converting through paths and order books.
targets:
- en
- md: concepts/payment-types/cross-currency-payments.ja.md
html: cross-currency-payments.html
funnel: Build
doc_type: Concepts
category: Payment Types
blurb: 複数通貨間の支払いでは、パスとオーダーブックを通じて変換するのとは異なる通貨を自動的にに送金します。
targets:
- ja
- md: concepts/payment-types/checks.md
html: checks.html
funnel: Build
doc_type: Concepts
category: Payment Types
blurb: Checks let users create deferred payments that can be canceled or cashed by the intended recipients.
targets:
- en
- md: concepts/payment-types/checks.ja.md
html: checks.html
funnel: Build
doc_type: Concepts
category: Payment Types
blurb: Checksを使用すると、指定の受取人による取消または換金が可能な後払いの支払いを生成することができます。
targets:
- ja
- md: concepts/payment-types/escrow.md
html: escrow.html
funnel: Build
doc_type: Concepts
category: Payment Types
blurb: Escrows set aside XRP and deliver it later when certain conditions are met. Escrows can depend on time limits, cryptographic conditions, or both.
targets:
- en
- md: concepts/payment-types/escrow.ja.md
html: escrow.html
funnel: Build
doc_type: Concepts
category: Payment Types
blurb: XRPはEscrowに預託され、後日特定の条件が満たされた時点で送金されます。Escrowは時間制限、暗号条件、あるいはその両方によって異なる場合があります。
targets:
- ja
- md: concepts/payment-types/partial-payments.md
html: partial-payments.html
funnel: Build
doc_type: Concepts
category: Payment Types
blurb: Partial payments subtract fees from the amount sent, delivering a flexible amount. Partial payments are useful for returning unwanted payments without incurring additional costs.
targets:
- en
- md: concepts/payment-types/partial-payments.ja.md
html: partial-payments.html
funnel: Build
doc_type: Concepts
category: Payment Types
blurb: Partial Paymentsは送金額から手数料を差し引き、変動額を送金します。Partial Paymentsは、追加コストなしで不審な支払いを返金したい場合に便利です。
targets:
- ja
- md: concepts/payment-types/payment-channels.md
html: payment-channels.html
funnel: Build
doc_type: Concepts
category: Payment Types
blurb: Payment Channels enable fast, asynchronous XRP payments that can be divided into very small increments and settled later.
targets:
- en
- md: concepts/payment-types/payment-channels.ja.md
html: payment-channels.html
funnel: Build
doc_type: Concepts
category: Payment Types
blurb: Payment Channelは、少額の単位に分割可能な高速な非同期のXRPペイメントを送信し、後日決済されるようにします。
targets:
- ja
- name: Issued Currencies
html: issued-currencies.html
funnel: Build
doc_type: Concepts
category: Issued Currencies
template: template-landing-children.html
blurb: All currencies other than XRP can be represented in the XRP Ledger as issued currencies. Learn more about how issued currencies function in the XRP Ledger.
targets:
- en
- name: 発行済み通貨
html: issued-currencies.html
funnel: Build
doc_type: Concepts
category: Issued Currencies
template: template-landing-children.html
blurb: XRP Ledgerでは、XRP以外の通貨はすべて発行済み通貨とされます。XRP Ledgerで発行済み通貨がどのように機能するか説明します。
targets:
- ja
- md: concepts/issued-currencies/issued-currencies-overview.md
html: issued-currencies-overview.html
funnel: Build
doc_type: Concepts
category: Issued Currencies
blurb: Get an overview of issued currencies and their properties in the XRP Ledger.
targets:
- en
- md: concepts/issued-currencies/issued-currencies-overview.ja.md
html: issued-currencies-overview.html
funnel: Build
doc_type: Concepts
category: Issued Currencies
blurb: 発行済み通貨の概要と、XRP Ledgerにおけるその特性について説明します。
targets:
- ja
- md: concepts/issued-currencies/trust-lines-and-issuing.md
html: trust-lines-and-issuing.html
funnel: Build
doc_type: Concepts
category: Issued Currencies
blurb: Learn about the properties and rationale of trust lines.
targets:
- en
- md: concepts/issued-currencies/trust-lines-and-issuing.ja.md
html: trust-lines-and-issuing.html
funnel: Build
doc_type: Concepts
category: Issued Currencies
blurb: トラストラインの特性と根本原理について説明します。
targets:
- ja
- md: concepts/issued-currencies/authorized-trust-lines.md
html: authorized-trust-lines.html
funnel: Build
doc_type: Concepts
category: Issued Currencies
blurb: Learn about authorized trust lines, which enable a currency issuer to limit who can hold its issued (non-XRP) currencies.
targets:
- en
- md: concepts/issued-currencies/authorized-trust-lines.ja.md
html: authorized-trust-lines.html
funnel: Build
doc_type: Concepts
category: Issued Currencies
blurb: 通貨発行者が自己の発行済み通貨を保有できる人を制限できる、Authorized Trust Lineについて説明します。
targets:
- ja
- md: concepts/issued-currencies/freezes.md
html: freezes.html
funnel: Build
doc_type: Concepts
category: Issued Currencies
blurb: Freezes can suspend trading of issued currencies for compliance purposes.
targets:
- en
- md: concepts/issued-currencies/freezes.ja.md
html: freezes.html
funnel: Build
doc_type: Concepts
category: Issued Currencies
blurb: 凍結では、コンプライアンス目的で発行済み通貨の取引を停止できます。
targets:
- ja
- md: concepts/issued-currencies/rippling.md
html: rippling.html
funnel: Build
doc_type: Concepts
category: Issued Currencies
blurb: Rippling is automatic multi-party net settlement of issued currency balances.
targets:
- en
- md: concepts/issued-currencies/rippling.ja.md
html: rippling.html
funnel: Build
doc_type: Concepts
category: Issued Currencies
blurb: Ripplingは、複数当事者間での発行済み通貨残高の自動ネット決済です。
targets:
- ja
- md: concepts/issued-currencies/transfer-fees.md
html: transfer-fees.html