forked from tmpim/KristWeb2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathen.json
1255 lines (1025 loc) · 50.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
{
"app": {
"name": "KristWeb"
},
"nav": {
"connection": {
"online": "Online",
"offline": "Offline",
"connecting": "Connecting"
},
"search": {
"placeholder": "Search the Krist network",
"placeholderShortcut": "Search the Krist network ({{shortcut}})",
"placeholderShort": "Search...",
"rateLimitHit": "Please slow down.",
"noResults": "No results.",
"resultAddress": "Address",
"resultName": "Name",
"resultNameOwner": "Owned by <1 />",
"resultBlockID": "Block ID",
"resultBlockIDMinedBy": "Mined by <1 />",
"resultTransactionID": "Transaction ID",
"resultTransactions": "Transactions",
"resultTransactionsAddress": "Search for transactions involving <1 />",
"resultTransactionsAddressResult": "<0>{{count, number}}</0> transaction involving <2 />",
"resultTransactionsAddressResult_plural": "<0>{{count, number}}</0> transactions involving <2 />",
"resultTransactionsAddressResultEmpty": "No transactions involving <1 />",
"resultTransactionsName": "Search for transactions involving <1 />",
"resultTransactionsNameResult": "<0>{{count, number}}</0> transaction sent to <2 />",
"resultTransactionsNameResult_plural": "<0>{{count, number}}</0> transactions sent to <2 />",
"resultTransactionsNameResultEmpty": "No transactions sent to <1 />",
"resultTransactionsMetadata": "Searching for metadata containing <1 />",
"resultTransactionsMetadataResult": "<0>{{count, number}}</0> transaction with metadata containing <2 />",
"resultTransactionsMetadataResult_plural": "<0>{{count, number}}</0> transactions with metadata containing <2 />",
"resultTransactionsMetadataResultEmpty": "No transactions with metadata containing <1 />"
},
"send": "Send",
"sendLong": "Send Krist",
"request": "Request",
"requestLong": "Request Krist",
"sort": "Sort results",
"settings": "Settings",
"more": "More"
},
"sidebar": {
"totalBalance": "Total Balance",
"dashboard": "Dashboard",
"myWallets": "My Wallets",
"addressBook": "Address Book",
"myTransactions": "My Transactions",
"myNames": "My Names",
"allTransactions": "All Transactions",
"allNames": "All Names",
"mining": "Mining",
"blocks": "Blocks",
"personal": "Personal",
"global": "Global",
"statistics": "Statistics",
"madeBy": "Made by <1>{{authorName}}</1>",
"hostedBy": "Hosted by <1>{{host}}</1>",
"github": "GitHub",
"credits": "Credits",
"whatsNew": "What's new",
"updateTitle": "Update available!",
"updateDescription": "A new version of KristWeb is available. Please reload.",
"updateReload": "Reload"
},
"dialog": {
"close": "Close",
"yes": "Yes",
"no": "No",
"ok": "OK",
"cancel": "Cancel"
},
"pagination": {
"justPage": "Page {{page}}",
"pageWithTotal": "Page {{page}} of {{total}}"
},
"error": "Error",
"errorBoundary": {
"title": "Critical error",
"description": "A critical error has occurred in KristWeb, so this page was terminated. See console for details.",
"sentryNote": "This error was automatically reported."
},
"errorReported": "An error was automatically reported. See console for details.",
"loading": "Loading...",
"copy": "Copy to clipboard",
"copied": "Copied!",
"pageNotFound": {
"resultTitle": "Page not found",
"nyiTitle": "Not yet implemented",
"nyiSubTitle": "This feature will be coming soon!",
"buttonGoBack": "Go back"
},
"contextualAddressUnknown": "Unknown",
"contextualAddressNonExistentTooltip": "This address has not yet been initialised on the Krist network.",
"contextualAddressNonExistentTooltip2": "This address has no transaction history yet.",
"typeahead": {
"emptyLabel": "No matches found.",
"paginationText": "Display additional results..."
},
"masterPassword": {
"dialogTitle": "Master password",
"passwordPlaceholder": "Master password",
"passwordConfirmPlaceholder": "Confirm master password",
"createPassword": "Create password",
"logIn": "Log in",
"forgotPassword": "Forgot password?",
"intro2": "Enter a <1>master password</1> to encrypt your wallet private keys. They will be saved in your browser's local storage, and you will be asked for the master password to decrypt them once per session.",
"learnMore": "learn more",
"errorPasswordRequired": "Password is required.",
"errorPasswordLength": "Must be at least 1 character.",
"errorPasswordUnset": "Master password has not been set up.",
"errorPasswordIncorrect": "Incorrect password.",
"errorPasswordInequal": "Passwords must match.",
"errorStorageCorrupt": "Wallet storage is corrupted.",
"errorNoPassword": "Master password is required.",
"errorUnknown": "Unknown error.",
"helpWalletStorageTitle": "Help: Wallet storage",
"popoverTitle": "Decrypt wallets",
"popoverTitleEncrypt": "Encrypt wallets",
"popoverAuthoriseButton": "Authorise",
"popoverDescription": "Enter your master password to decrypt your wallets.",
"popoverDescriptionEncrypt": "Enter your master password to encrypt and decrypt your wallets.",
"forcedAuthWarning": "You were automatically logged in by an insecure debug setting.",
"earlyAuthError": "The app has not loaded fully yet, please try again.",
"reset": {
"modalTitle": "Reset master password",
"description": "Are you sure you want to reset your master password? <strong>All your wallets will be deleted.</strong> Make sure to <3>export a backup</3> first!",
"buttonConfirm": "Reset & delete",
"modalTitle2": "DELETE ALL WALLETS",
"description2": "Are you REALLY sure you want to <strong>DELETE ALL YOUR WALLETS</strong>?",
"buttonConfirm2": "Yes, I'm sure [{{n}}]",
"buttonConfirmFinal": "Yes, I'm sure!"
},
"change": {
"modalTitle": "Change master password"
}
},
"myWallets": {
"title": "Wallets",
"manageBackups": "Manage backups",
"importBackup": "Import wallets",
"exportBackup": "Export wallets",
"createWallet": "Create wallet",
"addExistingWallet": "Add existing wallet",
"searchPlaceholder": "Search wallets...",
"categoryDropdownAll": "All categories",
"columnLabel": "Label",
"columnAddress": "Address",
"columnBalance": "Balance",
"columnNames": "Names",
"columnCategory": "Category",
"columnFirstSeen": "First Seen",
"nameCount": "{{count, number}} name",
"nameCount_plural": "{{count, number}} names",
"nameCountEmpty": "No names",
"firstSeen": "First seen {{date}}",
"firstSeenMobile": "First seen: <1 />",
"walletCount": "{{count, number}} wallet",
"walletCount_plural": "{{count, number}} wallets",
"walletCountEmpty": "No wallets",
"noWalletsHint": "No wallets yet",
"noWalletsText": "Add or create a wallet by clicking the <1 /> menu in the top right!",
"actionsViewAddress": "View address",
"actionsEditTooltip": "Edit wallet",
"actionsSendTransaction": "Send Krist",
"actionsWalletInfo": "Wallet info",
"actionsWalletForceCreate": "Force create",
"actionsDelete": "Delete wallet",
"actionsDeleteConfirm": "Are you sure you want to delete this wallet?",
"actionsDeleteConfirmDescription": "If you haven't backed it up or saved its password, it will be lost forever!",
"tagDontSave": "Temp",
"tagDontSaveTooltip": "Temporary wallet",
"info": {
"title": "Wallet info - {{address}}",
"titleBasicInfo": "Basic info",
"id": "ID",
"label": "Label",
"category": "Category",
"username": "Username",
"password": "Password",
"privatekey": "Private key",
"format": "Format",
"titleSyncedInfo": "Synced info",
"address": "Address",
"balance": "Balance",
"names": "Name count",
"firstSeen": "First seen",
"existsOnNetwork": "Exists on network",
"lastSynced": "Last synced",
"titleAdvancedInfo": "Advanced info",
"encPassword": "Encrypted password",
"encPrivatekey": "Encrypted private key",
"saved": "Saved",
"revealLink": "Reveal",
"hideLink": "Hide",
"true": "True",
"false": "False"
},
"login": {
"appMasterPasswordRequired": "You must be authenticated to force create wallets.",
"errorAuthFailed": "Could not force create the address.",
"errorWalletDecrypt": "Your wallet could not be decrypted."
}
},
"addressBook": {
"title": "Address Book",
"contactCount": "{{count, number}} contact",
"contactCount_plural": "{{count, number}} contacts",
"contactCountEmpty": "No contacts",
"buttonAddContact": "Add contact",
"columnLabel": "Label",
"columnAddress": "Address",
"actionsViewAddress": "View address",
"actionsViewName": "View name",
"actionsEditTooltip": "Edit contact",
"actionsSendTransaction": "Send Krist",
"actionsDelete": "Delete contact",
"actionsDeleteConfirm": "Are you sure you want to delete this contact?"
},
"myTransactions": {
"title": "Transactions",
"searchPlaceholder": "Search transactions...",
"columnFrom": "From",
"columnTo": "To",
"columnValue": "Value",
"columnTime": "Time"
},
"addWallet": {
"dialogTitle": "Add wallet",
"dialogTitleCreate": "Create wallet",
"dialogTitleEdit": "Edit wallet",
"dialogOkAdd": "Add",
"dialogOkCreate": "Create",
"dialogOkEdit": "Save",
"dialogAddExisting": "Add existing wallet",
"walletLabel": "Wallet label",
"walletLabelPlaceholder": "Wallet label (optional)",
"walletLabelMaxLengthError": "No longer than 32 characters",
"walletLabelWhitespaceError": "Must not be only spaces",
"walletCategory": "Wallet category",
"walletCategoryDropdownNone": "No category",
"walletCategoryDropdownNew": "New",
"walletCategoryDropdownNewPlaceholder": "Category name",
"walletAddress": "Wallet address",
"walletUsername": "Wallet username",
"walletUsernamePlaceholder": "Wallet username",
"walletPassword": "Wallet password",
"walletPasswordPlaceholder": "Wallet password",
"walletPasswordWarning": "Make sure to save this somewhere <1>secure</1>!",
"walletPasswordRegenerate": "Regenerate",
"walletPrivatekey": "Wallet private key",
"walletPrivatekeyPlaceholder": "Wallet private key",
"advancedOptions": "Advanced options",
"walletFormat": "Wallet format",
"walletFormatKristWallet": "KristWallet, KWallet (recommended)",
"walletFormatKristWalletUsernameAppendhashes": "KW-Username (appendhashes)",
"walletFormatKristWalletUsername": "KW-Username (pre-appendhashes)",
"walletFormatJwalelset": "jwalelset",
"walletFormatApi": "Raw/API (advanced users)",
"walletSave": "Save this wallet in KristWeb",
"messageSuccessAdd": "Added wallet successfully!",
"messageSuccessCreate": "Created wallet successfully!",
"messageSuccessEdit": "Saved wallet successfully!",
"errorPasswordRequired": "Password is required.",
"errorPrivatekeyRequired": "Private key is required.",
"errorUnexpectedTitle": "Unexpected error",
"errorUnexpectedDescription": "There was an error while adding the wallet. See console for details.",
"errorUnexpectedEditDescription": "There was an error while editing the wallet. See console for details.",
"errorDuplicateWalletTitle": "Wallet already exists",
"errorDuplicateWalletDescription": "You already have a wallet for that address.",
"errorMissingWalletTitle": "Wallet not found",
"errorMissingWalletDescription": "The wallet you are trying to edit no longer exists.",
"errorDecryptTitle": "Incorrect master password",
"errorDecryptDescription": "Failed to decrypt the wallet password. Is the master password correct?",
"errorWalletLimitTitle": "Wallet limit reached",
"errorWalletLimitDescription": "You currently cannot add any more wallets."
},
"addContact": {
"modalTitle": "Add contact",
"modalTitleEdit": "Edit contact",
"buttonSubmit": "Add",
"buttonSubmitEdit": "Save",
"contactLabel": "Label",
"contactLabelPlaceholder": "Contact label (optional)",
"contactLabelMaxLengthError": "No longer than 32 characters",
"contactLabelWhitespaceError": "Must not be only spaces",
"contactAddressLabel": "Address or name",
"messageSuccessAdd": "Added contact successfully!",
"messageSuccessEdit": "Saved contact successfully!",
"errorDuplicateContactTitle": "Contact already exists",
"errorDuplicateContactDescription": "You already have a contact for that address.",
"errorMissingContactTitle": "Contact not found",
"errorMissingContactDescription": "The contact you are trying to edit no longer exists.",
"errorContactLimitTitle": "Contact limit reached",
"errorContactLimitDescription": "You currently cannot add any more contacts."
},
"dashboard": {
"siteTitle": "Dashboard",
"inDevBanner": "Welcome to the KristWeb v2 private beta! This site is still in development, so most features are currently missing. Please report all bugs on <1>GitHub</1>. Thanks!",
"inDevBanner2": "Welcome to the KristWeb v2 public beta! This site is relatively new, so please report any bugs on <1>GitHub</1>. Thanks!",
"walletOverviewCardTitle": "Wallets",
"walletOverviewTotalBalance": "Total balance",
"walletOverviewNames": "Names",
"walletOverviewNamesCount": "{{count, number}} name",
"walletOverviewNamesCount_plural": "{{count, number}} names",
"walletOverviewNamesCountEmpty": "No names",
"walletOverviewSeeMore": "See all {{count, number}}...",
"walletOverviewAddWallets": "Add wallets...",
"transactionsCardTitle": "Transactions",
"transactionsError": "There was an error fetching your transactions. See the console for details.",
"blockValueCardTitle": "Block value",
"blockValueBaseValue": "Base value (<1></1>)",
"blockValueBaseValueNames": "{{count, number}} name",
"blockValueBaseValueNames_plural": "{{count, number}} names",
"blockValueNextDecrease": "Decreases by <1></1> in <3>{{count, number}} block</3>",
"blockValueNextDecrease_plural": "Decreases by <1></1> in <3>{{count, number}} blocks</3>",
"blockValueReset": "Resets in <1>{{count, number}} block</1>",
"blockValueReset_plural": "Resets in <1>{{count, number}} blocks</1>",
"blockValueEmptyDescription": "The block value increases when <1>names</1> are purchased.",
"blockDifficultyCardTitle": "Block difficulty",
"blockDifficultyError": "There was an error fetching the block difficulty. See the console for details.",
"blockDifficultyHashRate": "Approx. <1 />",
"blockDifficultyHashRateTooltip": "Estimated combined network mining hash rate, based on the current work.",
"blockDifficultyChartWork": "Block Difficulty",
"blockDifficultyChartLinear": "Linear",
"blockDifficultyChartLog": "Logarithmic",
"motdCardTitle": "Server MOTD",
"motdDebugMode": "This server is an unofficial development server. Balances and transactions can be manipulated. Proceed with caution.",
"whatsNewCardTitle": "What's new",
"whatsNewButton": "What's new",
"tipsCardTitle": "Tip of the day",
"tipsPrevious": "Prev",
"tipsNext": "Next",
"tips": {
"0": "Check out what's new in Krist and KristWeb on the [What's New page](/whatsnew)!",
"1": "You can quickly navigate through tables with the arrow keys on desktop.",
"2": "You can click on table headers to sort them.",
"3": "You can filter by categories in the [My Wallets](/wallets) page by clicking the filter icon in the table header.",
"4": "The [settings page](/settings) has many advanced options to personalise your KristWeb experience.",
"5": "Generate pre-filled transaction links with the new [Request page](/request).",
"6": "Be sure to backup [your wallets](/wallets)!",
"7": "Quickly search the Krist network with the keyboard shortcut Ctrl+K (Cmd+K on macOS).",
"8": "Add contacts in the [address book](/contacts) to quickly send them transactions.",
"9": "A 'bumped' transaction is a transaction sent to and from the same address.",
"10": "The 'block difficulty' chart can be shown with a logarithmic scale to see small changes easier at lower difficulties.",
"1-status": "You are connected to an unofficial server. Your wallet passwords may be sent to the operator, who can use them to access your wallets on the official server. Please ask a question <1>here</1> for more information.",
"11": "The date format can be changed in the [advanced settings](/settings).",
"12": "You can see the [lowest mined block hashes](/network/blocks/lowest).",
"13": "The most recently purchased names can be seen on the [Network Names page](/network/names/new).",
"14": "The block value increases when [names](/network/names) are purchased.",
"15": "If you're worried about accidental transactions, you can enable a confirmation prompt in the [advanced settings](/settings)."
}
},
"credits": {
"title": "Credits",
"madeBy": "Made by <1>{{authorName}}</1>",
"hostedBy": "Hosted by <1>{{host}}</1>",
"supportersTitle": "Supporters",
"supportersDescription": "This project was made possible by the following amazing supporters:",
"supportButton": "Support KristWeb",
"translatorsTitle": "Translators",
"translatorsDescription": "This project was translated by the following amazing contributors:",
"translateButton": "Translate KristWeb",
"tmpim": "Created by tmpim",
"versionInfo": {
"version": "Version",
"commitHash": "Commit",
"buildTime": "Build time",
"variant": "Build variant",
"license": "License"
},
"privacyTitle": "Privacy",
"privacy": {
"kristServer": "Krist Server",
"kristServerDesc": "The only PII that the <1>Krist Server</1> stores is your IP address, User-Agent and Origin, as part of the webserver logs. This information is automatically purged after 30 days.",
"kristweb": "KristWeb",
"kristwebDesc1": "KristWeb uses a self-hosted <1>Sentry</1> server for automatic error reporting. This system stores your IP address, User-Agent, Origin, breadcrumbs, and the details for any errors that get automatically reported. This information is automatically purged after 30 days.",
"kristwebDesc2": "If you have an ad-blocking or tracker-blocking extension such as <1>uBlock Origin</1> <strong>(recommended)</strong>, our Sentry system is already blocked by the built-in lists, so you do not have to worry about your privacy. You can also opt-out of error reporting in the <4>settings page</4>. That said, if you’d like to help us by providing more detailed error reports, then please consider making an exception for KristWeb in your tracker blocker software. This site does not serve ads.",
"kristwebDesc3": "If you have any questions or concerns, please contact the developers."
}
},
"settings": {
"siteTitle": "Settings",
"title": "Settings",
"messageSuccess": "Setting changed successfully!",
"settingIntegerSave": "Save",
"menuLanguage": "Language",
"subMenuBackups": "Manage backups",
"importBackup": "Import wallets",
"exportBackup": "Export wallets",
"subMenuMasterPassword": "Master password",
"changeMasterPassword": "Change master password",
"resetMasterPassword": "Reset master password",
"subMenuAutoRefresh": "Auto-refresh",
"autoRefreshTables": "Auto-refresh tables",
"autoRefreshTablesDescription": "Whether or not large table listings (e.g. transactions, names) should automatically refresh when a change is detected on the network.",
"autoRefreshAddressPage": "Auto-refresh address page",
"autoRefreshNamePage": "Auto-refresh name page",
"subMenuAdvanced": "Advanced settings",
"alwaysIncludeMined": "Always include mined transactions in transaction listings (may require refresh)",
"copyNameSuffixes": "Include suffix when copying names",
"addressCopyButtons": "Show copy buttons next to all addresses",
"nameCopyButtons": "Show copy buttons next to all names",
"blockHashCopyButtons": "Show copy buttons next to all block hashes",
"showRelativeDates": "Show relative dates instead of absolute ones if recent",
"showRelativeDatesDescription": "Everywhere on the site, if a date is less than 7 days ago, it will show as a relative date instead.",
"showNativeDates": "Show dates in a native date format from the language",
"showNativeDatesDescription": "If disabled, dates will always be shown as YYYY/MM/DD HH:mm:ss",
"transactionsHighlightOwn": "Highlight own transactions in the transactions table",
"transactionsHighlightVerified": "Highlight verified addresses in the transactions table",
"transactionDefaultRaw": "Default to the 'Raw' tab instead of 'CommonMeta' on the transaction page",
"confirmTransactions": "Prompt for confirmation for all transactions",
"clearTransactionForm": "Clear the Send Transaction form after clicking 'Send'",
"sendTransactionDelay": "Time to wait, in milliseconds, before allowing another transaction to be sent",
"defaultPageSize": "Default page size for table listings",
"tableHotkeys": "Enable table navigation hotkeys (left and right arrows)",
"subMenuPrivacy": "Privacy",
"privacyInfo": "Privacy information",
"errorReporting": "Enable automatic error reporting (requires refresh)",
"messageOnErrorReport": "Show a notification when an error is automatically reported (requires refresh)",
"subMenuDebug": "Debug settings",
"advancedWalletFormats": "Advanced wallet formats",
"menuTranslations": "Translations",
"subTitleTranslations": "Translations",
"translations": {
"errorMissingLanguages": "The languages.json file seems to be missing. Was KristWeb compiled correctly?",
"errorNoKeys": "No translation keys",
"columnLanguageCode": "Code",
"columnLanguage": "Language",
"columnKeys": "Keys",
"columnMissingKeys": "Missing keys",
"columnProgress": "Progress",
"tableUntranslatedKeys": "Untranslated keys",
"columnKey": "Key",
"columnEnglishString": "English string",
"importJSON": "Import JSON",
"exportCSV": "Export CSV",
"importedLanguageTitle": "Imported language"
}
},
"breadcrumb": {
"dashboard": "Dashboard",
"wallets": "Wallets",
"settings": "Settings",
"settingsDebug": "Debug",
"settingsTranslations": "Translations"
},
"ws": {
"errorToken": "There was an error connecting to the Krist websocket server.",
"errorWS": "There was an error connecting to the Krist websocket server (code <1>{{code}}</1>)."
},
"rateLimitTitle": "Rate limit hit",
"rateLimitDescription": "Too many requests were sent to the Krist server in a short period of time. This is probably caused by a bug!",
"address": {
"title": "Address",
"walletLabel": "Label:",
"walletCategory": "Category:",
"contactLabel": "Contact:",
"balance": "Current balance",
"names": "Names",
"nameCount": "{{count, number}} name",
"nameCount_plural": "{{count, number}} names",
"nameCountEmpty": "No names",
"firstSeen": "First seen",
"buttonSendKrist": "Send Krist to {{address}}",
"buttonTransferKrist": "Transfer Krist to {{address}}",
"buttonAddContact": "Add to address book",
"buttonEditContact": "Edit contact",
"buttonEditWallet": "Edit wallet",
"tooltipV1Address": "Transactions cannot be sent to v1 addresses, as they have been deprecated.",
"cardRecentTransactionsTitle": "Recent transactions",
"cardNamesTitle": "Names",
"transactionsError": "There was an error fetching the transactions. See the console for details.",
"namesError": "There was an error fetching the names. See the console for details.",
"namePurchased": "Purchased <1 />",
"nameReceived": "Received <1 />",
"namesSeeMore": "See all {{count, number}}...",
"resultInvalidTitle": "Invalid address",
"resultInvalid": "That does not look like a valid Krist address.",
"resultNotFoundTitle": "Address not found",
"resultNotFound": "That address has not yet been initialised on the Krist network.",
"resultNotFound2": "That address has no transaction history yet.",
"verifiedCardTitle": "Verified address",
"verifiedInactive": "This service is not currently active.",
"verifiedWebsiteButton": "Visit website"
},
"transactionSummary": {
"itemID": "Transaction ID: {{id}}",
"itemFrom": "<0>From:</0> <1 />",
"itemTo": "<0>To:</0> <1 />",
"itemName": "<0>Name:</0> <1 />",
"itemData": "<0>Data:</0> <1 />",
"itemDataRemoved": "(removed)",
"seeMore": "See all {{count, number}}..."
},
"transactions": {
"myTransactionsTitle": "My Transactions",
"globalTransactionsTitle": "Global Transactions",
"nameHistoryTitle": "Name History",
"nameTransactionsTitle": "Name Transactions",
"searchTitle": "Transaction Search",
"siteTitleWallets": "My Transactions",
"siteTitleNetworkGlobal": "Global Transactions",
"siteTitleNetworkAddress": "{{address}}'s Transactions",
"siteTitleNameHistory": "Name History",
"siteTitleNameSent": "Name Transactions",
"siteTitleSearch": "Transaction Search",
"subTitleSearchAddress": "Involving {{address}}",
"subTitleSearchName": "Involving {{name}}",
"subTitleSearchMetadata": "With metadata '{{query}}'",
"columnID": "ID",
"columnType": "Type",
"columnFrom": "From",
"columnTo": "To",
"columnValue": "Value",
"columnName": "Name",
"columnMetadata": "Metadata",
"columnTime": "Time",
"tableTotal": "{{count, number}} item",
"tableTotal_plural": "{{count, number}} items",
"tableTotalEmpty": "No items",
"includeMined": "Include mined transactions",
"resultInvalidTitle": "Invalid address",
"resultInvalid": "That does not look like a valid Krist address.",
"types": {
"transferred": "Transferred",
"sent": "Sent",
"received": "Received",
"mined": "Mined",
"name_a_record": "Updated name",
"name_transferred": "Moved name",
"name_sent": "Sent name",
"name_received": "Received name",
"name_purchased": "Purchased name",
"bumped": "Bumped",
"unknown": "Unknown"
}
},
"names": {
"titleWallets": "My Names",
"titleNetworkGlobal": "Global Names",
"siteTitleWallets": "My Names",
"siteTitleNetworkGlobal": "Global Names",
"siteTitleNetworkAddress": "{{address}}'s Names",
"columnName": "Name",
"columnOwner": "Owner",
"columnOriginalOwner": "Original Owner",
"columnRegistered": "Registered",
"columnUpdated": "Updated",
"columnTransferred": "Transferred",
"columnData": "Data",
"columnUnpaid": "Unpaid Blocks",
"rowNew": "New!",
"mobileOwner": "<0>Owner:</0> <1 />",
"mobileOriginalOwner": "<0>Original owner:</0> <1 />",
"mobileRegistered": "Registered: <1 />",
"mobileUpdated": "Updated: <1 />",
"mobileDataTag": "Data",
"mobileUnpaidTag": "{{count, number}} block",
"mobileUnpaidTag_plural": "{{count, number}} blocks",
"actions": "Actions",
"actionsViewName": "View name",
"actionsViewOwner": "View owner's address",
"actionsViewOriginalOwner": "View original owner's address",
"actionsSendKrist": "Send Krist",
"actionsTransferKrist": "Transfer Krist",
"actionsUpdateData": "Update data",
"actionsTransferName": "Transfer name",
"tableTotal": "{{count, number}} name",
"tableTotal_plural": "{{count, number}} names",
"tableTotalEmpty": "No names",
"resultInvalidTitle": "Invalid address",
"resultInvalid": "That does not look like a valid Krist address.",
"purchaseButton": "Purchase name"
},
"name": {
"title": "Name",
"buttonSendKrist": "Send Krist to {{name}}",
"buttonTransferKrist": "Transfer Krist to {{name}}",
"buttonData": "Update data",
"buttonTransferName": "Transfer name",
"owner": "Owned by",
"originalOwner": "Purchased by",
"registered": "Registered",
"updated": "Last updated",
"transferred": "Last transferred",
"unpaid": "Unpaid blocks",
"unpaidCount": "{{count, number}} block",
"unpaidCount_plural": "{{count, number}} blocks",
"data": "Data",
"dataEditTooltip": "Update data",
"cardRecentTransactionsTitle": "Recent transactions",
"cardHistoryTitle": "Name history",
"transactionsError": "There was an error fetching the transactions. See the console for details.",
"historyError": "There was an error fetching the name history. See the console for details.",
"resultInvalidTitle": "Invalid name",
"resultInvalid": "That does not look like a valid Krist name.",
"resultNotFoundTitle": "Name not found",
"resultNotFound": "That name does not exist."
},
"blocks": {
"title": "Network Blocks",
"titleLowest": "Lowest Blocks",
"siteTitle": "Network Blocks",
"siteTitleLowest": "Lowest Blocks",
"columnHeight": "Height",
"columnAddress": "Miner",
"columnHash": "Block Hash",
"columnValue": "Value",
"columnDifficulty": "Difficulty",
"columnTime": "Time",
"mobileHeight": "Block #{{height, number}}",
"mobileMiner": "<0>Miner: </0> <1 />",
"mobileHash": "<0>Hash: </0> <1 />",
"mobileDifficulty": "<0>Difficulty: </0> <1 />",
"tableTotal": "{{count, number}} block",
"tableTotal_plural": "{{count, number}} blocks",
"tableTotalEmpty": "No blocks"
},
"block": {
"title": "Block",
"siteTitle": "Block",
"siteTitleBlock": "Block #{{id, number}}",
"subTitleBlock": "#{{id, number}}",
"height": "Height",
"miner": "Miner",
"value": "Value",
"time": "Time",
"hash": "Hash",
"difficulty": "Difficulty",
"previous": "Prev",
"previousTooltip": "Previous block (#{{id, number}})",
"previousTooltipNone": "Previous block",
"next": "Next",
"nextTooltip": "Next block (#{{id, number}})",
"nextTooltipNone": "Next block",
"resultInvalidTitle": "Invalid block height",
"resultInvalid": "That does not look like a valid block height.",
"resultNotFoundTitle": "Block not found",
"resultNotFound": "That block does not exist."
},
"transaction": {
"title": "Transaction",
"siteTitle": "Transaction",
"siteTitleTransaction": "Transaction #{{id, number}}",
"subTitleTransaction": "#{{id, number}}",
"type": "Type",
"from": "From",
"to": "To",
"address": "Address",
"name": "Name",
"value": "Value",
"time": "Time",
"data": "Data",
"cardMetadataTitle": "Metadata",
"tabCommonMeta": "CommonMeta",
"tabRaw": "Raw",
"commonMetaError": "CommonMeta parsing failed.",
"commonMetaParsed": "Parsed records",
"commonMetaParsedHelp": "These values were not directly contained in the transaction metadata, but they were inferred by the CommonMeta parser.",
"commonMetaCustom": "Transaction records",
"commonMetaCustomHelp": "These values were directly contained in the transaction metadata.",
"commonMetaColumnKey": "Key",
"commonMetaColumnValue": "Value",
"cardRawDataTitle": "Raw data",
"cardRawDataHelp": "The transaction exactly as it was returned by the Krist API.",
"rawDataColumnKey": "Key",
"rawDataColumnValue": "Value",
"resultInvalidTitle": "Invalid transaction ID",
"resultInvalid": "That does not look like a valid transaction ID.",
"resultNotFoundTitle": "Transaction not found",
"resultNotFound": "That transaction does not exist."
},
"apiErrorResult": {
"resultUnknownTitle": "Unknown error",
"resultUnknown": "See console for details."
},
"noWalletsResult": {
"title": "No wallets yet",
"subTitle": "You currently have no wallets saved in KristWeb, so there is nothing to see here yet. Would you like to add a wallet?",
"subTitleSendTransaction": "You currently have no wallets saved in KristWeb, so you can't make a transaction yet. Would you like to add a wallet?",
"button": "Add wallets",
"buttonNetworkTransactions": "Network transactions",
"buttonNetworkNames": "Network names"
},
"backups": {
"importButton": "Import backup",
"exportButton": "Export backup"
},
"import": {
"description": "Paste the backup code (or import from a file below) and enter the corresponding master password. Backups from KristWeb v1 are also supported.",
"masterPasswordPlaceholder": "Master password",
"masterPasswordRequired": "Master password is required.",
"masterPasswordIncorrect": "Master password is incorrect.",
"appMasterPasswordRequired": "You must be authenticated to import wallets.",
"fromFileButton": "Import from file",
"textareaPlaceholder": "Paste backup code here",
"textareaRequired": "Backup code is required.",
"fileErrorTitle": "Import error",
"fileErrorNotText": "The imported file must be a text file.",
"overwriteCheckboxLabel": "Update existing wallet labels if there are conflicts",
"modalTitle": "Import backup",
"modalButton": "Import",
"detectedFormat": "<0>Detected format:</0> <2 />",
"detectedFormatKristWebV1": "KristWeb v1",
"detectedFormatKristWebV2": "KristWeb v2",
"detectedFormatInvalid": "Invalid!",
"progress": "Importing <1>{{count, number}}</1> item...",
"progress_plural": "Importing <1>{{count, number}}</1> items...",
"decodeErrors": {
"atob": "The backup could not be decoded as it is not valid base64!",
"json": "The backup could not be decoded as it is not valid JSON!",
"missingTester": "The backup could not be decoded as it is missing a 'tester' key!",
"missingSalt": "The backup could not be decoded as it is missing a 'salt' key!",
"invalidTester": "The backup could not be decoded as the 'tester' key is the wrong type!",
"invalidSalt": "The backup could not be decoded as the 'salt' key is the wrong type!",
"invalidWallets": "The backup could not be decoded as the 'wallets' key is the wrong type!",
"invalidFriends": "The backup could not be decoded as the 'friends' key is the wrong type!",
"invalidContacts": "The backup could not be decoded as the 'contacts' key is the wrong type!",
"unknown": "The backup could not be decoded due to an unknown error. See console for details."
},
"walletMessages": {
"success": "Wallet imported successfully.",
"successSkipped": "A wallet with the same address ({{address}}) and settings already exists, so it was skipped.",
"successUpdated": "A wallet with the same address ({{address}}) already exists. Its label was updated to \"{{label}}\"",
"successSkippedNoOverwrite": "A wallet with the same address ({{address}}) already exists, and you chose not to overwrite the label, so it was skipped.",
"successImportSkipped": "A wallet with the same address ({{address}}) was already imported, so it was skipped.",
"warningSyncNode": "This wallet had a custom sync node, which is not supported in KristWeb v2. The sync node was skipped.",
"warningIcon": "This wallet had a custom icon, which is not supported in KristWeb v2. The icon was skipped.",
"warningLabelInvalid": "The label for this wallet was invalid. The label was skipped.",
"warningCategoryInvalid": "The category for this wallet was invalid. The category was skipped.",
"warningAdvancedFormat": "This wallet uses an advanced format ({{format}}), which has limited support in KristWeb v2.",
"errorInvalidTypeString": "This wallet was not a string!",
"errorInvalidTypeObject": "This wallet was not an object!",
"errorDecrypt": "This wallet could not be decrypted!",
"errorPasswordDecrypt": "The password for this wallet could not be decrypted!",
"errorDataJSON": "The decrypted data was not valid JSON!",
"errorUnknownFormat": "This wallet uses an unknown or unsupported format!",
"errorFormatMissing": "This wallet is missing a format!",
"errorUsernameMissing": "This wallet is missing a username!",
"errorPasswordMissing": "This wallet is missing a password!",
"errorPrivateKeyMissing": "This wallet is missing a private key!",
"errorMasterKeyMissing": "This wallet is missing a master key!",
"errorPrivateKeyMismatch": "This wallet's password did not map to its stored private key!",
"errorMasterKeyMismatch": "This wallet's password did not map to its stored master key!",
"errorLimitReached": "You reached the wallet limit. You currently cannot add any more wallets.",
"errorUnknown": "An unknown error occurred. See console for details."
},
"contactMessages": {
"success": "Contact imported successfully.",
"successSkipped": "A contact with the same address ({{address}}) and settings already exists, so it was skipped.",
"successUpdated": "A contact with the same address ({{address}}) already exists. Its label was updated to \"{{label}}\"",
"successSkippedNoOverwrite": "A contact with the same address ({{address}}) already exists, and you chose not to overwrite the label, so it was skipped.",
"successImportSkipped": "A contact with the same address ({{address}}) was already imported, so it was skipped.",
"warningSyncNode": "This contact had a custom sync node, which is not supported in KristWeb v2. The sync node was skipped.",
"warningIcon": "This contact had a custom icon, which is not supported in KristWeb v2. The icon was skipped.",
"warningLabelInvalid": "The label for this contact was invalid. The label was skipped.",
"errorInvalidTypeString": "This contact was not a string!",
"errorInvalidTypeObject": "This contact was not an object!",
"errorDecrypt": "This contact could not be decrypted!",
"errorDataJSON": "The decrypted data was not valid JSON!",
"errorAddressMissing": "This contact is missing an address!",
"errorAddressInvalid": "This contact's address is invalid!",
"errorLimitReached": "You reached the contact limit. You currently cannot add any more contacts.",
"errorUnknown": "An unknown error occurred. See console for details."
},
"results": {
"noneImported": "No new wallets were imported.",
"walletsImported": "<0>{{count, number}} new wallet</0> was imported.",
"walletsImported_plural": "<0>{{count, number}} new wallets</0> were imported.",
"walletsSkipped": "{{count, number}} wallet was skipped.",
"walletsSkipped_plural": "{{count, number}} wallets were skipped.",
"contactsImported": "<0>{{count, number}} new contact</0> was imported.",
"contactsImported_plural": "<0>{{count, number}} new contacts</0> were imported.",
"contactsSkipped": "{{count, number}} contact was skipped.",
"contactsSkipped_plural": "{{count, number}} contacts were skipped.",
"warnings": "There was <1>{{count, number}} warning</1> while importing your backup.",
"warnings_plural": "There were <1>{{count, number}} warnings</1> while importing your backup.",
"errors": "There was <1>{{count, number}} error</1> while importing your backup.",
"errors_plural": "There were <1>{{count, number}} errors</1> while importing your backup.",
"treeHeaderWallets": "Wallets",
"treeHeaderContacts": "Contacts",
"treeWallet": "Wallet {{id}}",
"treeContact": "Contact {{id}}"
}
},
"export": {
"modalTitle": "Export backup",
"description": "This secret code contains your wallets and address book contacts. You can use it to import them in another browser, or to back them up. You will still need your master password to import the wallets in the future. <1>Do not share this code with anyone.</1>",
"size": "Size: <1 />",
"buttonSave": "Save to file",
"buttonCopy": "Copy to clipboard"
},
"walletLimitMessage": "You have more wallets stored than KristWeb supports. This was either caused by a bug, or you bypassed it intentionally. Expect issues with syncing.",
"contactLimitMessage": "You have more contacts stored than KristWeb supports. This was either caused by a bug, or you bypassed it intentionally. Expect issues with syncing.",
"optionalFieldUnset": "(unset)",
"addressPicker": {
"placeholder": "Choose a recipient",
"placeholderWalletsOnly": "Choose a wallet",
"placeholderNoWallets": "Address or name",
"placeholderNoWalletsNoNames": "Address",
"hintCurrentBalance": "Current balance: <1 />",
"errorAddressRequired": "Address is required.",
"errorRecipientRequired": "Recipient is required.",
"errorWalletRequired": "Wallet is required.",
"errorInvalidAddress": "Invalid address or name.",
"errorInvalidAddressOnly": "Invalid address.",
"errorInvalidRecipient": "Invalid recipient. Must be an address or name.",
"errorInvalidWalletsOnly": "Invalid wallet address.",
"errorEqual": "Recipient cannot be the same as the sender.",
"categoryWallets": "Wallets",
"categoryOtherWallets": "Other wallets",
"categoryAddressBook": "Address book",
"categoryExactAddress": "Exact address",
"categoryExactName": "Exact name",
"addressHint": "Balance: <1 />",
"addressHintWithNames": "Names: <1>{{names, number}}</1>",
"nameHint": "Owner: <1 />",
"nameHintNotFound": "Name not found.",
"walletHint": "Wallet: <1 />"
},
"sendTransaction": {
"title": "Send transaction",
"siteTitle": "Send transaction",
"modalTitle": "Send transaction",
"modalSubmit": "Send",
"buttonSubmit": "Send",