-
-
Notifications
You must be signed in to change notification settings - Fork 441
Expand file tree
/
Copy pathstrings.xml
More file actions
1150 lines (1115 loc) · 81.6 KB
/
strings.xml
File metadata and controls
1150 lines (1115 loc) · 81.6 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
<!--
~ Copyright (c) 2025 Meshtastic LLC
~
~ This program is free software: you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation, either version 3 of the License, or
~ (at your option) any later version.
~
~ This program is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU General Public License for more details.
~
~ You should have received a copy of the GNU General Public License
~ along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<resources>
<string name="meshtastic_app_name">Meshtastic</string>
<!-- Language tags native names (not available via .getDisplayLanguage) -->
<string name="fr_HT" translatable="false">Kreyòl ayisyen</string>
<string name="pt_BR" translatable="false">Português do Brasil</string>
<string name="zh_CN" translatable="false">简体中文</string>
<string name="zh_TW" translatable="false">繁體中文</string>
<string name="some_username" translatable="false">SKH</string>
<string name="sample_message" translatable="false">hey I found the cache, it is over here next to the big tiger. I'm kinda scared.</string>
<string name="default_mqtt_address" translatable="false">mqtt.meshtastic.org</string>
<string name="fallback_node_name">Meshtastic</string>
<string name="node_filter_placeholder">Filter</string>
<string name="desc_node_filter_clear">clear node filter</string>
<string name="node_filter_title">Filter by</string>
<string name="node_filter_include_unknown">Include unknown</string>
<string name="node_filter_exclude_infrastructure">Exclude infrastructure</string>
<string name="node_filter_only_online">Hide offline nodes</string>
<string name="node_filter_only_direct">Only show direct nodes</string>
<string name="node_filter_ignored">You are viewing ignored nodes,\nPress to return to the node list.</string>
<string name="node_filter_show_details">Show details</string>
<string name="node_sort_title">Sort by</string>
<string name="node_sort_button">Node sorting options</string>
<string name="node_sort_alpha">A-Z</string>
<string name="node_sort_channel">Channel</string>
<string name="node_sort_distance">Distance</string>
<string name="node_sort_hops_away">Hops away</string>
<string name="node_sort_last_heard">Last heard</string>
<string name="node_sort_via_mqtt">via MQTT</string>
<string name="via_mqtt">via MQTT</string>
<string name="node_sort_via_favorite">via Favorite</string>
<string name="node_filter_show_ignored">Only show ignored Nodes</string>
<string name="unrecognized">Unrecognized</string>
<string name="message_status_enroute">Waiting to be acknowledged</string>
<string name="message_status_queued">Queued for sending</string>
<string name="message_status_sfpp_routing">Routing via SF++ chain…</string>
<string name="message_status_sfpp_confirmed">Confirmed on SF++ chain</string>
<string name="message_retry_count">Retries: %1$d / %2$d</string>
<string name="retry_dialog_title">Message Failed to Send</string>
<string name="retry_dialog_message">Retrying in %1$d seconds… (Attempt %2$d of %3$d)</string>
<string name="retry_dialog_reaction_message">Retrying reaction in %1$d seconds… (Attempt %2$d of %3$d)</string>
<string name="retry_dialog_confirm">Retry Now</string>
<string name="retry_dialog_cancel">Cancel Retry</string>
<string name="routing_error_none">Acknowledged</string>
<string name="routing_error_no_route">No route</string>
<string name="routing_error_got_nak">Received a negative acknowledgment</string>
<string name="routing_error_timeout">Timeout</string>
<string name="routing_error_no_interface">No Interface</string>
<string name="routing_error_max_retransmit">Max Retransmission Reached</string>
<string name="routing_error_no_channel">No Channel</string>
<string name="routing_error_too_large">Packet too large</string>
<string name="routing_error_no_response">No response</string>
<string name="routing_error_bad_request">Bad Request</string>
<string name="routing_error_duty_cycle_limit">Regional Duty Cycle Limit Reached</string>
<string name="routing_error_not_authorized">Not Authorized</string>
<string name="routing_error_pki_failed">Encrypted Send Failed</string>
<string name="routing_error_pki_unknown_pubkey">Unknown Public Key</string>
<string name="routing_error_admin_bad_session_key">Bad session key</string>
<string name="routing_error_admin_public_key_unauthorized">Public Key unauthorized</string>
<string name="routing_error_pki_send_fail_public_key">PKI send failed, no public key</string>
<string name="role_client">Client</string>
<string name="role_client_desc">App connected or standalone messaging device.</string>
<string name="role_client_mute">Client Mute</string>
<string name="role_client_mute_desc">Device that does not forward packets from other devices.</string>
<string name="role_client_base">Client Base</string>
<string name="role_client_base_desc">Treats packets from or to favorited nodes as ROUTER_LATE, and all other packets as CLIENT.</string>
<string name="role_router">Router</string>
<string name="role_router_desc">Infrastructure node for extending network coverage by relaying messages. Visible in nodes list.</string>
<string name="role_router_client">Router Client</string>
<string name="role_router_client_desc">Combination of both ROUTER and CLIENT. Not for mobile devices.</string>
<string name="role_repeater">Repeater</string>
<string name="role_repeater_desc">Infrastructure node for extending network coverage by relaying messages with minimal overhead. Not visible in nodes list.</string>
<string name="role_tracker">Tracker</string>
<string name="role_tracker_desc">Broadcasts GPS position packets as priority.</string>
<string name="role_sensor">Sensor</string>
<string name="role_sensor_desc">Broadcasts telemetry packets as priority.</string>
<string name="role_tak">TAK</string>
<string name="role_tak_desc">Optimized for ATAK system communication, reduces routine broadcasts.</string>
<string name="role_client_hidden">Client Hidden</string>
<string name="role_client_hidden_desc">Device that only broadcasts as needed for stealth or power savings.</string>
<string name="role_lost_and_found">Lost and Found</string>
<string name="role_lost_and_found_desc">Broadcasts location as message to default channel regularly for to assist with device recovery.</string>
<string name="role_tak_tracker">TAK Tracker</string>
<string name="role_tak_tracker_desc">Enables automatic TAK PLI broadcasts and reduces routine broadcasts.</string>
<string name="role_router_late">Router Late</string>
<string name="role_router_late_desc">Infrastructure node that always rebroadcasts packets once but only after all other modes, ensuring additional coverage for local clusters. Visible in nodes list.</string>
<string name="rebroadcast_mode_all">All</string>
<string name="rebroadcast_mode_all_desc">Rebroadcast any observed message, if it was on our private channel or from another mesh with the same lora parameters.</string>
<string name="rebroadcast_mode_all_skip_decoding">All Skip Decoding</string>
<string name="rebroadcast_mode_all_skip_decoding_desc">Same as behavior as ALL but skips packet decoding and simply rebroadcasts them. Only available in Repeater role. Setting this on any other roles will result in ALL behavior.</string>
<string name="rebroadcast_mode_local_only">Local Only</string>
<string name="rebroadcast_mode_local_only_desc">Ignores observed messages from foreign meshes that are open or those which it cannot decrypt. Only rebroadcasts message on the nodes local primary / secondary channels.</string>
<string name="rebroadcast_mode_known_only">Known Only</string>
<string name="rebroadcast_mode_known_only_desc">Ignores observed messages from foreign meshes like LOCAL ONLY, but takes it step further by also ignoring messages from nodes not already in the node's known list.</string>
<string name="rebroadcast_mode_none">None</string>
<string name="rebroadcast_mode_none_desc">Only permitted for SENSOR, TRACKER and TAK_TRACKER roles, this will inhibit all rebroadcasts, not unlike CLIENT_MUTE role.</string>
<string name="rebroadcast_mode_core_portnums_only">Core Portnums Only</string>
<string name="rebroadcast_mode_core_portnums_only_desc">Ignores packets from non-standard portnums such as: TAK, RangeTest, PaxCounter, etc. Only rebroadcasts packets with standard portnums: NodeInfo, Text, Position, Telemetry, and Routing.</string>
<string name="config_device_doubleTapAsButtonPress_summary">Treat double tap on supported accelerometers as a user button press.</string>
<string name="config_device_tripleClickAsAdHocPing_summary">Send a position on the primary channel when the user button is triple clicked.</string>
<string name="config_device_ledHeartbeatEnabled_summary">Controls the blinking LED on the device. For most devices this will control one of the up to 4 LEDs, the charger and GPS LEDs are not controllable.</string>
<string name="config_device_tzdef_summary">Time zone for dates on the device screen and log.</string>
<string name="config_device_use_phone_tz">Use phone time zone</string>
<string name="config_device_transmitOverLora_summary">Whether in addition to sending it to MQTT and the PhoneAPI, our NeighborInfo should be transmitted over LoRa. Not available on a channel with default key and name.</string>
<string name="config_display_screen_on_secs_summary">How long the screen remains on after the user button is pressed or messages are received.</string>
<string name="config_display_auto_screen_carousel_secs_summary">Automatically toggles to the next page on the screen like a carousel, based the specified interval.</string>
<string name="config_display_compass_north_top_summary">The compass heading on the screen outside of the circle will always point north.</string>
<string name="config_display_flip_screen_summary">Flip screen vertically.</string>
<string name="config_display_units_summary">Units displayed on the device screen.</string>
<string name="config_display_oled_summary">Override automatic OLED screen detection.</string>
<string name="config_display_displaymode_summary">Override default screen layout.</string>
<string name="config_display_heading_bold_summary">Bold the heading text on the screen.</string>
<string name="config_display_wake_on_tap_or_motion_summary">Requires that there be an accelerometer on your device.</string>
<string name="config_lora_region_summary">The region where you will be using your radios.</string>
<string name="config_lora_modem_preset_summary">Available modem presets, default is Long Fast.</string>
<string name="config_lora_hop_limit_summary">Sets the maximum number of hops, default is 3. Increasing hops also increases congestion and should be used carefully. 0 hop broadcast messages will not get ACKs.</string>
<string name="config_lora_frequency_slot_summary">Your node’s operating frequency is calculated based on the region, modem preset, and this field. When 0, the slot is automatically calculated based on the primary channel name and will change from the default public slot. Change back to the public default slot if private primary and public secondary channels are configured.</string>
<string name="label_very_long_slow">Very Long Range - Slow</string>
<string name="label_long_fast">Long Range - Fast</string>
<string name="label_long_turbo">Long Range - Turbo</string>
<string name="label_long_moderate">Long Range - Moderate</string>
<string name="label_long_slow">Long Range - Slow</string>
<string name="label_medium_fast">Medium Range - Fast</string>
<string name="label_medium_slow">Medium Range - Slow</string>
<string name="label_short_turbo">Short Range - Turbo</string>
<string name="label_short_fast">Short Range - Fast</string>
<string name="label_short_slow">Short Range - Slow</string>
<string name="label_lite_fast">Lite - Fast</string>
<string name="label_lite_slow">Lite - Slow</string>
<string name="label_narrow_fast">Narrow - Fast</string>
<string name="label_narrow_slow">Narrow - Slow</string>
<string name="config_network_wifi_enabled_summary">Enabling WiFi will disable the bluetooth connection to the app.</string>
<string name="config_network_eth_enabled_summary">Enabling Ethernet will disable the bluetooth connection to the app. TCP node connections are not available on Apple devices.</string>
<string name="config_network_udp_enabled_summary">Enable broadcasting packets via UDP over the local network.</string>
<string name="config_position_broadcast_secs_summary">The maximum interval that can elapse without a node broadcasting a position.</string>
<string name="config_position_broadcast_smart_minimum_interval_secs_summary">The fastest that position updates will be sent if the minimum distance has been satisfied.</string>
<string name="config_position_broadcast_smart_minimum_distance_summary">The minimum distance change in meters to be considered for a smart position broadcast.</string>
<string name="config_position_gps_update_interval_summary">How often should we try to get a GPS position (<10sec keeps GPS on).</string>
<string name="config_position_flags_summary">Optional fields to include when assembling position messages. the more fields are included, the larger the message will be - leading to longer airtime and a higher risk of packet loss.</string>
<string name="config_power_is_power_saving_summary">Will sleep everything as much as possible, for the tracker and sensor role this will also include the lora radio. Don't use this setting if you want to use your device with the phone apps or are using a device without a user button.</string>
<string name="config_security_public_key">Generated from your public key and sent out to other nodes on the mesh to allow them to compute a shared secret key.</string>
<string name="config_security_private_key">Used to create a shared key with a remote device.</string>
<string name="config_security_admin_key">The public key authorized to send admin messages to this node.</string>
<string name="config_security_is_managed">Device is managed by a mesh administrator, the user is unable to access any of the device settings.</string>
<string name="config_security_serial_enabled">Serial Console over the Stream API.</string>
<string name="config_security_debug_log_api_enabled">Output live debug logging over serial, view and export position-redacted device logs over Bluetooth.</string>
<!-- Position Config -->
<string name="position_packet">Position Packet</string>
<string name="broadcast_interval">Broadcast Interval</string>
<string name="smart_position">Smart Position</string>
<string name="minimum_interval">Minimum Interval</string>
<string name="minimum_distance">Minimum Distance</string>
<string name="device_gps">Device GPS</string>
<string name="fixed_position">Fixed Position</string>
<string name="altitude">Altitude</string>
<string name="update_interval">Update Interval</string>
<string name="advanced_device_gps">Advanced Device GPS</string>
<string name="gps_receive_gpio">GPS Receive GPIO</string>
<string name="gps_transmit_gpio">GPS Transmit GPIO</string>
<string name="gps_en_gpio">GPS EN GPIO</string>
<string name="gpio">GPIO</string>
<string name="debug">Debug</string>
<string name="elevation_suffix" translatable="false">MSL</string>
<string name="channel_air_util" translatable="false">ChUtil %.1f%% AirUtilTX %.1f%%</string>
<string name="channel_name">Channel Name</string>
<string name="qr_code">QR code</string>
<string name="unknown_username">Unknown Username</string>
<string name="send">Send</string>
<string name="warning_not_paired">You haven't yet paired a Meshtastic compatible radio with this phone. Please pair a device and set your username.\n\nThis open-source application is in development, if you find problems please post on our forum: https://github.com/orgs/meshtastic/discussions.\n\nFor more information see our web page - www.meshtastic.org.</string>
<string name="you">You</string>
<string name="analytics_okay">Allow analytics and crash reporting.</string>
<string name="accept">Accept</string>
<string name="cancel">Cancel</string>
<string name="discard_changes">Discard</string>
<string name="save_changes">Save</string>
<string name="new_channel_rcvd">New Channel URL received</string>
<string name="permission_missing">Meshtastic needs location permissions enabled to find new devices via Bluetooth. You can disable when not in use.</string>
<string name="report_bug">Report Bug</string>
<string name="report_a_bug">Report a bug</string>
<string name="report_bug_text">Are you sure you want to report a bug? After reporting, please post in https://github.com/orgs/meshtastic/discussions so we can match up the report with what you found.</string>
<string name="report">Report</string>
<string name="pairing_completed">Pairing completed, starting service</string>
<string name="pairing_failed_try_again">Pairing failed, please select again</string>
<string name="location_disabled">Location access is turned off, can not provide position to mesh.</string>
<string name="share">Share</string>
<string name="new_node_seen">New Node Seen: %1$s</string>
<string name="disconnected">Disconnected</string>
<string name="device_sleeping">Device sleeping</string>
<string name="connected_count">Connected: %1$s online</string>
<string name="ip_address">IP Address:</string>
<string name="ip_port">Port:</string>
<string name="connected">Connected</string>
<string name="connected_to">Connected to radio (%1$s)</string>
<string name="connection_status">Current connections:</string>
<string name="wifi_ip">Wifi IP:</string>
<string name="ethernet_ip">Ethernet IP:</string>
<string name="connecting">Connecting</string>
<string name="not_connected">Not connected</string>
<string name="no_device_selected">No device selected</string>
<string name="connected_sleeping">Connected to radio, but it is sleeping</string>
<string name="app_too_old">Application update required</string>
<string name="must_update">You must update this application on the app store (or Github). It is too old to talk to this radio firmware. Please read our <a href="https://meshtastic.org/docs/software/android/installation">docs</a> on this topic.</string>
<string name="none">None (disable)</string>
<string name="meshtastic_service_notifications">Service notifications</string>
<string name="acknowledgements">Acknowledgements</string>
<string name="channel_invalid">This Channel URL is invalid and can not be used</string>
<string name="contact_invalid">This contact is invalid and can not be added</string>
<string name="debug_panel">Debug Panel</string>
<string name="debug_decoded_payload">Decoded Payload:</string>
<string name="debug_logs_export">Export Logs</string>
<string name="debug_export_cancelled">Export canceled</string>
<string name="debug_export_success">%1$d logs exported</string>
<string name="debug_export_failed">Failed to write log file: %1$s</string>
<string name="debug_export_no_logs">No logs to export</string>
<plurals name="log_retention_hours">
<item quantity="one">%1$d hour</item>
<item quantity="other">%1$d hours</item>
</plurals>
<plurals name="log_retention_days_quantity">
<item quantity="one">%1$d day</item>
<item quantity="other">%1$d days</item>
</plurals>
<string name="debug_filters">Filters</string>
<string name="debug_active_filters">Active filters</string>
<string name="debug_default_search">Search in logs…</string>
<string name="debug_search_next">Next match</string>
<string name="debug_search_prev">Previous match</string>
<string name="debug_search_clear">Clear search</string>
<string name="debug_filter_add">Add filter</string>
<string name="debug_filter_included">Filter included</string>
<string name="debug_filter_clear">Clear all filters</string>
<string name="debug_filter_add_custom">Add custom filter</string>
<string name="debug_filter_preset_title">Preset Filters</string>
<string name="debug_store_logs_title">Store mesh logs</string>
<string name="debug_store_logs_summary">Disable to skip writing mesh logs to disk</string>
<string name="debug_clear">Clear Logs</string>
<string name="match_any">Match Any | All</string>
<string name="match_all">Match All | Any</string>
<string name="debug_clear_logs_confirm">This will remove all log packets and database entries from your device - It is a full reset, and is permanent.</string>
<string name="clear">Clear</string>
<string name="message_delivery_status">Message delivery status</string>
<string name="new_messages_below">New messages below</string>
<string name="meshtastic_messages_notifications">Direct message notifications</string>
<string name="meshtastic_broadcast_notifications">Broadcast message notifications</string>
<string name="meshtastic_waypoints_notifications">Waypoint notifications</string>
<string name="meshtastic_alerts_notifications">Alert notifications</string>
<string name="firmware_too_old">Firmware update required.</string>
<string name="firmware_old">The radio firmware is too old to talk to this application. For more information on this see <a href="https://meshtastic.org/docs/getting-started/flashing-firmware">our Firmware Installation guide</a>.</string>
<string name="okay">OK</string>
<string name="must_set_region">You must set a region!</string>
<string name="cant_change_no_radio">Couldn't change channel, because radio is not yet connected. Please try again.</string>
<string name="save_rangetest">Export rangetest packets</string>
<string name="export_data_csv">Export all packets</string>
<string name="reset">Reset</string>
<string name="scan">Scan</string>
<string name="add_network_device">Add</string>
<string name="are_you_sure_change_default">Are you sure you want to change to the default channel?</string>
<string name="reset_to_defaults">Reset to defaults</string>
<string name="apply">Apply</string>
<string name="theme">Theme</string>
<string name="theme_light">Light</string>
<string name="theme_dark">Dark</string>
<string name="theme_system">System default</string>
<string name="choose_theme">Choose theme</string>
<string name="provide_location_to_mesh">Provide phone location to mesh</string>
<plurals name="delete_messages">
<item quantity="one">Delete message?</item>
<item quantity="other">Delete %1$s messages?</item>
</plurals>
<string name="delete">Delete</string>
<string name="delete_for_everyone">Delete for everyone</string>
<string name="delete_for_me">Delete for me</string>
<string name="select">Select</string>
<string name="select_all">Select all</string>
<string name="close_selection">Close selection</string>
<string name="delete_selection">Delete selected</string>
<string name="map_style_selection">Style Selection</string>
<string name="map_download_region">Download Region</string>
<string name="name">Name</string>
<string name="description">Description</string>
<string name="locked">Locked</string>
<string name="save">Save</string>
<string name="preferences_language">Language</string>
<string name="preferences_system_default">System default</string>
<string name="resend">Resend</string>
<string name="shutdown">Shutdown</string>
<string name="cant_shutdown">Shutdown not supported on this device</string>
<string name="shutdown_warning">⚠️ This will SHUTDOWN the node. Physical interaction will be required to turn it back on.</string>
<string name="shutdown_critical_node">⚠️ This is a critical infrastructure node. Type the node name to confirm:</string>
<string name="shutdown_node_name">Node: %1$s</string>
<string name="shutdown_type_name">Type: %1$s</string>
<string name="reboot">Reboot</string>
<string name="traceroute">Traceroute</string>
<string name="intro_show">Show Introduction</string>
<string name="message">Message</string>
<string name="quick_chat">Quick chat options</string>
<string name="quick_chat_new">New quick chat</string>
<string name="quick_chat_edit">Edit quick chat</string>
<string name="quick_chat_append">Append to message</string>
<string name="quick_chat_instant">Instantly send</string>
<string name="quick_chat_show">Show quick chat menu</string>
<string name="quick_chat_hide">Hide quick chat menu</string>
<string name="quick_chat_show_label">Show quick chat</string>
<string name="factory_reset">Factory reset</string>
<string name="bluetooth_disabled">Bluetooth is disabled. Please enable it in your device settings.</string>
<string name="open_settings">Open settings</string>
<string name="firmware_version">Firmware version: %1$s</string>
<string name="permission_missing_31">Meshtastic needs "Nearby devices" permissions enabled to find and connect to devices via Bluetooth. You can disable when not in use.</string>
<string name="direct_message">Direct Message</string>
<string name="nodedb_reset">NodeDB reset</string>
<string name="delivery_confirmed">Delivery confirmed</string>
<string name="error">Error</string>
<string name="ignore">Ignore</string>
<string name="remove_ignored">Remove from ignored</string>
<string name="ignore_add">Add '%1$s' to ignore list?</string>
<string name="ignore_remove">Remove '%1$s' from ignore list?</string>
<string name="map_select_download_region">Select download region</string>
<string name="map_tile_download_estimate">Tile download estimate:</string>
<string name="map_start_download">Start Download</string>
<string name="exchange_position">Exchange position</string>
<string name="close">Close</string>
<string name="radio_configuration">Radio configuration</string>
<string name="module_settings">Module configuration</string>
<string name="add">Add</string>
<string name="edit">Edit</string>
<string name="calculating">Calculating…</string>
<string name="map_offline_manager">Offline Manager</string>
<string name="map_cache_size">Current Cache size</string>
<string name="map_cache_info">Cache Capacity: %1$d MB\nCache Usage: %2$d MB</string>
<string name="map_clear_tiles">Clear Downloaded Tiles</string>
<string name="map_tile_source">Tile Source</string>
<string name="map_purge_success">SQL Cache purged for %1$s</string>
<string name="map_purge_fail">SQL Cache purge failed, see logcat for details</string>
<string name="map_cache_manager">Cache Manager</string>
<string name="map_download_complete">Download complete!</string>
<string name="map_download_errors">Download complete with %1$d errors</string>
<string name="map_cache_tiles">%1$d tiles</string>
<string name="map_subDescription">bearing: %1$d° distance: %2$s</string>
<string name="waypoint_edit">Edit waypoint</string>
<string name="waypoint_delete">Delete waypoint?</string>
<string name="waypoint_new">New waypoint</string>
<string name="waypoint_received">Received waypoint: %1$s</string>
<string name="error_duty_cycle">Duty Cycle limit reached. Cannot send messages right now, please try again later.</string>
<string name="remove">Remove</string>
<string name="remove_node_text">This node will be removed from your list until your node receives data from it again.</string>
<string name="mute_notifications">Mute notifications</string>
<string name="mute_1_hour">1 hour</string>
<string name="mute_8_hours">8 hours</string>
<string name="mute_1_week">1 week</string>
<string name="mute_always">Always</string>
<string name="currently">Currently:</string>
<string name="mute_status_always">Always muted</string>
<string name="mute_status_unmuted">Not muted</string>
<string name="mute_status_muted_for_days">Muted for %1$d days, %2$.1f hours</string>
<string name="mute_status_muted_for_hours">Muted for %1$.1f hours</string>
<string name="mute_status_label">Mute status</string>
<string name="mute_add">Mute notifications for '%1$s'?</string>
<string name="mute_remove">Unmute notifications for '%1$s'?</string>
<string name="replace">Replace</string>
<string name="wifi_qr_code_scan">Scan WiFi QR code</string>
<string name="wifi_qr_code_error">Invalid WiFi Credential QR code format</string>
<string name="navigate_back">Navigate Back</string>
<string name="battery">Battery</string>
<string name="channel_utilization">Channel Utilization</string>
<string name="air_utilization">Air Utilization</string>
<string name="temperature">Temperature</string>
<string name="humidity">Humidity</string>
<string name="soil_temperature">Soil Temperature</string>
<string name="soil_moisture">Soil Moisture</string>
<string name="logs">Logs</string>
<string name="hops_away">Hops Away</string>
<string name="hops_away_template">Hops Away: %1$d</string>
<string name="info">Information</string>
<string name="ch_util_definition">Utilization for the current channel, including well formed TX, RX and malformed RX (aka noise).</string>
<string name="air_util_definition">Percent of airtime for transmission used within the last hour.</string>
<string name="iaq">IAQ</string>
<string name="show_all_key_title">Encryption Key Meanings</string>
<string name="encryption_psk">Shared Key</string>
<string name="encryption_psk_text">Only channel messages can be sent/received. Direct Messages require the Public Key Infrastructure feature in 2.5+ firmware.</string>
<string name="encryption_pkc">Public Key Encryption</string>
<string name="encryption_pkc_text">Direct messages are using the new public key infrastructure for encryption.</string>
<string name="encryption_error">Public key mismatch</string>
<string name="encryption_error_text">The public key does not match the recorded key. You may remove the node and let it exchange keys again, but this may indicate a more serious security problem. Contact the user through another trusted channel, to determine if the key change was due to a factory reset or other intentional action.</string>
<string name="exchange_userinfo">Exchange user info</string>
<string name="meshtastic_new_nodes_notifications">New node notifications</string>
<string name="more_details">More details</string>
<string name="snr">SNR</string>
<string name="snr_definition">Signal-to-Noise Ratio, a measure used in communications to quantify the level of a desired signal to the level of background noise. In Meshtastic and other wireless systems, a higher SNR indicates a clearer signal that can enhance the reliability and quality of data transmission.</string>
<string name="rssi">RSSI</string>
<string name="rssi_definition">Received Signal Strength Indicator, a measurement used to determine the power level being received by the antenna. A higher RSSI value generally indicates a stronger and more stable connection.</string>
<string name="iaq_definition">(Indoor Air Quality) relative scale IAQ value as measured by Bosch BME680. Value Range 0–500.</string>
<string name="device_metrics_log">Device Metrics Log</string>
<string name="node_map">Node Map</string>
<string name="position_log">Position Log</string>
<string name="last_position_update">Last position update</string>
<string name="env_metrics_log">Environment Metrics Log</string>
<string name="sig_metrics_log">Signal Metrics Log</string>
<string name="administration">Administration</string>
<string name="remote_admin">Remote Administration</string>
<string name="bad">Bad</string>
<string name="fair">Fair</string>
<string name="good">Good</string>
<string name="none_quality">None</string>
<string name="share_to">Share to…</string>
<string name="signal">Signal</string>
<string name="signal_quality">Signal Quality</string>
<string name="traceroute_log">Traceroute Log</string>
<string name="traceroute_direct">Direct</string>
<plurals name="traceroute_hops">
<item quantity="one">1 hop</item>
<item quantity="other">%1$d hops</item>
</plurals>
<string name="traceroute_diff">Hops towards %1$d Hops back %2$d</string>
<string name="traceroute_outgoing_route">Outgoing route</string>
<string name="traceroute_return_route">Return route</string>
<string name="traceroute_endpoint_missing">Cannot show traceroute map because the start or destination node has no position information.</string>
<string name="view_on_map">View on map</string>
<string name="traceroute_map_no_data">This traceroute does not have any mappable nodes yet.</string>
<string name="traceroute_showing_nodes">Showing %1$d/%2$d nodes</string>
<string name="traceroute_duration">Duration: %1$s s</string>
<string name="traceroute_time_and_text">%1$s - %2$s</string>
<string name="traceroute_route_towards_dest">Route traced toward destination:\n\n</string>
<string name="traceroute_route_back_to_us">Route traced back to us:\n\n</string>
<string name="twenty_four_hours">24H</string>
<string name="forty_eight_hours">48H</string>
<string name="one_week">1W</string>
<string name="two_weeks">2W</string>
<string name="four_weeks">4W</string>
<string name="max">Max</string>
<string name="unknown_age">Unknown Age</string>
<string name="copy">Copy</string>
<string name="alert_bell_text">Alert Bell Character!</string>
<string name="critical_alert">Critical Alert!</string>
<string name="favorite">Favorite</string>
<string name="add_favorite">Add to favorites</string>
<string name="remove_favorite">Remove from favorites</string>
<string name="favorite_add">Add '%1$s' as a favorite node?</string>
<string name="favorite_remove">Remove '%1$s' as a favorite node?</string>
<string name="power_metrics_log">Power Metrics Log</string>
<string name="channel_1">Channel 1</string>
<string name="channel_2">Channel 2</string>
<string name="channel_3">Channel 3</string>
<string name="current">Current</string>
<string name="voltage">Voltage</string>
<string name="are_you_sure">Are you sure?</string>
<string name="router_role_confirmation_text"><![CDATA[I have read the <a href="https://meshtastic.org/docs/configuration/radio/device/#roles">Device Role Documentation</a> and the blog post about <a href="http://meshtastic.org/blog/choosing-the-right-device-role">Choosing The Right Device Role</a>.]]></string>
<string name="i_know_what_i_m_doing">I know what I'm doing.</string>
<string name="low_battery_message">Node %1$s has a low battery (%2$d%%)</string>
<string name="meshtastic_low_battery_notifications">Low battery notifications</string>
<string name="low_battery_title">Low battery: %1$s</string>
<string name="meshtastic_low_battery_temporary_remote_notifications">Low battery notifications (favorite nodes)</string>
<string name="baro_pressure">Barometric Pressure</string>
<string name="udp_enabled">Enabled</string>
<string name="udp_broadcast">UDP Broadcast</string>
<string name="udp_config">UDP Config</string>
<string name="map_node_popup_details"><![CDATA[%1$s<br>Last heard: %2$s<br>Last position: %3$s<br>Battery: %4$s]]></string>
<string name="toggle_my_position">Toggle my position</string>
<string name="orient_north">Orient north</string>
<string name="user">User</string>
<string name="channels">Channels</string>
<string name="device">Device</string>
<string name="position">Position</string>
<string name="power">Power</string>
<string name="network">Network</string>
<string name="display">Display</string>
<string name="lora">LoRa</string>
<string name="bluetooth">Bluetooth</string>
<string name="security">Security</string>
<string name="mqtt">MQTT</string>
<string name="serial">Serial</string>
<string name="external_notification">External Notification</string>
<string name="store_forward"><![CDATA[Store & Forward]]></string>
<string name="range_test">Range Test</string>
<string name="telemetry">Telemetry</string>
<string name="canned_message">Canned Message</string>
<string name="audio">Audio</string>
<string name="remote_hardware">Remote Hardware</string>
<string name="neighbor_info">Neighbor Info</string>
<string name="ambient_lighting">Ambient Lighting</string>
<string name="detection_sensor">Detection Sensor</string>
<string name="paxcounter">Paxcounter</string>
<string name="audio_config">Audio Config</string>
<string name="codec_2_enabled">CODEC 2 enabled</string>
<string name="ptt_pin">PTT pin</string>
<string name="codec2_sample_rate">CODEC2 sample rate</string>
<string name="i2s_word_select">I2S word select</string>
<string name="i2s_data_in">I2S data in</string>
<string name="i2s_data_out">I2S data out</string>
<string name="i2s_clock">I2S clock</string>
<string name="bluetooth_config">Bluetooth Config</string>
<string name="bluetooth_enabled">Bluetooth enabled</string>
<string name="pairing_mode">Pairing mode</string>
<string name="fixed_pin">Fixed PIN</string>
<string name="uplink_enabled">Uplink enabled</string>
<string name="downlink_enabled">Downlink enabled</string>
<string name="default_">Default</string>
<string name="position_enabled">Position enabled</string>
<string name="precise_location">Precise location</string>
<string name="gpio_pin">GPIO pin</string>
<string name="type">Type</string>
<string name="hide_password">Hide password</string>
<string name="show_password">Show password</string>
<string name="details">Details</string>
<string name="environment">Environment</string>
<string name="ambient_lighting_config">Ambient Lighting Config</string>
<string name="led_state">LED state</string>
<string name="red">Red</string>
<string name="green">Green</string>
<string name="blue">Blue</string>
<string name="canned_message_config">Canned Message Config</string>
<string name="canned_message_enabled">Canned message enabled</string>
<string name="rotary_encoder_1_enabled">Rotary encoder #1 enabled</string>
<string name="gpio_pin_for_rotary_encoder_a_port">GPIO pin for rotary encoder A port</string>
<string name="gpio_pin_for_rotary_encoder_b_port">GPIO pin for rotary encoder B port</string>
<string name="gpio_pin_for_rotary_encoder_press_port">GPIO pin for rotary encoder Press port</string>
<string name="generate_input_event_on_press">Generate input event on Press</string>
<string name="generate_input_event_on_cw">Generate input event on CW</string>
<string name="generate_input_event_on_ccw">Generate input event on CCW</string>
<string name="up_down_select_input_enabled">Up/Down/Select input enabled</string>
<string name="allow_input_source">Allow input source</string>
<string name="send_bell">Send bell</string>
<string name="messages">Messages</string>
<string name="device_db_cache_limit">Device DB cache limit</string>
<string name="device_db_cache_limit_summary">Max device databases to keep on this phone</string>
<string name="log_retention_days">MeshLog retention period</string>
<string name="log_retention_days_summary">Choose how long to keep logs. Select Never to keep all logs.</string>
<string name="log_retention_never">Never delete logs</string>
<string name="detection_sensor_config">Detection Sensor Config</string>
<string name="detection_sensor_enabled">Detection Sensor enabled</string>
<string name="minimum_broadcast_seconds">Minimum broadcast (seconds)</string>
<string name="state_broadcast_seconds">State broadcast (seconds)</string>
<string name="send_bell_with_alert_message">Send bell with alert message</string>
<string name="friendly_name">Friendly name</string>
<string name="gpio_pin_to_monitor">GPIO pin to monitor</string>
<string name="detection_trigger_type">Detection trigger type</string>
<string name="use_input_pullup_mode">Use INPUT_PULLUP mode</string>
<string name="device_config">Device</string>
<string name="role">Device Role</string>
<string name="button_gpio">Button GPIO</string>
<string name="buzzer_gpio">Buzzer GPIO</string>
<string name="rebroadcast_mode">Rebroadcast Mode</string>
<string name="nodeinfo_broadcast_interval">Node Info Broadcast Interval</string>
<string name="double_tap_as_button_press">Double Tap as Button</string>
<string name="triple_click_adhoc_ping">Triple Click Ad Hoc Ping</string>
<string name="time_zone">Time Zone</string>
<string name="led_heartbeat">LED Heartbeat</string>
<string name="display_config">Device Display</string>
<string name="screen_on_for">Screen on for</string>
<string name="carousel_interval">Carousel interval</string>
<string name="compass_north_top">Compass north top</string>
<string name="flip_screen">Flip screen</string>
<string name="display_units">Display units</string>
<string name="oled_type">OLED type</string>
<string name="display_mode">Display mode</string>
<string name="always_point_north">Always point north</string>
<string name="bold_heading">Bold Heading</string>
<string name="wake_on_tap_or_motion">Wake on tap or motion</string>
<string name="compass_orientation">Compass orientation</string>
<string name="external_notification_config">External Notification Config</string>
<string name="external_notification_enabled">External notification enabled</string>
<string name="notifications_on_message_receipt">Notifications on message receipt</string>
<string name="alert_message_led">Alert message LED</string>
<string name="alert_message_buzzer">Alert message buzzer</string>
<string name="alert_message_vibra">Alert message vibra</string>
<string name="notifications_on_alert_bell_receipt">Notifications on alert/bell receipt</string>
<string name="alert_bell_led">Alert bell LED</string>
<string name="alert_bell_buzzer">Alert bell buzzer</string>
<string name="alert_bell_vibra">Alert bell vibra</string>
<string name="output_led_gpio">Output LED (GPIO)</string>
<string name="output_led_active_high">Output LED active high</string>
<string name="output_buzzer_gpio">Output buzzer (GPIO)</string>
<string name="use_pwm_buzzer">Use PWM buzzer</string>
<string name="output_vibra_gpio">Output vibra (GPIO)</string>
<string name="output_duration_milliseconds">Output duration (milliseconds)</string>
<string name="nag_timeout_seconds">Nag timeout (seconds)</string>
<string name="ringtone">Ringtone</string>
<string name="play">Play</string>
<string name="use_i2s_as_buzzer">Use I2S as buzzer</string>
<string name="lora_config">LoRa</string>
<string name="options">Options</string>
<string name="advanced">Advanced</string>
<string name="use_modem_preset">Use Preset</string>
<string name="modem_preset">Presets</string>
<string name="bandwidth">Bandwidth</string>
<string name="spread_factor">Spread Factor</string>
<string name="coding_rate">Coding Rate</string>
<string name="frequency_offset_mhz">Frequency offset (MHz)</string>
<string name="region_frequency_plan">Region</string>
<string name="hop_limit">Number of Hops</string>
<string name="tx_enabled">Transmit Enabled</string>
<string name="tx_power_dbm">Transmit Power</string>
<string name="frequency_slot">Frequency Slot</string>
<string name="override_duty_cycle">Override Duty Cycle</string>
<string name="ignore_incoming">Ignore incoming</string>
<string name="sx126x_rx_boosted_gain">RX Boosted Gain</string>
<string name="override_frequency_mhz">Frequency Override</string>
<string name="pa_fan_disabled">PA fan disabled</string>
<string name="ignore_mqtt">Ignore MQTT</string>
<string name="ok_to_mqtt">Ok to MQTT</string>
<string name="mqtt_config">MQTT Config</string>
<string name="mqtt_enabled">MQTT enabled</string>
<string name="address">Address</string>
<string name="username">Username</string>
<string name="password">Password</string>
<string name="encryption_enabled">Encryption enabled</string>
<string name="json_output_enabled">JSON output enabled</string>
<string name="tls_enabled">TLS enabled</string>
<string name="root_topic">Root topic</string>
<string name="proxy_to_client_enabled">Proxy to client enabled</string>
<string name="map_reporting">Map reporting</string>
<string name="map_reporting_interval_seconds">Map reporting interval (seconds)</string>
<string name="neighbor_info_config">Neighbor Info Config</string>
<string name="neighbor_info_enabled">Neighbor Info enabled</string>
<string name="update_interval_seconds">Update interval (seconds)</string>
<string name="transmit_over_lora">Transmit over LoRa</string>
<string name="network_config">Network</string>
<string name="wifi_config">WiFi Options</string>
<string name="enabled">Enabled</string>
<string name="wifi_enabled">WiFi enabled</string>
<string name="ssid">SSID</string>
<string name="psk">PSK</string>
<string name="ethernet_config">Ethernet Options</string>
<string name="ethernet_enabled">Ethernet enabled</string>
<string name="ntp_server">NTP server</string>
<string name="rsyslog_server">rsyslog server</string>
<string name="ipv4_mode">IPv4 mode</string>
<string name="ip">IP</string>
<string name="gateway">Gateway</string>
<string name="subnet">Subnet</string>
<string name="paxcounter_config">Paxcounter Config</string>
<string name="paxcounter_enabled">Paxcounter enabled</string>
<string name="wifi_rssi_threshold_defaults_to_80">WiFi RSSI threshold (defaults to -80)</string>
<string name="ble_rssi_threshold_defaults_to_80">BLE RSSI threshold (defaults to -80)</string>
<string name="position_config">Position</string>
<string name="position_broadcast_interval_seconds">Position broadcast interval (seconds)</string>
<string name="smart_position_enabled">Smart position enabled</string>
<string name="smart_broadcast_minimum_distance_meters">Smart broadcast minimum distance (meters)</string>
<string name="smart_broadcast_minimum_interval_seconds">Smart broadcast minimum interval (seconds)</string>
<string name="use_fixed_position">Use fixed position</string>
<string name="latitude">Latitude</string>
<string name="longitude">Longitude</string>
<string name="altitude_meters">Altitude (meters)</string>
<string name="position_config_set_fixed_from_phone">Set from current phone location</string>
<string name="gps_mode">GPS Mode (Physical Hardware)</string>
<string name="gps_update_interval_seconds">GPS update interval (seconds)</string>
<string name="redefine_gps_rx_pin">Redefine GPS_RX_PIN</string>
<string name="redefine_gps_tx_pin">Redefine GPS_TX_PIN</string>
<string name="redefine_pin_gps_en">Redefine PIN_GPS_EN</string>
<string name="position_flags">Position Flags</string>
<string name="power_config">Power Config</string>
<string name="enable_power_saving_mode">Enable power saving mode</string>
<string name="shutdown_on_power_loss">Shutdown on power loss</string>
<string name="shutdown_on_battery_delay_seconds">Shutdown on battery delay (seconds)</string>
<string name="adc_multiplier_override">ADC multiplier override</string>
<string name="adc_multiplier_override_ratio">ADC multiplier override ratio</string>
<string name="wait_for_bluetooth_duration_seconds">Wait for Bluetooth duration</string>
<string name="super_deep_sleep_duration_seconds">Super deep sleep duration</string>
<string name="light_sleep_duration_seconds">Light sleep duration</string>
<string name="minimum_wake_time_seconds">Minimum wake time</string>
<string name="battery_ina_2xx_i2c_address">Battery INA_2XX I2C address</string>
<string name="range_test_config">Range Test Config</string>
<string name="range_test_enabled">Range test enabled</string>
<string name="sender_message_interval_seconds">Sender message interval (seconds)</string>
<string name="save_csv_in_storage_esp32_only">Save .CSV in storage (ESP32 only)</string>
<string name="remote_hardware_config">Remote Hardware Config</string>
<string name="remote_hardware_enabled">Remote Hardware enabled</string>
<string name="allow_undefined_pin_access">Allow undefined pin access</string>
<string name="available_pins">Available pins</string>
<string name="security_config">Security</string>
<string name="direct_message_key">Direct Message Key</string>
<string name="admin_keys">Admin Keys</string>
<string name="public_key">Public Key</string>
<string name="private_key">Private Key</string>
<string name="admin_key">Admin Key</string>
<string name="managed_mode">Managed Mode</string>
<string name="serial_console">Serial console</string>
<string name="debug_log_api_enabled">Debug log API enabled</string>
<string name="legacy_admin_channel">Legacy Admin channel</string>
<string name="serial_config">Serial Config</string>
<string name="serial_enabled">Serial enabled</string>
<string name="echo_enabled">Echo enabled</string>
<string name="serial_baud_rate">Serial baud rate</string>
<string name="timeout">Timeout</string>
<string name="serial_mode">Serial mode</string>
<string name="override_console_serial_port">Override console serial port</string>
<string name="store_forward_enabled"><![CDATA[Store & Forward enabled]]></string>
<string name="heartbeat">Heartbeat</string>
<string name="number_of_records">Number of records</string>
<string name="history_return_max">History return max</string>
<string name="history_return_window">History return window</string>
<string name="server">Server</string>
<string name="telemetry_config">Telemetry Config</string>
<string name="device_metrics_update_interval_seconds">Device metrics update interval</string>
<string name="environment_metrics_update_interval_seconds">Environment metrics update interval</string>
<string name="environment_metrics_module_enabled">Environment metrics module enabled</string>
<string name="environment_metrics_on_screen_enabled">Environment metrics on-screen enabled</string>
<string name="environment_metrics_use_fahrenheit">Environment metrics use Fahrenheit</string>
<string name="air_quality_metrics_module_enabled">Air quality metrics module enabled</string>
<string name="air_quality_metrics_update_interval_seconds">Air quality metrics update interval</string>
<string name="air_quality_icon">Air quality icon</string>
<string name="power_metrics_module_enabled">Power metrics module enabled</string>
<string name="power_metrics_update_interval_seconds">Power metrics update interval</string>
<string name="power_metrics_on_screen_enabled">Power metrics on-screen enabled</string>
<string name="user_config">User Config</string>
<string name="node_id">Node ID</string>
<string name="long_name">Long Name</string>
<string name="short_name">Short Name</string>
<string name="hardware_model">Hardware model</string>
<string name="licensed_amateur_radio">Licensed amateur radio (HAM)</string>
<string name="licensed_amateur_radio_text">Enabling this option disables encryption and is not compatible with the default Meshtastic network.</string>
<string name="dew_point">Dew Point</string>
<string name="pressure">Pressure</string>
<string name="gas_resistance">Gas Resistance</string>
<string name="distance">Distance</string>
<string name="lux">Lux</string>
<string name="wind">Wind</string>
<string name="weight">Weight</string>
<string name="radiation">Radiation</string>
<string name="store_forward_config"><![CDATA[Store & Forward Config]]></string>
<string name="indoor_air_quality_iaq">Indoor Air Quality (IAQ)</string>
<string name="url">URL</string>
<string name="backup_restore"><![CDATA[Backup & Restore]]></string>
<string name="import_configuration">Import configuration</string>
<string name="export_configuration">Export configuration</string>
<string name="hardware">Hardware</string>
<string name="supported">Supported</string>
<string name="node_number">Node Number</string>
<string name="user_id">User ID</string>
<string name="uptime">Uptime</string>
<string name="load_indexed">Load %1$d</string>
<string name="fetching_channel_indexed">Fetching Channel %1$d/%2$d</string>
<string name="fetching_config">Fetching %1$s</string>
<string name="disk_free_indexed">Disk Free %1$d</string>
<string name="timestamp">Timestamp</string>
<string name="heading">Heading</string>
<string name="speed">Speed</string>
<string name="sats">Sats</string>
<string name="alt">Alt</string>
<string name="freq">Freq</string>
<string name="slot">Slot</string>
<string name="primary">Primary</string>
<string name="primary_channel_feature">Periodic position and telemetry broadcast</string>
<string name="secondary">Secondary</string>
<string name="secondary_no_telemetry">No periodic telemetry broadcast</string>
<string name="manual_position_request">Manual position request required</string>
<string name="press_and_drag">Press and drag to reorder</string>
<string name="unmute">Unmute</string>
<string name="dynamic">Dynamic</string>
<string name="scan_qr_code">Scan QR Code</string>
<string name="share_contact">Share Contact</string>
<string name="notes">Notes</string>
<string name="add_a_note">Add a private note…</string>
<string name="import_shared_contact">Import Shared Contact?</string>
<string name="unmessageable">Unmessageable</string>
<string name="unmonitored_or_infrastructure">Unmonitored or Infrastructure</string>
<string name="import_known_shared_contact_text">Warning: This contact is known, importing will overwrite the previous contact information.</string>
<string name="public_key_changed">Public Key Changed</string>
<string name="import_label">Import</string>
<string name="request">Request</string>
<string name="request_neighbor_info">NeighborInfo (2.7.15+)</string>
<string name="request_telemetry">Request Telemetry</string>
<string name="request_device_metrics">Device Metrics</string>
<string name="request_environment_metrics">Environment Metrics</string>
<string name="request_air_quality_metrics">Air-Quality Metrics</string>
<string name="request_power_metrics">Power Metrics</string>
<string name="request_local_stats">Local Stats</string>
<string name="request_metadata">Metadata</string>
<string name="actions">Actions</string>
<string name="firmware">Firmware</string>
<string name="use_12h_format">Use 12h clock format</string>
<string name="display_time_in_12h_format">When enabled, the device will display the time in 12-hour format on screen.</string>
<string name="host_metrics_log">Host Metrics Log</string>
<string name="host">Host</string>
<string name="free_memory">Free Memory</string>
<string name="disk_free">Disk Free</string>
<string name="load">Load</string>
<string name="user_string">User String</string>
<string name="navigate_into_label">Navigate Into</string>
<string name="connections">Connection</string>
<string name="map">Mesh Map</string>
<string name="conversations">Conversations</string>
<string name="nodes">Nodes</string>
<string name="bottom_nav_settings">Settings</string>
<string name="selected">Selected</string>
<string name="set_your_region">Set your region</string>
<string name="reply">Reply</string>
<string name="map_reporting_summary">Your node will periodically send an unencrypted map report packet to the configured MQTT server, this includes id, long and short name, approximate location, hardware model, role, firmware version, LoRa region, modem preset and primary channel name.</string>
<string name="map_reporting_consent_header">Consent to Share Unencrypted Node Data via MQTT</string>
<string name="map_reporting_consent_text">By enabling this feature, you acknowledge and expressly consent to the transmission of your device’s real-time geographic location over the MQTT protocol without encryption. This location data may be used for purposes such as live map reporting, device tracking, and related telemetry functions.</string>
<string name="i_agree_to_share_my_location">I have read and understand the above. I voluntarily consent to the unencrypted transmission of my node data via MQTT</string>
<string name="i_agree">I agree.</string>
<string name="should_update_firmware">Firmware Update Recommended.</string>
<string name="should_update">To benefit from the latest fixes and features, please update your node firmware.\n\nLatest stable firmware version: %1$s</string>
<string name="expires">Expires</string>
<string name="time">Time</string>
<string name="date">Date</string>
<string name="map_filter">Map Filter\n</string>
<string name="only_favorites">Only Favorites</string>
<string name="show_waypoints">Show Waypoints</string>
<string name="show_precision_circle">Show Precision Circles</string>
<string name="client_notification">Client Notification</string>
<string name="compromised_keys">Compromised keys detected, select OK to regenerate.</string>
<string name="regenerate_private_key">Regenerate Private Key</string>
<string name="regenerate_keys_confirmation">Are you sure you want to regenerate your Private Key?\n\nNodes that may have previously exchanged keys with this node will need to Remove that node and re-exchange keys in order to resume secure communication.</string>
<string name="export_keys">Export Keys</string>
<string name="export_keys_confirmation">Exports public and private keys to a file. Please store somewhere securely.</string>
<string name="modules_unlocked">Modules unlocked</string>
<string name="modules_already_unlocked">Modules already unlocked</string>
<string name="remote">Remote</string>
<string name="node_count_template">(%1$d online / %2$d shown / %3$d total)</string>
<string name="react">React</string>
<string name="disconnect">Disconnect</string>
<string name="scanning_bluetooth">Scanning for Bluetooth devices…</string>
<string name="no_ble_devices">No paired Bluetooth devices.</string>
<string name="no_network_devices">No Network devices found.</string>
<string name="no_usb_devices">No USB Serial devices found.</string>
<string name="scroll_to_bottom">Scroll to bottom</string>
<string name="meshtastic">Meshtastic</string>
<string name="scanning">Scanning</string>
<string name="security_icon_description">Security Status</string>
<string name="security_icon_secure">Secure</string>
<string name="security_icon_badge_warning_description">Warning Badge</string>
<string name="unknown_channel">Unknown Channel</string>
<string name="warning">Warning</string>
<string name="overflow_menu">Overflow menu</string>
<string name="uv_lux">UV Lux</string>
<string name="unknown">Unknown</string>
<string name="message_device_managed">This radio is managed and can only be changed by a remote admin.</string>
<string name="advanced_title">Advanced</string>
<string name="clean_node_database_title">Clean Node Database</string>
<string name="clean_nodes_older_than">Clean up nodes last seen older than %1$d days</string>
<string name="clean_unknown_nodes">Clean up only unknown nodes</string>
<string name="clean_low_interaction_nodes">Clean up nodes with low/no interaction</string>
<string name="clean_ignored_nodes">Clean up ignored nodes</string>
<string name="clean_now">Clean Now</string>
<string name="clean_node_database_confirmation">This will remove %1$d nodes from your database. This action cannot be undone.</string>
<string name="security_icon_help_green_lock">A green lock means the channel is securely encrypted with either a 128 or 256 bit AES key.</string>
<!-- INSECURE_NO_PRECISE State (Yellow Open Lock) -->
<string name="security_icon_insecure_no_precise">Insecure Channel, Not Precise</string>
<string name="security_icon_help_yellow_open_lock">A yellow open lock means the channel is not securely encrypted, is not used for precise location data, and uses either no key at all or a 1 byte known key.</string>
<!-- INSECURE_PRECISE_ONLY State (Red Open Lock) -->
<string name="security_icon_insecure_precise_only">Insecure Channel, Precise Location</string>
<string name="security_icon_help_red_open_lock">A red open lock means the channel is not securely encrypted, is used for precise location data, and uses either no key at all or a 1 byte known key.</string>
<!-- INSECURE_PRECISE_MQTT_WARNING State (Red Open Lock with Warning Badge) -->
<string name="security_icon_warning_precise_mqtt">Warning: Insecure, Precise Location & MQTT Uplink</string>
<string name="security_icon_help_warning_precise_mqtt">A red open lock with a warning means the channel is not securely encrypted, is used for precise location data which is being uplinked to the internet via MQTT, and uses either no key at all or a 1 byte known key.</string>
<!-- Security Help Dialog Titles and Buttons (from your existing code structure) -->
<string name="security_icon_help_title">Channel Security</string>
<string name="security_icon_help_title_all">Channel Security Meanings</string>
<string name="security_icon_help_show_all">Show All Meanings</string>
<string name="security_icon_help_show_less">Show Current Status</string>
<string name="security_icon_help_dismiss">Dismiss</string>
<string name="confirm_delete_node">Are you sure you want to delete this node?</string>
<string name="forget_connection">Forget connection</string>
<string name="confirm_forget_connection">Are you sure you want to forget this connection?</string>
<string name="replying_to">Replying to %1$s</string>
<string name="cancel_reply">Cancel reply</string>
<string name="delete_messages_title">Delete Messages?</string>
<string name="clear_selection">Clear selection</string>
<string name="message_input_label">Message</string>
<string name="type_a_message">Type a message</string>
<string name="pax_metrics_log">PAX Metrics Log</string>
<string name="pax">PAX</string>
<string name="no_pax_metrics_logs">No PAX metrics logs available.</string>
<string name="wifi_devices">WiFi Devices</string>
<string name="ble_devices">BLE Devices</string>
<string name="bluetooth_paired_devices">Paired devices</string>
<string name="bluetooth_available_devices">Available devices</string>
<string name="connected_device">Connected Device</string>
<string name="routing_error_rate_limit_exceeded">Rate Limit Exceeded. Please try again later.</string>
<string name="view_release">View Release</string>
<string name="download">Download</string>
<string name="installed_firmware_version">Currently Installed</string>
<string name="latest_stable_firmware">Latest stable</string>
<string name="latest_alpha_firmware">Latest alpha</string>
<string name="supported_by_community">Supported by Meshtastic Community</string>
<string name="firmware_edition">Firmware Edition</string>
<string name="recent_network_devices">Recent Network Devices</string>
<string name="discovered_network_devices">Discovered Network Devices</string>
<string name="get_started">Get started</string>
<string name="intro_welcome">Welcome to</string>
<string name="stay_connected_anywhere">Stay Connected Anywhere</string>
<string name="communicate_off_the_grid">Communicate off-the-grid with your friends and community without cell service.</string>
<string name="create_your_own_networks">Create Your Own Networks</string>
<string name="easily_set_up_private_mesh_networks">Easily set up private mesh networks for secure and reliable communication in remote areas.</string>
<string name="track_and_share_locations">Track and Share Locations</string>
<string name="share_your_location_in_real_time">Share your location in real-time and keep your group coordinated with integrated GPS features.</string>
<string name="app_notifications">App Notifications</string>
<string name="incoming_messages">Incoming Messages</string>
<string name="notifications_for_channel_and_direct_messages">Notifications for channel and direct messages.</string>
<string name="new_nodes">New Nodes</string>
<string name="notifications_for_newly_discovered_nodes">Notifications for newly discovered nodes.</string>
<string name="low_battery">Low Battery</string>
<string name="notifications_for_low_battery_alerts">Notifications for low battery alerts for the connected device.</string>
<string name="critical_alerts_description">Select packets sent as critical will ignore the mute switch and Do Not Disturb settings in the OS notification center.</string>
<string name="configure_notification_permissions">Configure notification permissions</string>
<string name="phone_location">Phone Location</string>
<string name="phone_location_description">Meshtastic uses your phone's location to enable a number of features. You can update your location permissions at any time from settings.</string>
<string name="share_location">Share Location</string>
<string name="share_location_description">Use your phone GPS to send locations to your node to instead of using a hardware GPS on your node.</string>
<string name="distance_measurements">Distance Measurements</string>
<string name="distance_measurements_description">Display the distance between your phone and other Meshtastic nodes with positions.</string>
<string name="distance_filters">Distance Filters</string>
<string name="distance_filters_description">Filter the node list and mesh map based on proximity to your phone.</string>
<string name="mesh_map_location">Mesh Map Location</string>
<string name="mesh_map_location_description">Enables the blue location dot for your phone in the mesh map.</string>
<string name="configure_location_permissions">Configure Location Permissions</string>
<string name="skip">Skip</string>
<string name="settings">settings</string>
<string name="critical_alerts">Critical Alerts</string>
<string name="critical_alerts_dnd_request_text">To ensure you receive critical alerts, such as
SOS messages, even when your device is in "Do Not Disturb" mode, you need to grant special
permission. Please enable this in the notification settings.
</string>
<string name="configure_critical_alerts">Configure Critical Alerts</string>
<string name="notification_permissions_description">Meshtastic uses notifications to keep you updated on new messages and other important events. You can update your notification permissions at any time from settings.</string>
<string name="next">Next</string>
<string name="grant_permissions">Grant Permissions</string>
<string name="nodes_queued_for_deletion">%1$d nodes queued for deletion:</string>
<string name="clean_node_database_description">Caution: This removes nodes from in-app and on-device databases.\nSelections are additive.</string>
<string name="connecting_to_device">Connecting to device</string>
<string name="map_type_normal">Normal</string>
<string name="map_type_satellite">Satellite</string>
<string name="map_type_terrain">Terrain</string>
<string name="map_type_hybrid">Hybrid</string>
<string name="manage_map_layers">Manage Map Layers</string>
<string name="map_layer_formats">Custom layers support .kml, .kmz, or GeoJSON files.</string>
<string name="map_layers_title">Map Layers</string>
<string name="no_map_layers_loaded">No custom layers loaded.</string>
<string name="add_layer_button">Add Layer</string>
<string name="hide_layer">Hide Layer</string>
<string name="show_layer">Show Layer</string>
<string name="remove_layer">Remove Layer</string>
<string name="add_layer">Add Layer</string>
<string name="nodes_at_this_location">Nodes at this location</string>
<string name="selected_map_type">Selected Map Type</string>
<string name="manage_custom_tile_sources">Manage Custom Tile Sources</string>
<string name="add_custom_tile_source">Add Custom Tile Source</string>
<string name="no_custom_tile_sources_found">No Custom Tile Sources</string>
<string name="edit_custom_tile_source">Edit Custom Tile Source</string>
<string name="delete_custom_tile_source">Delete Custom Tile Source</string>
<string name="name_cannot_be_empty">Name cannot be empty.</string>
<string name="provider_name_exists">Provider name exists.</string>
<string name="url_cannot_be_empty">URL cannot be empty.</string>
<string name="url_must_contain_placeholders">URL must contain placeholders.</string>
<string name="url_template">URL Template</string>
<string name="url_template_hint" translatable="false">https://a.tile.openstreetmap.org/{z}/{x}/{y}.png</string>
<string name="track_point">track point</string>
<string name="app_settings">App</string>
<string name="app_version">Version</string>
<string name="channel_features">Channel Features</string>
<string name="location_sharing">Location Sharing</string>
<string name="periodic_position_broadcast">Periodic position broadcast</string>
<string name="uplink_feature_description">Messages from the mesh will be sent to the public internet through any node's configured gateway.</string>
<string name="downlink_feature_description">Messages from a public internet gateway are forwarded to the local mesh. Due to the zero-hop policy, traffic from the default MQTT server will not propagate further than this device.</string>
<string name="icon_meanings">Icon Meanings</string>