-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathen.ts
More file actions
1302 lines (1302 loc) · 49.2 KB
/
Copy pathen.ts
File metadata and controls
1302 lines (1302 loc) · 49.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
export default {
back: 'Back',
ordinals: [
'1st',
'2nd',
'3rd',
'4th',
'5th',
'6th',
'7th',
'8th',
'9th',
'10th',
'11th',
'12th',
],
account_setup: {
welcome: {
title: 'Welcome\nto Helium',
subtitle:
'Host a Hotspot and earn <b><purple>$HNT</purple></b>,\na new cryptocurrency,\nfor building The People’s Network.',
create_account: 'Create an Account',
import_account: 'Import Existing Account',
},
warning: {
title: 'Creating\nSecure Account.',
subtitle:
'Helium accounts are protected by\n<b><purple>12 unique words</purple></b>, that act as\na password for signing in or\nrecovering accounts.',
generate: 'Generate my 12 words',
},
generating: 'GENERATING YOUR 12 WORDS...',
passphrase: {
title: 'Your 12 Word\nPassword',
subtitle:
'It is crucial you <b>write all of these\n12 words down, in order</b>.\n\n<red>Helium cannot recover these words.</red>',
warning: 'Helium cannot recover these words',
next: 'I have written these down',
},
confirm: {
title: 'Confirm\nYour Words',
titleSignOut: 'Confirm Your\nWords To Sign Out',
subtitle:
'Which word below was your <b><purple>{{ordinal}} word?</purple></b>',
forgot: 'I forgot my words',
failed: {
title: 'Sorry...',
subtitle_1: "You've reentered the seed phrase incorrectly.",
subtitle_2: 'Please try again.',
try_again: 'Try Again',
},
},
create_pin: {
title: 'Set PIN Code',
subtitle: 'Let’s secure your account with a PIN Code.',
},
confirm_pin: {
title: 'Repeat PIN',
subtitle: 'Re-enter your PIN',
},
enable_notifications: {
title: 'Enable Notifications',
subtitle:
'Be alerted when important updates happen to your account or to your Hotspots.',
mining: 'Hotspot is Mining',
later: "No thanks, I'll set it up later",
},
},
learn: {
title: 'How do I earn\nHNT?',
slides: [
{
topTitle: 'Listen for Beacons',
topBody: 'Your Hotspot will listen for beacons from nearby Hotspots',
bottomTitle: 'How do Beacons work?',
bottomBody:
'Beacons are special packets, transmitted by Hotspots, that can be heard by any other neighbouring Hotspots.\n\nThese signals allow the Network to determine which Hotspots are within receiving range of each other. These neighbours are called ‘witnesses’ and Hotspots that hear your beacon are added to your Witness List.',
},
{
topTitle: 'Listen for Beacons',
topBody: 'Your Hotspot will listen for beacons from nearby Hotspots',
bottomTitle: 'How do Beacons work?',
bottomBody:
'Beacons are special packets, transmitted by Hotspots, that can be heard by any other neighbouring Hotspots.\n\nThese signals allow the Network to determine which Hotspots are within receiving range of each other. These neighbours are called ‘witnesses’ and Hotspots that hear your beacon are added to your Witness List.',
},
{
topTitle: 'Listen for Beacons',
topBody: 'Your Hotspot will listen for beacons from nearby Hotspots',
bottomTitle: 'How do Beacons work?',
bottomBody:
'Beacons are special packets, transmitted by Hotspots, that can be heard by any other neighbouring Hotspots.\n\nThese signals allow the Network to determine which Hotspots are within receiving range of each other. These neighbours are called ‘witnesses’ and Hotspots that hear your beacon are added to your Witness List.',
},
],
next: "I've read the guide",
},
generic: {
clear: 'Clear',
done: 'Done',
disabled: 'Disabled',
readMore: 'Read More',
witness: 'Witness',
understand: 'I understand',
blocks: 'Blocks',
active: 'Active',
skip: 'Skip',
next: 'Next',
need_help: 'I Need Help',
scan_again: 'Scan Again',
submit: 'Submit',
balance: 'Your Balance',
continue: 'Continue',
skip_for_now: 'Skip for now',
go_to_account: 'Go to My Account',
go_to_settings: 'Go to Settings',
hotspot: 'Hotspot',
validator: 'Validator',
location: 'Location',
unable_to_get_location: 'We were unable to get your location',
location_blocked:
"Location is turned off. Go to your phone's settings to allow Location Services.",
challenger: 'Challenger',
learn_more: 'Learn More',
cancel: 'Cancel',
ok: 'OK',
yes: 'Yes',
unknown: 'Unknown',
online: 'Online',
offline: 'Offline',
fee: 'Fee',
to: 'To',
from: 'From',
new: 'New',
save: 'Save',
connect: 'Connect',
go_back: 'Go Back',
forget: 'Forget',
error: 'Error',
loading: 'Loading...',
copy: 'Copy',
address: 'Address',
copy_address: 'Copy Address',
share: 'Share',
invalid_password: 'You password is incorrect',
something_went_wrong: 'Something went wrong',
hnt_to_currency: '{{currencyType}}. Data from CoinGecko',
search_location: 'Search for an address or place',
unavailable: 'Unavailable',
minutes: '{{count}} minute',
minutes_plural: '{{count}} minutes',
seconds: '{{count}} second',
seconds_plural: '{{count}} seconds',
meters: '{{distance}}m',
kilometers: '{{distance}}km',
owner: 'Owner',
one: 'one',
swipe_to_confirm: 'Swipe to Confirm',
not_available: 'N/A',
},
hotspot_setup: {
selection: {
title: 'Choose\nyour Hotspot.',
subtitle: 'What kind of Hotspot do you\nwish to add?',
makerAppAlert: {
title: 'Download Now',
body:
'{{maker}} hotspots should now be onboarded using the {{makerAppName}}',
visit: 'Visit Store',
continue: 'Continue With Helium App',
},
},
education: {
title: 'Placing\nyour Hotspot.',
cards: [
{
title: 'Give me a nice view',
subtitle:
'Hotspots love places where they can see plenty of sky and spaced at least 300 meters away from other Hotspots. ',
},
{
title: "Don't hide me",
subtitle:
"Hotspots shouldn't hide in a nightstand or bookcase. Put it next to a window instead.",
},
{
title: 'Buildings may block my signals',
subtitle:
"Nearby buildings may decrease your Hotspot's coverage for nearby devices.",
},
{
title: 'Finally - I hate bug screens!',
subtitle:
'Try to keep your Hotspot away from metal meshes, which can block radio signals dramatically.',
},
],
next: "I've read the guide",
},
external: {
qrTitle: 'Scan QR Code',
webTitle: 'Web Onboarding',
wallet_address: 'Your wallet address is:',
},
confirm: {
title: 'Confirm\nInformation',
title_one_line: 'Confirm Information',
public_key: 'Public Key',
mac_address: 'MAC Address',
owner_address: 'Owner Address',
},
diagnostics: {
title: 'Diagnostics',
},
power: {
title: 'Power Up',
next: "I'm powered up",
},
pair: {
title: 'Bluetooth',
alert_no_permissions: {
title: 'Authorize Bluetooth',
body:
'Helium needs permission to use Bluetooth. You can enable Bluetooth permission in Settings.',
},
alert_ble_off: {
title: 'Enable Bluetooth',
body:
'To start pairing, turn on Bluetooth. Keep Bluetooth on until you finish registration.',
},
scan: 'Scan for my Hotspot',
},
ble_scan: {
title: 'SCANNING FOR HOTSPOTS',
cancel: 'Cancel Scan',
connecting: 'Connecting to {{hotspotName}}',
},
ble_select: {
hotspots_found: '{{count}} Hotspot found.',
hotspots_found_plural: '{{count}} Hotspots found',
subtitle: 'Select your Hotspot to continue.',
},
ble_error: {
title: 'No Hotspots Found',
enablePairing: 'Enable Pairing Mode',
pairingInstructions:
'Refer to manufacturer instructions to enable Bluetooth',
},
wifi_scan: {
title: 'Wi-Fi',
settings_title: 'Wi-Fi Settings',
subtitle:
'Select the Wi-Fi network you’d like your Hotspot to connect to.',
ethernet: 'Use Ethernet Instead',
connection_failed: 'Connection failed, please try again',
disconnect_failed: 'Disconnect failed, please try again',
connected:
'Your Hotspot is <green>Online</green> and connected to %{network}.',
scan_fail_subtitle:
'Your Hotspot has found no Wi-Fi networks nearby. Check your router is online and nearby.',
tip: 'Did you check if your <blue>Wi-fi is set to hidden</blue>?',
saved_networks: 'Configured Network',
available_networks: 'Available Networks',
disconnect_help:
'To update the password or connect to a new network, first forget the old network.',
disconnect: 'Forget Network',
not_found_title: 'No Wi-Fi Networks Found',
not_found_desc:
'It can take up to 3 minutes for the Hotspot to boot and find available networks.',
scan_networks: 'Scan Networks',
},
disconnect_dialog: {
title: 'Forget Network?',
body: 'The Hotspot will no longer automatically connect to {{wifiName}}.',
},
wifi_password: {
join_title: 'Enter Password',
update_title: 'Update Wi-Fi',
message:
'The Hotspot is currently connected to this network. Changing the password can cause the Hotspot to go offline.',
error_title: 'Invalid Password',
subtitle:
'Enter your Wi-Fi’s credentials to connect your Hotspot to this Network.',
placeholder: 'Password',
show_password: 'Show Password',
hide_password: 'Hide Password',
connecting: 'Connecting to Network',
forget: 'Forget',
forget_network: 'Forget Network',
forget_alert_title: 'Forget Network?',
forget_alert_message:
'This Hotspot will no longer automatically connect to ',
},
ethernet: {
title: "Let's use Ethernet",
subtitle:
'Plug your Hotspot into an available and active port on your internet router.',
secure: 'Please connect your ethernet cable securely',
next: 'My Hotspot is Connected',
},
firmware_update: {
title: 'Update Available',
subtitle: 'Your Hotspot needs a firmware update before you can continue.',
current_version: 'Current Version',
required_version: 'Required Version',
explanation:
'Your Hotspot will check for updates automatically. This can take about 10 minutes. Leave it plugged in and check back later.',
next: 'Got it',
},
onboarding_error: {
title: 'Onboarding Error',
subtitle: {
something_went_wrong:
'Something went wrong. Please contact the Hotspot manufacturer for next steps.',
invalid_onboarding_address:
'Your onboarding address is invalid. Please contact the Hotspot manufacturer for next steps.',
no_onboarding_key:
'Unable to find Hotspot in the Onboarding Server. Please contact the Hotspot manufacturer for next steps.',
service_unavailable:
"The Onboarding Server is temporarily unavailable and users won't be able to add Hotspots at this time. Check for updates on status.helium.com and try again later.",
},
next: 'Exit Setup',
disconnected:
'There was an error connecting to the Hotspot. Please try again.',
title_connect_failed: 'Hotspot Pairing Failed',
body_connect_failed:
'Hotspot Miner is unable to respond to requests. Please reboot the Hotspot and try again later.',
},
add_hotspot: {
title: 'Add Hotspot',
subtitle:
'Adding Hotspots requires a small fee (paid in Data Credits) to verify its authenticity.',
checking_status: 'Checking Hotspot status...',
already_added:
'You already added this hotspot to your wallet. Continue to the next screen to assert its location.',
not_owned:
'You do not own this hotspot and cannot add it to your wallet.',
label: 'CURRENT ADD HOTSPOT FEE (PAID IN DATA CREDITS)',
help_link: 'What are Data Credits?',
support_title: 'What are Data Credits?',
support_answer:
'Data Credits are required to send data over the Helium Network.',
error:
'Cannot proceed with Add Hotspot. If you purchased the Hotspot from Helium, please contact support@helium.com and include mac address {{mac}}',
back: 'Back to Hotspot Pairing',
wait_error_title: 'Please Try Again',
wait_error_body:
'Hotspot miner is waiting to start. Please try again in a few minutes.',
add_hotspot_error_body:
'There was an error constructing the Add Hotspot transaction. Please try again.',
assert_loc_error_body:
'There was an error constructing the Assert Location transaction. Please try again.',
assert_loc_error_no_loc:
'The selected location is invalid. Please try again.',
assert_loc_error_no_change_title: 'Location Unchanged',
assert_loc_error_no_change_body:
'The Hotspot location has not changed. Drag the pin to a different location and try again.',
no_onboarding_key_title: 'Hotspot not found on Onboarding Server',
no_onboarding_key_message:
'Unable to add Hotspot. Please contact your Hotspot manufacturer for next steps.',
},
enable_location: {
title: 'Set Hotspot\nLocation',
subtitle:
'We need to set a location for your Hotspot. We can use your phone to do this.',
p_1: 'First, we’ll ask for permission to access your phone’s location.',
settings_p_1:
"In order to update your Hotspot's location, we'll need additional location permissions.",
settings_p_2:
"Tap the button below to be taken to Settings. Under 'Location' tap 'While using the App'.",
next: 'Ask for Permissions',
cancel: "No thanks, I'll set it up later",
},
location_fee: {
title: 'Location Fee',
subtitle_free: 'Your Location Fee ($10) has been prepaid.',
subtitle_fee:
'You need to pay a $10 Location Fee (in DC) to confirm this location.',
confirm_location:
'Confirm the location selected is correct and register your Hotspot.',
pending_p_1:
'Your Hotspot has a Confirm Location transaction pending in the blockchain.',
pending_p_2:
"If you'd like to change the Hotspot's location, wait for the previous transaction to complete before updating its location.",
balance: 'Balance:',
fee: 'Fee:',
no_funds: 'There is insufficient HNT in your account balance',
calculating_text: 'Calculating HNT Amount',
error_title: 'Error',
error_body: 'There was an error loading fee data. Please try again.',
next: 'Register Hotspot',
fee_next: 'Pay Fee & Register Hotspot',
gain_label: 'TX / RX Gain:',
elevation_label: 'Height:',
gain: '{{gain}} dBi',
elevation: '{{count}} meter',
elevation_plural: '{{count}} meters',
},
location: {
title: 'Hotspot Location',
next: 'Set Location',
},
progress: {
title: 'REGISTERING HOTSPOT',
subtitle:
'This can take a few minutes so feel free to close this screen.',
next: 'Go to Wallet',
},
error: {
alertTitle: 'Servers Unable to Respond',
alertMessage:
'Request to servers have timed out and we cannot add your Hotspot at this time.\n\nPlease contact support@helium.com and note MAC address %{mac}.',
},
skip_location: {
title: 'Add Hotspot',
subtitle_1: 'You have decided to assert location later.',
subtitle_2: 'Update your location later from settings.',
},
not_owner: {
title: 'This Hotspot already has an owner.',
subtitle_1: 'Perhaps you’re hosting it for\nsomeone else?',
subtitle_1_no_follow:
"If you're a Host updating Wi-Fi, you may exit setup now.",
subtitle_2:
'Following a Hotspot allows you to monitor a Hotspot within the app when you don’t own it.',
contact_manufacturer:
'If you think you are the Hotspot Owner (i.e. you bought it) contact the Hotspot manufacturer.',
},
owned_hotspot: {
title: 'You already own this Hotspot',
subtitle_1: 'Looks like this Hotspot is already onboarded.',
subtitle_2:
'To update your Hotspot’s Wi-Fi or location, go to your Hotspot’s Settings.',
},
},
account_import: {
word_entry: {
title: 'Enter Recovery\nSeed Phrase',
directions: 'Enter the <b>{{ordinal}}</b> Word',
placeholder: '{{ordinal}} word',
subtitle: 'Recovery Seed Phrases are not\ncase-sensitive',
},
confirm: {
title: 'Please Confirm\nSeed Phrase',
subtitle:
'Here are the 12 words you’ve entered. Tap on any of them if you need to edit.',
next: 'Submit Seed Phrase',
},
complete: {
title: 'Recovering Account...',
subtitle: 'This will just take a moment.',
},
alert: {
title: 'Error',
body: "This seed phrase doesn't correspond to a Helium account",
},
},
wallet: {
title: 'My Wallet',
copiedToClipboard: 'Copied {{address}} to clipboard',
share: 'Share',
intro_body:
'This Account tab acts as a virtual wallet for any HNT or Data Credits you hold.',
intro_slides: [
{ title: 'Receive HNT', body: 'Access your address or QR code.' },
{ title: 'Send HNT', body: 'Scan a QR code or enter details manually.' },
{
title: 'Chart your account',
body: 'Green signifies HNT being <green>added</green> to your account.',
},
{
title: 'Chart your account',
body: 'Blue signifies HNT <blue>leaving</blue> your account.',
},
],
chartRanges: {
daily: { label: '14D', accessibilityLabel: '14 Days' },
weekly: { label: '12W', accessibilityLabel: '12 Weeks' },
monthly: { label: '12M', accessibilityLabel: '12 Months' },
},
},
send: {
not_valid_address: 'Not a valid Helium Wallet Address.',
load_failed: 'Cannot validate address. Please try again.',
title: {
payment: 'Send HNT',
dcBurn: 'Burn HNT',
transfer: 'Transfer Hotspot',
},
available: '{{ amount }} Available',
address: {
label: 'Recipient Address',
label_transfer: 'Buyer Address',
placeholder: 'Enter Address...',
seller: 'Seller Address',
},
amount: {
label: 'Amount (HNT)',
label_transfer: 'Requested Amount (HNT)',
placeholder: '0',
placeholder_transfer: '(Optional) Request Payment for Hotspot...',
},
dcAmount: {
label: 'Equivalent To (DC)',
placeholder: '0',
},
memo: {
label: 'Memo',
placeholder: 'Enter Memo... (optional)',
bytes_left: '{{count}} byte left',
bytes_left_plural: '{{count}} bytes left',
length_error:
'Memo is too long. Please edit the memo to 8 bytes or less.',
},
sendMax: 'Send Max',
button: {
payment: 'Send HNT',
dcBurn: 'Burn HNT',
transfer_request: 'Transfer Hotspot',
transfer_complete: 'Complete Transfer',
},
qrInfo: 'QR INFO',
error: 'There was an error submitting this transaction. Please try again.',
deployModePaymentsDisabled: 'Payments are disabled in Deploy Mode',
hotspot_label: 'Hotspot',
last_activity: 'LAST REPORTED ACTIVITY: {{activity}}',
label_error: 'You do not have enough HNT in your account.',
stale_error:
'Hotspot has not participated in Proof-of-Coverage in the last {{blocks}} blocks. Unable to proceed with transfer.',
scan: {
title: 'Ways to use a QR Code',
send: 'Send HNT',
send_description: 'Quickly scan a Helium address to send HNT.',
burn: 'Burn HNT to DC',
burn_description:
'HNT can be burned into Data Credits to pay for device network connectivity. DCs are non-transferable.',
view: 'View QR Code',
view_description:
'Share your QR Code to deposit or receive HNT from others.',
learn_more: 'Learn More',
parse_code_error: 'Unable to parse QR code',
invalid_hotspot_address:
'Hotspot Address in QR code is missing or invalid.',
invalid_sender_address:
'Sender Address in QR code is not a valid wallet account address.',
mismatched_sender_address:
'Sender Address in QR code does not match wallet account address. Addresses must match in order to proceed.',
},
send_max_fee: {
error_title: 'Send Max Error',
error_description:
'Unable to calculate fees to send max balance.\n\nTap Send Max and try again.',
},
},
more: {
title: 'Settings',
sections: {
security: {
title: 'Security',
enablePin: 'Enable PIN',
requirePin: 'Require PIN',
resetPin: 'Reset PIN',
requirePinForPayments: 'Require PIN for Payments',
authIntervals: {
immediately: 'Immediately',
after_1_min: 'After 1 minute',
after_5_min: 'After 5 minutes',
after_15_min: 'After 15 minutes',
after_1_hr: 'After 1 hour',
after_4_hr: 'After 4 hours',
},
revealWords: 'Reveal Words',
deployMode: {
title: 'Deploy Mode',
subtitle:
'This mode adds extra protection to your wallet, restricting some app features.',
inDeployMode: 'In Deploy Mode:',
cantViewWords: "Can't view your 12 secure words",
cantTransferHotspots: "Can't transfer Hotspots from this account",
canOnlySendFunds: 'Can only send funds to',
otherAccount: 'other specified account',
enableButton: 'Enable Deploy Mode',
disableInstructions:
'In order to disable this feature, you will have to log out. Remember to write down all 12 words now.',
addressLabel: 'Allowed Account Address...',
},
},
learn: {
title: 'Learn',
tokenEarnings: 'Token Earnings',
heliumtoken: 'Helium Token',
coverage: 'Network Coverage',
hotspotPlacement: 'Hotspot Placement',
support: 'Support',
troubleshooting: 'Troubleshooting',
joinDiscord: 'Join Helium Discord',
},
app: {
title: 'App',
enableHapticFeedback: 'Enable Haptic Feedback',
enableFleetMode: 'Enable Fleet Mode',
showHiddenHotspots: 'Show Hidden Hotspots',
convertHntToCurrency: 'Convert HNT to Currency',
language: 'Language',
currency: 'Currency',
signOut: 'Sign Out',
clearMapCache: 'Clear Map Cache',
clearMapCacheAlert: {
title: 'Clear Map Cache?',
body:
'This will clear your map cache which may help resolve map issues.',
},
signOutAlert: {
title: 'Warning!',
body:
'You are signing out of your account. Do you have your 12 recovery words? If you don’t, you will lose access to:\n\n- your Hotspots\n- your HNT\n- your Wallet',
},
signOutForgot: {
title: 'Reveal Words',
body: 'Would you like to reveal your accounts words?',
},
},
},
},
auth: {
title: 'Enter Your PIN',
error: 'Incorrect PIN',
enter_current: 'Enter your current PIN to continue',
},
hotspots: {
sort_by: 'Sort Hotspots By',
new: {
title: 'Add a New Hotspot',
subtitle:
'If you just added a Hotspot, hang tight. It takes a few moments for the Network to propagate the Hotspot.',
setup: '+ Add a Hotspot',
explorer: 'Browse Network Map',
},
owned: {
title: 'My Hotspots',
title_no_hotspots: 'Hotspots',
hotspot_plural: '{{count}} Hotspots',
hotspot: 'Hotspot',
validator_plural: '{{count}} Validators',
validator: 'Validator',
reward_hotspot_summary:
'Your Hotspot earned\n{{hntAmount}} on {{date}} (UTC).',
reward_hotspot_summary_plural:
'Your {{count}} Hotspots earned\n{{hntAmount}} on {{date}} (UTC).',
reward_validator_summary:
'Your Validator earned\n{{hntAmount}} on {{date}} (UTC).',
reward_validator_summary_plural:
'Your {{count}} Validators earned\n{{hntAmount}} on {{date}} (UTC).',
reward_hotspot_and_validator_summary:
'Your {{hotspot}} and \n{{validator}} earned\n{{hntAmount}} on {{date}} (UTC).',
your_hotspots: 'Your Hotspots',
filter: {
new: 'Newest Hotspots',
near: 'Nearest Hotspots',
earn: 'Top Earning Hotspots',
offline: 'Offline Hotspots',
followed: 'Followed Hotspots',
followedValidators: 'Followed Validators',
validators: 'Validators',
unasserted: 'Unasserted Hotspots',
},
},
search: {
title: 'Hotspot Search',
network: 'Network\nSearch',
my_hotspots: 'My Hotspots',
all_hotspots: 'All Hotspots',
placeholder: 'Search...',
recent_searches: 'Recent Searches',
tips: 'Search Tips',
tips_body:
'Try typing a Hotspot or Validator Name (e.g. silly-animal-name) or a place name (e.g. New York City).\n\nNote: Hotspots and Validators added within the last 10 minutes may not appear.',
},
empty: {
title: 'Add a\nHelium Miner',
body: 'There are two types of miner\non the Helium Network:',
search: 'Search',
info: 'Info',
hotspots: {
title: 'Hotspots',
body:
'Hardware miners that participate in Proof-of-Coverage and mine HNT.',
add: 'Add Hotspot',
},
validators: {
title: 'Validators',
body:
'Validator nodes secure the Helium network by verifying transactions and adding blocks in Consensus Groups.',
},
failed:
'We’re having problems fetching your Hotspots due to an API or network outage. Please try again later.',
},
list: {
no_offline: 'NO OFFLINE HOTSPOTS',
online: 'ONLINE HOTSPOTS',
no_results: 'No Results',
},
ticker:
'{{formattedHotspotCount}} Hotspots • Oracle Price: {{oraclePrice}} • Block Time: {{formattedBlockTime}} secs • ',
ticker_no_hotspots:
'Oracle Price: {{oraclePrice}} • Block Time: {{formattedBlockTime}} secs',
ticker_no_block:
'{{formattedHotspotCount}} Hotspots • Oracle Price: {{oraclePrice}} ',
ticker_no_hotspots_or_block: 'Oracle Price: {{oraclePrice}}',
},
permissions: {
location: {
title: 'Location Permission',
message:
'Helium needs access to your location for Bluetooth discovery and to enable location assertion. This information will never be sold or shared.',
},
},
time: {
morning: 'Morning',
evening: 'Evening',
afternoon: 'Afternoon',
},
notifications: {
tapToReadMore: 'Tap to read more',
share: 'SHARE',
list: { title: 'Notifications' },
none: {
title: 'You have no\nNotifications',
subtitle:
'Here you’ll get news, updates and alerts about your Hotspots and The People’s Network.',
},
helium_updates_empty: {
title: 'There are no Helium updates',
subtitle: "Stay tuned for upcoming news about The People's Network.",
},
hotspot_update_empty: {
title: 'There are no Hotspot notifications',
subtitle:
"Here is where you'll be notified when your Hotspot falls offline or comes back online.",
},
transfers_empty: {
title: 'There are no Hotspot Transfers',
subtitle:
"Here is where you'll find pending Hotspot transfer notifications.",
},
earnings_empty: {
title: 'No weekly earnings to report',
subtitle:
"Here is where you'll find weekly earnings notifications from your owned Hotspots.",
},
payment_empty: {
title: 'No payment transactions',
subtitle: 'Payment transaction notifications will appear here.',
},
failed_empty: {
title: 'No failed transactions',
subtitle: 'Any failed transaction notification will appear here.',
},
all: 'All Messages',
hotspot_updates: 'Hotspot Updates',
hotspot_transfers: 'Hotspot Transfers',
helium_updates: 'Helium Updates',
helium_update: 'Helium Update',
weekly_earnings: 'Weekly Earnings',
payment_notifications: 'Payment Notifications',
failure_notifications: 'Failure Notifications',
},
transactions: {
pending: 'Pending',
mining: 'Mining Rewards',
sent: 'Sent HNT',
stakeValidator: 'Stake HNT',
unstakeValidator: 'Unstake HNT',
transferValidator: 'Transfer Stake',
burnHNT: 'Burn HNT',
received: 'Received HNT',
added: 'Hotspot Added to Blockchain',
location: 'Confirm Location',
location_v2: 'Update Hotspot',
transfer: 'Hotspot Transfer',
transferDefault: 'Transfer Hotspot',
transferSell: 'Transfer Hotspot (Sell)',
transferBuy: 'Transfer Hotspot (Buy)',
view: 'View',
view_transactions: 'View Transactions',
filter: {
all: 'All Activity',
mining: 'Mining Rewards',
payment: 'Payment Transactions',
hotspot: 'Hotspot Transactions',
burn: 'Burn Transactions',
validator: 'Validator Transactions',
pending: 'Pending Transactions',
},
no_results: 'No Results',
all_footer:
"You've reached the end of your recent activity. Select a filter or <b><purple>go to the explorer</purple></b> to view more.",
rejected: 'Failed to load. Tap to try again',
},
hotspot_settings: {
title: 'Hotspot Settings',
pairing: {
title: 'Update Wi-Fi or Run Diagnostics',
subtitle:
'Pairing required before proceeding.\nSome Hotspot models are not supported, check with your manufacturer.',
scan: 'Pair',
},
transfer: {
title: 'Transfer Hotspot',
subtitle: 'Send to another Helium Wallet.',
begin: 'Begin Hotspot Transfer',
},
update: {
title: 'Update Hotspot',
subtitle: 'Hotspot location or antenna details.',
},
visibility_on: {
title: 'Show Hotspot',
subtitle: 'Makes the Hotspot visible in the app.',
},
visibility_off: {
title: 'Hide Hotspot',
subtitle: 'Hides the Hotspot in the app.',
},
visibility_popup: {
title: 'Hide Hotspot',
message:
'Hotspot will be hidden from view in the app but stays linked to your account.\n\nTo view Hidden Hotspots and unhide them, go to Settings.',
},
discovery: {
title: 'Discovery Mode',
subtitle: 'Identify ideal Hotspot placement.',
no_location_error: {
title: 'Unable to Start Discovery Mode',
message:
'Please set a Hotspot location before initiating Discovery Mode.',
},
unasserted_hotspot_warning: {
title: 'Hotspot Does Not Have A Location',
message:
"To visualize Hotspots that respond, we will use your phone's location as a placeholder for the Hotspot.",
},
},
diagnostics: {
title: 'Diagnostic Report',
desc_info:
"Please add more details to the issue you're experiencing below",
no_hotspots: 'No Hotspots Found',
scan_again: 'Scan again',
generating_report: 'Generating Report',
p2p: 'Peer-to-Peer Connections',
no_connection: 'No Connection',
outbound: 'Outbound',
outbound_help:
'Hotspot unable to connect to peers on the blockchain. This can be due to router issues, no internet connection, or a firewall blocking incoming connections.',
inbound: 'Inbound',
inbound_help:
'Blockchain peers cannot to reach Hotspot. This can be due to router issues, no internet connection, or a firewall blocking incoming connections.',
activity: 'Activity',
blockchain_sync: 'Blockchain Sync',
block_height: 'Block Height',
synced: '{{percent}} Synced',
blockchain_height_help:
'Hotspot must be 100% synced before it can start mining. This can take several hours or more depending on your internet speed. Keep the Hotspot powered on and connected to the internet.',
last_challenged: 'Last Challenged',
last_challenged_help:
'Neighboring Hotspots have not been able to verify your Hotspot location. In most cases, this is because the antenna is in an area where radio signals can’t reach (buildings blocking, antenna pointed down, antenna indoors).',
firmware: 'Hotspot Firmware',
hotspot_type: 'Hotspot Maker',
app_version: 'App Version',
wifi_mac: 'Wi-Fi MAC',
eth_mac: 'Ethernet MAC',
nat_type: 'NAT Type',
ip: 'IP Address',
disk: 'Disk',
disk_read_only: 'Read-Only',
disk_no_data: 'No Data Available',
disk_read_only_instructions:
'Contact your Manufacturer for a replacement. Hotspot unable to sync due to hardware failure.',
report_generated: 'Report Generated',
send_to_support: 'Send Report to Support',
help_link: 'Read more for possible solutions',
email_client_missing:
'Could not find a compatible email client installed',
other_info: 'Other Information',
unavailable_warning:
'* Diagnostics may be unavailable before a Hotspot is fully booted. If data is missing, please go back and generate the diagnostic report again.',
},
wifi: {
title: 'Wi-Fi Network',
connected_via: 'Connected via',
not_connected: 'Not Connected',
available_wifi: 'Available Wi-Fi Networks',
show_password: 'Show Password',
hide_password: 'Hide Password',
ethernet: 'Ethernet',
},
options: {
paired: 'Paired with Hotspot',
diagnostic: 'Diagnostics',
wifi: 'Wi-Fi Network',
reassert: 'Update Location',
firmware: 'Hotspot Firmware',
},
reassert: {
remaining:
'You have <b><purple>{{count}} free remaining</purple></b> Hotspot Location Assert Update.',
remaining_plural:
'You have <b><purple>{{count}} free remaining</purple></b> Hotspot Location Assert Updates.',
change_location: 'Change Location',
confirm: 'I Confirm',
cost: 'The cost of reasserting location is:',
insufficient_funds:
'You do not have the funds available to make\nthis assert. Acquire HNT.',
confirm_location: "Please confirm your Hotspot's change in location",
charge: 'You will be charged {{amount}}.',
pending_message: 'Location update pending.',
assert_pending: 'Assert Pending...',
failTitle: 'Failed to reassert hotspot',
failSubtitle: 'Please try again later',
current_location: 'Current Location',
new_location: 'New Location',
antenna_details: 'Antenna/Height Details',
update_antenna: 'Update Antenna',
submit: 'Update Hotspot transaction submitted and now pending.',
already_pending:
'Unable to update Hotspot while a transaction is pending. Please try again later.',
},
},
validator_details: {
overview: 'Overview',
penalties: 'Penalties',
consensus_groups: 'Consensus Groups',
consensus_group: 'Consensus Group',
consensus_group_title: 'Consensus\nGroup',
elected_count: 'Currently Elected Validators ({{count}})',
earnings_desc: '30d Earnings',
penalty_desc: 'Penalty Score',
consensus_desc: 'Participated in Consensus',
in_consensus: ' In Consensus Group',
time_range: 'Time Range (UTC)',
time_range_7_days: '7D',
time_range_14_days: '14D',
time_range_30_days: '30D',
in_cooldown_mode: 'In Cooldown Mode',
cooldown_blocks_left: '{{blocks}} Blocks Left',
status_online: 'Online',
status_offline: 'Offline',
current_block_height: 'Current Block Height: {{blockHeight}}',
penalty: 'Penalty',
lifetime_consensus: 'Lifetime Consensus',
stake_status: 'Stake Status',
performance: 'Performance Penalty',
tenure: 'Tenure Penalty',
block: 'Block {{height}}',
block_elected: 'Block Elected {{block}}',
version_desc: 'Validator Version',
heartbeat_desc: 'Blocks since the last heartbeat transaction',
},
hotspot_details: {
checklist: 'Progress',
title: 'Hotspot Details',
owner: 'Owned by {{address}}',
owner_you: 'Owned by you',
pass_rate: 'PASS RATE',
reward_title: 'HNT Rewards',
reward_subtitle: 'Time Range (UTC)',
witness_title: 'Average Witnesses',
num_witnesses: '{{count}} Hotspot',
num_witnesses_plural: '{{count}} Hotspots',
distance_away: '{{distance}} away',
challenge_title: 'Challenges',
challenge_sub_title: '(witness, challenger, or challengee)',
picker_title: 'Past',
overview: 'Earnings',
no_location: 'No Location',
picker_options: { 7: '7D', 14: '14D', 30: '30D', YTD: 'YTD' },
picker_prompt: 'Select Range',
status_data_only: 'Data-Only',
status_online: 'Active',
status_offline: 'Inactive',
ytd: 'Your Hotspot has earned\n{{number}} HNT since {{date}}',
status_prompt_online: {
title: 'Hotspot is online and connected.',
},
status_prompt_offline: {
title: 'Hotspot is offline and not connected.',
},
options: {
settings: 'Settings',
viewExplorer: 'View on Explorer',
share: 'Share',
},
no_location_title: 'No Asserted Location',
updating_location: 'Updating Location...',
no_location_body: 'Pair with the Hotspot to begin.',
data_only_prompt: {
title: 'Data-Only Hotspot Explained',
message:
'These Hotspots earn HNT for transmitting data packets from sensors.\n\nThey do not affect transmit scales and do not affect Hotspot Proof-of-Coverage earnings of nearby Hotspots.',
},
reward_scale_prompt: {
title: 'Transmit Scale',
message: