-
-
Notifications
You must be signed in to change notification settings - Fork 470
Expand file tree
/
Copy pathstrings.xml
More file actions
1577 lines (1575 loc) · 110 KB
/
Copy pathstrings.xml
File metadata and controls
1577 lines (1575 loc) · 110 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>
<!-- A11Y -->
<string name="a11y_label_value">%1$s: %2$s</string>
<string name="a11y_message_from">Message from %1$s: %2$s</string>
<string name="a11y_node_battery">battery %1$d%%</string>
<string name="a11y_node_distance_away">%1$s away</string>
<string name="a11y_node_favorite">favorite</string>
<string name="a11y_node_hops_away">%1$d hops away</string>
<string name="a11y_node_last_heard">last heard %1$s</string>
<string name="a11y_node_offline">offline</string>
<string name="a11y_node_online">online</string>
<string name="a11y_node_role">role %1$s</string>
<string name="a11y_node_signal">signal %1$s</string>
<string name="accept">Accept</string>
<string name="acknowledgements">Acknowledgements</string>
<!-- ACTION -->
<string name="action_copy_message">Copy message</string>
<string name="action_delete_message">Delete message</string>
<string name="action_react_with_emoji">React with emoji</string>
<string name="action_select_device">Select device</string>
<string name="action_select_message">Select message</string>
<string name="action_select_network">Select network</string>
<string name="action_send_reply">Send reply</string>
<string name="action_show_message_status">Show message status</string>
<string name="actions">Actions</string>
<string name="adc_multiplier_override">ADC multiplier override</string>
<string name="adc_multiplier_override_ratio">ADC multiplier override ratio</string>
<!-- ADD -->
<string name="add">Add</string>
<string name="add_a_note">Add a private note…</string>
<string name="add_channels_description">The following channels were found in the QR code. Select the ones you would like to add to your device. Existing channels will be preserved.</string>
<string name="add_custom_tile_source">Add Network Tile Source</string>
<string name="add_favorite">Add to favorites</string>
<string name="add_layer">Add Layer</string>
<string name="add_local_mbtiles_file">Add Local MBTiles File</string>
<string name="add_network_device">Add</string>
<string name="add_network_device_manually">Add device manually…</string>
<string name="add_network_layer">Add Network Layer</string>
<string name="address">Address</string>
<string name="admin_key">Admin Key</string>
<string name="admin_keys">Admin Keys</string>
<string name="administration">Administration</string>
<string name="advanced">Advanced</string>
<string name="advanced_device_gps">Advanced Device GPS</string>
<string name="advanced_title">Advanced</string>
<!-- AIR -->
<string name="air_quality">Air Quality</string>
<string name="air_quality_icon">Air quality icon</string>
<string name="air_quality_metrics_log">Air Quality Metrics Log</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_util_definition">Percent of airtime for transmission used within the last hour.</string>
<string name="air_utilization">AirUtil</string>
<!-- ALERT -->
<string name="alert_bell_buzzer">Alert bell buzzer</string>
<string name="alert_bell_led">Alert bell LED</string>
<string name="alert_bell_text">Alert Bell Character!</string>
<string name="alert_bell_vibra">Alert bell vibra</string>
<string name="alert_message_buzzer">Alert message buzzer</string>
<string name="alert_message_led">Alert message LED</string>
<string name="alert_message_vibra">Alert message vibra</string>
<string name="all_time">All</string>
<string name="allow_input_source">Allow input source</string>
<string name="allow_undefined_pin_access">Allow undefined pin access</string>
<string name="alt">Alt</string>
<string name="altitude">Altitude</string>
<string name="always_point_north">Always point north</string>
<string name="ambient_lighting">Ambient Lighting</string>
<string name="ambient_lighting_config">Ambient Lighting Config</string>
<string name="analytics_notice">Analytics are collected to help us improve the Android app (thank you), we will receive anonymized information about user behavior. This includes crash reports, screens used in the app, etc.</string>
<string name="analytics_okay">Allow analytics and crash reporting.</string>
<string name="analytics_platforms">Analytics platforms:</string>
<string name="any">Any</string>
<!-- APP -->
<string name="app_functions_get_channel_info">Get channel info</string>
<string name="app_functions_get_device_status">Get device status</string>
<string name="app_functions_get_mesh_metrics">Get mesh metrics</string>
<string name="app_functions_get_mesh_status">Get mesh status</string>
<string name="app_functions_get_node_details">Get node details</string>
<string name="app_functions_get_node_list">Get node list</string>
<string name="app_functions_get_recent_messages">Get recent messages</string>
<string name="app_functions_get_unread_summary">Get unread summary</string>
<string name="app_functions_master_summary">Let system AI assistants (e.g. Gemini) discover and use mesh functions</string>
<string name="app_functions_master_toggle">Allow AI access</string>
<string name="app_functions_read_section">Read functions</string>
<string name="app_functions_send_message">Send message</string>
<string name="app_functions_settings">System AI</string>
<string name="app_functions_settings_summary">Control which functions are available to AI assistants</string>
<string name="app_functions_write_section">Write functions</string>
<string name="app_notifications">App Notifications</string>
<string name="app_settings">App</string>
<string name="app_too_old">Application update required</string>
<string name="app_version">Version</string>
<string name="apply">Apply</string>
<string name="are_you_sure">Are you sure?</string>
<string name="are_you_sure_change_default">Are you sure you want to change to the default channel?</string>
<string name="audio">Audio</string>
<string name="audio_config">Audio Config</string>
<string name="available_pins">Available pins</string>
<string name="back">Back</string>
<string name="backup_restore">Backup & Restore</string>
<string name="bad">Bad</string>
<string name="bandwidth">Bandwidth</string>
<string name="baro_pressure">Baro</string>
<string name="battery">Battery</string>
<string name="battery_ina_2xx_i2c_address">Battery INA_2XX I2C address</string>
<string name="ble_devices">Bluetooth Devices</string>
<string name="ble_rssi_threshold_defaults_to_80">BLE RSSI threshold (defaults to -80)</string>
<string name="blue">Blue</string>
<!-- BLUETOOTH -->
<string name="bluetooth">Bluetooth</string>
<string name="bluetooth_available_devices">Available Bluetooth Devices</string>
<string name="bluetooth_config">Bluetooth Config</string>
<string name="bluetooth_enabled">Bluetooth enabled</string>
<string name="bluetooth_feature_config">Configuration</string>
<string name="bluetooth_feature_config_description">Wirelessly manage your device settings and channels.</string>
<string name="bluetooth_feature_discovery">Discovery</string>
<string name="bluetooth_feature_discovery_description">Find and identify Meshtastic devices near you.</string>
<string name="bluetooth_permission">Bluetooth</string>
<string name="bold_heading">Bold Heading</string>
<string name="bottom_nav_settings">Settings</string>
<string name="broadcast_interval">Broadcast Interval</string>
<string name="button_gpio">Button GPIO</string>
<string name="buzzer_gpio">Buzzer GPIO</string>
<string name="calculating">Calculating…</string>
<string name="cancel">Cancel</string>
<string name="cancel_reply">Cancel reply</string>
<string name="canned_message">Canned Message</string>
<string name="canned_message_config">Canned Message Config</string>
<string name="canned_message_enabled">Canned message enabled</string>
<string name="cant_change_no_radio">Couldn't change channel, because radio is not yet connected. Please try again.</string>
<string name="cant_shutdown">Shutdown not supported on this device</string>
<string name="carousel_interval">Carousel interval</string>
<string name="ch_util_definition">Utilization for the current channel, including well formed TX, RX and malformed RX (aka noise).</string>
<!-- CHANNEL -->
<string name="channel">Ch</string>
<string name="channel_1">Channel 1</string>
<string name="channel_2">Channel 2</string>
<string name="channel_3">Channel 3</string>
<string name="channel_4">Channel 4</string>
<string name="channel_5">Channel 5</string>
<string name="channel_6">Channel 6</string>
<string name="channel_7">Channel 7</string>
<string name="channel_8">Channel 8</string>
<string name="channel_features">Channel Features</string>
<string name="channel_invalid">This Channel URL is invalid and can not be used</string>
<string name="channel_label">Channel</string>
<string name="channel_name">Channel Name</string>
<string name="channel_url">Channel URL</string>
<string name="channel_utilization">ChUtil</string>
<string name="channels">Channels</string>
<!-- CHIRPY -->
<string name="chirpy">Chirpy</string>
<string name="chirpy_assistant_title">Chirpy Assistant</string>
<string name="chirpy_checking">Checking Chirpy availability…</string>
<string name="chirpy_downloading">Chirpy is downloading…</string>
<string name="chirpy_downloading_progress">Downloading Chirpy model: %1$d%%</string>
<string name="chirpy_downloading_subtitle">This only happens once. Chirpy will be ready soon!</string>
<string name="chirpy_error_busy">Whoa! The channel is totally congested right now with heavy traffic! 📶 Let's wait for a clear slot and retry our transmission.</string>
<string name="chirpy_error_model_unavailable">My battery is charging or my firmware is still downloading! 🔋 Give me a few moments to sync up and boot!</string>
<string name="chirpy_error_token_budget_exceeded">That payload is too large for my transmission budget! 📱 Try shortening your message so we can route it smoothly.</string>
<string name="chirpy_error_unknown">Oops! We hit some heavy packet loss or signal interference! 📡 Let's re-transmit that query and see if we can get through.</string>
<string name="chirpy_error_unsupported_flavor">I'm operating on a limited frequency on this app flavor! 🔌 Try using a version with full AI Core integration.</string>
<string name="chirpy_error_unsupported_platform">Oh no! My antenna can't seem to establish a connection on this platform. 📡 Please double-check your hardware compatibility!</string>
<string name="chirpy_intro">Hey there! 📡 I\'m Chirpy, your on-device Meshtastic assistant! I can help with setup, configuration, troubleshooting, and mesh networking tips. What can I help you with?</string>
<string name="chirpy_ready">Ask Chirpy</string>
<string name="chirpy_search_placeholder">Ask about Meshtastic…</string>
<string name="chirpy_suggested_pages_help">Here are some documentation pages that might help:</string>
<string name="chirpy_thinking">Chirpy is routing through the mesh… 📡</string>
<string name="choose_contrast">Contrast level</string>
<string name="choose_theme">Choose theme</string>
<!-- CLEAN -->
<string name="clean_node_database_confirmation">This will remove %1$d nodes from your database. This action cannot be undone.</string>
<string name="clean_node_database_description">Caution: This removes nodes from in-app and on-device databases.\nSelections are additive.</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_now">Clean Now</string>
<string name="clean_unknown_nodes">Clean up only unknown nodes</string>
<string name="clear">Clear</string>
<string name="clear_selection">Clear selection</string>
<string name="clear_time_zone">Clear time zone</string>
<string name="client_notification">Client Notification</string>
<string name="close">Close</string>
<string name="close_selection">Close selection</string>
<string name="co2">CO₂</string>
<string name="codec_2_enabled">CODEC 2 enabled</string>
<string name="codec2_sample_rate">CODEC2 sample rate</string>
<string name="coding_rate">Coding Rate</string>
<string name="collapse_chart">Collapse chart</string>
<string name="collapsed">Collapsed</string>
<string name="communicate_off_the_grid">Communicate off-the-grid with your friends and community without cell service.</string>
<!-- COMPASS -->
<string name="compass_bearing">Bearing: %1$s</string>
<string name="compass_bearing_na">Bearing: N/A</string>
<string name="compass_distance">Distance: %1$s</string>
<string name="compass_location_disabled">Location provider is disabled. Turn on location services.</string>
<string name="compass_no_location_fix">Waiting for a GPS fix to calculate distance and bearing.</string>
<string name="compass_no_location_permission">Location permission is required to show distance and bearing.</string>
<string name="compass_no_magnetometer">This device does not have a compass sensor. Heading is unavailable.</string>
<string name="compass_north_top">Compass north top</string>
<string name="compass_orientation">Compass orientation</string>
<string name="compass_title">Compass</string>
<string name="compass_uncertainty">Estimated area: \u00b1%1$s (\u00b1%2$s)</string>
<string name="compass_uncertainty_unknown">Estimated area: unknown accuracy</string>
<string name="compromised_keys">Compromised keys detected, select OK to regenerate.</string>
<!-- CONFIG -->
<string name="config_device_doubleTapAsButtonPress_summary">Treat double tap on supported accelerometers as a user button press.</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_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_device_tripleClickAsAdHocPing_summary">Send a position on the primary channel when the user button is triple clicked.</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_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_displaymode_summary">Override default screen layout.</string>
<string name="config_display_flip_screen_summary">Flip screen vertically.</string>
<string name="config_display_heading_bold_summary">Bold the heading text on the screen.</string>
<string name="config_display_oled_summary">Override automatic OLED screen detection.</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_units_summary">Units displayed on the device 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_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="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_modem_preset_summary">Available modem presets, default is Long Fast.</string>
<string name="config_lora_region_summary">The region where you will be using your radios.</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_network_wifi_enabled_summary">Enabling WiFi will disable the bluetooth connection to the app.</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_distance_summary">The minimum distance change in meters to be considered for a smart position broadcast.</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_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_position_gps_update_interval_summary">How often should we try to get a GPS position (<10sec keeps GPS on).</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_admin_key">The public key authorized to send admin messages to this node.</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>
<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_private_key">Used to create a shared key with a remote device.</string>
<string name="config_security_public_key">Generated from your private key and sent out to other nodes on the mesh to allow them to compute a shared secret key.</string>
<string name="config_security_serial_enabled">Serial Console over the Stream API.</string>
<string name="configure_bluetooth_permissions">Configure Bluetooth Permissions</string>
<string name="configure_critical_alerts">Configure Critical Alerts</string>
<string name="configure_location_permissions">Configure Location Permissions</string>
<string name="configure_notification_permissions">Configure notification permissions</string>
<string name="connect">Connect</string>
<string name="connect_radio_for_remote_admin">Connect to a radio to administer remote nodes.</string>
<string name="connected">Connected</string>
<string name="connected_device">Connected Device</string>
<string name="connected_sleeping">Connected to radio, but it is sleeping</string>
<string name="connecting">Connecting</string>
<string name="connection_status">Current connections:</string>
<string name="connections">Connection</string>
<string name="contrast">Contrast</string>
<string name="contrast_high">High</string>
<string name="contrast_medium">Medium</string>
<string name="contrast_standard">Standard</string>
<string name="conversations">Conversations</string>
<string name="copy">Copy</string>
<string name="create_your_own_networks">Create Your Own Networks</string>
<string name="critical_alert">Critical Alert!</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="current">Current</string>
<string name="currently">Currently:</string>
<string name="datadog_link" translatable="false">Datadog: https://www.datadoghq.com/</string>
<string name="date">Date</string>
<string name="dbm_value">%1$d dBm</string>
<!-- DEBUG -->
<string name="debug">Debug</string>
<string name="debug_active_filters">Active filters</string>
<string name="debug_clear">Clear Logs</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="debug_decoded_payload">Decoded Payload:</string>
<string name="debug_default_search">Search in logs…</string>
<string name="debug_export_failed">Failed to write log file: %1$s</string>
<string name="debug_export_success">%1$d logs exported</string>
<string name="debug_filter_add">Add filter</string>
<string name="debug_filter_add_custom">Add custom filter</string>
<string name="debug_filter_clear">Clear all filters</string>
<string name="debug_filter_included">Filter included</string>
<string name="debug_filter_preset_title">Preset Filters</string>
<string name="debug_filters">Filters</string>
<string name="debug_log_api_enabled">Debug log API enabled</string>
<string name="debug_logs_export">Export Logs</string>
<string name="debug_panel">Debug Panel</string>
<string name="debug_search_clear">Clear search</string>
<string name="debug_search_next">Next match</string>
<string name="debug_search_prev">Previous match</string>
<string name="debug_store_logs_summary">Disable to skip writing mesh logs to disk</string>
<string name="debug_store_logs_title">Store mesh logs</string>
<string name="default_">Default</string>
<string name="default_mqtt_address" translatable="false">mqtt.meshtastic.org</string>
<!-- DELETE -->
<string name="delete">Delete</string>
<string name="delete_custom_tile_source">Delete Network Tile Source</string>
<string name="delete_for_everyone">Delete for everyone</string>
<string name="delete_for_me">Delete for me</string>
<plurals name="delete_messages">
<item quantity="one">Delete message?</item>
<item quantity="other">Delete %1$s messages?</item>
</plurals>
<string name="delete_messages_title">Delete Messages?</string>
<string name="delete_selection">Delete selected</string>
<string name="delivery_confirmed">Delivery confirmed</string>
<string name="delivery_confirmed_reboot_warning">Your device may disconnect and reboot while settings are applied.</string>
<string name="demo_mode">Demo Mode</string>
<string name="desc_node_filter_clear">clear node filter</string>
<string name="description">Description</string>
<string name="desktop_notification_title">Meshtastic</string>
<string name="desktop_tray_quit">Quit</string>
<string name="desktop_tray_show">Show Meshtastic</string>
<string name="desktop_tray_tooltip">Meshtastic Desktop</string>
<string name="details">Details</string>
<string name="detection_sensor">Detection Sensor</string>
<string name="detection_sensor_config">Detection Sensor Config</string>
<string name="detection_sensor_enabled">Detection Sensor enabled</string>
<string name="detection_trigger_type">Detection trigger type</string>
<!-- DEVICE -->
<string name="device">Device</string>
<string name="device_configuration">Device configuration</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="device_gps">Device GPS</string>
<string name="device_links">Device Links</string>
<string name="device_links_i_want_one">I want one</string>
<string name="device_links_open_in_browser">Open in browser</string>
<string name="device_metrics_label_value">%1$s: %2$s</string>
<string name="device_metrics_log">Device Metrics</string>
<string name="device_metrics_numeric_value">%1$s</string>
<string name="device_metrics_percent_value">%1$s: %2$s%%</string>
<string name="device_metrics_update_interval_seconds">Device metrics update interval</string>
<string name="device_metrics_voltage_value">%1$s: %2$s V</string>
<string name="device_sleeping">Device sleeping</string>
<string name="device_storage_ui_title">Device Storage & UI (Read-Only)</string>
<string name="device_telemetry_enabled">Send Device Telemetry</string>
<string name="device_telemetry_enabled_summary">Enable/Disable the device telemetry module to send metrics to the mesh. These are nominal values. Congested meshes will automatically scale to longer intervals based on number of online nodes.</string>
<string name="device_theme_language">Theme: %1$s, Language: %2$s</string>
<string name="dew_point">Dew Point</string>
<string name="direct_message">Direct Message</string>
<string name="direct_message_key">Direct Message Key</string>
<string name="discard_changes">Discard</string>
<string name="disconnect">Disconnect</string>
<string name="disconnected">Disconnected</string>
<string name="discovered_network_devices">Discovered Network Devices</string>
<!-- DISCOVERY -->
<string name="discovery_analysing_results">Analyzing results</string>
<string name="discovery_cancelling_scan">Cancelling scan</string>
<string name="discovery_connection_warning">Not connected. Connect to a Meshtastic device to start scanning.</string>
<string name="discovery_delete_session">Delete Session</string>
<string name="discovery_delete_session_confirm">Are you sure you want to delete this discovery session? This action cannot be undone.</string>
<string name="discovery_dwell_minutes">%1$d min</string>
<string name="discovery_dwell_progress">Dwelling on %1$s, %2$s remaining</string>
<string name="discovery_dwell_time">Dwell Time</string>
<string name="discovery_dwell_time_description">Time to listen on each preset</string>
<string name="discovery_empty_history">No discovery sessions yet</string>
<string name="discovery_export_report">Export report</string>
<string name="discovery_history">Discovery History</string>
<string name="discovery_keep_screen_awake">Keep screen awake</string>
<string name="discovery_keep_screen_awake_description">Prevents Android Doze mode from dropping radio packets during long scans. Recommended.</string>
<string name="discovery_local_mesh">Local Mesh Discovery</string>
<string name="discovery_lora_presets">LoRa Presets</string>
<string name="discovery_lora_presets_description">Select one or more presets to scan</string>
<string name="discovery_map">Discovery Map</string>
<string name="discovery_not_connected">Not Connected</string>
<string name="discovery_not_connected_description">Connect to a Meshtastic device to start scanning.</string>
<string name="discovery_paused">Paused: %1$s</string>
<string name="discovery_preparing">Preparing scan</string>
<string name="discovery_preset_home_label">%1$s (Home)</string>
<string name="discovery_reconnecting">Reconnecting on %1$s</string>
<string name="discovery_rerun_analysis">Re-run analysis</string>
<string name="discovery_restoring_preset">Restoring home preset</string>
<string name="discovery_scan_complete">Session complete</string>
<string name="discovery_scan_failed">Scan failed: %1$s</string>
<string name="discovery_scan_history">Scan History</string>
<string name="discovery_scan_incomplete">Session incomplete</string>
<string name="discovery_scan_progress">Scan Progress</string>
<string name="discovery_scan_summary">Scan Summary</string>
<string name="discovery_session_detail">Session Detail</string>
<string name="discovery_shifting_to">Shifting to %1$s</string>
<string name="discovery_start_scan">Start Scan</string>
<string name="discovery_start_scan_disabled">Start scan button disabled. %1$s</string>
<string name="discovery_start_scan_reason_24ghz_unsupported">radio hardware does not support 2.4 GHz</string>
<string name="discovery_start_scan_reason_default_key">channel uses default encryption key</string>
<string name="discovery_start_scan_reason_no_presets">no presets selected</string>
<string name="discovery_start_scan_reason_not_connected">device not connected</string>
<string name="discovery_stat_analysis">Analysis</string>
<string name="discovery_stat_avg_airtime_rate">Avg airtime rate</string>
<string name="discovery_stat_avg_channel_utilization">Avg channel utilization</string>
<string name="discovery_stat_bad_packets">Bad packets</string>
<string name="discovery_stat_channel_utilization">Channel utilization</string>
<string name="discovery_stat_date">Date</string>
<string name="discovery_stat_direct">Direct</string>
<string name="discovery_stat_duplicate_packets">Duplicate packets</string>
<string name="discovery_stat_dwelling_on">Dwelling on %1$s</string>
<string name="discovery_stat_failure_rate">Failure rate</string>
<string name="discovery_stat_home_preset">Home preset</string>
<string name="discovery_stat_mesh">Mesh</string>
<string name="discovery_stat_messages">Messages</string>
<string name="discovery_stat_online_total_nodes">Online / Total nodes</string>
<string name="discovery_stat_packets_rx">Packets RX</string>
<string name="discovery_stat_packets_tx">Packets TX</string>
<string name="discovery_stat_preset_results">Preset Results</string>
<string name="discovery_stat_presets_scanned">Presets scanned</string>
<string name="discovery_stat_rf_health">RF Health</string>
<string name="discovery_stat_selected">Selected</string>
<string name="discovery_stat_sensor_pkts">Sensor pkts</string>
<string name="discovery_stat_session_overview">Session Overview</string>
<string name="discovery_stat_status">Status</string>
<string name="discovery_stat_success_rate">Success rate</string>
<string name="discovery_stat_total_dwell_time">Total dwell time</string>
<string name="discovery_stat_total_messages">Total messages</string>
<string name="discovery_stat_total_unique_nodes">Total unique nodes</string>
<string name="discovery_stat_unique_nodes">Unique nodes</string>
<string name="discovery_stat_unselected">Not selected</string>
<string name="discovery_stop_scan">Stop Scan</string>
<string name="discovery_summary_not_available">AI analysis not available</string>
<string name="discovery_time_remaining">%1$s remaining</string>
<string name="discovery_unique_nodes">%1$d unique nodes</string>
<string name="discovery_view_map">View map</string>
<string name="disk_free_indexed">Disk Free %1$d</string>
<!-- DISPLAY -->
<string name="display">Display</string>
<string name="display_config">Device Display</string>
<string name="display_mode">Display mode</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="display_units">Display units</string>
<!-- DISTANCE -->
<string name="distance">Distance</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="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="dns">DNS</string>
<!-- DOC -->
<string name="doc_clear_search">Clear search</string>
<string name="doc_keywords_android_auto">android auto,car,head unit,driving,hands free,messaging</string>
<string name="doc_keywords_app_functions">system ai,gemini,assistant,functions,automation,voice</string>
<string name="doc_keywords_connections">bluetooth,usb,tcp,pairing,serial,wifi</string>
<string name="doc_keywords_desktop">desktop,linux,macos,windows,serial</string>
<string name="doc_keywords_discovery">discovery,topology,network,scan,neighbor</string>
<string name="doc_keywords_firmware">firmware,update,ota,flash,version,recovery</string>
<string name="doc_keywords_map">map,waypoint,gps,position,location,marker</string>
<string name="doc_keywords_measurement">formatter,metric,number,locale,temperature,conversion,api</string>
<string name="doc_keywords_messages">message,channel,encryption,direct,broadcast,quick-chat</string>
<string name="doc_keywords_mqtt">mqtt,broker,internet,bridge,uplink,downlink</string>
<string name="doc_keywords_node_metrics">metrics,telemetry,signal,snr,rssi,battery,traceroute</string>
<string name="doc_keywords_nodes">node,mesh,list,role,status,favorite,filter</string>
<string name="doc_keywords_onboarding">setup,welcome,permissions,first-launch</string>
<string name="doc_keywords_settings_module">module,serial,telemetry,canned,store-forward,administration</string>
<string name="doc_keywords_settings_radio">settings,radio,lora,region,modem,device,power,security</string>
<string name="doc_keywords_signal_meter">signal,rssi,snr,bars,quality,lora,noise,meter</string>
<string name="doc_keywords_tak">tak,atak,cursor-on-target,team-awareness</string>
<string name="doc_keywords_telemetry">telemetry,sensor,temperature,humidity,pressure,power</string>
<string name="doc_keywords_translate">translate,crowdin,localization,language,i18n,contribute</string>
<string name="doc_keywords_units">units,locale,metric,imperial,temperature,distance</string>
<string name="doc_search_placeholder">Search documentation…</string>
<string name="doc_section_developer">Developer Guide</string>
<string name="doc_section_user">User Guide</string>
<string name="doc_title_android_auto">Android Auto</string>
<string name="doc_title_app_functions">App Functions</string>
<string name="doc_title_connections">Connections</string>
<string name="doc_title_desktop">Desktop App</string>
<string name="doc_title_discovery">Discovery</string>
<string name="doc_title_firmware">Firmware Updates</string>
<string name="doc_title_map">Map & Waypoints</string>
<string name="doc_title_measurement">Measurement & Formatting</string>
<string name="doc_title_messages">Messages & Channels</string>
<string name="doc_title_mqtt">MQTT</string>
<string name="doc_title_node_metrics">Node Metrics</string>
<string name="doc_title_nodes">Nodes</string>
<string name="doc_title_onboarding">Getting Started</string>
<string name="doc_title_settings_module">Settings — Modules & Admin</string>
<string name="doc_title_settings_radio">Settings — Radio & User</string>
<string name="doc_title_signal_meter">Signal Meter</string>
<string name="doc_title_tak">TAK Integration</string>
<string name="doc_title_telemetry">Telemetry & Sensors</string>
<string name="doc_title_translate">Translate the App</string>
<string name="doc_title_units">Units & Locale</string>
<string name="done">Done</string>
<string name="dont_show_again_for_device">Don't show again for this device</string>
<string name="double_tap_as_button_press">Double Tap as Button</string>
<string name="downlink_enabled">Downlink enabled</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="download">Download</string>
<string name="duplicated_public_key_title">Duplicate Public Key Detected</string>
<string name="dynamic">Dynamic</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="echo_enabled">Echo enabled</string>
<string name="edit">Edit</string>
<string name="edit_custom_tile_source">Edit Network Tile Source</string>
<string name="eight_hours">8 Hours</string>
<string name="elevation_suffix" translatable="false">MSL</string>
<string name="enable_power_saving_mode">Enable power saving mode</string>
<string name="enabled">Enabled</string>
<!-- ENCRYPTION -->
<string name="encryption_enabled">Encryption enabled</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 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="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_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="env_metrics_log">Environment Metrics</string>
<!-- ENVIRONMENT -->
<string name="environment">Environment</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_update_interval_seconds">Environment metrics update interval</string>
<string name="environment_metrics_use_fahrenheit">Environment metrics use Fahrenheit</string>
<string name="error">Error</string>
<string name="error_duty_cycle">Duty Cycle limit reached. Cannot send messages right now, please try again later.</string>
<string name="establish_session">Connect & administer</string>
<string name="establishing_session">Establishing remote session…</string>
<string name="ethernet_config">Ethernet Options</string>
<string name="ethernet_enabled">Ethernet enabled</string>
<string name="ethernet_ip">Ethernet IP:</string>
<string name="event_welcome_burning_man">Welcome to Burning Man! 🔥</string>
<string name="event_welcome_defcon">Welcome to DEFCON! 💀</string>
<string name="event_welcome_hamvention">Welcome to Hamvention! 🍖📻</string>
<string name="event_welcome_open_sauce">Welcome to Open Sauce! 🔧</string>
<string name="exchange_position">Exchange position</string>
<string name="expand_chart">Expand chart</string>
<string name="expanded">Expanded</string>
<string name="expires">Expires</string>
<!-- EXPORT -->
<string name="export_configuration">Export configuration</string>
<string name="export_data_csv">Export all packets</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="export_tak_data_package">Export TAK Data Package</string>
<string name="external_notification">External Notification</string>
<string name="external_notification_config">External Notification Config</string>
<string name="external_notification_enabled">External notification enabled</string>
<string name="factory_reset">Factory reset</string>
<string name="fair">Fair</string>
<string name="fallback_node_name">Meshtastic %1$s</string>
<string name="favorite">Favorite</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="file_entry">- %1$s (%2$d bytes)</string>
<string name="files_available">Files available (%1$d):</string>
<!-- FILTER -->
<string name="filter_add_placeholder">Add word or regex:pattern</string>
<string name="filter_disable_for_contact">Disable filtering</string>
<string name="filter_enable">Enable Filtering</string>
<string name="filter_enable_for_contact">Enable filtering</string>
<string name="filter_enable_summary">Hide messages containing filter words</string>
<string name="filter_hide_count">Hide %1$d filtered</string>
<string name="filter_icon">Filter</string>
<string name="filter_message_label">Filtered</string>
<string name="filter_no_words">No filter words configured</string>
<string name="filter_regex_pattern">Regex pattern</string>
<string name="filter_settings">Message Filter</string>
<string name="filter_show_count">Show %1$d filtered</string>
<string name="filter_whole_word">Whole word match</string>
<string name="filter_words">Filter Words</string>
<string name="filter_words_summary">Messages containing these words will be hidden</string>
<string name="firebase_link" translatable="false">Firebase: https://firebase.google.com/</string>
<!-- FIRMWARE -->
<string name="firmware">Firmware</string>
<string name="firmware_edition">Firmware Edition</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="firmware_too_old">Firmware update required.</string>
<string name="firmware_update_almost_there">Almost there...</string>
<string name="firmware_update_alpha">Alpha</string>
<string name="firmware_update_battery_low">Battery too low (%1$d%). Please charge your device before updating.</string>
<string name="firmware_update_checking">Checking for updates...</string>
<string name="firmware_update_connecting_attempt">Connecting to device (attempt %1$d/%2$d)...</string>
<string name="firmware_update_copying">High-five! Wait, copying firmware...</string>
<string name="firmware_update_currently_installed">Currently Installed: %1$s</string>
<string name="firmware_update_device">Device: %1$s</string>
<string name="firmware_update_disclaimer_chirpy_says">Chirpy says, "Keep your ladder handy!"</string>
<string name="firmware_update_disclaimer_text">You are about to flash new firmware to your device. This process carries risks.\n\n• Ensure your device is charged.\n• Keep the device close to your phone.\n• Do not close the app during the update.\n\nVerify you have selected the correct firmware for your hardware.</string>
<string name="firmware_update_disclaimer_title">Update Warning</string>
<string name="firmware_update_disconnect_warning">Note: This will temporarily disconnect your device during the update.</string>
<string name="firmware_update_do_not_close">Do not close the app.</string>
<string name="firmware_update_done">Done</string>
<string name="firmware_update_downloading_percent">Downloading firmware... %1$d%</string>
<string name="firmware_update_enabling_dfu">Enabling DFU mode...</string>
<string name="firmware_update_erasing">Erasing...</string>
<string name="firmware_update_error">Error: %1$s</string>
<string name="firmware_update_extracting">Extracting firmware...</string>
<string name="firmware_update_failed">Update failed</string>
<string name="firmware_update_flashing">Flashing device, please wait...</string>
<string name="firmware_update_hang_tight">Hang tight, we are working on it...</string>
<string name="firmware_update_hash_rejected">Firmware hash rejected. Device may require hash provisioning or bootloader update.</string>
<string name="firmware_update_keep_device_close">Keep your device close to your phone.</string>
<string name="firmware_update_latest">Update To: %1$s</string>
<string name="firmware_update_local_file">Local File</string>
<string name="firmware_update_method_ble">BLE OTA</string>
<string name="firmware_update_method_detail">Update via %1$s</string>
<string name="firmware_update_method_usb">USB File Transfer</string>
<string name="firmware_update_method_wifi">WiFi OTA</string>
<string name="firmware_update_no_device">No device connected</string>
<string name="firmware_update_node_info_missing">Node user information is missing.</string>
<string name="firmware_update_not_found_in_release">Could not find firmware for %1$s in release.</string>
<string name="firmware_update_ota_failed">OTA update failed: %1$s</string>
<string name="firmware_update_rak4631_bootloader_hint">For RAK WisBlock RAK4631, use the vendor's serial DFU tool (for example, adafruit-nrfutil dfu serial with the provided bootloader .zip file). Copying the .uf2 file alone will not update the bootloader.</string>
<string name="firmware_update_rebooting">Rebooting to DFU...</string>
<string name="firmware_update_release_notes">Release Notes</string>
<string name="firmware_update_retrieval_failed">Could not retrieve firmware file.</string>
<string name="firmware_update_retry">Retry</string>
<string name="firmware_update_save_dfu_file">Please save the .uf2 file to your device's DFU drive.</string>
<string name="firmware_update_select_file">Select Local File</string>
<string name="firmware_update_source_local">Source: Local File</string>
<string name="firmware_update_stable">Stable</string>
<string name="firmware_update_starting_dfu">Starting DFU...</string>
<string name="firmware_update_starting_ota">Starting OTA update...</string>
<string name="firmware_update_success">Update Successful!</string>
<string name="firmware_update_taking_a_while">This might take a minute...</string>
<string name="firmware_update_target">Target: %1$s</string>
<string name="firmware_update_title">Firmware Update</string>
<string name="firmware_update_unknown_error">Unknown error</string>
<string name="firmware_update_unknown_hardware">Unknown hardware model: %1$d</string>
<string name="firmware_update_unknown_release">Unknown remote release</string>
<string name="firmware_update_uploading">Uploading firmware...</string>
<string name="firmware_update_usb_bootloader_warning">%1$s usually ships with a bootloader that does not support OTA updates. You may need to flash an OTA-capable bootloader over USB before flashing OTA.</string>
<string name="firmware_update_usb_failed">USB Update failed</string>
<string name="firmware_update_usb_instruction_text">Your device has rebooted into DFU mode and should appear as a USB drive (e.g., RAK4631).\n\nWhen the file picker opens, please select the root of that drive to save the firmware file.</string>
<string name="firmware_update_usb_instruction_title">Select DFU USB Drive</string>
<string name="firmware_update_validating">Validating firmware...</string>
<string name="firmware_update_verification_failed">Verification timed out. Device did not reconnect in time.</string>
<string name="firmware_update_verifying">Verifying update...</string>
<string name="firmware_update_waiting_reboot">Waiting for device to reboot into OTA mode...</string>
<string name="firmware_update_waiting_reconnect">Waiting for device to reconnect...</string>
<string name="firmware_version">Firmware version: %1$s</string>
<string name="fixed_pin">Fixed PIN</string>
<string name="fixed_position">Fixed Position</string>
<string name="flip_screen">Flip screen</string>
<string name="for_more_information_see_our_privacy_policy">For more information, see our privacy policy.</string>
<string name="fr_HT" translatable="false">Kreyòl ayisyen</string>
<string name="free_memory">Free Memory</string>
<string name="free_memory_description">Available system memory in bytes</string>
<string name="freq">Freq</string>
<string name="frequency_slot">Frequency Slot</string>
<string name="friendly_name">Friendly name</string>
<string name="gas_resistance">Gas Resistance</string>
<string name="gateway">Gateway</string>
<string name="generate_input_event_on_ccw">Generate input event on CCW</string>
<string name="generate_input_event_on_cw">Generate input event on CW</string>
<string name="generate_input_event_on_press">Generate input event on Press</string>
<string name="generate_qr_code">Generate QR Code</string>
<string name="get_started">Get started</string>
<string name="good">Good</string>
<!-- GPIO -->
<string name="gpio">GPIO</string>
<string name="gpio_pin">GPIO pin</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="gpio_pin_to_monitor">GPIO pin to monitor</string>
<string name="gps_en_gpio">GPS EN GPIO</string>
<string name="gps_mode">GPS Mode (Physical Hardware)</string>
<string name="gps_receive_gpio">GPS Receive GPIO</string>
<string name="gps_transmit_gpio">GPS Transmit GPIO</string>
<string name="green">Green</string>
<string name="hardware">Hardware</string>
<string name="hardware_model">Hardware model</string>
<string name="heading">Heading</string>
<string name="heartbeat">Heartbeat</string>
<string name="help_and_documentation">Help & Documentation</string>
<string name="hide_layer">Hide Layer</string>
<string name="hide_password">Hide password</string>
<string name="history_return_max">History return max</string>
<string name="history_return_window">History return window</string>
<string name="hop_limit">Number of Hops</string>
<string name="hops_away">Hops Away</string>
<string name="host">Host</string>
<string name="host_metrics_log">Host Metrics</string>
<string name="humidity">Hum</string>
<string name="i_agree">I agree.</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_know_what_i_m_doing">I know what I'm doing.</string>
<string name="i2s_clock">I2S clock</string>
<string name="i2s_data_in">I2S data in</string>
<string name="i2s_data_out">I2S data out</string>
<string name="i2s_word_select">I2S word select</string>
<string name="iaq">IAQ</string>
<string name="iaq_definition">(Indoor Air Quality) relative scale IAQ value as measured by Bosch BME680. Value Range 0–500.</string>
<string name="icon_meanings">Icon Meanings</string>
<!-- IGNORE -->
<string name="ignore">Ignore</string>
<string name="ignore_add">Add '%1$s' to ignore list?</string>
<string name="ignore_incoming">Ignore incoming</string>
<string name="ignore_mqtt">Ignore MQTT</string>
<string name="ignore_remove">Remove '%1$s' from ignore list?</string>
<string name="import_configuration">Import configuration</string>
<string name="import_known_shared_contact_text">Warning: This contact is known, importing will overwrite the previous contact information.</string>
<string name="import_label">Import</string>
<string name="import_shared_contact">Import Shared Contact?</string>
<string name="incoming_messages">Incoming Messages</string>
<string name="indoor_air_quality_iaq">Indoor Air Quality (IAQ)</string>
<string name="info">Information</string>
<string name="input_channel_url">Input Channel URL</string>
<string name="input_shared_contact_url">Input Shared Contact URL</string>
<string name="installed_firmware_version">Currently Installed</string>
<string name="internal">Internal</string>
<string name="interval_always_on">Always On</string>
<string name="interval_unset">Unset</string>
<string name="intro_show">Show Introduction</string>
<string name="intro_welcome">Welcome to</string>
<string name="ip">IP</string>
<string name="ip_address">IP Address:</string>
<string name="ip_port">Port:</string>
<string name="ipv4_mode">IPv4 mode</string>
<string name="json_output_enabled">JSON output enabled</string>
<string name="key_verification_final_title">Key Verification Complete</string>
<string name="key_verification_request_title">Key Verification Request</string>
<string name="key_verification_title">Key Verification</string>
<!-- LABEL -->
<string name="label_lite_fast">Lite - Fast</string>
<string name="label_lite_slow">Lite - Slow</string>
<string name="label_long_fast">Long Range - Fast</string>
<string name="label_long_moderate">Long Range - Moderate</string>
<string name="label_long_slow">Long Range - Slow</string>
<string name="label_long_turbo">Long Range - Turbo</string>
<string name="label_medium_fast">Medium Range - Fast</string>
<string name="label_medium_slow">Medium Range - Slow</string>
<string name="label_narrow_fast">Narrow - Fast</string>
<string name="label_narrow_slow">Narrow - Slow</string>
<string name="label_short_fast">Short Range - Fast</string>
<string name="label_short_slow">Short Range - Slow</string>
<string name="label_short_turbo">Short Range - Turbo</string>
<string name="label_very_long_slow">Very Long Range - Slow</string>
<string name="last_heard_filter_label">Filter by Last Heard time: %1$s</string>
<string name="last_position_update">Last position update</string>
<string name="latest_alpha_firmware">Latest alpha</string>
<string name="latest_stable_firmware">Latest stable</string>
<string name="latitude">Latitude</string>
<string name="learn_more">Learn more</string>
<string name="led_heartbeat">LED Heartbeat</string>
<string name="led_state">LED state</string>
<string name="legacy_admin_channel">Legacy Admin channel</string>
<string name="library_count">%1$d libraries</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>
<!-- LOAD -->
<string name="load">Load</string>
<string name="load_15_min">Load 15m</string>
<string name="load_15_min_description">Fifteen-minute system load average</string>
<string name="load_1_min">Load 1m</string>
<string name="load_1_min_description">One-minute system load average</string>
<string name="load_5_min">Load 5m</string>
<string name="load_5_min_description">Five-minute system load average</string>
<string name="load_indexed">Load %1$d</string>
<string name="loading">Loading</string>
<!-- LOCAL -->
<string name="local_mbtiles_file">Local MBTiles File</string>
<string name="local_stats_bad">Bad %1$d</string>
<string name="local_stats_battery">Battery: %1$d%</string>
<string name="local_stats_diagnostics_prefix">Diagnostics: %1$s</string>
<string name="local_stats_dropped">Dropped %1$d</string>
<string name="local_stats_heap">Heap</string>
<string name="local_stats_heap_value">%1$d / %2$d</string>
<string name="local_stats_nodes">Nodes: %1$d online / %2$d total</string>
<string name="local_stats_noise">Noise %1$d dBm</string>
<string name="local_stats_relays">Relays: %1$d (Canceled: %2$d)</string>
<string name="local_stats_traffic">Traffic: TX %1$d / RX %2$d (D: %3$d)</string>
<string name="local_stats_updated_at">%1$s</string>
<string name="local_stats_uptime">Uptime: %1$s</string>
<string name="local_stats_utilization">ChUtil: %1$s% | AirTX: %2$s%</string>
<string name="location_disabled">Location access is turned off, can not provide position to mesh.</string>
<string name="location_sharing">Location Sharing</string>
<string name="locked">Locked</string>
<!-- LOG -->
<string name="log_retention_days">MeshLog retention period</string>
<plurals name="log_retention_days_quantity">
<item quantity="one">%1$d day</item>
<item quantity="other">%1$d days</item>
</plurals>
<string name="log_retention_days_summary">Choose how long to keep logs. Select Never to keep all logs.</string>
<plurals name="log_retention_hours">
<item quantity="one">%1$d hour</item>
<item quantity="other">%1$d hours</item>
</plurals>
<string name="log_retention_never">Never delete logs</string>
<string name="logs">Logs</string>
<string name="long_name">Long Name</string>
<string name="longitude">Longitude</string>
<string name="lora">LoRa</string>
<string name="lora_config">LoRa</string>
<string name="low_battery">Low Battery</string>
<string name="low_battery_message">Node %1$s has a low battery (%2$d%)</string>
<string name="low_battery_title">Low battery: %1$s</string>
<string name="low_entropy_key_title">Weak Encryption Key Detected</string>
<string name="lux">Lux</string>
<string name="manage_custom_tile_sources">Manage Custom Tile Sources</string>
<string name="manage_map_layers">Manage Map Layers</string>
<string name="managed_mode">Managed Mode</string>
<string name="manual_position_request">Manual position request required</string>
<!-- MAP -->
<string name="map">Mesh Map</string>
<string name="map_cache_info">Cache Capacity: %1$d MB\nCache Usage: %2$d MB</string>
<string name="map_cache_manager">Cache Manager</string>
<string name="map_cache_size">Current Cache size</string>
<string name="map_cache_tiles">%1$d tiles</string>
<string name="map_clear_tiles">Clear Downloaded Tiles</string>
<string name="map_download_complete">Download complete!</string>
<string name="map_download_errors">Download complete with %1$d errors</string>
<string name="map_download_region">Download Region</string>
<string name="map_filter">Map Filter\n</string>
<string name="map_layer_formats">Map layers support .kml, .kmz, or GeoJSON formats.</string>
<string name="map_node_popup_details">%1$s<br>Last heard: %2$s<br>Last position: %3$s<br>Battery: %4$s</string>
<string name="map_offline_manager">Offline Manager</string>
<string name="map_purge_fail">SQL Cache purge failed, see logcat for details</string>
<string name="map_purge_success">SQL Cache purged for %1$s</string>
<string name="map_reporting">Map reporting</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="map_reporting_interval_seconds">Map reporting interval (seconds)</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_select_download_region">Select download region</string>
<string name="map_start_download">Start Download</string>
<string name="map_style_selection">Map style selection</string>
<string name="map_subDescription">bearing: %1$d° distance: %2$s</string>
<string name="map_tile_download_estimate">Tile download estimate:</string>
<string name="map_tile_source">Tile Source</string>
<string name="map_type_hybrid">Hybrid</string>
<string name="map_type_normal">Normal</string>
<string name="map_type_satellite">Satellite</string>
<string name="map_type_terrain">Terrain</string>
<string name="mark_as_read">Mark as read</string>
<string name="match_all">Match All | Any</string>
<string name="match_any">Match Any | All</string>
<string name="max">Max</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>
<!-- MESHTASTIC -->
<string name="meshtastic">Meshtastic</string>
<string name="meshtastic_alerts_notifications">Alert notifications</string>
<string name="meshtastic_app_name">Meshtastic</string>
<string name="meshtastic_broadcast_notifications">Broadcast message notifications</string>
<string name="meshtastic_low_battery_notifications">Low battery notifications</string>
<string name="meshtastic_low_battery_temporary_remote_notifications">Low battery notifications (favorite nodes)</string>
<string name="meshtastic_messages_notifications">Direct message notifications</string>
<string name="meshtastic_new_nodes_notifications">New node notifications</string>
<string name="meshtastic_service_notifications">Service notifications</string>
<string name="meshtastic_waypoints_notifications">Waypoint notifications</string>
<!-- MESSAGE -->
<string name="message">Message</string>
<string name="message_delivery_status">Message delivery status</string>
<string name="message_device_managed">This radio is managed and can only be changed by a remote admin.</string>
<string name="message_input_label">Message</string>
<string name="message_status_delivered">Delivered to mesh</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_confirmed">Confirmed on SF++ chain</string>
<string name="message_status_sfpp_routing">Routing via SF++ chain…</string>
<string name="message_status_unknown">Unknown</string>
<string name="messages">Messages</string>
<string name="micrograms_per_cubic_meter">µg/m³</string>
<string name="min">Min</string>
<string name="minimum_broadcast_seconds">Minimum broadcast (seconds)</string>
<string name="minimum_distance">Smart Distance</string>
<string name="minimum_interval">Smart Interval</string>
<string name="minimum_wake_time_seconds">Minimum wake time</string>
<string name="modem_preset">Presets</string>
<string name="module_settings">Module configuration</string>
<string name="modules_already_unlocked">Modules already unlocked</string>
<string name="modules_unlocked">Modules unlocked</string>
<string name="more_reactions">More reactions</string>
<string name="mpwrd_os" translatable="false">mPWRD-OS</string>
<!-- MQTT -->
<string name="mqtt">MQTT</string>
<string name="mqtt_config">MQTT Config</string>
<string name="mqtt_enabled">MQTT enabled</string>
<string name="mqtt_probe_dns_failure">Host not found</string>
<string name="mqtt_probe_other_failure">Connection failed</string>
<string name="mqtt_probe_rejected">Broker rejected: %1$s</string>
<string name="mqtt_probe_running">Probing broker…</string>
<string name="mqtt_probe_success">Reachable. Broker accepted credentials.</string>
<string name="mqtt_probe_success_with_info">Reachable (%1$s)</string>
<string name="mqtt_probe_tcp_failure">Cannot reach broker (TCP)</string>
<string name="mqtt_probe_timeout">Timed out after %1$d ms</string>
<string name="mqtt_probe_tls_failure">TLS handshake failed: %1$s</string>
<string name="mqtt_status_connected">Connected</string>
<string name="mqtt_status_connecting">Connecting…</string>
<string name="mqtt_status_disconnected">Disconnected</string>
<string name="mqtt_status_disconnected_with_reason">Disconnected — %1$s</string>
<string name="mqtt_status_inactive">Inactive</string>
<string name="mqtt_status_reconnecting">Reconnecting…</string>
<string name="mqtt_status_reconnecting_with_attempt">Reconnecting (attempt %1$d) — %2$s</string>
<string name="mqtt_test_connection">Test connection</string>
<string name="must_set_region">You must set a region!</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>
<!-- MUTE -->
<string name="mute_1_week">1 week</string>
<string name="mute_8_hours">8 hours</string>
<string name="mute_add">Mute notifications for '%1$s'?</string>
<string name="mute_always">Always</string>
<string name="mute_notifications">Mute notifications</string>
<string name="mute_remove">Unmute notifications for '%1$s'?</string>
<string name="mute_selected">Mute selected</string>
<string name="mute_status_always">Always muted</string>
<string name="mute_status_muted_for_days">Muted for %1$d days, %2$s hours</string>
<string name="mute_status_muted_for_hours">Muted for %1$s hours</string>
<string name="mute_status_unmuted">Not muted</string>
<string name="nag_timeout_seconds">Nag timeout (seconds)</string>
<string name="name">Name</string>
<string name="name_cannot_be_empty">Name cannot be empty.</string>
<string name="navigate_back">Navigate Back</string>
<string name="navigate_into_label">Navigate Into</string>
<string name="neighbor_info">Neighbor Info</string>
<string name="neighbor_info_config">Neighbor Info Config</string>
<string name="neighbor_info_enabled">Neighbor Info enabled</string>
<string name="network">Network</string>
<string name="network_layer_url_hint" translatable="false">https://example.com/map.kml or .geojson</string>
<string name="new_channel_rcvd">New Channel URL received</string>
<string name="new_messages_below">New messages below</string>
<string name="new_node_seen">New Node Seen: %1$s</string>
<string name="new_nodes">New Nodes</string>
<string name="next">Next</string>
<string name="nfc_disabled">NFC is disabled. Please enable it in system settings.</string>
<!-- NO -->
<string name="no_bluetooth_devices_hint">Ensure you're within range of the device.</string>
<string name="no_bluetooth_devices_seen">No Bluetooth devices seen</string>
<string name="no_custom_tile_sources_found">No custom tile sources found.</string>
<string name="no_device_selected">No device selected</string>
<string name="no_devices_found">No devices found</string>
<string name="no_files_manifested">No files manifested.</string>
<string name="no_local_stats">No Stats Available</string>
<string name="no_map_layers_loaded">No map layers loaded.</string>
<string name="no_network_devices_found">No network devices found</string>
<string name="no_network_devices_hint">Ensure you're connected to the same network as the device.</string>
<string name="no_network_devices_seen">No network devices seen</string>
<string name="no_pax_metrics_logs">No PAX metrics available.</string>
<string name="no_usb_devices_found">No USB devices found</string>
<string name="no_usb_devices_hint">Connect the device via serial or USB.</string>
<string name="no_usb_devices_seen">No USB devices seen</string>
<!-- NODE -->
<string name="node_count_template">(%1$d online / %2$d shown / %3$d total)</string>
<string name="node_filter_exclude_infrastructure">Exclude infrastructure</string>
<string name="node_filter_exclude_mqtt">Exclude MQTT</string>
<string name="node_filter_ignored">You are viewing ignored nodes,\nPress to return to the node list.</string>
<string name="node_filter_include_unknown">Include unknown</string>
<string name="node_filter_only_direct">Only show direct nodes</string>
<string name="node_filter_only_online">Hide offline nodes</string>
<string name="node_filter_placeholder">Filter</string>
<string name="node_filter_show_ignored">Only show ignored Nodes</string>
<string name="node_filter_title">Filter by</string>
<string name="node_id">Node ID</string>
<string name="node_layout_channel">Channel</string>
<string name="node_layout_compact">Compact</string>
<string name="node_layout_compact_fields_header">Compact Fields</string>
<string name="node_layout_complete">Complete</string>
<string name="node_layout_complete_description">The Complete layout displays all available node data. Fields with no data are automatically hidden.</string>
<string name="node_layout_device_role">Device & Role</string>
<string name="node_layout_distance_and_bearing">Distance and Bearing</string>
<string name="node_layout_help_signal_bad">Signal is poor. SNR is above −18 dB and RSSI is above −125 dBm.</string>
<string name="node_layout_help_signal_fair">Signal is moderate. SNR is above −12 dB and RSSI is above −120 dBm.</string>
<string name="node_layout_help_signal_good">Signal is strong. SNR is above −7 dB and RSSI is above −115 dBm.</string>
<string name="node_layout_help_signal_indicator">Combines SNR and RSSI into a quality level shown as a colored icon with description. Displayed in the Complete layout only.</string>
<string name="node_layout_help_signal_none">No usable signal detected. Below all quality thresholds.</string>
<string name="node_layout_hops_away">Hops Away</string>
<string name="node_layout_last_heard_time">Last Heard Time</string>
<string name="node_layout_log_icons">Environment Metrics</string>
<string name="node_layout_no_preview_available">No nodes available for preview.</string>
<string name="node_layout_power">Power</string>
<string name="node_layout_preview">Preview</string>
<string name="node_layout_relative_last_heard">Relative Last Heard Time</string>
<string name="node_layout_section_title">Node Layout</string>
<string name="node_layout_signal_direct_only">Signal (Direct Only)</string>
<string name="node_layout_signal_quality_indicator">Signal Quality Indicator</string>
<string name="node_list_click_label">Open node details</string>
<string name="node_list_help_node_details">Node Details</string>
<string name="node_list_help_title">Node List Help</string>
<string name="node_list_long_click_label">Node options</string>
<string name="node_number">Node Number</string>
<string name="node_sort_alpha">A-Z</string>
<string name="node_sort_button">Node sorting options</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_title">Sort by</string>
<string name="node_sort_via_favorite">via Favorite</string>
<string name="node_sort_via_mqtt">via MQTT</string>
<string name="node_status_summary">The actual status string</string>
<string name="nodedb_reset">NodeDB reset</string>
<string name="nodeinfo_broadcast_interval">Node Info Broadcast Interval</string>