-
-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathen.json
1316 lines (1316 loc) · 93.6 KB
/
en.json
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
{
"general.send": "Send",
"general.tor": "Tor",
"general.torEnabled": "Tor enabled",
"general.receive": "Receive",
"general.request": "Request",
"general.scan": "Scan",
"general.enableNfc": "Enable NFC",
"general.receiveNfc": "Receive via NFC",
"general.payNfc": "Pay via NFC",
"general.confirm": "Confirm",
"general.cancel": "Cancel",
"general.warning": "Warning",
"general.error": "Error",
"general.danger": "Danger!",
"general.ok": "OK",
"general.continueQuestion": "Continue?",
"general.readOnlyWallet": "Read-only wallet",
"general.custodialWallet": "Custodial wallet",
"general.show": "Show",
"general.close": "Close",
"general.hide": "Hide",
"general.copy": "Copy",
"general.goBack": "Go Back",
"general.lightning": "Lightning",
"general.onchain": "On-chain",
"general.activity": "Activity",
"general.transaction": "Transaction",
"general.confirmed": "Confirmed",
"general.unconfirmed": "Unconfirmed",
"general.sent": "Sent",
"general.received": "Received",
"general.date": "Date",
"general.routing": "Routing",
"general.paycode": "Pay code",
"general.paycodes": "Pay codes",
"general.coins": "Coins",
"general.address": "Address",
"general.utxo": "UTXO",
"general.outpoint": "Outpoint",
"general.add": "Add",
"general.frozen": "Frozen",
"general.optional": "Optional",
"general.sats": "sats",
"general.blocks": "blocks",
"general.search": "Search",
"general.help": "Help",
"general.about": "About",
"general.unified": "Unified",
"general.percentage": "percentage",
"general.paste": "Paste from clipboard",
"general.order": "Order",
"general.orders": "Orders",
"general.pos": "Point of Sale",
"general.admin": "Admin",
"general.pay": "Pay",
"general.open": "Open",
"general.settled": "Settled",
"general.new": "New",
"general.loading": "Loading",
"general.conversionRate": "Conversion rate",
"general.bitcoin": "Bitcoin",
"general.fiat": "Fiat",
"general.true": "True",
"general.false": "False",
"general.force": "Force",
"general.immediate": "Immediate",
"general.proceed": "Proceed",
"general.fiatFetchError": "Error fetching exchange rates",
"general.iUnderstand": "I understand",
"general.network": "Network",
"general.tapToLearnMore": "Tap to learn more.",
"general.lsp": "Lightning Service Provider (LSP)",
"general.success": "Success",
"general.on": "On",
"general.off": "Off",
"general.learnMore": "Learn more",
"general.advancedSettings": "Advanced settings",
"general.note": "Note",
"general.channelPartner": "Channel partner",
"general.peer": "Peer",
"general.peers": "Peers",
"general.selected": "Selected",
"general.noneSelected": "None selected",
"general.zeusDefaults": "Using Zeus defaults",
"general.restartZeusChanges": "Restart Zeus for changes to take effect",
"general.charge": "Charge",
"general.clear": "Clear",
"general.lightningAddress": "Lightning address",
"general.lightningAddressCondensed": "LN Address",
"general.good": "Good",
"general.bad": "Bad",
"general.valid": "Valid",
"general.invalid": "Invalid",
"general.createdAt": "Created at",
"general.expiresAt": "Expires at",
"general.id": "ID",
"general.hash": "Hash",
"general.kind": "Kind",
"general.content": "Content",
"general.lightningInvoice": "Lightning invoice",
"general.or": "or",
"general.reset": "Reset",
"general.other": "Other",
"general.reorder": "Reorder",
"general.yes": "Yes",
"general.no": "No",
"general.advanced": "Advanced",
"general.clearChanges": "Clear changes",
"general.destination": "Destination",
"general.externalAccount": "External account",
"general.version": "Version",
"general.state": "State",
"general.mode": "Mode",
"general.automatic": "Automatic",
"general.custom": "Custom",
"general.skip": "Skip",
"general.type": "Type",
"general.label": "Label",
"general.noLabel": "No label",
"general.used": "Used",
"general.unused": "Unused",
"general.discountCode": "Discount code",
"general.accountName": "Account name",
"general.addressType": "Address type",
"general.sorting": "Sorting",
"general.count": "Count",
"general.experimental": "Experimental",
"general.defaultNodeNickname": "My Lightning Node",
"general.active": "Active",
"general.unknown": "Unknown",
"restart.title": "Restart required",
"restart.msg": "ZEUS has to be restarted before the new configuration is applied.",
"restart.msg1": "Would you like to restart now?",
"views.Settings.Support.title": "Support ZEUS",
"views.Settings.Support.titleAlt": "Merch and Support",
"views.Settings.SocialMedia.title": "Social media",
"views.Settings.SocialMedia.twitter": "X / Twitter",
"views.Settings.Support.store": "ZEUS merch store",
"network.mainnet": "Mainnet",
"network.testnet": "Testnet",
"nostr.nostr": "Nostr",
"nostr.keys": "Nostr keys",
"nostr.pubkey": "Nostr pubkey",
"nostr.privkey": "Nostr private key",
"nostr.npub": "npub",
"nostr.nsec": "nsec",
"nostr.loadProfileExternal": "Load profile in Nostr client",
"nostr.loadEventExternal": "Load event in Nostr client",
"components.CollapsedQr.show": "Show QR",
"components.CollapsedQr.hide": "Hide QR",
"components.CollapsedQr.startNfc": "Start NFC broadcast",
"components.CollapsedQr.stopNfc": "Stop NFC broadcast",
"components.CopyButton.copied": "Copied!",
"components.CopyButton.copy": "Copy to Clipboard",
"components.FeeBreakdown.nowClosed": "Now closed",
"components.HopPicker.defaultTitle": "Channel to use",
"components.HopPicker.selectChannel": "Select channel to use",
"components.HopPicker.routeHintsMax": "route hints max",
"components.SetFeesForm.setNew": "Set New Fees",
"components.SetFeesForm.hide": "Hide Set New Fees Form",
"components.SetFeesForm.setting": "Setting fees, please wait...",
"components.SetFeesForm.success": "Successfully set fees!",
"components.SetFeesForm.error": "Error setting fees",
"components.SetFeesForm.baseFee": "Base Fee",
"components.SetFeesForm.feeRate": "Fee Rate",
"components.SetFeesForm.ppm": "PPM (Parts Per Million)",
"components.SetFeesForm.ppmMilliMsat": "PPM rate in milli msat",
"components.SetFeesForm.timeLockDelta": "Timelock Delta (blocks)",
"components.SetFeesForm.minHtlc": "Min HTLC (sats)",
"components.SetFeesForm.maxHtlc": "Max HTLC (sats)",
"components.SetFeesForm.submit": "Submit New Fees",
"components.UTXOPicker.defaultTitle": "UTXOs to use",
"components.UTXOPicker.selectUTXOs": "Select UTXOs to use",
"components.QRCodeScanner.noCameraAccess": "No access to camera",
"components.QRCodeScanner.noCameraFound": "No camera device found",
"components.QRCodeScanner.notRecognized": "QR code could not be recognized",
"components.ExternalLinkModal.externalLink": "You're about to leave Zeus",
"components.ExternalLinkModal.proceed": "Proceed to the following URL?",
"components.ExternalLinkModal.copyLink": "Copy Link",
"components.ExternalLinkModal.copied": "Copied!",
"components.AndroidNfcModal.ready": "Ready to scan",
"components.AndroidNfcModal.hold": "Hold your Android phone near an NFC tag to read it",
"components.QRCodeScanner.chooseFromGallery": "Choose from gallery",
"components.QRCodeScanner.flashOn": "Flash on",
"components.QRCodeScanner.flashOff": "Flash off",
"views.RawTxHex.broadcastToMempoolSpace": "Broadcast to Mempool.space",
"models.Channel.unknownId": "Unknown Channel ID",
"models.Invoice.noMemo": "No memo",
"models.Invoice.seconds": "seconds",
"models.Invoice.never": "Never",
"models.Payment.forwarded": "Forwarded",
"models.Payment.fee": "Fee",
"views.index.accessibilityLabel.On-chain": "View on-chain options",
"views.index.accessibilityLabel.Lightning": "View lightning options",
"views.Accounts.title": "Accounts",
"views.Accounts.select": "Select payment method",
"views.Accounts.fetchTxFees": "Fetch on-chain transaction fees",
"views.EditFee.title": "Edit network fee",
"views.EditFee.titleDisplayOnly": "Transaction fees",
"views.CLightningRestQRScanner.error": "Error fetching c-lightning-REST config",
"views.LnurlPay.LnurlPay.amount": "Amount to pay",
"views.LnurlPay.LnurlPay.comment": "Comment",
"views.LnurlPay.LnurlPay.confirm": "Confirm",
"views.LnurlPay.LnurlPay.invalidParams": "Invalid lnurl params!",
"views.LnurlPay.LnurlPay.invalidInvoice": "Got an invalid invoice!",
"views.LnurlPay.Success.servicedBy": "Serviced by",
"views.LnurlPay.Success.uriAlert": "Don't know how to open URI",
"views.LnurlChannel.title": "Incoming Channel",
"views.LnurlChannel.uri": "Remote Node ID",
"views.LnurlChannel.nodeid": "Local Node ID",
"views.LnurlChannel.success": "Lnurl Channel requested successfully",
"views.LnurlChannel.connect": "Connect",
"views.LnurlAuth.title": "Authentication Request",
"views.LnurlAuth.login": "Log in",
"views.LnurlAuth.loginSuccess": "Authenticated successfully",
"views.LnurlAuth.lndHubAuthMode": "LNURL-Auth Mode",
"views.Routing.received": "Fee received",
"views.Routing.RoutingHeader.timeframeEarned": "Earned during selected timeframe",
"views.Routing.RoutingHeader.dayEarned": "Earned today",
"views.Routing.RoutingHeader.weekEarned": "Earned this week",
"views.Routing.RoutingHeader.monthEarned": "Earned this month",
"views.Routing.RoutingHeader.totalEarned": "Total fees earned",
"views.Routing.noEvents": "No routing events for selected timeframe",
"views.Routing.RoutingEvent.title": "You received",
"views.Routing.SetFees": "Your node fees",
"views.Routing.channelFees": "Edit channel fees",
"views.Settings.WalletConfiguration.title": "Wallet Configuration",
"views.Settings.AddEditNode.certificateButton": "Certificate Install Instructions",
"views.Settings.AddEditNode.connectionStringClipboard": "Detected the following connection string in your clipboard",
"views.Settings.AddEditNode.import": "Import",
"views.Settings.AddEditNode.importPrompt": "Would you like to import it?",
"views.Settings.AddEditNode.lndhubWarning": "With any instance of LNDHub the operator can track your balances, transactions, the IP addresses you connect with, and even run off with your funds.",
"views.Settings.AddEditNode.lndhubFriend": "If you have a friend who you trust and who runs an lnd node you may want to consider asking them to set up an LNDHub instance for you to connect to.",
"views.Settings.AddEditNode.lndhubUnderstand": "I understand, create my account",
"views.Settings.AddEditNode.certificateWarning1": "Opting not to use Certificate Verification may leave you vulnerable to a man-in-the-middle attack. Do so at your own discretion.",
"views.Settings.AddEditNode.certificateWarning2": "If you're not verifying your connection with a VPN or Tor v3 hidden service configuration, we strongly advise you install your node's certificate on this device.",
"views.Settings.WalletConfiguration.certificateUnderstand": "I understand, save wallet config",
"views.Settings.AddEditNode.existingAccount": "Existing Account",
"views.Settings.AddEditNode.username": "Username",
"views.Settings.AddEditNode.password": "Password",
"views.Settings.AddEditNode.showAccountQR": "Show account QR",
"views.Settings.AddEditNode.hideAccountQR": "Hide account QR",
"views.Settings.AddEditNode.nickname": "Nickname (optional)",
"views.Settings.AddEditNode.host": "Host",
"views.Settings.AddEditNode.accessKey": "Access Key",
"views.Settings.AddEditNode.restPort": "REST Port",
"views.Settings.AddEditNode.macaroon": "Macaroon (Hex format)",
"views.Settings.AddEditNode.rune": "Rune",
"views.Settings.AddEditNode.certificateVerification": "Certificate Verification",
"views.Settings.AddEditNode.createLndhub": "Create LNDHub account",
"views.Settings.WalletConfiguration.saveWallet": "Save Wallet Config",
"views.Settings.WalletConfiguration.setWalletActive": "Set Wallet Config as Active",
"views.Settings.WalletConfiguration.walletActive": "Wallet Active",
"views.Settings.AddEditNode.scanLndconnect": "Scan lndconnect config",
"views.Settings.AddEditNode.scanLnc": "Scan LNC QR from Lightning Terminal",
"views.Settings.AddEditNode.scanCLightningRest": "Scan c-lightning-REST QR",
"views.Settings.AddEditNode.scanBtcpay": "Scan BTCPay config",
"views.Settings.AddEditNode.scanLndhub": "Scan LNDHub QR",
"views.Settings.AddEditNode.scanSpark": "Scan Spark QR",
"views.Settings.WalletConfiguration.deleteWallet": "Delete Wallet Config",
"views.Settings.AddEditNode.tapToConfirm": "Tap to confirm",
"views.Settings.WalletConfiguration.duplicateWallet": "Duplicate Wallet Config",
"views.Settings.WalletConfiguration.walletInterface": "Wallet interface",
"views.Settings.AddEditNode.useTor": "Use Tor",
"views.Settings.AddEditNode.pairingPhrase": "Pairing Phrase",
"views.Settings.AddEditNode.mailboxServer": "Mailbox Server",
"views.Settings.AddEditNode.customMailboxServer": "Custom Mailbox Server",
"views.Settings.AddEditNode.localKey": "Local key",
"views.Settings.AddEditNode.remoteKey": "Remote key",
"views.Settings.AddEditNode.recoveryCipherSeed": "Recovery Cipher Seed (aezeed)",
"views.Settings.AddEditNode.disasterRecoveryBase64": "Disaster recovery data (SCB, Base64)",
"views.Settings.CertInstallInstructions.title": "Certificate Installation Instructions",
"views.Settings.CertInstallInstructions.graph1": "To install a certificate on Android, copy the certificate file to your device. Then go to Settings > Security > Install from storage. It should detect the certificate and let you add install it to the device. The certificate should have the extension .crt",
"views.Settings.CertInstallInstructions.graph2": "To install a certificate on iOS, transfer the file to your device. Once you select the file on your device you will be prompted to install it as a profile. You must enable your certificate in General > About > Certificate trust settings. The certificate should have the extension .crt",
"views.Settings.CertInstallInstructions.graph3": "Alternatively, you can provision a profile with the certificate for your phone in XCode.",
"views.Settings.CertInstallInstructions.graph4": "You can access the certificate at any time in Settings > General > Profiles and remove it if required.",
"views.Settings.CertInstallInstructions.graph5": "If you're connecting to your node via an external hostname or via Tor you must add the hostname to the certificate. lnd provides an option to do this with the TLSExtraDomain option in its config. You'll have to delete and regenerate the certificate after you make the change.",
"views.Settings.Wallets.title": "Wallets",
"views.Settings.Wallets.noWallets": "No wallets",
"views.Settings.security": "Security",
"views.Settings.Security.title": "Security settings",
"views.Settings.Security.deletePIN": "Delete PIN",
"views.Settings.Security.deleteDuressPIN": "Delete Duress PIN",
"views.Settings.Security.scramblePIN": "Scramble PIN numbers",
"views.Settings.Security.loginBackground": "Require login after app returns from background",
"views.SparkQRScanner.text": "Scan a Spark QR code",
"views.SparkQRScanner.error": "Error fetching Spark config",
"views.ImportAccount.title": "Import account",
"views.ImportAccount.extendedPubKey": "Extended Public Key (xpub, zpub, tpub, etc.)",
"views.ImportAccount.masterKeyFingerprint": "Master Key Fingerprint",
"views.ImportAccount.addressType": "Address type",
"views.ImportAccount.existingAccount": "Existing account (has funds already)",
"views.ImportAccount.existingAccountNote": "If importing an existing account, ZEUS will initiate a rescan from the block height specified below. Please leave the app open for up to 10 minutes for balances to be reflected accurately",
"views.ImportAccount.existingAccountNote2": "For best results, set block height to the block right before the first transaction received to this external wallet.",
"views.ImportAccount.addressesToGenerate": "Number of addresses to generate",
"views.ImportAccount.importAccount": "Import Account",
"views.ImportAccount.note": "NOTE: Events (deposits/spends) for keys derived from an account will only be detected by LND if they happen after the import. Rescans to detect past events will be supported later on.",
"views.ImportAccount.derivationPath": "Derivation Path",
"views.ImportAccount.watchOnly": "Watch Only",
"views.ImportAccount.externalAddrs": "Receive Addresses",
"views.ImportAccount.internalAddrs": "Change Addresses",
"views.ImportAccount.success": "Successfully imported external account",
"views.ImportAccount.Warning.text1": "Importing external accounts is currently an experimental feature.",
"views.ImportAccount.Warning.text2": "By hitting 'I Understand' you are agreeing to proceed at your own risk.",
"views.ImportAccount.Warning.text3": "If crafting a channel open with an external account, please follow all instructions on screen and DO NOT broadcast the transaction from anywhere except your ZEUS wallet.",
"views.Wallet.Channels.open": "Open Channel",
"views.Wallet.Channels.inactive": "INACTIVE",
"views.Wallet.Channels.private": "Private",
"views.Wallet.Channels.unannounced": "Unannounced",
"views.Wallet.Channels.announced": "Announced",
"views.Wallet.Channels.online": "Online",
"views.Wallet.Channels.offline": "Offline",
"views.Wallet.Channels.filters": "Filters",
"views.Wallet.Channels.purchaseInbound": "Purchase Inbound",
"views.OpenChannel.announceChannel": "Announce channel",
"views.OpenChannel.scidAlias": "Attempt to use SCID alias",
"views.OpenChannel.simpleTaprootChannel": "Simple Taproot Channel",
"views.OpenChannel.fundMax": "Use all possible funds",
"views.OpenChannel.openAdditionalChannel": "Open additional channel",
"views.OpenChannel.removeAdditionalChannel": "Remove additional channel",
"views.Wallet.BalancePane.sync.title": "Finishing sync",
"views.Wallet.BalancePane.sync.text": "Hang on tight! You will be ready to use Zeus soon.",
"views.Wallet.waitForSync": "Your node must be fully synced before you can send or receive payments. Please wait.",
"views.Wallet.BalancePane.recovery.title": "Recovery mode",
"views.Wallet.BalancePane.recovery.text": "Please leave ZEUS open until the process completes.",
"views.Wallet.BalancePane.recovery.textAlt": "Leave ZEUS open until completion.",
"views.Wallet.BalancePane.backup.title": "Back up your funds",
"views.Wallet.BalancePane.backup.text": "Create a backup to never lose access to your bitcoin.",
"views.Wallet.BalancePane.backup.action": "Start backup ->",
"views.Wallet.Channels.local": "Local",
"views.Wallet.Channels.remote": "Remote",
"views.Wallet.Channels.noChannels": "No Channels",
"views.Wallet.Invoices.paid": "Paid",
"views.Wallet.Invoices.unpaid": "Unpaid",
"views.Wallet.Invoices.noInvoices": "No Invoices",
"views.Wallet.MainPane.testnet": "Testnet",
"views.Wallet.MainPane.regnet": "Regtest",
"views.Wallet.MainPane.signet": "Signet",
"views.Wallet.MainPane.error": "Error connecting to your node. Please check your settings and try again.",
"views.Wallet.MainPane.goToSettings": "Go to Settings",
"views.Wallet.Payments.noPayments": "No Payments",
"views.Wallet.Transactions.awaitingConf": "Awaiting Confirmation",
"views.Wallet.Transactions.noTransactions": "No Transactions",
"views.Wallet.Wallet.error": "An error occurred",
"views.Wallet.Wallet.payments": "Payments",
"views.Wallet.Wallet.invoices": "Invoices",
"views.Wallet.Wallet.onchain": "On-chain",
"views.Wallet.Wallet.channels": "Channels",
"views.Wallet.Wallet.open": "Open",
"views.Wallet.Wallet.pending": "Pending",
"views.Wallet.Wallet.closed": "Closed",
"views.Wallet.Wallet.startingUp": "Zeus is starting up.",
"views.Wallet.Wallet.connecting": "Zeus is connecting to your node.",
"views.Wallet.Wallet.loadingAccount": "Zeus is loading your account.",
"views.Wallet.Wallet.startingNode": "Zeus is starting your node.",
"views.Wallet.Wallet.expressGraphSync": "Zeus is running express graph sync. Hang tight.",
"views.Wallet.restart": "Restart",
"views.Wallet.KeypadPane.lspExplainerFirstChannel": "It is recommended that your first lightning receive be 100,000 sats or more; the larger the better. A setup fee will be deducted from this amount.",
"views.Wallet.KeypadPane.lspExplainer": "You will be charged a setup fee if paid over lightning.",
"view.Wallet.PosPane.orderNumber": "Order number",
"views.BTCPayConfigQRScanner.text": "Scan a BTCPay Config under Settings > Services > LND Rest",
"views.BTCPayConfigQRScanner.error": "Error fetching BTCPay config",
"views.Channel.channelFees": "Channel Fees",
"views.Channel.localFeeRate": "Local Fee Rate",
"views.Channel.localBaseFee": "Local Base Fee",
"views.Channel.remoteFeeRate": "Remote Fee Rate",
"views.Channel.remoteBaseFee": "Remote Base Fee",
"views.Channel.inbound": "Inbound",
"views.Channel.localInboundBaseFee": "Local Inbound Base Fee",
"views.Channel.localInboundFeeRate": "Local Inbound Fee Rate",
"views.Channel.remoteInboundBaseFee": "Remote Inbound Base Fee",
"views.Channel.remoteInboundFeeRate": "Remote Inbound Fee Rate",
"views.Channel.feeRate": "Fee Rate",
"views.Channel.channelPayments": "Channel Payments",
"views.Channel.localMin": "Local Min",
"views.Channel.remoteMin": "Remote Min",
"views.Channel.localMax": "Local Max",
"views.Channel.remoteMax": "Remote Max",
"views.Channel.localTimeLock": "Local Timelock",
"views.Channel.remoteTimeLock": "Remote Timelock",
"views.Channel.channelActivity": "Channel Activity",
"views.Channel.channelBalance": "Channel balance",
"views.Channel.outboundCapacity": "Sending Capacity",
"views.Channel.inboundCapacity": "Receiving Capacity",
"views.Channel.unsettled": "Unsettled",
"views.Channel.peerStatus": "Peer status",
"views.Channel.yourNode": "You",
"views.Channel.minHTLC": "Min HTLC",
"views.Channel.maxHTLC": "Max HTLC",
"views.Channel.timeLockDelta": "Timelock Delta",
"views.Channel.lastLocalUpdate": "Last Local Update",
"views.Channel.lastRemoteUpdate": "Last Remote Update",
"views.Channel.title": "Channel",
"views.Channel.localBalance": "Local balance",
"views.Channel.remoteBalance": "Remote balance",
"views.Channel.unsettledBalance": "Unsettled balance",
"views.Channel.localReserve": "Local reserve",
"views.Channel.localReserve.info": "The minimum satoshis your node is required to reserve on your side of the channel. It is used to prevent cheating.",
"views.Channel.remoteReserve": "Remote reserve",
"views.Channel.remoteReserve.info": "The minimum satoshis your counterparty is required to reserve on their side of the channel. It is used to prevent cheating.",
"views.Channel.channelFunding": "Channel funding",
"views.Channel.fundingTransaction": "Funding transaction",
"views.Channel.fundedBy": "Funded by",
"views.Channel.unannounced": "Unannounced",
"views.Channel.status": "Status",
"views.Channel.inactive": "Inactive",
"views.Channel.private": "Private",
"views.Channel.totalReceived": "Total Received",
"views.Channel.totalSent": "Total Sent",
"views.Channel.capacity": "Capacity",
"views.Channel.commitWeight": "Commit Weight",
"views.Channel.commitFee": "Commit Fee",
"views.Channel.csvDelay": "CSV Delay",
"views.Channel.csvDelay.info1": "CSV delay, or time-lock delay, is a security feature in the Lightning Network that prevents premature channel closings. It's a built-in delay that uses time to enforce security and give both parties time to resolve issues before funds are released.",
"views.Channel.csvDelay.info2": "You will have to wait this duration to access your funds on-chain if you are the initiator of a force close.",
"views.Channel.feePerKw": "Fee per kilo-weight",
"views.Channel.keysend": "Keysend",
"views.Channel.cancelClose": "Cancel Channel Close",
"views.Channel.close": "Close Channel",
"views.Channel.closingRate": "(Optional) Sat per vbyte closing fee",
"views.Channel.externalAddress": "(Optional) External address",
"views.Channel.externalAddress.info": "If specified, your channel funds will be sent to this external address, instead of an address in the internal wallet.",
"views.Channel.forceClose": "Force close",
"views.Channel.confirmClose": "Confirm Channel Close",
"views.Channel.aliases": "Aliases",
"views.Channel.aliasScid": "Alias SCID",
"views.Channel.aliasScids": "Alias SCIDs",
"views.Channel.peerAliasScid": "Peer Alias SCID",
"views.Channel.closeHeight": "Close height",
"views.Channel.closeType": "Close type",
"views.Channel.openInitiator": "Open initiator",
"views.Channel.closeInitiator": "Close initiator",
"views.Channel.closingTxHash": "Closing TX hash",
"views.Channel.closingTxId": "Closing TXID",
"views.Channel.channelPoint": "Channel point",
"views.Channel.chainHash": "Chain hash",
"views.Channel.settledBalance": "Settled balance",
"views.Channel.timeLockedBalance": "Time locked balance",
"views.Channel.closed": "Closed",
"views.Channel.pendingClose": "Pending close",
"views.Channel.pendingOpen": "Pending open",
"views.Channel.SortButton.largestFirst": "largest first",
"views.Channel.SortButton.smallestFirst": "smallest first",
"views.Channel.SortButton.ascending": "ascending",
"views.Channel.SortButton.descending": "descending",
"views.Channel.channelId": "Channel ID",
"views.Channel.scid": "Short Channel ID (SCID)",
"views.Channel.channelIds": "Channel IDs",
"views.Channel.displayName": "Display name",
"views.Channel.Total.outbound": "Sending capacity (outbound)",
"views.Channel.Total.inbound": "Receiving capacity (inbound)",
"views.Channel.Total.offline": "Total offline",
"views.Channel.zeroConf": "Zero conf",
"views.Channel.commitmentType": "Commitment Type",
"views.UTXOs.CoinControl.noUTXOs": "No UTXOs available",
"views.EditFee.mainText": "Edit network fee",
"views.EditFee.fastestFee": "Fastest fee",
"views.EditFee.halfHourFee": "Half hour fee",
"views.EditFee.hourFee": "Hour fee",
"views.EditFee.minimumFee": "Minimum fee",
"views.EditFee.confirmFee": "Confirm Fee",
"views.EditFee.error": "Error fetching fee rates",
"views.Invoice.title": "Invoice",
"views.Invoice.paid": "Paid",
"views.Invoice.unpaid": "Unpaid",
"views.Invoice.memo": "Memo",
"views.Invoice.receipt": "Receipt",
"views.Invoice.settleDate": "Settle Date",
"views.Invoice.creationDate": "Creation Date",
"views.Invoice.originalExpiration": "Original Expiry",
"views.Invoice.expiration": "Time until Expiry",
"views.Invoice.private": "Route hints included",
"views.Invoice.fallbackAddress": "Fallback Address",
"views.Invoice.cltvExpiry": "CLTV Expiry",
"views.Invoice.rHash": "R Hash",
"views.Invoice.rPreimage": "R Preimage",
"views.Invoice.descriptionHash": "Description Hash",
"views.Invoice.paymentHash": "Payment Hash",
"views.Invoice.paymentRequest": "Payment Request",
"views.Invoice.copyPaymentRequest": "Copy Payment Request",
"views.Invoices.keysendMessage": "Keysend message",
"views.LNDConnectConfigQRScanner.error": "Error fetching lndconnect config",
"views.LncQRScanner.error": "Error parsing LNC config",
"views.LNDHubQRScanner.text": "Scan a LNDHub or Blue Wallet QR code",
"views.Lockscreen.incorrectPassword": "Incorrect Password",
"views.Lockscreen.enterPassword": " Enter Password",
"views.Lockscreen.login": "Log In",
"views.Lockscreen.pin": "Enter PIN",
"views.Lockscreen.incorrectPin": "Incorrect PIN",
"views.Lockscreen.authenticationAttempts": "attempts remaining",
"views.NodeInfo.feeReport": "Fee Report",
"views.NodeInfo.forwarding": "Forwarding",
"views.NodeInfo.copyUri": "Copy URI",
"views.NodeInfo.alias": "Alias",
"views.NodeInfo.pubkey": "Pubkey",
"views.NodeInfo.implementationVersion": "Implementation Version",
"views.NodeInfo.zeusVersion": "Zeus Version",
"views.NodeInfo.synced": "Synced to Chain",
"views.NodeInfo.syncedToGraph": "Synced to Graph",
"views.NodeInfo.blockHeight": "Block Height",
"views.NodeInfo.blockHash": "Block Hash",
"views.NodeInfo.uris": "URIs",
"views.NodeInfo.noUris": "No URIs available",
"views.NodeInfo.title": "Node Info",
"views.NodeInfo.ForwardingHistory.timestamp": "Timestamp",
"views.NodeInfo.ForwardingHistory.srcChannelId": "Source Channel ID",
"views.NodeInfo.ForwardingHistory.dstChannelId": "Destination Channel ID",
"views.NodeInfo.ForwardingHistory.amtIn": "Amount In",
"views.NodeInfo.ForwardingHistory.amtOut": "Amount Out",
"views.NodeInfo.ForwardingHistory.fee": "Fee",
"views.NodeInfo.ForwardingHistory.error": "Error fetching forwarding history",
"views.NetworkInfo.title": "Network Info",
"views.NetworkInfo.numChannels": "Number of channels",
"views.NetworkInfo.numNodes": "Number of nodes",
"views.NetworkInfo.numZombieChannels": "Number of zombie channels",
"views.NetworkInfo.graphDiameter": "Graph diameter",
"views.NetworkInfo.averageOutDegree": "Average out degree",
"views.NetworkInfo.maxOutDegree": "Max out degree",
"views.NodeQRScanner.error": "Scanned QR code was not a valid Lightning Node",
"views.Intro.whatIsZeus": "What is Zeus?",
"views.Intro.quickStart": "Quick start",
"views.Intro.quickStartExplainer": "Your own node on the phone",
"views.Intro.lightningOnboarding": "Learn about lightning onboarding",
"views.Intro.lightningLiquidity": "Learn about lightning liquidity",
"views.Intro.advancedSetUp": "Advanced set-up",
"views.Intro.advancedSetUpExplainer": "Connect to a remote node",
"views.Intro.creatingWallet": "Zeus is creating your wallet.",
"views.Intro.choosingPeers": "ZEUS is choosing your peers.",
"views.Intro.carousel1.title": "Payments you can trust",
"views.Intro.carousel1.text": "ZEUS runs a Bitcoin and Lightning node to verify and keep your transactions private.",
"views.Intro.carousel2.title": "On-chain transfers",
"views.Intro.carousel2.text": "Make regular, on-chain bitcoin transfers with Zeus.",
"views.Intro.carousel3.title": "Lightning payments",
"views.Intro.carousel3.text": "Make (almost) instant, low fee, bitcoin payments using the lightning network.",
"views.Intro.carousel4.title": "Control the lightning",
"views.Intro.carousel4.text": "Go beyond a basic bitcoin wallet and manage your lightning channels, liquidity, and so much more.",
"views.Intro.errorCreatingWallet": "Error creating wallet. Restart the app and try again.",
"views.OpenChannel.openChannel": "Open Channel",
"views.OpenChannel.openChannels": "Open Channels",
"views.OpenChannel.connectPeer": "Connect Peer",
"views.OpenChannel.importText": "Detected the following Node URI in your clipboard",
"views.OpenChannel.importPrompt": "Would you like to import it?",
"views.OpenChannel.import": "Import",
"views.OpenChannel.peerSuccess": "Successfully connected to peer",
"views.OpenChannel.channelSuccess": "Successfully opened channel",
"views.OpenChannel.channelsSuccess": "Successfully opened channels",
"views.OpenChannel.nodePubkey": "Node pubkey",
"views.OpenChannel.host": "Host",
"views.OpenChannel.hostPort": "Hostname:Port",
"views.OpenChannel.localAmt": "Local amount",
"views.OpenChannel.numConf": "Number of Confirmations",
"views.OpenChannel.satsPerVbyte": "Satoshis per vByte",
"views.OpenChannel.private": "Private",
"views.Payment.title": "Payment",
"views.Payment.inTransitPayment": "In Transit Payment",
"views.Payment.failedPayment": "Failed Payment",
"views.Payment.fee": "Fee",
"views.Payment.paymentHash": "Payment Hash",
"views.Payment.paymentPreimage": "Payment Preimage",
"views.Payment.creationDate": "Creation Date",
"views.Payment.path": "Path",
"views.Payment.paths": "Paths",
"views.Payment.writeNote": "Write your note here",
"views.PaymentRequest.title": "Lightning Invoice",
"views.PaymentRequest.error": "Error loading invoice",
"views.PaymentRequest.customAmt": "Custom Amount",
"views.PaymentRequest.payDefault": "Pay default amount",
"views.PaymentRequest.payCustom": "Pay custom amount",
"views.PaymentRequest.feeEstimate": "Fee Estimate",
"views.PaymentRequest.feeEstimateExceedsLimit": "The estimated fee for this payment is higher than the limit set below. Consider raising the fee limit to avoid payment failures.",
"views.PaymentRequest.successProbability": "Success Probability",
"views.PaymentRequest.description": "Description",
"views.PaymentRequest.timestamp": "Timestamp",
"views.PaymentRequest.expiry": "Expiry",
"views.PaymentRequest.cltvExpiry": "CLTV Expiry",
"views.PaymentRequest.paymentHash": "Payment Hash",
"views.PaymentRequest.mpp": "Attempt multi-path payment",
"views.PaymentRequest.amp": "Attempt atomic multi-path payment",
"views.PaymentRequest.maxParts": "Max parts",
"views.PaymentRequest.maxShardAmt": "Max shard amount",
"views.PaymentRequest.maxPartsDescription": "The maximum number of partial payments that may be used to complete the full amount.",
"views.PaymentRequest.timeout": "Timeout (seconds)",
"views.PaymentRequest.feeLimit": "Fee limit",
"views.PaymentRequest.payInvoice": "Pay this invoice",
"views.PaymentRequest.firstHop": "First Hop",
"views.PaymentRequest.lastHop": "Last Hop",
"views.PaymentRequest.lndGettingReady": "LND is getting ready to make payments. Please wait.",
"views.PaymentRequest.lndGettingReadyReceive": "LND is getting ready to receive payments. Please wait.",
"views.PaymentRequest.isPmtHashSigValid": "Payment hash signature",
"views.PaymentRequest.isRelaysSigValid": "Relays signature",
"views.PaymentRequest.notAllowedToSend": "This wallet is not allowed to send funds!",
"views.PaymentRequest.slideToPay": "Slide to Pay",
"views.Receive.title": "Receive",
"views.Receive.successCreate": "Successfully created invoice",
"views.Receive.warningLndHub": "Please note that LNDHub has a fixed on-chain address",
"views.Receive.andSentTo": "and sent to",
"views.Receive.errorCreate": "Error creating invoice",
"views.Receive.copyInvoice": "Copy Invoice",
"views.Receive.memo": "Memo",
"views.Receive.memoPlaceholder": "A tribute to the gods",
"views.Receive.amount": "Amount",
"views.Receive.satoshis": "satoshis",
"views.Receive.expiration": "Expiration",
"views.Receive.customPreimage": "Custom preimage",
"views.Receive.createInvoice": "Create invoice",
"views.Receive.andSubmitTo": "and submit to",
"views.Receive.copyAddress": "Copy Address",
"views.Receive.getAddress": "Get Address",
"views.Receive.getNewAddress": "Get New Address",
"views.Receive.ampInvoice": "AMP Invoice",
"views.Receive.routeHints": "Include route hints",
"views.Receive.customRouteHints": "Custom route hints",
"views.Receive.youReceived": "You received",
"views.Receive.addressType": "Choose address type",
"views.Receive.p2wkhKey": "SegWit (P2WKH)",
"views.Receive.p2wkhDescription": "A more modern address type that saves on fees for incoming and outgoing payments.",
"views.Receive.np2wkhKey": "Nested SegWit (NP2WKH)",
"views.Receive.np2wkhDescription": "Use only when a service labels your SegWit or Taproot address as invalid.",
"views.Receive.np2wkhDescriptionAlt": "Use only when a service labels your SegWit address as invalid.",
"views.Receive.p2trKey": "Taproot (P2TR)",
"views.Receive.p2trDescription": "The latest, most powerful, bitcoin address type. Not widely supported.",
"views.Receive.lspExplainerUnified": "LSP will take the following amount as a setup fee, if paid over lightning:",
"views.Receive.lspExplainer": "LSP will take the following amount as a setup fee:",
"views.Receive.lspExplainerRoutingUnified": "LSP will take the following amount as a fee, if paid over lightning:",
"views.Receive.lspExplainerRouting": "LSP will take the following amount as a fee:",
"views.Receive.lspExplainerZeroFeeWrapper": "Zero-fee wrapped invoice",
"views.Receive.goToLspSettings": "Go to LSP Settings",
"views.Receive.lspSwitchExplainer1": "The LSP will provide you with 0-conf channels that will allow you to send and receive payments on the Lightning network.",
"views.Receive.lspSwitchExplainer2": "The LSP will also wrap your invoices, making it easier to receive payments while protecting your privacy.",
"views.Receive.routeHintSwitchExplainer1": "Route hints provide information to find non-advertised, or unannounced, channels. This allows routing of payments to nodes that are not publicly visible on the network.",
"views.Receive.routeHintSwitchExplainer2": "It's helpful to toggle route hints on if you're using only unannounced channels, or if someone trying to pay you cannot reach you via your announced channels.",
"views.Receive.routeHintSwitchExplainer3": "Route hints are automatically enabled when you only have unannounced channels",
"views.Receive.ampSwitchExplainer1": "Atomic Multi-path Payments (AMP) are a new type of Lightning payments that can be paid multiple times.",
"views.Receive.ampSwitchExplainer2": "Please note that AMP invoices are currently only compatible with LND nodes.",
"views.Receive.lspZeroAmt": "The LSP is incompatible with zero amounts. An unwrapped invoice has been generated. Your node's public key will be exposed.",
"views.Receive.createLightningAddress": "Create lightning address",
"views.Receive.blindedPaths": "Blinded paths",
"views.Receive.blindedPathsExplainer1": "Using blinded paths in your invoice is an advanced privacy technique that allows you to hide your node's' public key, which is typically revealed in most lightning invoices.",
"views.Receive.blindedPathsExplainer2": "Note that not all wallets support paying BOLT 11 invoices with blinded paths yet, and that the possiblity of payment success may decrease.",
"views.Send.title": "Send",
"views.Send.rPreimage": "R Preimage",
"views.Send.lnPayment": "Lightning payment request",
"views.Send.btcAddress": "Bitcoin address",
"views.Send.keysendAddress": "keysend address (if enabled)",
"views.Send.mustBeValid": "Must be a valid",
"views.Send.onChainNotSupported": "On-chain sends are not supported on",
"views.Send.amount": "Amount",
"views.Send.satoshis": "satoshis",
"views.Send.message": "Message",
"views.Send.feeSats": "Fee (satoshis per byte)",
"views.Send.feeSatsVbyte": "Fee (satoshis per vByte)",
"views.Send.sendCoins": "Send Coins",
"views.Send.sorry": "Sorry",
"views.Send.editNetworkFees": "Edit network fees",
"views.Send.keysendNotSupported": "does not support sending keysend payments at the moment.",
"views.Send.lookup": "Look Up Payment Request",
"views.Send.noOnchainBalance": "No on-chain balance available. Close a channel or receive an on-chain transaction first.",
"views.Send.noLightningBalance": "No lightning balance available. Open a channel or receive a lightning payment first.",
"views.Send.zaplockerWarning": "This is a Zaplocker invoices that will hold payment up to 24 hours. Open ZEUS regularly after payment to help mitigate the risk of a force closed channel. Proceed at your own risk.",
"views.Send.addOutput": "Add output",
"views.Send.removeOutput": "Remove output",
"views.Send.payBolt12.offerFetchFailure": "Couldn't fetch offer",
"views.Send.payBolt12.invoiceFetchFailure": "Couldn't fetch invoice",
"views.Send.payBolt12.specifyAmount": "Amount must be specified",
"views.Send.payBolt12.offersNotSupported": "Backend does not support BOLT 12",
"views.SendingLightning.sending": "Sending Payment",
"views.SendingLightning.success": "Payment successfully sent",
"views.SendingLightning.paymentHash": "Payment Hash",
"views.SendingLightning.AddANote": "Add a note",
"views.SendingLightning.UpdateNote": "Update note",
"views.SendingLightning.goToWallet": "Go to Wallet",
"views.SendingLightning.lowFeeLimitMessage": "This payment may have failed due to a low fee limit. Try again with a higher fee limit",
"views.SendingLightning.tryAgain": "Try Again",
"views.SendingLightning.copyPaymentHash": "Copy Hash to Clipboard",
"views.SendingLightning.inTransit": "Payment is in transit. It may complete momentarily or it may go on to fail. Please check back later.",
"views.SendingLightning.isZaplocker": "Zaplocker payment in transit. It may complete momentarily, otherwise funds will return back to you within 24 hours. Please check back later.",
"views.SendingLightning.paymentTimedOut": "Payment timed out",
"views.SendingOnChain.crafting": "Crafting Transaction",
"views.SendingOnChain.broadcasting": "Broadcasting Transaction",
"views.SendingOnChain.success": "Transaction successfully sent",
"views.SendingOnChain.txid": "TXID",
"views.SendingOnChain.goToBlockExplorer": "Go to block explorer",
"views.SendingOnChain.goToWallet": "Go to Wallet",
"views.NostrContacts.nostrContacts": "Nostr Contacts",
"views.NostrContacts.lookUpContacts": "Look up Contacts",
"views.NostrContacts.importAllContacts": "Import all Contacts",
"views.NostrContacts.enterNpub": "Enter npub or NIP-05",
"views.NostrContacts.importContactsError": "Failed to import contacts. Please try again.",
"views.NostrContacts.nip05Error": "Error fetching NIP-05 profile",
"views.ContactDetails.saveToContacts": "Save to Contacts",
"views.ContactDetails.editAndSaveContact": "Edit and Save Contact",
"views.ContactInfo.title": "Contact Info",
"views.Tools.title": "Tools",
"views.Settings.title": "Settings",
"views.Settings.enabled": "Enabled",
"views.Settings.disabled": "Disabled",
"views.Settings.newPassword": "New Password",
"views.Settings.createYourPassword": "Create your Password",
"views.Settings.confirmPassword": "Confirm New Password",
"views.Settings.newDuressPassword": "New Duress Password",
"views.Settings.confirmDuressPassword": "Confirm Duress Password",
"views.Settings.newPin": "Create your PIN",
"views.Settings.confirmPin": "Confirm your PIN",
"views.Settings.newDuressPin": "Create your Duress PIN",
"views.Settings.confirmDuressPin": "Confirm your Duress PIN",
"views.Settings.olympus": "Go to olympusln.com",
"views.Settings.SignMessage.title": "Sign or verify message",
"views.Settings.SignMessage.sign": "Sign",
"views.Settings.SignMessage.verify": "Verify",
"views.Settings.signMessage.button": "Sign Message",
"views.Settings.signMessage.buttonVerify": "Verify Message",
"views.Settings.SignMessage.placeHolder": "The Times 03/Jan/2009 Chancellor on brink of second bailout for banks",
"views.Settings.SignMessage.clear": "Clear",
"views.Settings.SignMessage.messageToSign": "Message to sign",
"views.Settings.SignMessage.messageToVerify": "Message to verify",
"views.Settings.SignMessage.signatureToVerify": "Signature to verify",
"views.Settings.SignMessage.generatedSignature": "Generated signature",
"views.Settings.SignMessage.copyPubkey": "Copy pubkey",
"views.Settings.SignMessage.success": "Success! This is a valid signature for the inputted message. Pubkey:",
"views.Settings.SignMessage.error": "Verification failed. Please double check message and signature.",
"views.Settings.Language.title": "Language",
"views.Settings.Currency.title": "Currency",
"views.Settings.Currency.enabled": "Enabled",
"views.Settings.Currency.source": "Source",
"views.Settings.Currency.selectCurrency": "Select Currency",
"views.Settings.SelectCurrency.title": "Select Currency",
"views.Settings.Theme.title": "Theme",
"views.Settings.Theme.dark": "Dark",
"views.Settings.Theme.light": "Light",
"views.Settings.Theme.junkie": "Junkie",
"views.Settings.Theme.bpm": "BPM",
"views.Settings.Theme.spooky": "Spooky",
"views.Settings.Theme.blacked-out": "Blacked Out",
"views.Settings.Theme.scarlet": "Scarlet",
"views.Settings.Theme.purple": "Memberberry",
"views.Settings.Theme.blueberry": "Blueberry",
"views.Settings.Theme.deep-purple": "Deep Purple",
"views.Settings.Theme.deadpool": "Deadpool",
"views.Settings.Theme.mighty": "Mighty",
"views.Settings.Theme.green": "Green",
"views.Settings.Theme.pub": "Pub",
"views.Settings.Theme.popsicle": "Popsicle",
"views.Settings.Theme.nostrich": "Nostrich",
"views.Settings.Theme.desert": "Desert",
"views.Settings.Theme.orange-cream-soda": "Orange Cream Soda",
"views.Settings.Theme.mint": "Mint",
"views.Settings.Theme.red-metallic": "Red Metallic",
"views.Settings.Theme.watermelon": "Watermelon",
"views.Settings.Theme.radioactive": "Radioactive",
"views.Settings.Display.title": "Display",
"views.Settings.Display.defaultView": "Default view",
"views.Settings.Display.DefaultView.balance": "Balance",
"views.Settings.Display.DefaultView.keypad": "Keypad",
"views.Settings.Display.displayNickname": "Display node nickname on main views",
"views.Settings.Display.bigKeypadButtons": "Big keypad buttons",
"views.Settings.Display.showAllDecimalPlaces": "Show all decimal places",
"views.Settings.Display.removeDecimalSpaces": "Remove decimal spaces from Bitcoin denominated amounts",
"views.Settings.Display.showMillisatoshiAmounts": "Show millisatoshi amounts",
"views.Settings.Display.selectNodeOnStartup": "Select node on startup",
"views.Settings.privacy": "Privacy",
"views.Settings.payments": "Payments",
"views.Settings.Privacy.title": "Privacy settings",
"views.Settings.Payments.title": "Payments settings",
"views.Settings.Payments.defaultFeeLimit": "Default Fee Limit",
"views.Settings.Payments.slideToPayThreshold": "Slide to Pay Threshold",
"views.Settings.Payments.timeoutSeconds": "Timeout (seconds)",
"views.Settings.Payments.preferredMempoolRate": "Preferred Mempool Rate",
"views.Settings.Payments.feeLimitMethodExplainer": "Fee limit method will default to fixed for amounts up to 1000 sats and percentage for amounts greater than 1000 sats. You'll be able to change which method and values to use though, under the Settings section of the Payment Request view.",
"views.Settings.Invoices.title": "Invoices settings",
"views.Settings.Invoices.showCustomPreimageField": "Show custom preimage field",
"views.Settings.Invoices.displayAmountOnInvoice": "Display requested amount on invoice",
"views.Settings.Channels.title": "Channels settings",
"views.Settings.Channels.lsps1ShowPurchaseButton": "Show channel purchase button",
"views.Settings.Privacy.blockExplorer": "Default Block explorer",
"views.Settings.Privacy.BlockExplorer.custom": "Custom",
"views.Settings.Privacy.customBlockExplorer": "Custom Block explorer",
"views.Settings.Privacy.lurkerMode": "Lurker mode",
"views.Settings.Privacy.lurkerMode.explainer1": "Lurker mode hides all sensitive values by changing them to ancient Greek characters.",
"views.Settings.Privacy.lurkerMode.explainer2": "This is a great way to demo the app to someone without revealing your sensitive information.",
"views.Settings.Privacy.lurkerMode.explainer3": "Long press any hidden value to temporarily reveal the actual data for a few seconds.",
"views.Settings.Privacy.clipboard": "Read clipboard",
"views.Settings.Privacy.clipboard.explainer": "If enabled, Zeus will read values copied to your clipboard and prompt you if they can be used in the app.",
"views.Settings.Privacy.enableMempoolRates": "Enable Mempool.space fee suggestions",
"views.Settings.SetPassword.title": "Set / Change Password",
"views.Settings.SetPassword.save": "Save",
"views.Settings.SetPassword.noMatch": "Passwords do not match",
"views.Settings.SetPassword.invalid": "Password and duress password cannot be the same",
"views.Settings.SetPassword.empty": "Password can not be empty",
"views.Settings.SetPassword.deletePassword": "Delete Password",
"views.Settings.SetDuressPassword.title": "Set / Change Duress Password",
"views.Settings.SetDuressPassword.deletePassword": "Delete Duress Password",
"views.Settings.SetDuressPassword.duressPasswordExplanation": "Once set, you can enter your duress password on the login screen to delete all of your wallet configurations.",
"views.Settings.SetPin.title": "Set / Change PIN",
"views.Settings.Security.BiometryRequiresPinOrPassword": "To enable biometric authentication, you need to set up a PIN or Password first as a backup method.",
"views.Settings.Security.FaceID.title": "FaceID",
"views.Settings.Security.TouchID.title": "TouchID",
"views.Settings.Security.Biometrics.title": "Biometrics",
"views.Settings.Security.Biometrics.prompt": "Unlock",
"views.Settings.Security.biometricsWillBeDisabled": "Deleting your PIN or Password will also disable biometric authentication.",
"views.Lockscreen.Biometrics.prompt": "Unlock Zeus",
"views.Settings.SetPin.noMatch": "PINs do not match. Please resubmit.",
"views.Settings.SetPin.invalid": "PIN and Duress PIN cannot be equal.",
"views.Settings.SetPin.createPin": "Create your PIN",
"views.Settings.SetPin.confirmPin": "Confirm your PIN",
"views.Settings.SetPin.scramblePin": "The order of numbers on the PIN Pad is randomized to prevent against attacks",
"views.Settings.SetDuressPin.title": "Set / Change Duress PIN",
"views.Settings.SetDuressPin.createDuressPin": "Create your Duress PIN",
"views.Settings.SetDuressPin.duressPinExplanation": "Once set, you can enter your duress PIN on the PIN login screen to delete all of your wallet configurations.",
"views.Settings.SetDuressPin.confirmDuressPin": "Confirm your Duress PIN",
"views.Settings.createConnectWallet": "Create or connect a wallet",
"views.Settings.Help.docs": "Zeus Documentation",
"views.Settings.Help.github": "GitHub Issues",
"views.Settings.Help.telegram": "Telegram (we will not DM you)",
"views.Settings.Help.email": "Email support",
"views.Settings.POS.enableSquare": "Enable Square POS integration",
"views.Settings.POS.enablePos": "Enable POS integration",
"views.Settings.POS.squareAccessToken": "Square Access token",
"views.Settings.POS.squareLocationId": "Square Location ID",
"views.Settings.POS.merchantName": "Merchant name (Optional, used for invoice memos)",
"views.Settings.POS.confPref": "Confirmation preference",
"views.Settings.POS.disableTips": "Disable tips",
"views.Settings.POS.taxPercentage": "Tax percentage",
"views.Settings.POS.devMode": "Developer mode",
"views.Settings.POS.showKeypad": "Show keypad",
"views.Settings.POS.enablePrinter": "Enable printer",
"views.Settings.POS.recon": "Reconciliation",
"views.Settings.POS.reconExport": "Reconciliation Export",
"views.Settings.POS.Categories": "Categories",
"views.Settings.POS.Category": "Product category",
"views.Settings.POS.Category.name": "Category",
"views.Settings.POS.Category.noCategoriesDefined": "No categories defined yet",
"views.Settings.POS.saveCategory": "Save category",
"views.Settings.POS.Products": "Products",
"views.Settings.POS.Keypad": "POS Keypad",
"views.Settings.POS.Product": "Product",
"views.Settings.POS.Product.name": "Product name",
"views.Settings.POS.Product.noProductsDefined": "No products defined yet",
"views.Settings.POS.Product.sku": "SKU",
"views.Settings.POS.Product.price": "Price",
"views.Settings.POS.saveProduct": "Save product",
"views.Settings.POS.deleteProduct": "Delete product",
"views.Settings.POS.confirmDelete": "Confirm delete",
"views.Settings.POS.standalone": "Standalone",
"views.Settings.POS.0conf": "0 confirmations",
"views.Settings.POS.1conf": "1 confirmation",
"views.Settings.POS.lnOnly": "Lightning only",
"views.Settings.Seed.title": "Back up wallet",
"views.Settings.Seed.text1": "The following 24 words are your wallet backup.",
"views.Settings.Seed.text2": "KEEP THEM SAFE as anyone who sees these words can steal your funds.",
"views.Settings.Seed.text3": "Beware of scams. Zeus support staff will never ask you for these words.",
"views.Settings.Seed.text4": "On the following screen, tap each pane to reveal the seed word.",
"views.Settings.Seed.backupComplete": "I've backed up my 24 words",
"views.Settings.Seed.dangerousText1": "Do you want to copy your 24 word seed to your clipboard?",
"views.Settings.Seed.dangerousText2": "This is DANGEROUS. Your seed may be read by other applications that you open. Proceed with caution.",
"views.Settings.Seed.dangerousButton": "Dangerously copy seed to clipboard",
"views.Settings.SeedRecovery.title": "Wallet recovery",
"views.Settings.SeedQRExport.title": "Export HD node root keys",
"views.Settings.SeedQRExport.pleaseWait": "Generating yprv and zprv. This will take just a few moments.",
"views.Settings.SeedQRExport.warning": "WARNING: DO NOT bump a channel opening transaction. This can cause you to lose funds!",
"views.Settings.EmbeddedNode.title": "Embedded node",
"views.Settings.EmbeddedNode.Pathfinding.title": "Pathfinding",
"views.Settings.EmbeddedNode.Peers.addPeer": "Add peer",
"views.Settings.EmbeddedNode.Peers.peersList": "Peers list",
"views.Settings.EmbeddedNode.NeutrinoPeers.title": "Neutrino Peers",
"views.Settings.EmbeddedNode.NeutrinoPeers.subtitle": "Set the peers you would like to download block headers from and broadcast transactions through.",
"views.Settings.EmbeddedNode.NeutrinoPeers.dontAllowOtherPeers": "Connect only to the specified peers",
"views.Settings.EmbeddedNode.NeutrinoPeers.dontAllowOtherPeers.subtitle": "Only connect to the peers specified. Enabling this may slow down block sync, but may be helpful if you're having issues broadcasting transactions.",
"views.Settings.EmbeddedNode.NeutrinoPeers.allowingOtherPeers": "Allowing connections to other peers.",
"views.Settings.EmbeddedNode.NeutrinoPeers.notAllowingOtherPeers": "Not allowing connections to other peers.",
"views.Settings.EmbeddedNode.NeutrinoPeers.timedOut": "Ping timed out",
"views.Settings.EmbeddedNode.NeutrinoPeers.optimize": "Optimize peers selection",
"views.Settings.EmbeddedNode.ZeroConfPeers.title": "Zero conf Peers",
"views.Settings.EmbeddedNode.ZeroConfPeers.subtitle": "Set the peers you would like to accept zero conf lightning channels from, other than the LSP.",
"views.Settings.EmbeddedNode.ExpressGraphSync.title": "Express Graph Sync",
"views.Settings.EmbeddedNode.expressGraphSync": "Enable express graph sync (EGS)",
"views.Settings.EmbeddedNode.expressGraphSync.subtitle": "Download Lightning network's gossip data on startup. This will make pathfinding when trying to make a payment much more reliable. Restart the app to take effect. Also known as Speedloader.",
"views.Settings.EmbeddedNode.resetExpressGraphSyncOnStartup": "Reset express graph sync on startup",
"views.Settings.EmbeddedNode.resetExpressGraphSyncOnStartup.subtitle": "Force a new download of the express graph sync data on startup.",
"views.Settings.EmbeddedNode.bimodalPathfinding": "Bimodal Pathfinding",
"views.Settings.EmbeddedNode.bimodalPathfinding.subtitle": "Use the bimodal probability estimator, instead of the default apriori estimator, when attempting to make payments. Restart the app to take effect.",
"views.Settings.EmbeddedNode.bimodal": "Bimodal",
"views.Settings.EmbeddedNode.apriori": "Apriori",
"views.Settings.EmbeddedNode.waitForGraphSync": "Wait for graph sync before paying",
"views.Settings.EmbeddedNode.waitForGraphSync.subtitle": "Waiting for the lightning network graph to sync will increase your probability of payment success.",
"views.Settings.EmbeddedNode.rescan": "Rescan wallet",
"views.Settings.EmbeddedNode.rescan.subtitle": "Rescan blockchain for your on-chain transactions. Restart the app to take effect. Will be unset upon completion.",
"views.Settings.EmbeddedNode.compactDb": "Compact databases",
"views.Settings.EmbeddedNode.compactDb.subtitle": "Whether the databases used within LND should automatically be compacted on startup. This is disabled by default because it increases startup time and requires additional disk space to be available during the compaction that is freed afterwards. In general compaction leads to smaller database files.",
"views.Settings.EmbeddedNode.stopLndDeleteNeutrino": "Stop LND and delete Neutrino files",
"views.Settings.EmbeddedNode.stopLndDeleteNeutrino.subtitle": "Upon restart, blockchain header sync will start from scratch and will take several minutes to complete.",
"views.Settings.EmbeddedNode.restoreChannelBackups": "Restore channel backups",
"views.Settings.EmbeddedNode.restoreChannelBackups.restore": "Restore",
"views.Settings.EmbeddedNode.restart": "Restart to take effect.",
"views.Settings.EmbeddedNode.embeddedTor.subtitle": "Run your LND node with Tor.",
"views.Settings.EmbeddedNode.embeddedTor.clearnetWarning": "Note that calls to rates and Mempool.space endpoints will still be made on clearnet.",
"views.Settings.EmbeddedNode.persistentMode": "Persistent LND",
"views.Settings.EmbeddedNode.persistentModeTor": "Persistent LND + Tor",
"views.Settings.EmbeddedNode.persistentMode.subtitle": "Continue to run LND in the background even when the app is closed.",
"views.Settings.EmbeddedNode.persistentMode.subtitleTor": "Continue to run LND and Tor in the background even when the app is closed.",
"views.Settings.EmbeddedNode.resetMissionControl": "Reset payment routing profile",
"views.Settings.EmbeddedNode.resetMissionControl.subtitle": "This will reset the mission control state. Can be helpful if you are having issues finding routes while making payments.",
"views.Settings.EmbeddedNode.DisasterRecovery.title": "Disaster recovery",
"views.Settings.EmbeddedNode.DisasterRecovery.automaticBackups": "Automatic backups",
"views.Settings.EmbeddedNode.DisasterRecovery.lastStatus": "Last backup status",
"views.Settings.EmbeddedNode.DisasterRecovery.lastTime": "Last backup time",
"views.Settings.EmbeddedNode.automaticDisasterRecoveryBackup": "Enable automatic backups",
"views.Settings.EmbeddedNode.automaticDisasterRecoveryBackup.subtitle": "Automatically create disaster recovery data and send it to the Olympus backup service. Disaster recovery data can help you recover your lightning funds in the event of a catastrophic failure.",
"views.Settings.EmbeddedNode.clipboardDisasterRecovery": "Export recovery data to clipboard",
"views.Settings.EmbeddedNode.clipboardDisasterRecovery.subtitle1": "This will copy your disaster recovery data to your clipboard. Provide the latest version of this string in the wallet recovery process to trigger a force closure of all your channels. The funds will return to your on-chain wallet.",
"views.Settings.EmbeddedNode.clipboardDisasterRecovery.subtitle2": "It's best practice to create new disaster recovery data after each new channel you open if you're not using automatic backups.",
"views.Settings.EmbeddedNode.exportDisasterRecoveryOlympus": "Back up recovery data to Olympus",
"views.Settings.EmbeddedNode.exportDisasterRecoveryOlympus.subtitle": "Manually back up recovery data to the Olympus backup service.",
"views.Settings.EmbeddedNode.initiateDisasterRecoveryOlympus": "Initiate disaster recovery from Olympus",
"views.Settings.EmbeddedNode.initiateDisasterRecoveryOlympus.subtitle1": "Manually download recovery data from the Olympus backup service and trigger a recovery.",
"views.Settings.EmbeddedNode.initiateDisasterRecoveryOlympus.subtitle2": "Note that this will close out all your channels and recover their balances to your on-chain wallet once settled.",
"views.Settings.EmbeddedNode.initiateAdvancedDisasterRecoveryOlympus": "Initiate advanced disaster recovery from Olympus",
"views.Settings.EmbeddedNode.initiateAdvancedDisasterRecoveryOlympus.subtitle": "Manually download older recovery data from the Olympus backup service and trigger a recovery.",
"views.Settings.EmbeddedNode.initiateDisasterRecoveryClipboard": "Initiate disaster recovery from clipboard",
"views.Settings.EmbeddedNode.initiateDisasterRecoveryClipboard.subtitle": "Manually restore recovery data from the clipboard.",
"views.Settings.EmbeddedNode.AdvancedDisasterRecovery.title": "Advanced disaster recovery",
"views.Settings.EmbeddedNode.AdvancedDisasterRecovery.startRecovery": "Start recovery",
"views.Settings.EmbeddedNode.AdvancedDisasterRecovery.select": "Select a backup below",
"views.Settings.EmbeddedNode.AdvancedDisasterRecovery.fetchFailure": "Failed to load backups. Please try again later.",
"views.Settings.EmbeddedNode.AdvancedDisasterRecovery.noBackups": "No backups found",
"views.Settings.EmbeddedNode.AdvancedRescan.title": "Advanced rescan",
"views.Settings.EmbeddedNode.AdvancedRescan.subtitle": "Kick off a rescan from a specific block height",
"views.Settings.EmbeddedNode.AdvancedRescan.start": "Start rescan",
"views.Settings.EmbeddedNode.LNDLogs.title": "LND Logs",
"views.Settings.EmbeddedNode.LNDLogs.copyLogs": "Copy logs to clipboard",
"views.Settings.EmbeddedNode.feeEstimator": "Fee estimator",
"views.Settings.EmbeddedNode.customFeeEstimator": "Custom fee estimator",
"views.Settings.EmbeddedNode.speedloader": "Express Graph Sync server",
"views.Settings.EmbeddedNode.customSpeedloader": "Custom Express Graph Sync server",
"views.Settings.EmbeddedNode.Troubleshooting.title": "Troubleshooting",
"views.Settings.LSP.enableLSP": "Enable Lightning Service Provider (LSP)",
"views.Settings.LSP.enableLSP.subtitle": "The LSP will get you connected to the Lightning network by opening up payment channels for you.",
"views.Settings.LSP.requestSimpleTaproot": "Request Simple Taproot Channels",
"views.Settings.LSP.toProceed": "To proceed with using the LSP, the following settings must be configured:",
"views.Settings.LSP.zeroConfChans": "Zero-conf channels",
"views.Settings.LSP.learn0confConfig": "Learn how to configure 0-conf channels and Alias SCIDs",
"views.Settings.LSP.enableCertificateVerification": "Enable certificate verification",
"views.Settings.LSP.flow2": "Flow 2.0 API and spec",
"views.Settings.LSP.createWrappedInvoice": "Create a wrapped invoice",
"views.Settings.AddContact.name": "Name",
"views.Settings.AddContact.description": "Description (max 120)",
"views.Settings.AddContact.lnAddress": "LN address",
"views.Settings.AddContact.onchainAddress": "Onchain address",
"views.Settings.AddContact.pubkey": "Public key",
"views.Settings.AddContact.nip05": "NIP-05",
"views.Settings.AddContact.nostrNpub": "Nostr npub",
"views.Settings.AddContact.addExtraField": "Add extra field",
"views.Settings.AddContact.saveContact": "Save Contact",
"views.Settings.AddContact.deleteContact": "Delete Contact",
"views.Settings.Contacts.multipleAddresses": "multiple addresses",
"views.Settings.Contacts.searchBar1": "Nostr npub, NIP-05, LN address, Onchain address",
"views.Settings.Contacts.searchBar2": "Search",
"views.Settings.Contacts.favorites": "Favorites",
"views.Settings.Contacts.contacts": "Contacts",
"views.Settings.Contacts.noContacts": "No Contacts",
"views.Settings.Contacts.noAddress": "No Address",
"views.Settings.Contacts.to": "To",
"views.Settings.Contacts.deleteAllContacts": "Delete all contacts",
"views.SetNodePicture.choosePicture": "Choose Picture",
"views.Transaction.title": "Transaction",
"views.Transaction.totalFees": "Total Fees",
"views.Transaction.transactionHash": "Transaction Hash",
"views.Transaction.blockHash": "Block Hash",
"views.Transaction.blockHeight": "Block Height",
"views.Transaction.numConf": "Number of Confirmations",
"views.Transaction.status": "Status",
"views.Transaction.timestamp": "Timestamp",
"views.Transaction.destAddress": "Destination Address",
"views.Transaction.destAddresses": "Destination Addresses",
"views.Transaction.rawTxHex": "Raw transaction hex",
"views.Transaction.copyRawTxHex": "Copy raw TX hex",
"views.Activity.noActivity": "No activity yet",
"views.Activity.expired": "Expired",
"views.Activity.youSent": "You sent",
"views.Activity.youReceived": "You received",
"views.Activity.youReceivedAmp": "You received (AMP)",
"views.Activity.requestedPayment": "Requested Payment",
"views.Activity.requestedPaymentAmp": "Requested Payment (AMP)",
"views.Activity.expiredRequested": "Expired Request",
"views.Activity.channelOperation": "Self send or Channel operation",
"views.ActivityFilter.title": "Filter Activity",
"views.ActivityFilter.set": "Set",
"views.ActivityFilter.edit": "Edit",
"views.ActivityFilter.startDate": "Start Date",
"views.ActivityFilter.endDate": "End Date",
"views.ActivityFilter.lightningPayments": "Lightning payments",
"views.ActivityFilter.onChainPayments": "On-chain payments",
"views.ActivityFilter.minimumAmount": "Minimum Amount (sats)",
"views.ActivityFilter.inTransit": "In transit payments",
"views.ActivityFilter.isFailed": "Failed payments",
"views.ActivityFilter.standardInvoices": "Standard invoices",
"views.ActivityFilter.ampInvoices": "AMP invoices",
"views.ActivityToCsv.title": "Download Activity",
"views.ActivityToCsv.csvDownloaded": "CSV file has been downloaded",
"views.ActivityToCsv.textInputPlaceholder": "File name (optional)",