-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathapp_en.arb
More file actions
1348 lines (1322 loc) · 53 KB
/
app_en.arb
File metadata and controls
1348 lines (1322 loc) · 53 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
{
"@@locale": "en",
"appTitle": "MeshCore Open",
"nav_contacts": "Contacts",
"nav_channels": "Channels",
"nav_map": "Map",
"common_cancel": "Cancel",
"common_ok": "OK",
"common_connect": "Connect",
"common_unknownDevice": "Unknown Device",
"common_save": "Save",
"common_delete": "Delete",
"common_close": "Close",
"common_edit": "Edit",
"common_add": "Add",
"common_settings": "Settings",
"common_disconnect": "Disconnect",
"common_connected": "Connected",
"common_disconnected": "Disconnected",
"common_create": "Create",
"common_continue": "Continue",
"common_share": "Share",
"common_copy": "Copy",
"common_retry": "Retry",
"common_hide": "Hide",
"common_remove": "Remove",
"common_enable": "Enable",
"common_disable": "Disable",
"common_reboot": "Reboot",
"common_loading": "Loading...",
"common_notAvailable": "—",
"common_voltageValue": "{volts} V",
"@common_voltageValue": {
"placeholders": {
"volts": {"type": "String"}
}
},
"common_percentValue": "{percent}%",
"@common_percentValue": {
"placeholders": {
"percent": {"type": "int"}
}
},
"scanner_title": "MeshCore Open",
"scanner_scanning": "Scanning for devices...",
"scanner_connecting": "Connecting...",
"scanner_disconnecting": "Disconnecting...",
"scanner_notConnected": "Not connected",
"scanner_connectedTo": "Connected to {deviceName}",
"@scanner_connectedTo": {
"placeholders": {
"deviceName": {"type": "String"}
}
},
"scanner_searchingDevices": "Searching for MeshCore devices...",
"scanner_tapToScan": "Tap Scan to find MeshCore devices",
"scanner_connectionFailed": "Connection failed: {error}",
"@scanner_connectionFailed": {
"placeholders": {
"error": {"type": "String"}
}
},
"scanner_stop": "Stop",
"scanner_scan": "Scan",
"device_quickSwitch": "Quick switch",
"device_meshcore": "MeshCore",
"settings_title": "Settings",
"settings_deviceInfo": "Device Info",
"settings_appSettings": "App Settings",
"settings_appSettingsSubtitle": "Notifications, messaging, and map preferences",
"settings_nodeSettings": "Node Settings",
"settings_nodeName": "Node Name",
"settings_nodeNameNotSet": "Not set",
"settings_nodeNameHint": "Enter node name",
"settings_nodeNameUpdated": "Name updated",
"settings_radioSettings": "Radio Settings",
"settings_radioSettingsSubtitle": "Frequency, power, spreading factor",
"settings_radioSettingsUpdated": "Radio settings updated",
"settings_location": "Location",
"settings_locationSubtitle": "GPS coordinates",
"settings_locationUpdated": "Location and GPS settings updated",
"settings_locationBothRequired": "Enter both latitude and longitude.",
"settings_locationInvalid": "Invalid latitude or longitude.",
"settings_locationGPSEnable": "GPS Enable",
"settings_locationGPSEnableSubtitle": "Enables GPS to automatically update location.",
"settings_locationIntervalSec": "Interval for GPS (Seconds)",
"settings_locationIntervalInvalid": "Interval must be at least 60 seconds, and less than 86400 seconds.",
"settings_latitude": "Latitude",
"settings_longitude": "Longitude",
"settings_privacyMode": "Privacy Mode",
"settings_privacyModeSubtitle": "Hide name/location in advertisements",
"settings_privacyModeToggle": "Toggle privacy mode to hide your name and location in advertisements.",
"settings_privacyModeEnabled": "Privacy mode enabled",
"settings_privacyModeDisabled": "Privacy mode disabled",
"settings_actions": "Actions",
"settings_sendAdvertisement": "Send Advertisement",
"settings_sendAdvertisementSubtitle": "Broadcast presence now",
"settings_advertisementSent": "Advertisement sent",
"settings_syncTime": "Sync Time",
"settings_syncTimeSubtitle": "Set device clock to phone time",
"settings_timeSynchronized": "Time synchronized",
"settings_refreshContacts": "Refresh Contacts",
"settings_refreshContactsSubtitle": "Reload contact list from device",
"settings_rebootDevice": "Reboot Device",
"settings_rebootDeviceSubtitle": "Restart the MeshCore device",
"settings_rebootDeviceConfirm": "Are you sure you want to reboot the device? You will be disconnected.",
"settings_debug": "Debug",
"settings_bleDebugLog": "BLE Debug Log",
"settings_bleDebugLogSubtitle": "BLE commands, responses, and raw data",
"settings_appDebugLog": "App Debug Log",
"settings_appDebugLogSubtitle": "Application debug messages",
"settings_about": "About",
"settings_aboutVersion": "MeshCore Open v{version}",
"@settings_aboutVersion": {
"placeholders": {
"version": {"type": "String"}
}
},
"settings_aboutLegalese": "2026 MeshCore Open Source Project",
"settings_aboutDescription": "An open-source Flutter client for MeshCore LoRa mesh networking devices.",
"settings_infoName": "Name",
"settings_infoId": "ID",
"settings_infoStatus": "Status",
"settings_infoBattery": "Battery",
"settings_infoPublicKey": "Public Key",
"settings_infoContactsCount": "Contacts Count",
"settings_infoChannelCount": "Channel Count",
"settings_presets": "Presets",
"settings_preset915Mhz": "915 MHz",
"settings_preset868Mhz": "868 MHz",
"settings_preset433Mhz": "433 MHz",
"settings_frequency": "Frequency (MHz)",
"settings_frequencyHelper": "300.0 - 2500.0",
"settings_frequencyInvalid": "Invalid frequency (300-2500 MHz)",
"settings_bandwidth": "Bandwidth",
"settings_spreadingFactor": "Spreading Factor",
"settings_codingRate": "Coding Rate",
"settings_txPower": "TX Power (dBm)",
"settings_txPowerHelper": "0 - 22",
"settings_txPowerInvalid": "Invalid TX power (0-22 dBm)",
"settings_longRange": "Long Range",
"settings_fastSpeed": "Fast Speed",
"settings_error": "Error: {message}",
"@settings_error": {
"placeholders": {
"message": {"type": "String"}
}
},
"appSettings_title": "App Settings",
"appSettings_appearance": "Appearance",
"appSettings_theme": "Theme",
"appSettings_themeSystem": "System default",
"appSettings_themeLight": "Light",
"appSettings_themeDark": "Dark",
"appSettings_language": "Language",
"appSettings_languageSystem": "System default",
"appSettings_languageEn": "English",
"appSettings_languageFr": "Français",
"appSettings_languageEs": "Español",
"appSettings_languageDe": "Deutsch",
"appSettings_languagePl": "Polski",
"appSettings_languageSl": "Slovenščina",
"appSettings_languagePt": "Português",
"appSettings_languageIt": "Italiano",
"appSettings_languageZh": "中文",
"appSettings_languageSv": "Svenska",
"appSettings_languageNl": "Nederlands",
"appSettings_languageSk": "Slovenčina",
"appSettings_languageBg": "Български",
"appSettings_languageRu": "Русский",
"appSettings_languageUk": "Українська",
"appSettings_notifications": "Notifications",
"appSettings_enableNotifications": "Enable Notifications",
"appSettings_enableNotificationsSubtitle": "Receive notifications for messages and adverts",
"appSettings_notificationPermissionDenied": "Notification permission denied",
"appSettings_notificationsEnabled": "Notifications enabled",
"appSettings_notificationsDisabled": "Notifications disabled",
"appSettings_messageNotifications": "Message Notifications",
"appSettings_messageNotificationsSubtitle": "Show notification when receiving new messages",
"appSettings_channelMessageNotifications": "Channel Message Notifications",
"appSettings_channelMessageNotificationsSubtitle": "Show notification when receiving channel messages",
"appSettings_advertisementNotifications": "Advertisement Notifications",
"appSettings_advertisementNotificationsSubtitle": "Show notification when new nodes are discovered",
"appSettings_messaging": "Messaging",
"appSettings_clearPathOnMaxRetry": "Clear Path on Max Retry",
"appSettings_clearPathOnMaxRetrySubtitle": "Reset contact path after 5 failed send attempts",
"appSettings_pathsWillBeCleared": "Paths will be cleared after 5 failed retries",
"appSettings_pathsWillNotBeCleared": "Paths will not be auto-cleared",
"appSettings_autoRouteRotation": "Auto Route Rotation",
"appSettings_autoRouteRotationSubtitle": "Cycle between best paths and flood mode",
"appSettings_autoRouteRotationEnabled": "Auto route rotation enabled",
"appSettings_autoRouteRotationDisabled": "Auto route rotation disabled",
"appSettings_battery": "Battery",
"appSettings_batteryChemistry": "Battery Chemistry",
"appSettings_batteryChemistryPerDevice": "Set per device ({deviceName})",
"@appSettings_batteryChemistryPerDevice": {
"placeholders": {
"deviceName": {"type": "String"}
}
},
"appSettings_batteryChemistryConnectFirst": "Connect to a device to choose",
"appSettings_batteryNmc": "18650 NMC (3.0-4.2V)",
"appSettings_batteryLifepo4": "LiFePO4 (2.6-3.65V)",
"appSettings_batteryLipo": "LiPo (3.0-4.2V)",
"appSettings_mapDisplay": "Map Display",
"appSettings_showRepeaters": "Show Repeaters",
"appSettings_showRepeatersSubtitle": "Display repeater nodes on the map",
"appSettings_showChatNodes": "Show Chat Nodes",
"appSettings_showChatNodesSubtitle": "Display chat nodes on the map",
"appSettings_showOtherNodes": "Show Other Nodes",
"appSettings_showOtherNodesSubtitle": "Display other node types on the map",
"appSettings_timeFilter": "Time Filter",
"appSettings_timeFilterShowAll": "Show all nodes",
"appSettings_timeFilterShowLast": "Show nodes from last {hours} hours",
"@appSettings_timeFilterShowLast": {
"placeholders": {
"hours": {"type": "int"}
}
},
"appSettings_mapTimeFilter": "Map Time Filter",
"appSettings_showNodesDiscoveredWithin": "Show nodes discovered within:",
"appSettings_allTime": "All time",
"appSettings_lastHour": "Last hour",
"appSettings_last6Hours": "Last 6 hours",
"appSettings_last24Hours": "Last 24 hours",
"appSettings_lastWeek": "Last week",
"appSettings_offlineMapCache": "Offline Map Cache",
"appSettings_noAreaSelected": "No area selected",
"appSettings_areaSelectedZoom": "Area selected (zoom {minZoom}-{maxZoom})",
"@appSettings_areaSelectedZoom": {
"placeholders": {
"minZoom": {"type": "int"},
"maxZoom": {"type": "int"}
}
},
"appSettings_debugCard": "Debug",
"appSettings_appDebugLogging": "App Debug Logging",
"appSettings_appDebugLoggingSubtitle": "Log app debug messages for troubleshooting",
"appSettings_appDebugLoggingEnabled": "App debug logging enabled",
"appSettings_appDebugLoggingDisabled": "App debug logging disabled",
"contacts_title": "Contacts",
"contacts_noContacts": "No contacts yet",
"contacts_contactsWillAppear": "Contacts will appear when devices advertise",
"contacts_searchContacts": "Search contacts...",
"contacts_noUnreadContacts": "No unread contacts",
"contacts_noContactsFound": "No contacts or groups found",
"contacts_deleteContact": "Delete Contact",
"contacts_removeConfirm": "Remove {contactName} from contacts?",
"@contacts_removeConfirm": {
"placeholders": {
"contactName": {"type": "String"}
}
},
"contacts_manageRepeater": "Manage Repeater",
"contacts_manageRoom": "Manage Room Server",
"contacts_roomLogin": "Room Server Login",
"contacts_openChat": "Open Chat",
"contacts_editGroup": "Edit Group",
"contacts_deleteGroup": "Delete Group",
"contacts_deleteGroupConfirm": "Remove \"{groupName}\"?",
"@contacts_deleteGroupConfirm": {
"placeholders": {
"groupName": {"type": "String"}
}
},
"contacts_newGroup": "New Group",
"contacts_groupName": "Group name",
"contacts_groupNameRequired": "Group name is required",
"contacts_groupAlreadyExists": "Group \"{name}\" already exists",
"@contacts_groupAlreadyExists": {
"placeholders": {
"name": {"type": "String"}
}
},
"contacts_filterContacts": "Filter contacts...",
"contacts_noContactsMatchFilter": "No contacts match your filter",
"contacts_noMembers": "No members",
"contacts_lastSeenNow": "Last seen now",
"contacts_lastSeenMinsAgo": "Last seen {minutes} mins ago",
"@contacts_lastSeenMinsAgo": {
"placeholders": {
"minutes": {"type": "int"}
}
},
"contacts_lastSeenHourAgo": "Last seen 1 hour ago",
"contacts_lastSeenHoursAgo": "Last seen {hours} hours ago",
"@contacts_lastSeenHoursAgo": {
"placeholders": {
"hours": {"type": "int"}
}
},
"contacts_lastSeenDayAgo": "Last seen 1 day ago",
"contacts_lastSeenDaysAgo": "Last seen {days} days ago",
"@contacts_lastSeenDaysAgo": {
"placeholders": {
"days": {"type": "int"}
}
},
"channels_title": "Channels",
"channels_noChannelsConfigured": "No channels configured",
"channels_addPublicChannel": "Add Public Channel",
"channels_searchChannels": "Search channels...",
"channels_noChannelsFound": "No channels found",
"channels_channelIndex": "Channel {index}",
"@channels_channelIndex": {
"placeholders": {
"index": {"type": "int"}
}
},
"channels_hashtagChannel": "Hashtag channel",
"channels_public": "Public",
"channels_private": "Private",
"channels_publicChannel": "Public channel",
"channels_privateChannel": "Private channel",
"channels_editChannel": "Edit channel",
"channels_deleteChannel": "Delete channel",
"channels_deleteChannelConfirm": "Delete \"{name}\"? This cannot be undone.",
"@channels_deleteChannelConfirm": {
"placeholders": {
"name": {"type": "String"}
}
},
"channels_channelDeleted": "Channel \"{name}\" deleted",
"@channels_channelDeleted": {
"placeholders": {
"name": {"type": "String"}
}
},
"channels_addChannel": "Add Channel",
"channels_channelIndexLabel": "Channel Index",
"channels_channelName": "Channel Name",
"channels_usePublicChannel": "Use Public Channel",
"channels_standardPublicPsk": "Standard public PSK",
"channels_pskHex": "PSK (Hex)",
"channels_generateRandomPsk": "Generate random PSK",
"channels_enterChannelName": "Please enter a channel name",
"channels_pskMustBe32Hex": "PSK must be 32 hex characters",
"channels_channelAdded": "Channel \"{name}\" added",
"@channels_channelAdded": {
"placeholders": {
"name": {"type": "String"}
}
},
"channels_editChannelTitle": "Edit Channel {index}",
"@channels_editChannelTitle": {
"placeholders": {
"index": {"type": "int"}
}
},
"channels_smazCompression": "SMAZ compression",
"channels_channelUpdated": "Channel \"{name}\" updated",
"@channels_channelUpdated": {
"placeholders": {
"name": {"type": "String"}
}
},
"channels_publicChannelAdded": "Public channel added",
"channels_sortBy": "Sort by",
"channels_sortManual": "Manual",
"channels_sortAZ": "A-Z",
"channels_sortLatestMessages": "Latest messages",
"channels_sortUnread": "Unread",
"channels_createPrivateChannel": "Create a Private Channel",
"channels_createPrivateChannelDesc": "Secured with a secret key.",
"channels_joinPrivateChannel": "Join a Private Channel",
"channels_joinPrivateChannelDesc": "Manually enter a secret key.",
"channels_joinPublicChannel": "Join the Public Channel",
"channels_joinPublicChannelDesc": "Anyone can join this channel.",
"channels_joinHashtagChannel": "Join a Hashtag Channel",
"channels_joinHashtagChannelDesc": "Anyone can join hashtag channels.",
"channels_scanQrCode": "Scan a QR Code",
"channels_scanQrCodeComingSoon": "Coming soon",
"channels_enterHashtag": "Enter hashtag",
"channels_hashtagHint": "e.g. #team",
"chat_noMessages": "No messages yet",
"chat_sendMessageToStart": "Send a message to get started",
"chat_originalMessageNotFound": "Original message not found",
"chat_replyingTo": "Replying to {name}",
"@chat_replyingTo": {
"placeholders": {
"name": {"type": "String"}
}
},
"chat_replyTo": "Reply to {name}",
"@chat_replyTo": {
"placeholders": {
"name": {"type": "String"}
}
},
"chat_location": "Location",
"chat_sendMessageTo": "Send a message to {contactName}",
"@chat_sendMessageTo": {
"placeholders": {
"contactName": {"type": "String"}
}
},
"chat_typeMessage": "Type a message...",
"chat_messageTooLong": "Message too long (max {maxBytes} bytes).",
"@chat_messageTooLong": {
"placeholders": {
"maxBytes": {"type": "int"}
}
},
"chat_messageCopied": "Message copied",
"chat_messageDeleted": "Message deleted",
"chat_retryingMessage": "Retrying message",
"chat_retryCount": "Retry {current}/{max}",
"@chat_retryCount": {
"placeholders": {
"current": {"type": "int"},
"max": {"type": "int"}
}
},
"chat_sendGif": "Send GIF",
"chat_reply": "Reply",
"chat_addReaction": "Add Reaction",
"chat_me": "Me",
"emojiCategorySmileys": "Smileys",
"emojiCategoryGestures": "Gestures",
"emojiCategoryHearts": "Hearts",
"emojiCategoryObjects": "Objects",
"gifPicker_title": "Choose a GIF",
"gifPicker_searchHint": "Search GIFs...",
"gifPicker_poweredBy": "Powered by GIPHY",
"gifPicker_noGifsFound": "No GIFs found",
"gifPicker_failedLoad": "Failed to load GIFs",
"gifPicker_failedSearch": "Failed to search GIFs",
"gifPicker_noInternet": "No internet connection",
"debugLog_appTitle": "App Debug Log",
"debugLog_bleTitle": "BLE Debug Log",
"debugLog_copyLog": "Copy log",
"debugLog_clearLog": "Clear log",
"debugLog_copied": "Debug log copied",
"debugLog_bleCopied": "BLE log copied",
"debugLog_noEntries": "No debug logs yet",
"debugLog_enableInSettings": "Enable app debug logging in settings",
"debugLog_frames": "Frames",
"debugLog_rawLogRx": "Raw Log-RX",
"debugLog_noBleActivity": "No BLE activity yet",
"debugFrame_length": "Frame Length: {count} bytes",
"@debugFrame_length": {
"placeholders": {
"count": {"type": "int"}
}
},
"debugFrame_command": "Command: 0x{value}",
"@debugFrame_command": {
"placeholders": {
"value": {"type": "String"}
}
},
"debugFrame_textMessageHeader": "Text Message Frame:",
"debugFrame_destinationPubKey": "- Destination PubKey: {pubKey}",
"@debugFrame_destinationPubKey": {
"placeholders": {
"pubKey": {"type": "String"}
}
},
"debugFrame_timestamp": "- Timestamp: {timestamp}",
"@debugFrame_timestamp": {
"placeholders": {
"timestamp": {"type": "int"}
}
},
"debugFrame_flags": "- Flags: 0x{value}",
"@debugFrame_flags": {
"placeholders": {
"value": {"type": "String"}
}
},
"debugFrame_textType": "- Text Type: {type} ({label})",
"@debugFrame_textType": {
"placeholders": {
"type": {"type": "int"},
"label": {"type": "String"}
}
},
"debugFrame_textTypeCli": "CLI",
"debugFrame_textTypePlain": "Plain",
"debugFrame_text": "- Text: \"{text}\"",
"@debugFrame_text": {
"placeholders": {
"text": {"type": "String"}
}
},
"debugFrame_hexDump": "Hex Dump:",
"chat_pathManagement": "Path Management",
"chat_routingMode": "Routing mode",
"chat_autoUseSavedPath": "Auto (use saved path)",
"chat_forceFloodMode": "Force Flood Mode",
"chat_recentAckPaths": "Recent ACK Paths (tap to use):",
"chat_pathHistoryFull": "Path history is full. Remove entries to add new ones.",
"chat_hopSingular": "hop",
"chat_hopPlural": "hops",
"chat_hopsCount": "{count} {count, plural, =1{hop} other{hops}}",
"@chat_hopsCount": {
"placeholders": {
"count": {"type": "int"}
}
},
"chat_successes": "successes",
"chat_removePath": "Remove path",
"chat_noPathHistoryYet": "No path history yet.\nSend a message to discover paths.",
"chat_pathActions": "Path Actions:",
"chat_setCustomPath": "Set Custom Path",
"chat_setCustomPathSubtitle": "Manually specify routing path",
"chat_clearPath": "Clear Path",
"chat_clearPathSubtitle": "Force rediscovery on next send",
"chat_pathCleared": "Path cleared. Next message will rediscover route.",
"chat_floodModeSubtitle": "Use routing toggle in app bar",
"chat_floodModeEnabled": "Flood mode enabled. Toggle back via routing icon in app bar.",
"chat_fullPath": "Full Path",
"chat_pathDetailsNotAvailable": "Path details not available yet. Try sending a message to refresh.",
"chat_pathSetHops": "Path set: {hopCount} {hopCount, plural, =1{hop} other{hops}} - {status}",
"@chat_pathSetHops": {
"placeholders": {
"hopCount": {"type": "int"},
"status": {"type": "String"}
}
},
"chat_pathSavedLocally": "Saved locally. Connect to sync.",
"chat_pathDeviceConfirmed": "Device confirmed.",
"chat_pathDeviceNotConfirmed": "Device not confirmed yet.",
"chat_type": "Type",
"chat_path": "Path",
"chat_publicKey": "Public Key",
"chat_compressOutgoingMessages": "Compress outgoing messages",
"chat_floodForced": "Flood (forced)",
"chat_directForced": "Direct (forced)",
"chat_hopsForced": "{count} hops (forced)",
"@chat_hopsForced": {
"placeholders": {
"count": {"type": "int"}
}
},
"chat_floodAuto": "Flood (auto)",
"chat_direct": "Direct",
"chat_poiShared": "POI Shared",
"chat_unread": "Unread: {count}",
"@chat_unread": {
"placeholders": {
"count": {"type": "int"}
}
},
"chat_openLink": "Open Link?",
"chat_openLinkConfirmation": "Do you want to open this link in your browser?",
"chat_open": "Open",
"chat_couldNotOpenLink": "Could not open link: {url}",
"@chat_couldNotOpenLink": {
"placeholders": {
"url": {"type": "String"}
}
},
"chat_invalidLink": "Invalid link format",
"map_title": "Node Map",
"map_noNodesWithLocation": "No nodes with location data",
"map_nodesNeedGps": "Nodes need to share their GPS coordinates\nto appear on the map",
"map_nodesCount": "Nodes: {count}",
"@map_nodesCount": {
"placeholders": {
"count": {"type": "int"}
}
},
"map_pinsCount": "Pins: {count}",
"@map_pinsCount": {
"placeholders": {
"count": {"type": "int"}
}
},
"map_chat": "Chat",
"map_repeater": "Repeater",
"map_room": "Room",
"map_sensor": "Sensor",
"map_pinDm": "Pin (DM)",
"map_pinPrivate": "Pin (Private)",
"map_pinPublic": "Pin (Public)",
"map_lastSeen": "Last Seen",
"map_disconnectConfirm": "Are you sure you want to disconnect from this device?",
"map_from": "From",
"map_source": "Source",
"map_flags": "Flags",
"map_shareMarkerHere": "Share marker here",
"map_pinLabel": "Pin label",
"map_label": "Label",
"map_pointOfInterest": "Point of interest",
"map_sendToContact": "Send to contact",
"map_sendToChannel": "Send to channel",
"map_noChannelsAvailable": "No channels available",
"map_publicLocationShare": "Public location share",
"map_publicLocationShareConfirm": "You are about to share a location in {channelLabel}. This channel is public and anyone with the PSK can see it.",
"@map_publicLocationShareConfirm": {
"placeholders": {
"channelLabel": {"type": "String"}
}
},
"map_connectToShareMarkers": "Connect to a device to share markers",
"map_filterNodes": "Filter Nodes",
"map_nodeTypes": "Node Types",
"map_chatNodes": "Chat Nodes",
"map_repeaters": "Repeaters",
"map_otherNodes": "Other Nodes",
"map_keyPrefix": "Key Prefix",
"map_filterByKeyPrefix": "Filter by key prefix",
"map_publicKeyPrefix": "Public key prefix",
"map_markers": "Markers",
"map_showSharedMarkers": "Show shared markers",
"map_lastSeenTime": "Last Seen Time",
"map_sharedPin": "Shared pin",
"map_joinRoom": "Join Room",
"map_manageRepeater": "Manage Repeater",
"mapCache_title": "Offline Map Cache",
"mapCache_selectAreaFirst": "Select an area to cache first",
"mapCache_noTilesToDownload": "No tiles to download for this area",
"mapCache_downloadTilesTitle": "Download tiles",
"mapCache_downloadTilesPrompt": "Download {count} tiles for offline use?",
"@mapCache_downloadTilesPrompt": {
"placeholders": {
"count": {"type": "int"}
}
},
"mapCache_downloadAction": "Download",
"mapCache_cachedTiles": "Cached {count} tiles",
"@mapCache_cachedTiles": {
"placeholders": {
"count": {"type": "int"}
}
},
"mapCache_cachedTilesWithFailed": "Cached {downloaded} tiles ({failed} failed)",
"@mapCache_cachedTilesWithFailed": {
"placeholders": {
"downloaded": {"type": "int"},
"failed": {"type": "int"}
}
},
"mapCache_clearOfflineCacheTitle": "Clear offline cache",
"mapCache_clearOfflineCachePrompt": "Remove all cached map tiles?",
"mapCache_offlineCacheCleared": "Offline cache cleared",
"mapCache_noAreaSelected": "No area selected",
"mapCache_cacheArea": "Cache Area",
"mapCache_useCurrentView": "Use Current View",
"mapCache_zoomRange": "Zoom Range",
"mapCache_estimatedTiles": "Estimated tiles: {count}",
"@mapCache_estimatedTiles": {
"placeholders": {
"count": {"type": "int"}
}
},
"mapCache_downloadedTiles": "Downloaded {completed} / {total}",
"@mapCache_downloadedTiles": {
"placeholders": {
"completed": {"type": "int"},
"total": {"type": "int"}
}
},
"mapCache_downloadTilesButton": "Download Tiles",
"mapCache_clearCacheButton": "Clear Cache",
"mapCache_failedDownloads": "Failed downloads: {count}",
"@mapCache_failedDownloads": {
"placeholders": {
"count": {"type": "int"}
}
},
"mapCache_boundsLabel": "N {north}, S {south}, E {east}, W {west}",
"@mapCache_boundsLabel": {
"placeholders": {
"north": {"type": "String"},
"south": {"type": "String"},
"east": {"type": "String"},
"west": {"type": "String"}
}
},
"time_justNow": "Just now",
"time_minutesAgo": "{minutes}m ago",
"@time_minutesAgo": {
"placeholders": {
"minutes": {"type": "int"}
}
},
"time_hoursAgo": "{hours}h ago",
"@time_hoursAgo": {
"placeholders": {
"hours": {"type": "int"}
}
},
"time_daysAgo": "{days}d ago",
"@time_daysAgo": {
"placeholders": {
"days": {"type": "int"}
}
},
"time_hour": "hour",
"time_hours": "hours",
"time_day": "day",
"time_days": "days",
"time_week": "week",
"time_weeks": "weeks",
"time_month": "month",
"time_months": "months",
"time_minutes": "minutes",
"time_allTime": "All Time",
"dialog_disconnect": "Disconnect",
"dialog_disconnectConfirm": "Are you sure you want to disconnect from this device?",
"login_repeaterLogin": "Repeater Login",
"login_roomLogin": "Room Server Login",
"login_password": "Password",
"login_enterPassword": "Enter password",
"login_savePassword": "Save password",
"login_savePasswordSubtitle": "Password will be stored securely on this device",
"login_repeaterDescription": "Enter the repeater password to access settings and status.",
"login_roomDescription": "Enter the room password to access settings and status.",
"login_routing": "Routing",
"login_routingMode": "Routing mode",
"login_autoUseSavedPath": "Auto (use saved path)",
"login_forceFloodMode": "Force Flood Mode",
"login_managePaths": "Manage Paths",
"login_login": "Login",
"login_attempt": "Attempt {current}/{max}",
"@login_attempt": {
"placeholders": {
"current": {"type": "int"},
"max": {"type": "int"}
}
},
"login_failed": "Login failed: {error}",
"@login_failed": {
"placeholders": {
"error": {"type": "String"}
}
},
"login_failedMessage": "Login failed. Either the password is incorrect or the repeater is unreachable.",
"common_reload": "Reload",
"common_clear": "Clear",
"path_currentPath": "Current path: {path}",
"@path_currentPath": {
"placeholders": {
"path": {"type": "String"}
}
},
"path_usingHopsPath": "Using {count} {count, plural, =1{hop} other{hops}} path",
"@path_usingHopsPath": {
"placeholders": {
"count": {"type": "int"}
}
},
"path_enterCustomPath": "Enter Custom Path",
"path_currentPathLabel": "Current path",
"path_hexPrefixInstructions": "Enter 2-character hex prefixes for each hop, separated by commas.",
"path_hexPrefixExample": "Example: A1,F2,3C (each node uses first byte of its public key)",
"path_labelHexPrefixes": "Path (hex prefixes)",
"path_helperMaxHops": "Max 64 hops. Each prefix is 2 hex characters (1 byte)",
"path_selectFromContacts": "Or select from contacts:",
"path_noRepeatersFound": "No repeaters or room servers found.",
"path_customPathsRequire": "Custom paths require intermediate hops that can relay messages.",
"path_invalidHexPrefixes": "Invalid hex prefixes: {prefixes}",
"@path_invalidHexPrefixes": {
"placeholders": {
"prefixes": {"type": "String"}
}
},
"path_tooLong": "Path too long. Maximum 64 hops allowed.",
"path_setPath": "Set Path",
"repeater_management": "Repeater Management",
"room_management": "Room Server Management",
"repeater_managementTools": "Management Tools",
"repeater_status": "Status",
"repeater_statusSubtitle": "View repeater status, stats, and neighbors",
"repeater_telemetry": "Telemetry",
"repeater_telemetrySubtitle": "View telemetry of sensors and system stats",
"repeater_cli": "CLI",
"repeater_cliSubtitle": "Send commands to the repeater",
"repeater_neighbours": "Neighbors",
"repeater_neighboursSubtitle": "View zero hop neighbors.",
"repeater_settings": "Settings",
"repeater_settingsSubtitle": "Configure repeater parameters",
"repeater_statusTitle": "Repeater Status",
"repeater_routingMode": "Routing mode",
"repeater_autoUseSavedPath": "Auto (use saved path)",
"repeater_forceFloodMode": "Force Flood Mode",
"repeater_pathManagement": "Path management",
"repeater_refresh": "Refresh",
"repeater_statusRequestTimeout": "Status request timed out.",
"repeater_errorLoadingStatus": "Error loading status: {error}",
"@repeater_errorLoadingStatus": {
"placeholders": {
"error": {"type": "String"}
}
},
"repeater_systemInformation": "System Information",
"repeater_battery": "Battery",
"repeater_batteryChemistry": "Battery Type",
"repeater_clockAtLogin": "Clock (at login)",
"repeater_uptime": "Uptime",
"repeater_queueLength": "Queue Length",
"repeater_debugFlags": "Debug Flags",
"repeater_radioStatistics": "Radio Statistics",
"repeater_lastRssi": "Last RSSI",
"repeater_lastSnr": "Last SNR",
"repeater_noiseFloor": "Noise Floor",
"repeater_txAirtime": "TX Airtime",
"repeater_rxAirtime": "RX Airtime",
"repeater_packetStatistics": "Packet Statistics",
"repeater_sent": "Sent",
"repeater_received": "Received",
"repeater_duplicates": "Duplicates",
"repeater_daysHoursMinsSecs": "{days} days {hours}h {minutes}m {seconds}s",
"@repeater_daysHoursMinsSecs": {
"placeholders": {
"days": {"type": "int"},
"hours": {"type": "int"},
"minutes": {"type": "int"},
"seconds": {"type": "int"}
}
},
"repeater_packetTxTotal": "Total: {total}, Flood: {flood}, Direct: {direct}",
"@repeater_packetTxTotal": {
"placeholders": {
"total": {"type": "int"},
"flood": {"type": "String"},
"direct": {"type": "String"}
}
},
"repeater_packetRxTotal": "Total: {total}, Flood: {flood}, Direct: {direct}",
"@repeater_packetRxTotal": {
"placeholders": {
"total": {"type": "int"},
"flood": {"type": "String"},
"direct": {"type": "String"}
}
},
"repeater_duplicatesFloodDirect": "Flood: {flood}, Direct: {direct}",
"@repeater_duplicatesFloodDirect": {
"placeholders": {
"flood": {"type": "String"},
"direct": {"type": "String"}
}
},
"repeater_duplicatesTotal": "Total: {total}",
"@repeater_duplicatesTotal": {
"placeholders": {
"total": {"type": "int"}
}
},
"repeater_settingsTitle": "Repeater Settings",
"repeater_basicSettings": "Basic Settings",
"repeater_repeaterName": "Repeater Name",
"repeater_repeaterNameHelper": "Display name for this repeater",
"repeater_adminPassword": "Admin Password",
"repeater_adminPasswordHelper": "Full access password",
"repeater_guestPassword": "Guest Password",
"repeater_guestPasswordHelper": "Read-only access password",
"repeater_radioSettings": "Radio Settings",
"repeater_frequencyMhz": "Frequency (MHz)",
"repeater_frequencyHelper": "300-2500 MHz",
"repeater_txPower": "TX Power",
"repeater_txPowerHelper": "1-30 dBm",
"repeater_bandwidth": "Bandwidth",
"repeater_spreadingFactor": "Spreading Factor",
"repeater_codingRate": "Coding Rate",
"repeater_locationSettings": "Location Settings",
"repeater_latitude": "Latitude",
"repeater_latitudeHelper": "Decimal degrees (e.g., 37.7749)",
"repeater_longitude": "Longitude",
"repeater_longitudeHelper": "Decimal degrees (e.g., -122.4194)",
"repeater_features": "Features",
"repeater_packetForwarding": "Packet Forwarding",
"repeater_packetForwardingSubtitle": "Enable repeater to forward packets",
"repeater_guestAccess": "Guest Access",
"repeater_guestAccessSubtitle": "Allow read-only guest access",
"repeater_privacyMode": "Privacy Mode",
"repeater_privacyModeSubtitle": "Hide name/location in advertisements",
"repeater_advertisementSettings": "Advertisement Settings",
"repeater_localAdvertInterval": "Local Advertisement Interval",
"repeater_localAdvertIntervalMinutes": "{minutes} minutes",
"@repeater_localAdvertIntervalMinutes": {
"placeholders": {
"minutes": {"type": "int"}
}
},
"repeater_floodAdvertInterval": "Flood Advertisement Interval",
"repeater_floodAdvertIntervalHours": "{hours} hours",
"@repeater_floodAdvertIntervalHours": {
"placeholders": {
"hours": {"type": "int"}
}
},
"repeater_encryptedAdvertInterval": "Encrypted Advertisement Interval",
"repeater_dangerZone": "Danger Zone",
"repeater_rebootRepeater": "Reboot Repeater",
"repeater_rebootRepeaterSubtitle": "Restart the repeater device",
"repeater_rebootRepeaterConfirm": "Are you sure you want to reboot this repeater?",
"repeater_regenerateIdentityKey": "Regenerate Identity Key",
"repeater_regenerateIdentityKeySubtitle": "Generate new public/private key pair",
"repeater_regenerateIdentityKeyConfirm": "This will generate a new identity for the repeater. Continue?",
"repeater_eraseFileSystem": "Erase File System",
"repeater_eraseFileSystemSubtitle": "Format the repeater file system",
"repeater_eraseFileSystemConfirm": "WARNING: This will erase all data on the repeater. This cannot be undone!",
"repeater_eraseSerialOnly": "Erase is only available over serial console.",
"repeater_commandSent": "Command sent: {command}",
"@repeater_commandSent": {
"placeholders": {
"command": {"type": "String"}
}
},
"repeater_errorSendingCommand": "Error sending command: {error}",
"@repeater_errorSendingCommand": {
"placeholders": {
"error": {"type": "String"}
}
},
"repeater_confirm": "Confirm",
"repeater_settingsSaved": "Settings saved successfully",
"repeater_errorSavingSettings": "Error saving settings: {error}",
"@repeater_errorSavingSettings": {
"placeholders": {
"error": {"type": "String"}
}
},
"repeater_refreshBasicSettings": "Refresh Basic Settings",
"repeater_refreshRadioSettings": "Refresh Radio Settings",
"repeater_refreshTxPower": "Refresh TX power",
"repeater_refreshLocationSettings": "Refresh Location Settings",
"repeater_refreshPacketForwarding": "Refresh Packet Forwarding",
"repeater_refreshGuestAccess": "Refresh Guest Access",
"repeater_refreshPrivacyMode": "Refresh Privacy Mode",
"repeater_refreshAdvertisementSettings": "Refresh Advertisement Settings",
"repeater_refreshed": "{label} refreshed",
"@repeater_refreshed": {
"placeholders": {
"label": {"type": "String"}
}
},
"repeater_errorRefreshing": "Error refreshing {label}",
"@repeater_errorRefreshing": {
"placeholders": {
"label": {"type": "String"}
}
},
"repeater_cliTitle": "Repeater CLI",
"repeater_debugNextCommand": "Debug Next Command",
"repeater_commandHelp": "Command Help",
"repeater_clearHistory": "Clear History",
"repeater_noCommandsSent": "No commands sent yet",
"repeater_typeCommandOrUseQuick": "Type a command below or use quick commands",
"repeater_enterCommandHint": "Enter command...",
"repeater_previousCommand": "Previous command",
"repeater_nextCommand": "Next command",
"repeater_enterCommandFirst": "Enter a command first",
"repeater_cliCommandFrameTitle": "CLI Command Frame",
"repeater_cliCommandError": "Error: {error}",
"@repeater_cliCommandError": {
"placeholders": {
"error": {"type": "String"}
}
},
"repeater_cliQuickGetName": "Get Name",
"repeater_cliQuickGetRadio": "Get Radio",
"repeater_cliQuickGetTx": "Get TX",
"repeater_cliQuickNeighbors": "Neighbors",
"repeater_cliQuickVersion": "Version",
"repeater_cliQuickAdvertise": "Advertise",
"repeater_cliQuickClock": "Clock",
"repeater_cliHelpAdvert": "Sends an advertisement packet",
"repeater_cliHelpReboot": "Reboots the device. (note, you'll prob get 'Timeout' which is normal)",
"repeater_cliHelpClock": "Displays current time per device's clock.",
"repeater_cliHelpPassword": "Sets a new admin password for the device.",
"repeater_cliHelpVersion": "Shows the device version and firmware build date.",
"repeater_cliHelpClearStats": "Resets various stats counters to zero.",
"repeater_cliHelpSetAf": "Sets the air-time-factor.",
"repeater_cliHelpSetTx": "Sets LoRa transmit power in dBm. (reboot to apply)",
"repeater_cliHelpSetRepeat": "Enables or disables the repeater role for this node.",
"repeater_cliHelpSetAllowReadOnly": "(Room server) If 'on', then login in blank password will be allowed, but cannot Post to room. (just read only)",
"repeater_cliHelpSetFloodMax": "Sets the maximum number of hops of inbound flood packet (if >= max, packet is not forwarded)",
"repeater_cliHelpSetIntThresh": "Sets the Interference Threshold (in DB). Default is 14. Set to 0 to disable channel interference detection.",
"repeater_cliHelpSetAgcResetInterval": "Sets the interval to reset the Auto Gain Controller. Set to 0 to disable.",
"repeater_cliHelpSetMultiAcks": "Enables or disables the 'double ACKs' feature.",
"repeater_cliHelpSetAdvertInterval": "Sets the timer interval in minutes to send a local (zero-hop) advertisement packet. Set to 0 to disable.",
"repeater_cliHelpSetFloodAdvertInterval": "Sets the timer interval in hours to send a flood advertisement packet. Set to 0 to disable.",
"repeater_cliHelpSetGuestPassword": "Sets/updates the guest password. (for repeaters, guest logins can send the \"Get Stats\" request)",
"repeater_cliHelpSetName": "Sets the advertisement name.",