-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathrspress.config.ts
More file actions
1767 lines (1757 loc) · 84.8 KB
/
rspress.config.ts
File metadata and controls
1767 lines (1757 loc) · 84.8 KB
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
import { defineConfig } from "@rspress/core";
const navTranslations: Record<string, { protocol: string; liquidStaking: string; nodeStaking: string; website: string }> = {
en: { protocol: "Protocol", liquidStaking: "Liquid Staking", nodeStaking: "Node Staking", website: "Website" },
zh: { protocol: "协议", liquidStaking: "流动性质押", nodeStaking: "节点质押", website: "网站" },
es: { protocol: "Protocolo", liquidStaking: "Staking Líquido", nodeStaking: "Staking de Nodo", website: "Sitio web" },
fr: { protocol: "Protocole", liquidStaking: "Staking Liquide", nodeStaking: "Staking de Nœud", website: "Site web" },
de: { protocol: "Protokoll", liquidStaking: "Liquid Staking", nodeStaking: "Node Staking", website: "Webseite" },
ja: { protocol: "プロトコル", liquidStaking: "リキッドステーキング", nodeStaking: "ノードステーキング", website: "ウェブサイト" },
ko: { protocol: "프로토콜", liquidStaking: "리퀴드 스테이킹", nodeStaking: "노드 스테이킹", website: "웹사이트" },
pt: { protocol: "Protocolo", liquidStaking: "Staking Líquido", nodeStaking: "Staking de Nó", website: "Site" },
ru: { protocol: "Протокол", liquidStaking: "Ликвидный стейкинг", nodeStaking: "Стейкинг ноды", website: "Сайт" },
it: { protocol: "Protocollo", liquidStaking: "Liquid Staking", nodeStaking: "Node Staking", website: "Sito web" },
tr: { protocol: "Protokol", liquidStaking: "Likit Staking", nodeStaking: "Node Staking", website: "Web sitesi" },
};
type SidebarTranslation = {
protocol: { title: string; overview: string; explainerSeries: string; faq: string; contracts: string; glossary: string };
liquidStaking: { title: string; overview: string; viaRp: string; viaL1: string; viaL2: string; onBehalf: string };
nodeStaking: {
title: string;
responsibilities: string;
platform: string;
localNode: string;
localOverview: string;
hardware: string;
preparePC: string;
prepareMac: string;
ssh: string;
serverNode: string;
serverOverview: string;
providers: string;
serverOS: string;
securing: string;
tailscale: string;
installing: string;
installOverview: string;
ethClients: string;
installModes: string;
docker: string;
native: string;
configuring: string;
configOverview: string;
configDocker: string;
configNative: string;
advancedConfig: string;
provisioning: string;
provisioningOverview: string;
startingRp: string;
walletInit: string;
recovering: string;
prepareNode: string;
cliIntro: string;
fallback: string;
feeDistrib: string;
mev: string;
megapools: string;
megapoolsOverview: string;
createMegapoolValidator: string;
stakingAndClaimingRewards: string;
credit: string;
exitMegapoolValidator: string;
stakeOnBehalf: string;
maintenance: string;
maintenanceOverview: string;
performance: string;
grafana: string;
alerting: string;
updates: string;
masquerade: string;
historyExpiry: string;
pruning: string;
changeClients: string;
nodeMigration: string;
rewards: string;
rewardsOverview: string;
claimingRewards: string;
skimming: string;
exiting: string;
shutdown: string;
faq: string;
};
odao: { title: string; overview: string; setup: string; testing: string; monitoring: string; proposals: string };
pdao: { title: string; overview: string; pdao: string; participating: string };
upgrades: {
title: string;
saturn1: string;
saturn0: string;
houston: string;
houstonOverview: string;
houstonGettingStarted: string;
houstonPdao: string;
atlas: string;
lebs: string;
redstone: string;
redstoneWhatsNew: string;
redstoneDocker: string;
redstoneHybrid: string;
redstoneNative: string;
};
testnet: { title: string; overview: string; mainnet: string };
legacy: {
title: string;
v13Update: string;
migrating: string;
atlas: string;
lebs: string;
redstone: string;
redstoneWhatsNew: string;
redstoneDocker: string;
redstoneHybrid: string;
redstoneNative: string;
houston: string;
houstonOverview: string;
houstonGettingStarted: string;
houstonPdao: string;
houstonParticipate: string;
houstonStakeOnBehalf: string;
houstonRplWithdrawal: string;
preparePi: string;
};
};
const sidebarTranslations: Record<string, SidebarTranslation> = {
en: {
protocol: { title: "Overview", overview: "Overview", explainerSeries: "Explainer Series", faq: "Frequently Asked Questions", contracts: "Contracts & Integrations", glossary: "Glossary" },
liquidStaking: {
title: "Liquid Staking (rETH)",
overview: "Overview",
viaRp: "Staking directly via Rocket Pool",
viaL1: "Staking via a DEX on Layer 1",
viaL2: "Staking via a DEX on Layer 2",
onBehalf: "Staking on behalf of a node",
},
nodeStaking: {
title: "Node Operator Guide",
responsibilities: "A Node Operator's Responsibilities",
platform: "Node Requirements & Choosing a Platform",
localNode: "Preparing a Local Node",
localOverview: "Overview",
hardware: "Selecting Staking Hardware",
preparePC: "Preparing a PC, Mini-PC or NUC",
prepareMac: "Preparing a Mac",
ssh: "Intro to Secure Shell (SSH)",
serverNode: "Preparing a Server Node",
serverOverview: "Overview",
providers: "Selecting a Hosting Provider",
serverOS: "Preparing the Operating System",
securing: "Securing Your Node",
tailscale: "Tailscale",
installing: "Installing Rocket Pool",
installOverview: "Overview",
ethClients: "Choosing your ETH Clients",
installModes: "Selecting a Rocket Pool Mode",
docker: "Creating a Standard Rocket Pool Node with Docker",
native: "Creating a Native Rocket Pool Node without Docker",
configuring: "Configuring Rocket Pool",
configOverview: "Overview",
configDocker: "Configuring the Smartnode Stack (Docker/hybrid mode)",
configNative: "Configuring the Smartnode Stack (native)",
advancedConfig: "Advanced Smartnode Configuration for Docker Mode",
provisioning: "Provisioning your Node",
provisioningOverview: "Overview",
startingRp: "Starting Rocket Pool",
walletInit: "Creating a New Wallet",
recovering: "Importing/Recovering an Existing Wallet",
prepareNode: "Preparing your Node for Operation",
cliIntro: "Intro to the Command Line Interface",
fallback: "Specifying a Fallback Node",
feeDistrib: "Fee Distributors and the Smoothing Pool",
mev: "MEV, MEV-Boost & MEV Rewards",
megapools: "Creating a Megapool Validator",
megapoolsOverview: "Overview",
createMegapoolValidator: "Creating a new Megapool (Validator)",
stakingAndClaimingRewards: "RPL staking and Claiming Rewards",
stakeOnBehalf: "Stake ETH on Behalf of Node",
credit: "The Deposit Credit System",
exitMegapoolValidator: "Exiting a Megapool Validator",
maintenance: "Monitoring & Maintenance",
maintenanceOverview: "Overview",
performance: "Monitoring your Node's Performance",
grafana: "Setting up the Grafana Dashboard",
alerting: "Smartnode Stack Alert Notifications",
updates: "Checking for Updates",
masquerade: "Masquerading as Another Node Address",
historyExpiry: "Expiring Pre-Merge History",
pruning: "Pruning the Execution Client",
changeClients: "Changing Execution or Consensus Clients",
nodeMigration: "Moving from One Node to Another",
rewards: "Claiming Rewards",
rewardsOverview: "Overview",
claimingRewards: "Claiming Node Operator Rewards",
skimming: "Distributing Skimmed Minipool Rewards",
exiting: "Exiting your Minipools",
shutdown: "Shut Down a Minipool",
faq: "FAQ (WIP)",
},
odao: {
title: "Oracle DAO",
overview: "The Rocket Pool Oracle DAO",
setup: "Setting up an Oracle DAO Node",
testing: "Testing your Oracle DAO Node",
monitoring: "Monitoring your Oracle DAO Node",
proposals: "Oracle DAO Proposals",
},
pdao: { title: "Protocol DAO", overview: "Overview", pdao: "The Protocol DAO", participating: "Participating in Proposals" },
upgrades: {
title: "Protocol Upgrades",
saturn1: "The Saturn 1 Upgrade",
saturn0: "The Saturn 0 Upgrade",
houston: "The Houston Upgrade",
houstonOverview: "Overview",
houstonGettingStarted: "Getting Started with Houston",
houstonPdao: "The Protocol DAO",
atlas: "The Atlas Update",
lebs: "Lower ETH Bond Minipools",
redstone: "Redstone & The Merge",
redstoneWhatsNew: "The Rocket Pool Redstone Update",
redstoneDocker: "[Docker Mode] Guide to the Redstone Update and the Merge",
redstoneHybrid: "[Hybrid Mode] Guide to the Redstone Update and the Merge",
redstoneNative: "[Native Mode] Guide to the Redstone Update and the Merge",
},
testnet: { title: "Testnet", overview: "Practicing with the Test Network", mainnet: "Migrating from the Test Network to Mainnet" },
legacy: {
title: "Legacy Guides",
v13Update: "Upgrading to Smartnode v1.3.x",
migrating: "Migrating the Smartnode from Previous Beta Tests",
atlas: "The Atlas Update",
lebs: "Lower ETH Bond Minipools",
redstone: "Redstone & The Merge",
redstoneWhatsNew: "The Rocket Pool Redstone Update",
redstoneDocker: "[Docker Mode] Guide to the Redstone Update and the Merge",
redstoneHybrid: "[Hybrid Mode] Guide to the Redstone Update and the Merge",
redstoneNative: "[Native Mode] Guide to the Redstone Update and the Merge",
houston: "The Houston Upgrade",
houstonOverview: "Overview",
houstonGettingStarted: "Getting Started with Houston",
houstonPdao: "The Protocol DAO",
houstonParticipate: "Participating in Proposals",
houstonStakeOnBehalf: "Stake ETH on Behalf of Node",
houstonRplWithdrawal: "RPL Withdrawal Address",
preparePi: "Preparing a Raspberry Pi",
},
},
zh: {
protocol: { title: "概述", overview: "概述", explainerSeries: "解释系列", faq: "常见问题", contracts: "合约与集成", glossary: "术语表" },
liquidStaking: { title: "流动性质押 (rETH)", overview: "概述", viaRp: "通过 Rocket Pool 直接质押", viaL1: "通过 Layer 1 DEX 质押", viaL2: "通过 Layer 2 DEX 质押", onBehalf: "代表节点质押" },
nodeStaking: {
title: "节点运营指南",
responsibilities: "节点运营者的责任",
platform: "节点要求与平台选择",
localNode: "准备本地节点",
localOverview: "概述",
hardware: "选择质押硬件",
preparePC: "准备 PC、迷你 PC 或 NUC",
prepareMac: "准备 Mac",
ssh: "SSH 安全外壳简介",
serverNode: "准备服务器节点",
serverOverview: "概述",
providers: "选择托管服务商",
serverOS: "准备操作系统",
securing: "保护您的节点",
tailscale: "Tailscale",
installing: "安装 Rocket Pool",
installOverview: "概述",
ethClients: "选择 ETH 客户端",
installModes: "选择 Rocket Pool 模式",
docker: "使用 Docker 创建标准 Rocket Pool 节点",
native: "不使用 Docker 创建原生 Rocket Pool 节点",
configuring: "配置 Rocket Pool",
configOverview: "概述",
configDocker: "配置 Smartnode 栈 (Docker/混合模式)",
configNative: "配置 Smartnode 栈 (原生模式)",
advancedConfig: "Docker 模式高级 Smartnode 配置",
provisioning: "配置您的节点",
provisioningOverview: "概述",
startingRp: "启动 Rocket Pool",
walletInit: "创建新钱包",
recovering: "导入/恢复现有钱包",
prepareNode: "准备节点运行",
cliIntro: "命令行界面简介",
fallback: "指定备用节点",
feeDistrib: "费用分配器和平滑池",
mev: "MEV、MEV-Boost 和 MEV 奖励",
megapools: "创建或迁移 Minipools",
megapoolsOverview: "概述",
createMegapoolValidator: "创建新的 Minipool (验证器)",
stakingAndClaimingRewards: "RPL 质押和领取奖励",
stakeOnBehalf: "代表节点质押 ETH",
credit: "存款信用系统",
exitMegapoolValidator: "退出 Megapool 验证器",
maintenance: "监控与维护",
maintenanceOverview: "概述",
performance: "监控节点性能",
grafana: "设置 Grafana 仪表板",
alerting: "Smartnode 栈警报通知",
updates: "检查更新",
masquerade: "伪装为其他节点地址",
historyExpiry: "过期合并前历史",
pruning: "修剪执行客户端",
changeClients: "更改执行或共识客户端",
nodeMigration: "从一个节点迁移到另一个",
rewards: "领取奖励",
rewardsOverview: "概述",
claimingRewards: "领取节点运营者奖励",
skimming: "分配撇取奖励",
exiting: "退出您的 Minipools",
shutdown: "关闭 Minipool",
faq: "常见问题 (进行中)",
},
odao: {
title: "Oracle DAO",
overview: "Rocket Pool Oracle DAO",
setup: "设置 Oracle DAO 节点",
testing: "测试您的 Oracle DAO 节点",
monitoring: "监控您的 Oracle DAO 节点",
proposals: "Oracle DAO 提案",
},
pdao: { title: "协议 DAO", overview: "概述", pdao: "协议 DAO", participating: "参与提案" },
upgrades: {
title: "协议升级",
saturn1: "Saturn 1 升级",
saturn0: "Saturn 0 升级",
houston: "Houston 升级",
houstonOverview: "概述",
houstonGettingStarted: "Houston 入门",
houstonPdao: "协议 DAO",
atlas: "Atlas 更新",
lebs: "低 ETH 保证金 Minipools",
redstone: "Redstone 与合并",
redstoneWhatsNew: "Rocket Pool Redstone 更新",
redstoneDocker: "[Docker 模式] Redstone 更新和合并指南",
redstoneHybrid: "[混合模式] Redstone 更新和合并指南",
redstoneNative: "[原生模式] Redstone 更新和合并指南",
},
testnet: { title: "测试网", overview: "在测试网络上练习", mainnet: "从测试网络迁移到主网" },
legacy: {
title: "旧版指南",
v13Update: "升级到 Smartnode v1.3.x",
migrating: "从之前的 Beta 测试迁移 Smartnode",
atlas: "Atlas 更新",
lebs: "低 ETH 保证金 Minipools",
redstone: "Redstone 与合并",
redstoneWhatsNew: "Rocket Pool Redstone 更新",
redstoneDocker: "[Docker 模式] Redstone 更新和合并指南",
redstoneHybrid: "[混合模式] Redstone 更新和合并指南",
redstoneNative: "[原生模式] Redstone 更新和合并指南",
houston: "Houston 升级",
houstonOverview: "概述",
houstonGettingStarted: "Houston 入门",
houstonPdao: "协议 DAO",
houstonParticipate: "参与提案",
houstonStakeOnBehalf: "代表节点质押 ETH",
houstonRplWithdrawal: "RPL 提款地址",
preparePi: "准备树莓派",
},
},
es: {
protocol: {
title: "Descripción general",
overview: "Descripción general",
explainerSeries: "Serie Explicativa",
faq: "Preguntas Frecuentes",
contracts: "Contratos e Integraciones",
glossary: "Glosario",
},
liquidStaking: {
title: "Staking Líquido (rETH)",
overview: "Descripción general",
viaRp: "Staking directo vía Rocket Pool",
viaL1: "Staking vía DEX en Layer 1",
viaL2: "Staking vía DEX en Layer 2",
onBehalf: "Staking en nombre de un nodo",
},
nodeStaking: {
title: "Guía del Operador de Nodo",
responsibilities: "Responsabilidades del Operador de Nodo",
platform: "Requisitos del Nodo y Elección de Plataforma",
localNode: "Preparando un Nodo Local",
localOverview: "Descripción general",
hardware: "Seleccionando Hardware para Staking",
preparePC: "Preparando un PC, Mini-PC o NUC",
prepareMac: "Preparando un Mac",
ssh: "Introducción a Secure Shell (SSH)",
serverNode: "Preparando un Nodo en Servidor",
serverOverview: "Descripción general",
providers: "Seleccionando un Proveedor de Hosting",
serverOS: "Preparando el Sistema Operativo",
securing: "Asegurando tu Nodo",
tailscale: "Tailscale",
installing: "Instalando Rocket Pool",
installOverview: "Descripción general",
ethClients: "Eligiendo tus Clientes ETH",
installModes: "Seleccionando un Modo de Rocket Pool",
docker: "Creando un Nodo Rocket Pool Estándar con Docker",
native: "Creando un Nodo Rocket Pool Nativo sin Docker",
configuring: "Configurando Rocket Pool",
configOverview: "Descripción general",
configDocker: "Configurando el Stack Smartnode (modo Docker/híbrido)",
configNative: "Configurando el Stack Smartnode (nativo)",
advancedConfig: "Configuración Avanzada de Smartnode para Modo Docker",
provisioning: "Aprovisionando tu Nodo",
provisioningOverview: "Descripción general",
startingRp: "Iniciando Rocket Pool",
walletInit: "Creando una Nueva Billetera",
recovering: "Importando/Recuperando una Billetera Existente",
prepareNode: "Preparando tu Nodo para Operación",
cliIntro: "Introducción a la Interfaz de Línea de Comandos",
fallback: "Especificando un Nodo de Respaldo",
feeDistrib: "Distribuidores de Tarifas y el Smoothing Pool",
mev: "MEV, MEV-Boost y Recompensas MEV",
megapools: "Creando o Migrando Minipools",
megapoolsOverview: "Descripción general",
createMegapoolValidator: "Creando un nuevo Minipool (Validador)",
stakingAndClaimingRewards: "Staking de RPL y Reclamación de Recompensas",
stakeOnBehalf: "Stake ETH en Nombre del Nodo",
credit: "El Sistema de Crédito de Depósito",
exitMegapoolValidator: "Salir de un Validador Megapool",
maintenance: "Monitoreo y Mantenimiento",
maintenanceOverview: "Descripción general",
performance: "Monitoreando el Rendimiento de tu Nodo",
grafana: "Configurando el Panel de Grafana",
alerting: "Notificaciones de Alerta del Stack Smartnode",
updates: "Verificando Actualizaciones",
masquerade: "Enmascarándose como Otra Dirección de Nodo",
historyExpiry: "Expirando Historial Pre-Merge",
pruning: "Podando el Cliente de Ejecución",
changeClients: "Cambiando Clientes de Ejecución o Consenso",
nodeMigration: "Moviendo de un Nodo a Otro",
rewards: "Reclamando Recompensas",
rewardsOverview: "Descripción general",
claimingRewards: "Reclamando Recompensas de Operador de Nodo",
skimming: "Distribuyendo Recompensas Desnatadas",
exiting: "Saliendo de tus Minipools",
shutdown: "Cerrar un Minipool",
faq: "FAQ (En progreso)",
},
odao: {
title: "Oracle DAO",
overview: "El Oracle DAO de Rocket Pool",
setup: "Configurando un Nodo Oracle DAO",
testing: "Probando tu Nodo Oracle DAO",
monitoring: "Monitoreando tu Nodo Oracle DAO",
proposals: "Propuestas del Oracle DAO",
},
pdao: { title: "Protocolo DAO", overview: "Descripción general", pdao: "El Protocolo DAO", participating: "Participando en Propuestas" },
upgrades: {
title: "Actualizaciones del Protocolo",
saturn1: "La Actualización Saturn 1",
saturn0: "La Actualización Saturn 0",
houston: "La Actualización Houston",
houstonOverview: "Descripción general",
houstonGettingStarted: "Comenzando con Houston",
houstonPdao: "El Protocolo DAO",
atlas: "La Actualización Atlas",
lebs: "Minipools de Bajo ETH Bond",
redstone: "Redstone y The Merge",
redstoneWhatsNew: "La Actualización Rocket Pool Redstone",
redstoneDocker: "[Modo Docker] Guía de la Actualización Redstone y The Merge",
redstoneHybrid: "[Modo Híbrido] Guía de la Actualización Redstone y The Merge",
redstoneNative: "[Modo Nativo] Guía de la Actualización Redstone y The Merge",
},
testnet: { title: "Testnet", overview: "Practicando con la Red de Prueba", mainnet: "Migrando de la Red de Prueba a Mainnet" },
legacy: {
title: "Guías Antiguas",
v13Update: "Actualizando a Smartnode v1.3.x",
migrating: "Migrando el Smartnode desde Pruebas Beta Anteriores",
atlas: "La Actualización Atlas",
lebs: "Minipools con Menor Bono ETH",
redstone: "Redstone y The Merge",
redstoneWhatsNew: "La Actualización Redstone de Rocket Pool",
redstoneDocker: "[Modo Docker] Guía de Actualización Redstone y The Merge",
redstoneHybrid: "[Modo Híbrido] Guía de Actualización Redstone y The Merge",
redstoneNative: "[Modo Nativo] Guía de Actualización Redstone y The Merge",
houston: "La Actualización Houston",
houstonOverview: "Descripción general",
houstonGettingStarted: "Comenzando con Houston",
houstonPdao: "El Protocolo DAO",
houstonParticipate: "Participando en Propuestas",
houstonStakeOnBehalf: "Hacer Stake de ETH en Nombre del Nodo",
houstonRplWithdrawal: "Dirección de Retiro de RPL",
preparePi: "Preparando una Raspberry Pi",
},
},
fr: {
protocol: { title: "Aperçu", overview: "Aperçu", explainerSeries: "Série Explicative", faq: "Questions Fréquentes", contracts: "Contrats et Intégrations", glossary: "Glossaire" },
liquidStaking: {
title: "Staking Liquide (rETH)",
overview: "Aperçu",
viaRp: "Staking direct via Rocket Pool",
viaL1: "Staking via un DEX sur Layer 1",
viaL2: "Staking via un DEX sur Layer 2",
onBehalf: "Staking au nom d'un nœud",
},
nodeStaking: {
title: "Guide de l'Opérateur de Nœud",
responsibilities: "Responsabilités d'un Opérateur de Nœud",
platform: "Exigences du Nœud et Choix de Plateforme",
localNode: "Préparer un Nœud Local",
localOverview: "Aperçu",
hardware: "Sélectionner le Matériel de Staking",
preparePC: "Préparer un PC, Mini-PC ou NUC",
prepareMac: "Préparer un Mac",
ssh: "Introduction à Secure Shell (SSH)",
serverNode: "Préparer un Nœud Serveur",
serverOverview: "Aperçu",
providers: "Sélectionner un Fournisseur d'Hébergement",
serverOS: "Préparer le Système d'Exploitation",
securing: "Sécuriser Votre Nœud",
tailscale: "Tailscale",
installing: "Installer Rocket Pool",
installOverview: "Aperçu",
ethClients: "Choisir vos Clients ETH",
installModes: "Sélectionner un Mode Rocket Pool",
docker: "Créer un Nœud Rocket Pool Standard avec Docker",
native: "Créer un Nœud Rocket Pool Natif sans Docker",
configuring: "Configurer Rocket Pool",
configOverview: "Aperçu",
configDocker: "Configurer la Stack Smartnode (mode Docker/hybride)",
configNative: "Configurer la Stack Smartnode (natif)",
advancedConfig: "Configuration Avancée Smartnode pour Mode Docker",
provisioning: "Provisionner Votre Nœud",
provisioningOverview: "Aperçu",
startingRp: "Démarrer Rocket Pool",
walletInit: "Créer un Nouveau Portefeuille",
recovering: "Importer/Récupérer un Portefeuille Existant",
prepareNode: "Préparer Votre Nœud pour l'Opération",
cliIntro: "Introduction à l'Interface en Ligne de Commande",
fallback: "Spécifier un Nœud de Secours",
feeDistrib: "Distributeurs de Frais et le Smoothing Pool",
mev: "MEV, MEV-Boost et Récompenses MEV",
megapools: "Créer ou Migrer des Minipools",
megapoolsOverview: "Aperçu",
createMegapoolValidator: "Créer un nouveau Minipool (Validateur)",
stakingAndClaimingRewards: "Staking RPL et Réclamation des Récompenses",
stakeOnBehalf: "Staker ETH au Nom du Nœud",
credit: "Le Système de Crédit de Dépôt",
exitMegapoolValidator: "Quitter un Validateur Megapool",
maintenance: "Surveillance et Maintenance",
maintenanceOverview: "Aperçu",
performance: "Surveiller les Performances de Votre Nœud",
grafana: "Configurer le Tableau de Bord Grafana",
alerting: "Notifications d'Alerte de la Stack Smartnode",
updates: "Vérifier les Mises à Jour",
masquerade: "Se Faire Passer pour une Autre Adresse de Nœud",
historyExpiry: "Expiration de l'Historique Pré-Merge",
pruning: "Élaguer le Client d'Exécution",
changeClients: "Changer les Clients d'Exécution ou de Consensus",
nodeMigration: "Passer d'un Nœud à un Autre",
rewards: "Réclamer les Récompenses",
rewardsOverview: "Aperçu",
claimingRewards: "Réclamer les Récompenses d'Opérateur de Nœud",
skimming: "Distribuer les Récompenses Écrémées",
exiting: "Quitter vos Minipools",
shutdown: "Fermer un Minipool",
faq: "FAQ (En cours)",
},
odao: {
title: "Oracle DAO",
overview: "L'Oracle DAO de Rocket Pool",
setup: "Configurer un Nœud Oracle DAO",
testing: "Tester Votre Nœud Oracle DAO",
monitoring: "Surveiller Votre Nœud Oracle DAO",
proposals: "Propositions de l'Oracle DAO",
},
pdao: { title: "Protocole DAO", overview: "Aperçu", pdao: "Le Protocole DAO", participating: "Participer aux Propositions" },
upgrades: {
title: "Mises à Jour du Protocole",
saturn1: "La Mise à Jour Saturn 1",
saturn0: "La Mise à Jour Saturn 0",
houston: "La Mise à Jour Houston",
houstonOverview: "Aperçu",
houstonGettingStarted: "Démarrer avec Houston",
houstonPdao: "Le Protocole DAO",
atlas: "La Mise à Jour Atlas",
lebs: "Minipools à Faible ETH Bond",
redstone: "Redstone et The Merge",
redstoneWhatsNew: "La Mise à Jour Rocket Pool Redstone",
redstoneDocker: "[Mode Docker] Guide de la Mise à Jour Redstone et The Merge",
redstoneHybrid: "[Mode Hybride] Guide de la Mise à Jour Redstone et The Merge",
redstoneNative: "[Mode Natif] Guide de la Mise à Jour Redstone et The Merge",
},
testnet: { title: "Testnet", overview: "S'entraîner avec le Réseau de Test", mainnet: "Migrer du Réseau de Test vers Mainnet" },
legacy: {
title: "Guides Anciens",
v13Update: "Mise à niveau vers Smartnode v1.3.x",
migrating: "Migration du Smartnode depuis les Tests Bêta Précédents",
atlas: "La Mise à Jour Atlas",
lebs: "Minipools à Caution ETH Réduite",
redstone: "Redstone et The Merge",
redstoneWhatsNew: "La Mise à Jour Redstone de Rocket Pool",
redstoneDocker: "[Mode Docker] Guide de Mise à Jour Redstone et The Merge",
redstoneHybrid: "[Mode Hybride] Guide de Mise à Jour Redstone et The Merge",
redstoneNative: "[Mode Natif] Guide de Mise à Jour Redstone et The Merge",
houston: "La Mise à Jour Houston",
houstonOverview: "Aperçu",
houstonGettingStarted: "Démarrer avec Houston",
houstonPdao: "Le Protocole DAO",
houstonParticipate: "Participer aux Propositions",
houstonStakeOnBehalf: "Staker ETH au Nom du Nœud",
houstonRplWithdrawal: "Adresse de Retrait RPL",
preparePi: "Préparer un Raspberry Pi",
},
},
de: {
protocol: { title: "Übersicht", overview: "Übersicht", explainerSeries: "Erklärungsreihe", faq: "Häufig gestellte Fragen", contracts: "Verträge & Integrationen", glossary: "Glossar" },
liquidStaking: {
title: "Liquid Staking (rETH)",
overview: "Übersicht",
viaRp: "Direkt über Rocket Pool staken",
viaL1: "Staking über einen DEX auf Layer 1",
viaL2: "Staking über einen DEX auf Layer 2",
onBehalf: "Im Namen eines Nodes staken",
},
nodeStaking: {
title: "Node-Betreiber-Anleitung",
responsibilities: "Verantwortlichkeiten eines Node-Betreibers",
platform: "Node-Anforderungen & Plattformwahl",
localNode: "Einen lokalen Node vorbereiten",
localOverview: "Übersicht",
hardware: "Staking-Hardware auswählen",
preparePC: "Einen PC, Mini-PC oder NUC vorbereiten",
prepareMac: "Einen Mac vorbereiten",
ssh: "Einführung in Secure Shell (SSH)",
serverNode: "Einen Server-Node vorbereiten",
serverOverview: "Übersicht",
providers: "Einen Hosting-Anbieter auswählen",
serverOS: "Das Betriebssystem vorbereiten",
securing: "Ihren Node absichern",
tailscale: "Tailscale",
installing: "Rocket Pool installieren",
installOverview: "Übersicht",
ethClients: "ETH-Clients auswählen",
installModes: "Einen Rocket Pool-Modus auswählen",
docker: "Einen Standard Rocket Pool Node mit Docker erstellen",
native: "Einen nativen Rocket Pool Node ohne Docker erstellen",
configuring: "Rocket Pool konfigurieren",
configOverview: "Übersicht",
configDocker: "Den Smartnode-Stack konfigurieren (Docker/Hybrid-Modus)",
configNative: "Den Smartnode-Stack konfigurieren (nativ)",
advancedConfig: "Erweiterte Smartnode-Konfiguration für Docker-Modus",
provisioning: "Ihren Node bereitstellen",
provisioningOverview: "Übersicht",
startingRp: "Rocket Pool starten",
walletInit: "Eine neue Wallet erstellen",
recovering: "Eine bestehende Wallet importieren/wiederherstellen",
prepareNode: "Ihren Node für den Betrieb vorbereiten",
cliIntro: "Einführung in die Befehlszeile",
fallback: "Einen Fallback-Node angeben",
feeDistrib: "Gebührenverteiler und der Smoothing Pool",
mev: "MEV, MEV-Boost & MEV-Belohnungen",
megapools: "Minipools erstellen oder migrieren",
megapoolsOverview: "Übersicht",
createMegapoolValidator: "Einen neuen Minipool (Validator) erstellen",
stakingAndClaimingRewards: "RPL-Staking und Belohnungen einfordern",
stakeOnBehalf: "ETH im Namen des Nodes staken",
credit: "Das Einzahlungskreditsystem",
exitMegapoolValidator: "Einen Megapool-Validator beenden",
maintenance: "Überwachung & Wartung",
maintenanceOverview: "Übersicht",
performance: "Die Leistung Ihres Nodes überwachen",
grafana: "Das Grafana-Dashboard einrichten",
alerting: "Smartnode-Stack-Benachrichtigungen",
updates: "Nach Updates suchen",
masquerade: "Als andere Node-Adresse maskieren",
historyExpiry: "Pre-Merge-Verlauf ablaufen lassen",
pruning: "Den Execution-Client beschneiden",
changeClients: "Execution- oder Consensus-Clients wechseln",
nodeMigration: "Von einem Node zu einem anderen wechseln",
rewards: "Belohnungen einfordern",
rewardsOverview: "Übersicht",
claimingRewards: "Node-Betreiber-Belohnungen einfordern",
skimming: "Abgeschöpfte Belohnungen verteilen",
exiting: "Ihre Minipools verlassen",
shutdown: "Einen Minipool schließen",
faq: "FAQ (In Arbeit)",
},
odao: {
title: "Oracle DAO",
overview: "Das Rocket Pool Oracle DAO",
setup: "Einen Oracle DAO Node einrichten",
testing: "Ihren Oracle DAO Node testen",
monitoring: "Ihren Oracle DAO Node überwachen",
proposals: "Oracle DAO Vorschläge",
},
pdao: { title: "Protokoll DAO", overview: "Übersicht", pdao: "Das Protokoll DAO", participating: "An Vorschlägen teilnehmen" },
upgrades: {
title: "Protokoll-Upgrades",
saturn1: "Das Saturn 1 Upgrade",
saturn0: "Das Saturn 0 Upgrade",
houston: "Das Houston Upgrade",
houstonOverview: "Übersicht",
houstonGettingStarted: "Erste Schritte mit Houston",
houstonPdao: "Das Protokoll DAO",
atlas: "Das Atlas Update",
lebs: "Minipools mit niedrigem ETH Bond",
redstone: "Redstone & The Merge",
redstoneWhatsNew: "Das Rocket Pool Redstone Update",
redstoneDocker: "[Docker-Modus] Leitfaden zum Redstone Update und The Merge",
redstoneHybrid: "[Hybrid-Modus] Leitfaden zum Redstone Update und The Merge",
redstoneNative: "[Native-Modus] Leitfaden zum Redstone Update und The Merge",
},
testnet: { title: "Testnet", overview: "Mit dem Testnetzwerk üben", mainnet: "Vom Testnetzwerk zum Mainnet migrieren" },
legacy: {
title: "Alte Anleitungen",
v13Update: "Upgrade auf Smartnode v1.3.x",
migrating: "Smartnode von früheren Beta-Tests migrieren",
atlas: "Das Atlas-Update",
lebs: "Minipools mit niedrigerem ETH-Bond",
redstone: "Redstone & The Merge",
redstoneWhatsNew: "Das Rocket Pool Redstone Update",
redstoneDocker: "[Docker-Modus] Anleitung zum Redstone-Update und The Merge",
redstoneHybrid: "[Hybrid-Modus] Anleitung zum Redstone-Update und The Merge",
redstoneNative: "[Native-Modus] Anleitung zum Redstone-Update und The Merge",
houston: "Das Houston-Upgrade",
houstonOverview: "Übersicht",
houstonGettingStarted: "Erste Schritte mit Houston",
houstonPdao: "Das Protokoll-DAO",
houstonParticipate: "An Vorschlägen teilnehmen",
houstonStakeOnBehalf: "ETH im Namen des Nodes staken",
houstonRplWithdrawal: "RPL-Auszahlungsadresse",
preparePi: "Einen Raspberry Pi vorbereiten",
},
},
ja: {
protocol: { title: "概要", overview: "概要", explainerSeries: "解説シリーズ", faq: "よくある質問", contracts: "コントラクトと統合", glossary: "用語集" },
liquidStaking: {
title: "リキッドステーキング (rETH)",
overview: "概要",
viaRp: "Rocket Pool経由で直接ステーキング",
viaL1: "Layer 1のDEX経由でステーキング",
viaL2: "Layer 2のDEX経由でステーキング",
onBehalf: "ノードの代理でステーキング",
},
nodeStaking: {
title: "ノードオペレーターガイド",
responsibilities: "ノードオペレーターの責任",
platform: "ノード要件とプラットフォームの選択",
localNode: "ローカルノードの準備",
localOverview: "概要",
hardware: "ステーキングハードウェアの選択",
preparePC: "PC、ミニPC、NUCの準備",
prepareMac: "Macの準備",
ssh: "Secure Shell (SSH) 入門",
serverNode: "サーバーノードの準備",
serverOverview: "概要",
providers: "ホスティングプロバイダーの選択",
serverOS: "オペレーティングシステムの準備",
securing: "ノードのセキュリティ確保",
tailscale: "Tailscale",
installing: "Rocket Poolのインストール",
installOverview: "概要",
ethClients: "ETHクライアントの選択",
installModes: "Rocket Poolモードの選択",
docker: "Dockerで標準Rocket Poolノードを作成",
native: "Dockerなしでネイティブ Rocket Poolノードを作成",
configuring: "Rocket Poolの設定",
configOverview: "概要",
configDocker: "Smartnodeスタックの設定 (Docker/ハイブリッドモード)",
configNative: "Smartnodeスタックの設定 (ネイティブ)",
advancedConfig: "Dockerモード用高度なSmartnode設定",
provisioning: "ノードのプロビジョニング",
provisioningOverview: "概要",
startingRp: "Rocket Poolの起動",
walletInit: "新規ウォレットの作成",
recovering: "既存ウォレットのインポート/復元",
prepareNode: "運用のためのノード準備",
cliIntro: "コマンドラインインターフェース入門",
fallback: "フォールバックノードの指定",
feeDistrib: "手数料分配とスムージングプール",
mev: "MEV、MEV-Boost、MEV報酬",
megapools: "Minipoolの作成または移行",
megapoolsOverview: "概要",
createMegapoolValidator: "新しいMinipool (バリデーター) の作成",
stakingAndClaimingRewards: "RPLステーキングと報酬の請求",
stakeOnBehalf: "ノードの代わりにETHをステーク",
credit: "デポジットクレジットシステム",
exitMegapoolValidator: "Megapoolバリデーターの終了",
maintenance: "監視とメンテナンス",
maintenanceOverview: "概要",
performance: "ノードパフォーマンスの監視",
grafana: "Grafanaダッシュボードの設定",
alerting: "Smartnodeスタックアラート通知",
updates: "アップデートの確認",
masquerade: "別のノードアドレスとして偽装",
historyExpiry: "マージ前履歴の期限切れ",
pruning: "実行クライアントのプルーニング",
changeClients: "実行またはコンセンサスクライアントの変更",
nodeMigration: "ノード間の移行",
rewards: "報酬の請求",
rewardsOverview: "概要",
claimingRewards: "ノードオペレーター報酬の請求",
skimming: "スキミング報酬の分配",
exiting: "Minipoolからの退出",
shutdown: "Minipoolのシャットダウン",
faq: "FAQ (作成中)",
},
odao: {
title: "Oracle DAO",
overview: "Rocket Pool Oracle DAO",
setup: "Oracle DAOノードの設定",
testing: "Oracle DAOノードのテスト",
monitoring: "Oracle DAOノードの監視",
proposals: "Oracle DAO提案",
},
pdao: { title: "プロトコルDAO", overview: "概要", pdao: "プロトコルDAO", participating: "提案への参加" },
upgrades: {
title: "プロトコルアップグレード",
saturn1: "Saturn 1アップグレード",
saturn0: "Saturn 0アップグレード",
houston: "Houstonアップグレード",
houstonOverview: "概要",
houstonGettingStarted: "Houstonを始める",
houstonPdao: "プロトコルDAO",
atlas: "Atlasアップデート",
lebs: "低ETHボンドMinipools",
redstone: "Redstoneとマージ",
redstoneWhatsNew: "Rocket Pool Redstoneアップデート",
redstoneDocker: "[Dockerモード] Redstoneアップデートとマージガイド",
redstoneHybrid: "[ハイブリッドモード] Redstoneアップデートとマージガイド",
redstoneNative: "[ネイティブモード] Redstoneアップデートとマージガイド",
},
testnet: { title: "テストネット", overview: "テストネットワークで練習", mainnet: "テストネットワークからメインネットへの移行" },
legacy: {
title: "レガシーガイド",
v13Update: "Smartnode v1.3.xへのアップグレード",
migrating: "以前のベータテストからのSmartnode移行",
atlas: "Atlasアップデート",
lebs: "低ETHボンドMinipool",
redstone: "Redstoneとマージ",
redstoneWhatsNew: "Rocket Pool Redstoneアップデート",
redstoneDocker: "[Dockerモード] Redstoneアップデートとマージガイド",
redstoneHybrid: "[ハイブリッドモード] Redstoneアップデートとマージガイド",
redstoneNative: "[ネイティブモード] Redstoneアップデートとマージガイド",
houston: "Houstonアップグレード",
houstonOverview: "概要",
houstonGettingStarted: "Houstonを始める",
houstonPdao: "プロトコルDAO",
houstonParticipate: "提案への参加",
houstonStakeOnBehalf: "ノードの代理でETHをステーク",
houstonRplWithdrawal: "RPL引き出しアドレス",
preparePi: "Raspberry Piの準備",
},
},
ko: {
protocol: { title: "개요", overview: "개요", explainerSeries: "설명 시리즈", faq: "자주 묻는 질문", contracts: "컨트랙트 및 통합", glossary: "용어집" },
liquidStaking: {
title: "리퀴드 스테이킹 (rETH)",
overview: "개요",
viaRp: "Rocket Pool을 통한 직접 스테이킹",
viaL1: "Layer 1 DEX를 통한 스테이킹",
viaL2: "Layer 2 DEX를 통한 스테이킹",
onBehalf: "노드를 대신하여 스테이킹",
},
nodeStaking: {
title: "노드 운영자 가이드",
responsibilities: "노드 운영자의 책임",
platform: "노드 요구 사항 및 플랫폼 선택",
localNode: "로컬 노드 준비",
localOverview: "개요",
hardware: "스테이킹 하드웨어 선택",
preparePC: "PC, 미니 PC 또는 NUC 준비",
prepareMac: "Mac 준비",
ssh: "Secure Shell (SSH) 소개",
serverNode: "서버 노드 준비",
serverOverview: "개요",
providers: "호스팅 제공업체 선택",
serverOS: "운영 체제 준비",
securing: "노드 보안",
tailscale: "Tailscale",
installing: "Rocket Pool 설치",
installOverview: "개요",
ethClients: "ETH 클라이언트 선택",
installModes: "Rocket Pool 모드 선택",
docker: "Docker로 표준 Rocket Pool 노드 생성",
native: "Docker 없이 네이티브 Rocket Pool 노드 생성",
configuring: "Rocket Pool 구성",
configOverview: "개요",
configDocker: "Smartnode 스택 구성 (Docker/하이브리드 모드)",
configNative: "Smartnode 스택 구성 (네이티브)",
advancedConfig: "Docker 모드용 고급 Smartnode 구성",
provisioning: "노드 프로비저닝",
provisioningOverview: "개요",
startingRp: "Rocket Pool 시작",
walletInit: "새 지갑 생성",
recovering: "기존 지갑 가져오기/복구",
prepareNode: "운영을 위한 노드 준비",
cliIntro: "명령줄 인터페이스 소개",
fallback: "폴백 노드 지정",
feeDistrib: "수수료 분배기와 스무딩 풀",
mev: "MEV, MEV-Boost 및 MEV 보상",
megapools: "Minipool 생성 또는 마이그레이션",
megapoolsOverview: "개요",
createMegapoolValidator: "새 Minipool (검증자) 생성",
stakingAndClaimingRewards: "RPL 스테이킹 및 보상 청구",
stakeOnBehalf: "노드 대신 ETH 스테이킹",
credit: "예치금 크레딧 시스템",
exitMegapoolValidator: "Megapool 검증자 종료",
maintenance: "모니터링 및 유지 관리",
maintenanceOverview: "개요",
performance: "노드 성능 모니터링",
grafana: "Grafana 대시보드 설정",
alerting: "Smartnode 스택 알림",
updates: "업데이트 확인",
masquerade: "다른 노드 주소로 위장",
historyExpiry: "머지 이전 기록 만료",
pruning: "실행 클라이언트 프루닝",
changeClients: "실행 또는 합의 클라이언트 변경",
nodeMigration: "노드 간 이동",
rewards: "보상 청구",
rewardsOverview: "개요",
claimingRewards: "노드 운영자 보상 청구",
skimming: "스키밍 보상 분배",
exiting: "Minipool 종료",
shutdown: "Minipool 종료",
faq: "FAQ (진행 중)",
},
odao: {
title: "Oracle DAO",
overview: "Rocket Pool Oracle DAO",
setup: "Oracle DAO 노드 설정",
testing: "Oracle DAO 노드 테스트",
monitoring: "Oracle DAO 노드 모니터링",
proposals: "Oracle DAO 제안",
},
pdao: { title: "프로토콜 DAO", overview: "개요", pdao: "프로토콜 DAO", participating: "제안 참여" },
upgrades: {
title: "프로토콜 업그레이드",
saturn1: "Saturn 1 업그레이드",
saturn0: "Saturn 0 업그레이드",
houston: "Houston 업그레이드",
houstonOverview: "개요",
houstonGettingStarted: "Houston 시작하기",
houstonPdao: "프로토콜 DAO",
atlas: "Atlas 업데이트",
lebs: "낮은 ETH 본드 Minipools",
redstone: "Redstone과 머지",
redstoneWhatsNew: "Rocket Pool Redstone 업데이트",
redstoneDocker: "[Docker 모드] Redstone 업데이트 및 머지 가이드",
redstoneHybrid: "[하이브리드 모드] Redstone 업데이트 및 머지 가이드",
redstoneNative: "[네이티브 모드] Redstone 업데이트 및 머지 가이드",
},
testnet: { title: "테스트넷", overview: "테스트 네트워크로 연습", mainnet: "테스트 네트워크에서 메인넷으로 마이그레이션" },
legacy: {
title: "레거시 가이드",
v13Update: "Smartnode v1.3.x로 업그레이드",
migrating: "이전 베타 테스트에서 Smartnode 마이그레이션",
atlas: "Atlas 업데이트",
lebs: "낮은 ETH 본드 Minipool",
redstone: "Redstone 및 머지",
redstoneWhatsNew: "Rocket Pool Redstone 업데이트",
redstoneDocker: "[Docker 모드] Redstone 업데이트 및 머지 가이드",
redstoneHybrid: "[하이브리드 모드] Redstone 업데이트 및 머지 가이드",
redstoneNative: "[네이티브 모드] Redstone 업데이트 및 머지 가이드",
houston: "Houston 업그레이드",
houstonOverview: "개요",
houstonGettingStarted: "Houston 시작하기",
houstonPdao: "프로토콜 DAO",
houstonParticipate: "제안 참여",
houstonStakeOnBehalf: "노드를 대신하여 ETH 스테이크",
houstonRplWithdrawal: "RPL 출금 주소",
preparePi: "Raspberry Pi 준비",
},
},
pt: {
protocol: { title: "Visão Geral", overview: "Visão Geral", explainerSeries: "Série Explicativa", faq: "Perguntas Frequentes", contracts: "Contratos e Integrações", glossary: "Glossário" },
liquidStaking: {
title: "Staking Líquido (rETH)",
overview: "Visão Geral",
viaRp: "Staking direto via Rocket Pool",
viaL1: "Staking via DEX na Layer 1",
viaL2: "Staking via DEX na Layer 2",
onBehalf: "Staking em nome de um nó",
},
nodeStaking: {
title: "Guia do Operador de Nó",
responsibilities: "Responsabilidades do Operador de Nó",
platform: "Requisitos do Nó e Escolha de Plataforma",
localNode: "Preparando um Nó Local",
localOverview: "Visão Geral",
hardware: "Selecionando Hardware para Staking",
preparePC: "Preparando um PC, Mini-PC ou NUC",
prepareMac: "Preparando um Mac",
ssh: "Introdução ao Secure Shell (SSH)",
serverNode: "Preparando um Nó em Servidor",
serverOverview: "Visão Geral",
providers: "Selecionando um Provedor de Hospedagem",
serverOS: "Preparando o Sistema Operacional",
securing: "Protegendo Seu Nó",
tailscale: "Tailscale",
installing: "Instalando o Rocket Pool",
installOverview: "Visão Geral",
ethClients: "Escolhendo seus Clientes ETH",
installModes: "Selecionando um Modo Rocket Pool",
docker: "Criando um Nó Rocket Pool Padrão com Docker",
native: "Criando um Nó Rocket Pool Nativo sem Docker",
configuring: "Configurando o Rocket Pool",
configOverview: "Visão Geral",
configDocker: "Configurando a Stack Smartnode (modo Docker/híbrido)",
configNative: "Configurando a Stack Smartnode (nativo)",