-
-
Notifications
You must be signed in to change notification settings - Fork 941
Expand file tree
/
Copy pathstrings.xml
More file actions
1476 lines (1476 loc) · 127 KB
/
strings.xml
File metadata and controls
1476 lines (1476 loc) · 127 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
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="aa_launch_native">Native mode</string>
<string name="aa_driving_optimized_change">Use Home Assistant in drive mode?</string>
<string name="aa_navigation">Navigation</string>
<string name="aa_no_entities_with_locations">No entities with locations found</string>
<string name="aa_change_server">Change server</string>
<string name="account">Account</string>
<string name="accuracy">Accuracy</string>
<string name="action_reply">Reply</string>
<string name="activate">Activate</string>
<string name="activity_intent_error">Unable to send activity intent, please check command format</string>
<string name="add_device">Add device</string>
<string name="add_favorite">Add favorite</string>
<string name="add_action_data_field">Add field</string>
<string name="add_shortcut">Add shortcut</string>
<string name="add_to_android_auto_favorite">Add to Android Auto favorites</string>
<string name="add_to_android_auto_driving_favorite">Add to driving favorites</string>
<string name="add_to_android_auto_success">Favorite added</string>
<string name="add_to_camera_widget">Add camera/picture to home screen</string>
<string name="add_to_entity_widget">Add entity state to home screen</string>
<string name="add_to_media_player_widget">Add media player to home screen</string>
<string name="add_to_shortcut">Add pinned shortcut</string>
<string name="add_to_shortcut_limit">Already 5 shortcuts set</string>
<string name="add_to_tile">Add quick settings tile</string>
<string name="add_to_todo_widget">Add list to home screen</string>
<string name="add_to_watch_favorite">Add to %s favorite</string>
<string name="add_to_watch_favorite_disconnected">Watch disconnected</string>
<string name="add_ssid">Add</string>
<string name="add_ssid_name_suggestion">Add %1$s</string>
<string name="add_widget">Add widget</string>
<string name="advanced">Advanced</string>
<string name="all_entities">All entities</string>
<string name="all_results">All results</string>
<string name="allow">Allow</string>
<string name="always_show_first_view_on_app_start">Always show first view when opening app</string>
<string name="always_show_first_view_on_app_start_summary">The first view of the default dashboard is shown as soon as the app is opened</string>
<string name="app_name">Home Assistant</string>
<string name="play_services_unavailable_full_flavor">Google Play services are unavailable. This version of the app may crash. Use the minimal version instead.</string>
<string name="app_version_info">App version info</string>
<string name="application_version">Application version</string>
<string name="attempting_authentication">Authenticating…</string>
<string name="attempting_connection">Connecting…</string>
<string name="attempting_registration">Registering application…</string>
<string name="attributes">Attributes</string>
<string name="auth_cancel">Authentication cancelled</string>
<string name="auth_error_message">The \'Username\' and \'Password\' fields must be completed</string>
<string name="auth_request">Authentication requested</string>
<string name="automation">Automation</string>
<string name="autoplay_video_summary">Autoplay videos when dashboard is active. Enabling this setting may increase data usage unexpectedly, proceed with caution.</string>
<string name="autoplay_video">Autoplay videos</string>
<string name="available_as_assistant_app">Available as assistant app</string>
<string name="background_access_disabled">Home Assistant does not have access to run in the background. Without this permission the app will not be able to reliably send data back to your server. Select to update permissions.</string>
<string name="background_access_enabled">Home Assistant has access to run in the background</string>
<string name="background_access_title">Background access</string>
<string name="basic_sensor_name_active_calories_burned">Active calories burned</string>
<string name="basic_sensor_name_active_notification_count">Active notification count</string>
<string name="basic_sensor_name_activity">Detected activity</string>
<string name="basic_sensor_name_alarm">Next alarm</string>
<string name="basic_sensor_name_android_auto">Android Auto</string>
<string name="basic_sensor_name_android_os_version">OS version</string>
<string name="basic_sensor_name_android_os_security_patch">Security patch</string>
<string name="basic_sensor_name_app_importance">App importance</string>
<string name="basic_sensor_name_app_inactive">App inactive</string>
<string name="basic_sensor_name_app_memory">App memory</string>
<string name="basic_sensor_name_app_rx_gb">App Rx GB</string>
<string name="basic_sensor_name_app_standby">App standby bucket</string>
<string name="basic_sensor_name_app_tx_gb">App Tx GB</string>
<string name="basic_sensor_name_battery_cycles">Battery cycle count</string>
<string name="basic_sensor_name_battery_health">Battery health</string>
<string name="basic_sensor_name_battery_level">Battery level</string>
<string name="basic_sensor_name_battery_state">Battery state</string>
<string name="basic_sensor_name_battery_temperature">Battery temperature</string>
<string name="basic_sensor_name_bluetooth_ble_emitter">BLE transmitter</string>
<string name="basic_sensor_name_bluetooth_ble_beacon_monitor">Beacon monitor</string>
<string name="basic_sensor_name_bluetooth_state">Bluetooth state</string>
<string name="basic_sensor_name_bluetooth">Bluetooth connection</string>
<string name="basic_sensor_name_car_battery">Car battery</string>
<string name="basic_sensor_name_car_name">Car name</string>
<string name="basic_sensor_name_car_charging_status">Car charging status</string>
<string name="basic_sensor_name_car_fuel">Car fuel</string>
<string name="basic_sensor_name_car_odometer">Car odometer</string>
<string name="basic_sensor_name_charger_type">Charger type</string>
<string name="basic_sensor_name_charging">Is charging</string>
<string name="basic_sensor_name_current_time_zone">Current time zone</string>
<string name="basic_sensor_name_current_version">Current version</string>
<string name="basic_sensor_name_device_locked">Device locked</string>
<string name="basic_sensor_name_device_secure">Device secure</string>
<string name="basic_sensor_name_doze">Doze mode</string>
<string name="basic_sensor_name_external_storage">External storage</string>
<string name="basic_sensor_name_geolocation">Geocoded location</string>
<string name="basic_sensor_name_headset_mounted">In use</string>
<string name="basic_sensor_name_high_accuracy_mode">High accuracy mode</string>
<string name="basic_sensor_name_interactive">Interactive</string>
<string name="basic_sensor_name_internal_storage">Internal storage</string>
<string name="basic_sensor_name_ip6_addresses">IPv6 addresses</string>
<string name="basic_sensor_name_keyguard_locked">Keyguard locked</string>
<string name="basic_sensor_name_keyguard_secure">Keyguard secure</string>
<string name="basic_sensor_name_last_notification">Last notification</string>
<string name="basic_sensor_name_last_reboot">Last reboot</string>
<string name="basic_sensor_name_last_removed_notification">Last removed notification</string>
<string name="basic_sensor_name_last_update">Last update trigger</string>
<string name="basic_sensor_name_location_accurate">Single accurate location</string>
<string name="basic_sensor_name_location_background">Background location</string>
<string name="basic_sensor_name_location_zone">Location zone</string>
<string name="basic_sensor_name_media_session">Media session</string>
<string name="basic_sensor_name_mobile_data_roaming">Mobile data roaming</string>
<string name="basic_sensor_name_mobile_data">Mobile data</string>
<string name="basic_sensor_name_mobile_rx_gb">Mobile Rx GB</string>
<string name="basic_sensor_name_mobile_tx_gb">Mobile Tx GB</string>
<string name="basic_sensor_name_nfc_state">NFC state</string>
<string name="basic_sensor_name_phone">Phone state</string>
<string name="basic_sensor_name_power_save">Power save</string>
<string name="basic_sensor_name_public_ip">Public IP address</string>
<string name="basic_sensor_name_sim1">SIM 1</string>
<string name="basic_sensor_name_sim2">SIM 2</string>
<string name="basic_sensor_name_sleep_confidence">Sleep confidence</string>
<string name="basic_sensor_name_sleep_segment">Sleep segment</string>
<string name="basic_sensor_name_total_calories_burned">Total calories burned</string>
<string name="basic_sensor_name_total_rx_gb">Total Rx GB</string>
<string name="basic_sensor_name_total_tx_gb">Total Tx GB</string>
<string name="basic_sensor_name_weight">Weight</string>
<string name="basic_sensor_name_wifi_bssid">Wi-Fi BSSID</string>
<string name="basic_sensor_name_wifi_frequency">Wi-Fi frequency</string>
<string name="basic_sensor_name_wifi_ip">Wi-Fi IP address</string>
<string name="basic_sensor_name_wifi_link_speed">Wi-Fi link speed</string>
<string name="basic_sensor_name_wifi_signal">Wi-Fi signal strength</string>
<string name="basic_sensor_name_wifi_state">Wi-Fi state</string>
<string name="basic_sensor_name_wifi">Wi-Fi connection</string>
<string name="basic_sensor_name_hotspot_state">Hotspot state</string>
<string name="binary_sensor">Binary sensor</string>
<string name="biometric_set_title">Confirm to continue</string>
<string name="biometric_title">Home Assistant is locked</string>
<string name="brightness">Brightness: %1$d%%</string>
<string name="broadcast_intent_error">Unable to send broadcast intent, please check the command format</string>
<string name="buttons">Buttons</string>
<string name="button_forward">Next</string>
<string name="button_widget_desc">Perform an action</string>
<string name="camera">Camera</string>
<string name="camera_tile">Camera tile</string>
<string name="camera_tile_desc">See what\'s on your camera</string>
<string name="camera_tile_log_in">Log in to add a camera tile</string>
<string name="camera_tile_no_tiles_yet">There are no camera tiles added yet - add one from the watch face to set it up</string>
<string name="camera_tile_no_entity_yet">Open the tile settings to select a camera</string>
<string name="camera_tile_n">Camera tile #%d</string>
<string name="camera_tiles">Camera tiles</string>
<string name="camera_widgets">Picture widgets</string>
<string name="camera_widget_desc">Displays the latest picture from a camera or image entity</string>
<string name="cancel">Cancel</string>
<string name="changelog">View full change log</string>
<string name="choose_entity">Choose entity</string>
<string name="clear_favorites">Clear favorites</string>
<string name="clear_search">Clear search</string>
<string name="clear_webview_cache">Reset frontend cache</string>
<string name="clear_webview_cache_active">Resetting…</string>
<string name="clear_webview_cache_failed">Reset failed</string>
<string name="clear_webview_cache_success">Reset completed</string>
<string name="close">Close</string>
<string name="color_temp">Color temperature: %1$s</string>
<string name="collapse">Collapse</string>
<string name="complication_entity_invalid">Invalid entity</string>
<string name="complication_entity_state_content_description">Entity state</string>
<string name="complication_entity_state_label">Entity state</string>
<string name="complication_entity_state_preview">Preview</string>
<string name="config">Configuration</string>
<string name="configure_action">Configure action</string>
<string name="confirm_delete_all_notification_message">Are you sure? This cannot be undone</string>
<string name="confirm_delete_all_notification_title">Confirm deleting all notifications</string>
<string name="confirm_delete_this_notification_message">Are you sure? This cannot be undone</string>
<string name="confirm_delete_this_notification_title">Confirm deleting this notification</string>
<string name="confirm_negative">NO</string>
<string name="confirm_positive">YES</string>
<string name="continue_on_phone">Continue on your phone</string>
<string name="connect">Connect</string>
<string name="continue_connect">Continue</string>
<string name="controls_setting_category">Device controls</string>
<string name="controls_setting_title">Manage device controls</string>
<string name="controls_setting_panel">Choose which device controls mode you would like to use:</string>
<string name="controls_setting_mode_builtin_title">Built-in</string>
<string name="controls_setting_mode_builtin_info">Easy to use, with advanced features like locked device settings and multiple servers support</string>
<string name="controls_setting_mode_panel_info">Use one of your Home Assistant dashboards to fully customize your controls</string>
<string name="controls_setting_summary">Choose if quick access device controls can be used when this device is locked</string>
<string name="controls_setting_choose_setting">Choose which entities you want to be able to control using the built-in device controls option when this device is locked:</string>
<string name="controls_setting_choose_all">Select all</string>
<string name="controls_setting_choose_none">Select none</string>
<string name="controls_setting_choose_empty">No entities available</string>
<string name="controls_setting_alert">If you previously used built-in device controls, you may need to remove all controls before the dashboard will be shown</string>
<string name="controls_setting_dashboard_setting">Enter the dashboard path you want to use. When left empty, the default dashboard will be used.</string>
<string name="controls_structure_enabled">Split multiple servers into individual pages within device controls</string>
<string name="covers">Covers</string>
<string name="crash_reporting_summary">Help the developers fix bugs and crashes by leaving this enabled. If the application crashes this will automatically generate and send a report. If you notice a crash also create an issue on GitHub!</string>
<string name="crash_reporting">Crash reporting</string>
<string name="create_template">Create template</string>
<string name="database_event_failure">Unable to send migration failure event to Home Assistant</string>
<string name="database_migration_failed">Database migration failed, all sensor and widget data has been reset. Please re-enable your sensors and recreate your widgets.</string>
<string name="delete">Delete</string>
<string name="delete_all_notifications">Delete all notifications from history</string>
<string name="delete_shortcut">Delete shortcut</string>
<string name="description">Description</string>
<string name="details">Details</string>
<string name="device_name">Device name</string>
<string name="device_registration">Device registration</string>
<string name="device_tracker">Device tracker</string>
<string name="disable">Disable</string>
<string name="disabled">Disabled</string>
<string name="documentation">Documentation</string>
<string name="domain_automation">Automation</string>
<string name="domain_button">Button</string>
<string name="domain_camera">Camera</string>
<string name="domain_climate">Climate</string>
<string name="domain_cover">Cover</string>
<string name="domain_fan">Fan</string>
<string name="domain_input_boolean">Input boolean</string>
<string name="domain_input_button">Input button</string>
<string name="domain_input_number">Input number</string>
<string name="domain_light">Light</string>
<string name="domain_lock">Lock</string>
<string name="domain_scene">Scene</string>
<string name="domain_script">Script</string>
<string name="domain_switch">Switch</string>
<string name="domain_vacuum">Vacuum</string>
<string name="downloads">Downloads</string>
<string name="downloads_unnamed_file">Unnamed file</string>
<string name="downloads_complete">Download complete.</string>
<string name="downloads_failed">Download failed.</string>
<string name="empty_template">Template value must not be blank</string>
<string name="enable_sensor">Enable sensor</string>
<string name="enable_sensor_missing_permission_activity_recognition">Requires \'Physical activity\' permission</string>
<string name="enable_sensor_missing_permission_general">Missing required permission</string>
<string name="enable_sensor_missing_permission_location">Requires \'Location\' permission</string>
<string name="enable_sensor_missing_permission_nearby_devices">Requires \'Nearby devices\' permission</string>
<string name="enable_sensor_missing_permission_phone">Requires \'Phone\' permission</string>
<string name="enabled">Enabled</string>
<string name="entity">Entity</string>
<plurals name="entities_found">
<item quantity="one">%d entity found</item>
<item quantity="other">%d entities found</item>
</plurals>
<plurals name="n_entities">
<item quantity="one">1 entity</item>
<item quantity="other">%d entities</item>
</plurals>
<string name="entity_attribute_checkbox">Append attribute value</string>
<string name="entity_id_name">Entity ID: %1$s</string>
<string name="entity_picker_add_entity">Add entity</string>
<string name="entity_widget_desc">View any entity\'s current state and toggle it</string>
<string name="todo_widget_desc">View any configured to-do list and mark items as completed</string>
<string name="error_auth_revoked">It appears that your authorization was revoked, please reconnect to Home Assistant.</string>
<string name="error_connection_failed">Unable to connect to Home Assistant.</string>
<string name="error_connection_failed_to">Unable to connect to %1$s</string>
<string name="error_connection_failed_no_network">Network unavailable, please check your connection</string>
<string name="error_loading_entities">Error loading entities</string>
<string name="error_ssl">Unable to communicate with Home Assistant because of a SSL error. Please ensure your certificate is valid.</string>
<string name="error_with_registration">The \'Mobile App\' integration is required to use the app, but it is not available on your Home Assistant server. Please check your server configuration and try again.</string>
<string name="errors">Errors</string>
<string name="event_error">Failed to notify HA of picked option.</string>
<string name="exit">Exit</string>
<string name="expand">Expand</string>
<string name="failed_connection">Could not connect</string>
<string name="failed_phone_connection">Could not connect to phone</string>
<string name="failed_watch_connection">Could not connect to watch</string>
<string name="failed_registration">Could not register</string>
<string name="failed_watch_registration">Could not register watch</string>
<string name="failed_unsupported">Not supported</string>
<string name="failure_send_favorites_wear">Failed to send favorites selection to watch</string>
<string name="fans">Fans</string>
<string name="favorite">Set favorites</string>
<string name="favorites">Favorites</string>
<string name="filter_notifications">Filter notifications</string>
<string name="filter_sensors">Filter sensors</string>
<string name="filter_sensors_all">All sensors</string>
<string name="filter_sensors_enabled">Enabled sensors</string>
<string name="filter_sensors_disabled">Disabled sensors</string>
<string name="filter_updates">Filter updates</string>
<string name="fullscreen_def">Put application in full screen</string>
<string name="fullscreen">Fullscreen</string>
<string name="screen_orientation_title_settings">Screen orientation</string>
<string name="screen_orientation_option_label_system">Follow system settings</string>
<string name="screen_orientation_option_label_portrait">Portrait</string>
<string name="screen_orientation_option_label_landscape">Landscape</string>
<string name="gestures">Gestures</string>
<string name="gestures_action_navigate_dashboard">Go to default dashboard</string>
<string name="gestures_action_navigate_forward">Go to next page</string>
<string name="gestures_action_navigate_reload">Reload page</string>
<string name="gestures_action_open_app_settings">Open app settings</string>
<string name="gestures_action_open_app_developer">Open app troubleshooting</string>
<string name="gestures_action_open_assist">Open Assist</string>
<string name="gestures_action_quickbar_commands">Search commands</string>
<string name="gestures_action_quickbar_default">Quick search</string>
<string name="gestures_action_quickbar_entities">Search entities</string>
<string name="gestures_action_quickbar_devices">Search devices</string>
<string name="gestures_action_server_list">Servers list</string>
<string name="gestures_action_server_next">Next server</string>
<string name="gestures_action_server_previous">Previous server</string>
<string name="gestures_action_show_sidebar">Show sidebar</string>
<string name="gestures_category_app">App</string>
<string name="gestures_category_navigation">Navigation</string>
<string name="gestures_category_servers">Servers</string>
<string name="gestures_description">Set up gestures for quick actions whenever you are using the main Home Assistant UI.\n\nNote: if your device has gestures that work in any app, they may override Home Assistant gestures.</string>
<string name="gestures_direction_down">Swipe down</string>
<string name="gestures_direction_left">Swipe left</string>
<string name="gestures_direction_right">Swipe right</string>
<string name="gestures_direction_up">Swipe up</string>
<string name="gesture_name_swipe_down_two">Swipe down using two fingers</string>
<string name="gesture_name_swipe_down_three">Swipe down using three fingers</string>
<string name="gesture_name_swipe_left_two">Swipe left using two fingers</string>
<string name="gesture_name_swipe_left_three">Swipe left using three fingers</string>
<string name="gesture_name_swipe_right_two">Swipe right using two fingers</string>
<string name="gesture_name_swipe_right_three">Swipe right using three fingers</string>
<string name="gesture_name_swipe_up_two">Swipe up using two fingers</string>
<string name="gesture_name_swipe_up_three">Swipe up using three fingers</string>
<string name="gestures_pointers_two">Using two fingers</string>
<string name="gestures_pointers_three">Using three fingers</string>
<string name="get_help">Get help</string>
<string name="help">Help</string>
<string name="hide_password">Hide password</string>
<string name="high_accuracy_mode_channel_name">High accuracy location</string>
<string name="high_accuracy_mode_notification_title">High accuracy (GPS) mode enabled</string>
<string name="hold_to_reorder">Hold to reorder</string>
<string name="icon">Icon</string>
<string name="input_booleans">Input booleans</string>
<string name="input_buttons">Input buttons</string>
<string name="input_cloud">Use Home Assistant Cloud</string>
<string name="input_url_hint">https://example.duckdns.org:8123</string>
<string name="input_url">Home Assistant URL</string>
<string name="install">Install</string>
<string name="install_app">Install app on Wear device</string>
<string name="install_phone_to_continue">Install Home Assistant on your phone to continue</string>
<plurals name="interval_hours">
<item quantity="one">%d hour</item>
<item quantity="other">%d hours</item>
</plurals>
<string name="interval_manual">Manual</string>
<plurals name="interval_minutes">
<item quantity="one">%d minute</item>
<item quantity="other">%d minutes</item>
</plurals>
<plurals name="interval_seconds">
<item quantity="one">%d second</item>
<item quantity="other">%d seconds</item>
</plurals>
<string name="interval_in_view">In view</string>
<string name="improv_device_authorization_required">The device requires authorization, please press its authorization button or consult the device\'s manual for how to proceed.</string>
<string name="improv_device_authorized">Setting up Wi-Fi…</string>
<string name="improv_device_connecting">Connecting…</string>
<string name="improv_device_provisioned">Wi-Fi connected successfully</string>
<string name="improv_device_provisioning">Connecting to Wi-Fi…</string>
<string name="improv_error_invalid_rpc_packet">Invalid RPC packet</string>
<string name="improv_error_not_authorized">Not authorized</string>
<string name="improv_error_unable_to_connect">Unable to connect</string>
<string name="improv_error_unknown_command">Unknown command</string>
<string name="improv_error_unknown">Unknown error, please try again</string>
<string name="improv_list_title">Devices ready to set up</string>
<string name="improv_permission_title">Search devices</string>
<string name="improv_permission_text">The Home Assistant app can find devices using Bluetooth of this device. Allow access for the following permissions.</string>
<string name="improv_permission_bluetooth">Bluetooth</string>
<string name="improv_permission_location">Precise location</string>
<string name="improv_wifi_title">Connect to Wi-Fi</string>
<string name="improv_wifi_ssid">Network name</string>
<string name="join_our_server">Join our smart home</string>
<string name="keep_screen_on_def">Do not lock screen when dashboard is active</string>
<string name="keep_screen_on">Keep screen on</string>
<string name="page_zoom_default">%1$d%% (default)</string>
<string name="page_zoom_pct">%1$d%%</string>
<string name="page_zoom">Page zoom</string>
<string name="pinch_to_zoom_def">Allow pinch-to-zoom gesture to zoom app window</string>
<string name="pinch_to_zoom">Pinch-to-zoom</string>
<string name="label_attribute">Attribute:</string>
<string name="label_dynamic_data">Data:</string>
<string name="label_entity_id">Entity ID:</string>
<string name="label_entity_ids">Entity ID(s):</string>
<string name="label_icon">Icon:</string>
<string name="label_label">Label:</string>
<string name="label_action">Action:</string>
<string name="label">Label</string>
<string name="lang_option_label_default">Device language</string>
<string name="lang_option_value_default">default</string>
<string name="lang_summary_settings">Changing default language may have influence on device entities naming</string>
<string name="lang_title_settings">Language</string>
<string name="last_changed">Last changed: %1$s</string>
<string name="last_num_notifications">Last %1$d notifications</string>
<string name="last_updated">Last updated: %1$s</string>
<string name="lights">Lights</string>
<string name="button_widgets">Button widgets</string>
<string name="entity_state_widgets">Entity state widgets</string>
<string name="list_header_instances">Instances</string>
<string name="media_player_widgets">Media player widgets</string>
<string name="template_widgets">Template widgets</string>
<string name="loading_entities">Please wait while we load your entities</string>
<string name="loading">Loading…</string>
<string name="location_disabled_dialog_message">%1$s\nDo you want to enable location?</string>
<string name="location_disabled_notification_message">Location is required for the following enabled option(s). If you do not enable location, the sensor(s)/setting(s) will not work!\n\n%1$s</string>
<string name="location_disabled_notification_short_message">Some options require location to work</string>
<string name="location_disabled_option_disable">Disable option</string>
<string name="location_disabled_title">Location is disabled</string>
<string name="location_history_empty_title">No recent locations</string>
<string name="location_history_empty_summary">Location updates received by the app will appear here</string>
<string name="location_history_off_title">Location history is off</string>
<string name="location_history_off_summary">Turn on location history to see and review all location updates received by the app</string>
<string name="location_history_failed_send">Failed to send</string>
<string name="location_history_geofence_enter">Zone entered</string>
<string name="location_history_geofence_exit">Zone exited</string>
<string name="location_history_geofence_dwell">Zone dwell</string>
<string name="location_history_sent">Sent</string>
<string name="location_history_skipped">Skipped</string>
<string name="location_history_skipped_accuracy">Not accurate enough</string>
<string name="location_history_skipped_debounce">Too many updates</string>
<string name="location_history_skipped_duplicate">Duplicate</string>
<string name="location_history_skipped_future">Future location</string>
<string name="location_history_skipped_not_latest">Old location</string>
<string name="location_history_skipped_old">Very old location</string>
<string name="location_history_use">Use location history</string>
<string name="location_perm_info_message">Android set up restrictions for apps which want to use your Wi-Fi, because Wi-Fi can be theoretically used to determine your location.\n\nTo ensure the app can access Wi-Fi in background (URL decision making, sensors), you must allow location access all the time.\n\nTherefore, to use this option location access all the time is needed.\n\nContinue granting location access?</string>
<string name="location_perm_info_title">Location access</string>
<string name="location_tracking">Location tracking</string>
<string name="location_tracking_summary">View a history of location tracking updates to troubleshoot the device tracker</string>
<string name="location_warn_channel">Location disabled</string>
<string name="location">Location</string>
<string name="lock_summary">Use biometric or screen lock credentials to unlock app</string>
<string name="lock_title">Lock app</string>
<string name="lock_home_bypass_summary">Disable app lock when connected to the home network</string>
<string name="lock_home_bypass_title">Unlock on home network</string>
<string name="locks">Locks</string>
<string name="log_file_not_created">Log file could not be created.</string>
<string name="log_loader_text">Collecting logs…</string>
<string name="log_loader_process">Current log</string>
<string name="log_loader_crash">Recent crash</string>
<string name="log">Log</string>
<string name="logged_in">Logged in</string>
<string name="login">Log in</string>
<string name="login_on_phone">Log in on your phone</string>
<string name="login_wear_os_device">Log in Wear OS device</string>
<string name="logout">Log out</string>
<string name="lovelace_view_dashboard">Dashboard view or Dashboard</string>
<string name="lovelace">Dashboard</string>
<string name="manage_shortcuts_summary">Manage launcher shortcuts</string>
<string name="manage_shortcuts">Manage shortcuts</string>
<string name="manage_ssids_ethernet">Ethernet connected</string>
<string name="manage_ssids_input_exists">This SSID already exists</string>
<string name="manage_ssids_input">New Wi-Fi SSID</string>
<string name="manage_ssids_introduction">Indicate when you\'re connected to your home network, based on Wi-Fi, ethernet or VPN. This can be used to, for example, use the internal connection URL or disable the app lock when at home.</string>
<string name="manage_ssids_permission">Home Assistant needs additional access to read Wi-Fi information.</string>
<string name="manage_ssids_wifi">Wi-Fi network connected</string>
<string name="manage_ssids_vpn">VPN connected</string>
<string name="manage_ssids_warning">Make sure to set up your home network correctly. Adding public Wi-Fi networks or using multiple ethernet/VPN connections may unintentionally expose information about or access to your app or server.</string>
<string name="manage_tiles_summary">Set up and manage quick settings tiles here. They will not function until you set them up here.</string>
<string name="manage_tiles">Manage tiles</string>
<string name="manage_wear_device">Manage device %1$s</string>
<string name="manage_widgets_summary">Edit your widgets. Adding/deleting can only be done from the home screen.</string>
<string name="manage_widgets">Manage widgets</string>
<string name="manual_setup">Enter address manually</string>
<string name="manual_title">What is your Home Assistant address?</string>
<string name="matter_commissioning_cancelled">Unable to add Matter device?</string>
<string name="matter_commissioning_unavailable">Matter is currently unavailable</string>
<string name="matter_shared_title">Add Matter device</string>
<string name="matter_shared_status_not_registered">Please connect to your Home Assistant server before adding a Matter device.</string>
<string name="matter_shared_status_select_server">Which server would you like to use?</string>
<string name="matter_shared_status_not_supported">To add a Matter device, please update your Home Assistant server and add Matter first.</string>
<string name="matter_shared_status_confirmation_named">Do you want to add %1$s to Home Assistant?</string>
<string name="matter_shared_status_confirmation">Do you want to add this Matter device to Home Assistant?</string>
<string name="matter_shared_status_working">Adding device, this may take a minute or two.</string>
<string name="matter_shared_status_success">The device has been added!</string>
<string name="matter_shared_status_failure_code">Unable to add the device to Home Assistant (error code %1$d). Would you like to try again?</string>
<string name="matter_shared_status_failure">Unable to add the device to Home Assistant. Would you like to try again?</string>
<string name="maximum">Maximum</string>
<string name="media_player">Media player</string>
<string name="media_player_widget_desc">Control any media player and see current now playing image</string>
<string name="message_checking">Checking Wear devices with app</string>
<string name="message_missing_all">The Wear app is missing on your watch.</string>
<string name="message_no_connected_nodes">No connected Wear devices, please make sure Bluetooth is on and your watch is paired.</string>
<string name="missing_command_permission">Please open the Home Assistant app and send the command again to grant the proper permissions. You will be taken to a page to either grant the Home Assistant app the permission, or you will need to select Permissions from the details page and then grant the missing permission. For command_bluetooth the name of the permission is Nearby devices. If you are attempting to use command_activity to make a phone call you will also need to grant Phone permissions.</string>
<string name="mute_unmute">Mute/Unmute</string>
<string name="play">Play</string>
<string name="pause">Pause</string>
<string name="areas">Areas</string>
<string name="more_entities">More entities</string>
<string name="need_help">Need help?</string>
<string name="navigate_up">Navigate up</string>
<string name="nfc_btn_create_duplicate">Create duplicate</string>
<string name="nfc_btn_fire_event">Fire event</string>
<string name="nfc_btn_read_tag">Read NFC tag</string>
<string name="nfc_btn_share">Share</string>
<string name="nfc_btn_write_tag">Write NFC tag</string>
<string name="nfc_event_fired_fail">Firing event failed, please try again</string>
<string name="nfc_event_fired_success">Event fired</string>
<string name="nfc_trigger_summary">Use this tag as a trigger for an automation. Select the \'Tag\' trigger type and choose the tag in the visual editor, or use the following YAML code:</string>
<string name="nfc_trigger_any">Scanned by any device:</string>
<string name="nfc_trigger_device">Scanned by this device:</string>
<string name="nfc_invalid_tag">This tag does not contain Home Assistant data</string>
<string name="nfc_processing_tag_error">Error while processing NFC tag</string>
<string name="nfc_read_tag_instructions">Hold your device near an NFC tag</string>
<string name="nfc_summary">Set up NFC tags</string>
<string name="nfc_tag_identifier">Tag ID</string>
<string name="nfc_title_nfc_setup">NFC tags</string>
<string name="nfc_title_settings">NFC tags</string>
<string name="nfc_welcome_message">NFC tags written by the app will fire an event once you bring your device near them.\n\nTags will work on any device with Home Assistant installed which has hardware support to read them.</string>
<string name="nfc_welcome_turnon">NFC is turned off. To get started, please turn on NFC in your device\'s settings.</string>
<string name="nfc_write_tag_error">Error while writing NFC tag</string>
<string name="nfc_write_tag_instructions">Hold your device near an NFC tag to write the following ID to it:\n\n%1$s</string>
<string name="nfc_write_tag_change">Change ID</string>
<string name="nfc_write_tag_enter_identifier">Tag ID</string>
<string name="nfc_write_tag_turnon">Please turn on NFC to enable writing to an NFC tag</string>
<string name="nfc_write_tag_success">Successfully wrote NFC tag</string>
<string name="no_notifications_summary">You have not received any notifications yet</string>
<string name="no_notifications">No notifications</string>
<string name="no_supported_entities">No supported entities</string>
<string name="no_supported_entities_summary">Check the documentation for more information</string>
<string name="no_widgets_summary">When you add a widget to your home screen, you will see it here</string>
<string name="no_widgets">No widgets found</string>
<string name="no_description">No description provided</string>
<string name="none">None</string>
<string name="none_selected">None selected</string>
<string name="not_private">Your connection to this site is not private.</string>
<string name="not_set">Not set</string>
<string name="notification_data">Full notification data</string>
<string name="notification_history_summary">History of notifications</string>
<string name="notification_history">Notification history</string>
<string name="notification_message">Message</string>
<string name="notification_received_at">Notification received at</string>
<string name="notification_source">Notification source</string>
<string name="notifications">Notifications</string>
<string name="ok">OK</string>
<string name="open_with_headphone_button">Open with headset button</string>
<string name="open_with_headphone_button_summary">Use Assist with the assistant/voice command button on supported headphones and earbuds</string>
<string name="licenses">Licenses</string>
<string name="licenses_summary">View licenses for third-party libraries</string>
<string name="other_settings">Other settings</string>
<string name="other">Other</string>
<string name="password">Password</string>
<string name="persistent_notification">Persistent notification</string>
<string name="person">Person</string>
<string name="pref_connection_internal">Internal connection URL</string>
<string name="pref_connection_title">Connection information</string>
<string name="pref_connection_url">Home Assistant URL</string>
<string name="pref_connection_homenetwork">Home network</string>
<string name="prioritize_internal_title">When loading dashboard and unknown if connected to home network</string>
<string name="prioritize_internal_on">Use internal connection URL</string>
<string name="prioritize_internal_on_expanded">Use internal connection URL (use this if you typically turn location access off)</string>
<string name="prioritize_internal_off">Use Home Assistant URL (recommended)</string>
<string name="privacy_policy">Privacy policy</string>
<string name="privacy_url">https://www.home-assistant.io/privacy</string>
<string name="qrcode_processing_tag_error">Error while processing QR code tag</string>
<string name="quick_settings">Quick settings</string>
<string name="rate_limit_summary">Rate limit data</string>
<string name="rate_limit_title">Notification rate limit</string>
<string name="refresh_external">Refresh external URL</string>
<string name="refresh_internal">Refresh internal URL</string>
<string name="refresh_log">Refresh logs</string>
<string name="refresh">Refresh</string>
<string name="refresh_interval">Refresh interval</string>
<string name="registerDevice">Register watch</string>
<string name="remaining">Remaining</string>
<string name="remember">Remember</string>
<string name="remove_ssid">Remove SSID</string>
<string name="required_fields">requires a username and password.</string>
<string name="resets_at">Resets at</string>
<string name="retry">Retry</string>
<string name="save">Save</string>
<string name="scenes">Scenes</string>
<string name="scripts">Scripts</string>
<string name="search">Search</string>
<string name="search_clear_selection">Clear selection</string>
<string name="search_icons">Search icons</string>
<string name="search_icons_in_english">Search icons (in English)</string>
<string name="search_notifications">Search notifications</string>
<string name="search_refine_for_more">Refine your search to view more…</string>
<string name="search_results">Search results</string>
<string name="search_sensors">Search sensors</string>
<string name="security_vulnerably_message">Your version of Home Assistant does not protect for recently discovered security vulnerabilities in custom components. Please view the details via the bulletin and update as soon as possible.</string>
<string name="security_vulnerably_title">Security vulnerability warning</string>
<string name="security_vulnerably_understand">I understand</string>
<string name="security_vulnerably_view">View bulletin</string>
<string name="security">Security</string>
<string name="select">Select</string>
<string name="select_entity_to_display">Select entity to display</string>
<string name="select_file">Select file</string>
<string name="sensor_description_active_calories_burned">Last recorded active calories burned from Health Connect</string>
<string name="sensor_description_active_notification_count">Total count of active notifications that are visible to the user including silent, persistent and the sensor updates notifications. Attributes will include the contents of all notifications if the corresponding setting is enabled. It\'s enabled by default.</string>
<string name="sensor_description_app_importance">If the app is in the foreground, background or any other state it can be</string>
<string name="sensor_description_android_auto">If the phone is currently connected to an Android Auto head unit</string>
<string name="sensor_description_android_os_version">Android OS version</string>
<string name="sensor_description_android_os_security_patch">Android OS security patch</string>
<string name="sensor_description_app_inactive">Whether the app is currently considered inactive by the system</string>
<string name="sensor_description_app_memory">Total used and available memory for the app</string>
<string name="sensor_description_app_rx_gb">App Rx GB since last device reboot</string>
<string name="sensor_description_app_standby">The app\'s current standby bucket. Standby buckets determine how much an app will be restricted from running background tasks such as jobs and alarms.</string>
<string name="sensor_description_app_tx_gb">App Tx GB since last device reboot</string>
<string name="sensor_description_audio_mode">The state of the device\'s audio mode</string>
<string name="sensor_description_audio_sensor">The state of the device\'s ringer mode</string>
<string name="sensor_description_battery_cycles">The number of charge cycles completed by the battery.\n\nNote: not all devices will report or update the cycle count.</string>
<string name="sensor_description_battery_health">The health of the battery</string>
<string name="sensor_description_battery_level">The current battery level of the device</string>
<string name="sensor_description_battery_state">The current charging state of the battery</string>
<string name="sensor_description_battery_temperature">The current battery temperature</string>
<string name="sensor_description_bluetooth_ble_emitter">Send BLE iBeacon with configured interval, used to track presence around house, e.g. together with roomassistant, esp32–mqtt–room or espresence projects.\n\nWarning: this can affect battery life, particularly if the \"Transmitter power\" setting is set to High or \"Advertise Mode\" is set to Low latency.\n\nSettings allow for specifying:\n– \"UUID\" (standard UUID format), \"Major\" and \"Minor\" (should be 0 – 65535), to tailor identifiers and groups. The default Minor value 40004 has the special meaning of forcing the beacon to be recognized by the iBeacon Tracker integration\n- \"Transmitter Power\" and \"Advertise Mode\" to help to preserve battery life (use lowest values if possible)\n - \"Measured Power\" to specify power measured at 1m (initial default -59)\n\nIt is also possible to set beacons to only be transmitted when connected to a Home network, which may be desirable for privacy and battery life.\n\nNote:\nAdditionally a separate setting exists (\"Enable Transmitter\") to stop or start transmitting.</string>
<string name="sensor_description_bluetooth_ble_beacon_monitor">Scans for iBeacons and shows the IDs of nearby beacons and their distance in meters. A notification will be shown on the device when scanning is actively running.\n\nWarning: this can affect battery life, especially with a short \"Scan Interval\".\n\nSettings allow for specifying:\n– \"Filter Iterations\" (should be 1 – 100, default: 10), higher values will result in more stable measurements but also less responsiveness.\n– \"Filter RSSI Multiplier\" (should be 1.0 – 2.0, default: 1.05), can be used to achieve more stable measurements when beacons are farther away. This will also affect responsiveness.\n- \"Scan Interval\" (default: 500) milliseconds between scans. Shorter intervals will drain the battery more quickly.\n- \"Scan Period\" (default: 1100) milliseconds to scan for beacons. Most beacons will send a signal every second so this value should be at least 1100ms.\n- \"UUID Filter\" allows to restrict the reported beacons by including (or excluding) those with the selected UUIDs.\n- \"Exclude selected UUIDs\", if false (default) only the beacons with the selected UUIDs are reported. If true all beacons except the selected ones are reported. Not available when \"UUID Filter\" is empty.\n\nNote:\nAdditionally a separate setting exists (\"Enable Beacon Monitor\") to stop or start scanning.</string>
<string name="sensor_description_bluetooth_connection">Information about currently connected Bluetooth devices</string>
<string name="sensor_description_bluetooth_state">Whether Bluetooth is enabled on the device</string>
<string name="sensor_description_car_battery">Remaining car battery percentage</string>
<string name="sensor_description_car_name">Car name, manufacturer and year</string>
<string name="sensor_description_car_charging_status">Charging status (only for EVs)</string>
<string name="sensor_description_car_fuel">Remaining car fuel percentage</string>
<string name="sensor_description_car_odometer">Odometer value</string>
<string name="sensor_description_charger_type">The type of charger plugged into the device currently</string>
<string name="sensor_description_charging">Whether the device is actively charging</string>
<string name="sensor_description_current_time_zone">The current time zone the device is in</string>
<string name="sensor_description_current_version">The current installed application version</string>
<string name="sensor_description_detected_activity">The current activity type as computed by Google\'s Activity Recognition API</string>
<string name="sensor_description_device_locked">Whether the device is currently locked and requires a PIN, pattern or password to unlock</string>
<string name="sensor_description_device_secure">Whether the device is secured with a PIN, pattern or password</string>
<string name="sensor_description_dnd_sensor">The current state of Do Not Disturb</string>
<string name="sensor_description_doze">Whether the device is in Doze mode</string>
<string name="sensor_description_external_storage">Information about the total and available storage space externally</string>
<string name="sensor_description_geocoded_location">Calculated address based on GPS data. The minimum accuracy setting determines if a location update is accurate enough to be updated, the default is 200 meters. A setting also exists to send a sensor update anytime the location sensors update, by default this off.</string>
<string name="sensor_description_headphone">Whether headphones are plugged into the device</string>
<string name="sensor_description_headset_mounted">Whether the headset is currently in use</string>
<string name="sensor_description_high_accuracy_mode">Whether high accuracy mode is active on the device</string>
<string name="sensor_description_hotspot">Whether the Wi-Fi hotspot is enabled</string>
<string name="sensor_description_interactive">Whether the device is in an interactive state</string>
<string name="sensor_description_internal_storage">Information about the total and available storage space internally</string>
<string name="sensor_description_ip6_addresses">The IPv6 addresses bound to the currently active network interface</string>
<string name="sensor_description_keyguard_locked">Whether the keyguard is currently locked</string>
<string name="sensor_description_keyguard_secure">Whether the keyguard is secured by a PIN, pattern or password or a SIM card is currently locked</string>
<string name="sensor_description_last_notification">The details of the last notification. You must set up an allow list or explicitly allow all notifications to be sent.\n\nNote: Sending all notification data will result in heavy battery usage.</string>
<string name="sensor_description_last_reboot">The date and time of the device\'s last reboot.\n\nThe \"Deadband\" setting allows you to adjust the deadband in milliseconds, if you find the value to jump incorrectly. The default value is 60000 (1 minute).</string>
<string name="sensor_description_last_removed_notification">The details of the last removed notification. This can be any notification either cleared by the user or removed by an application. You must set up an allow list or explicitly allow all notifications to be sent.\n\nNote: Sending all notification data will result in heavy battery usage.</string>
<string name="sensor_description_last_update">The intent action for the last update that was sent, periodic updates will show as \"SensorWorker\".\n\nEnabling the \"Add New Intent\" toggle will create 1 setting to allow you to register for a intent action. The toggle will switch back to off once a new setting is created so you will need to turn it back on to save more intent actions. You can also clear out the setting value to remove the setting in the next update.\n\nIf you are not receiving all intents then you will need to add categories that the intent expects. To do this you will need to add each category after the intent separated by a \",\" repeating until there are no more categories. For example an intent with 2 categories will be: \"intent,category1,category2\" as the setting value.\n\nYou must restart the application after making changes to these settings to take effect.</string>
<string name="sensor_description_light_sensor">The current level of illuminance</string>
<string name="sensor_description_location_accurate">Allow a forced, accurate location update for the device. Review the documentation for options to force a location update.\n\nThe \"Minimum accuracy\" setting allows you to decide how accurate the device location (in meters) has to be to send it to Home Assistant.\nThe \"Minimum time between updates\" setting (in milliseconds) keeps the device from sending the accurate location too often.\nThe \"Include in sensor update\" setting will make a location request with each sensor update.</string>
<string name="sensor_description_location_background">Update your location behind the scenes, periodically.\n\nThe \"Minimum accuracy\" setting allows you to decide how accurate the device location (in meters) has to be to send it to Home Assistant.\nThe "Location sent" setting allows you to change how detailed the location information is that is sent to your server.</string>
<string name="sensor_description_location_zone">Use existing Home Assistant zones as geofences for zone based tracking.\n\nThe \"Minimum accuracy\" setting allows you to decide how accurate the device location (in meters) has to be to send it to Home Assistant.</string>
<string name="sensor_description_media_session">The state will either be the playback state of the primary media session or it will be unavailable when you have no active sessions. Attributes will include data from all active sessions including total count.</string>
<string name="sensor_description_mic_muted">Whether the microphone is muted on the device</string>
<string name="sensor_description_mobile_data_roaming">Whether mobile data roaming is enabled on the device</string>
<string name="sensor_description_mobile_data">Whether mobile data is enabled on the device</string>
<string name="sensor_description_mobile_rx_gb">Total Rx GB on cellular data since last device reboot</string>
<string name="sensor_description_mobile_tx_gb">Total Tx GB on cellular data since last device reboot</string>
<string name="sensor_description_music_active">Whether music is actively playing on the device</string>
<string name="sensor_description_next_alarm">The date and time of the next scheduled alarm, any app or manufacturer can override the default behavior. The \"package\" attribute will tell you which app set the next scheduled alarm.\n\nThe "Allow list" setting allows you to choose for which apps you want the sensor to update. This will ignore alarm events for apps not selected and the state will not update until the next scheduled alarm matches one of the selected apps.</string>
<string name="sensor_description_nfc_state">Whether NFC is enabled on the device</string>
<string name="sensor_description_none">No description</string>
<string name="sensor_description_phone_state">Whether the phone is ringing or in a call, no other caller information is stored</string>
<string name="sensor_description_power_save">Whether the device is in Power Save mode</string>
<string name="sensor_description_pressure_sensor">The current ambient air pressure reading</string>
<string name="sensor_description_proximity_sensor">The current proximity reading, some devices only report near or far</string>
<string name="sensor_description_public_ip">The public IP address of the device. Enabling this you agree to use external service https://ipify.org to determine IP address.</string>
<string name="sensor_description_sim_1">Information about the current cellular provider in SIM slot 1</string>
<string name="sensor_description_sim_2">Information about the current cellular provider in SIM slot 2</string>
<string name="sensor_description_sleep_confidence">The confidence rating the user is asleep including attributing factors</string>
<string name="sensor_description_sleep_segment">Details about the last sleep session</string>
<string name="sensor_description_speakerphone">Whether speakerphone is enabled on the device</string>
<string name="sensor_description_steps_sensor">The total number of steps since the last reboot of the device</string>
<string name="sensor_description_total_calories_burned">Total amount of calories burned since midnight from Health Connect</string>
<string name="sensor_description_total_rx_gb">Total Rx GB since last device reboot</string>
<string name="sensor_description_total_tx_gb">Total Tx GB since last device reboot</string>
<string name="sensor_description_volume_alarm">Volume level for alarms on the device</string>
<string name="sensor_description_volume_call">Volume level for calls on the device</string>
<string name="sensor_description_volume_music">Volume level for music on the device</string>
<string name="sensor_description_volume_ring">Volume level for the ringer on the device</string>
<string name="sensor_description_weight">Last recorded weight in Health Connect</string>
<string name="sensor_description_wifi_bssid">The MAC address of the currently connected Wi-Fi access point. Enabling the \"Get current BSSID\" toggle will create a new setting allowing you to rename the state sent back to Home Assistant for the chosen MAC address. The toggle will default to off after the current BSSID is stored, so you will need to enable it once for each BSSID you wish to rename. You can also clear out the value to remove the setting in the next update.</string>
<string name="sensor_description_wifi_connection">The name of the network the device is currently connected to</string>
<string name="sensor_description_wifi_frequency">The frequency band of the connected network</string>
<string name="sensor_description_wifi_ip">The current IP address of the device on the network</string>
<string name="sensor_description_wifi_link_speed">The current link speed of the device to the connected network</string>
<string name="sensor_description_wifi_signal">The signal strength of the device to the Wi-Fi network</string>
<string name="sensor_description_wifi_state">Whether Wi-Fi is enabled on the device</string>
<string name="sensor_description_work_profile">Whether the work profile is currently active on the device</string>
<string name="sensor_name_activity">Activity sensors</string>
<string name="sensor_name_alarm">Alarm sensor</string>
<string name="sensor_name_android_auto">Android Auto sensors</string>
<string name="sensor_name_android_os">Android OS sensors</string>
<string name="sensor_name_app_sensor">App sensors</string>
<string name="sensor_name_audio_mode">Audio mode</string>
<string name="sensor_name_audio">Audio sensors</string>
<string name="sensor_name_battery">Battery sensors</string>
<string name="sensor_name_bluetooth">Bluetooth sensors</string>
<string name="sensor_name_car">Car sensors</string>
<string name="sensor_name_device_policy">Device policy</string>
<string name="sensor_name_dnd">Do Not Disturb sensor</string>
<string name="sensor_name_geolocation">Geolocation sensors</string>
<string name="sensor_name_headphone">Headphones</string>
<string name="sensor_name_keyguard">Keyguard sensors</string>
<string name="sensor_name_last_notification">Notification sensors</string>
<string name="sensor_name_last_reboot">Last reboot sensor</string>
<string name="sensor_name_last_update">Last update sensor</string>
<string name="sensor_name_light">Light sensor</string>
<string name="sensor_name_location">Location sensors</string>
<string name="sensor_name_mic_muted">Mic muted</string>
<string name="sensor_name_mobile_data">Mobile data sensors</string>
<string name="sensor_name_music_active">Music active</string>
<string name="sensor_name_network">Network sensors</string>
<string name="sensor_name_phone">Phone sensors</string>
<string name="sensor_name_power">Power sensors</string>
<string name="sensor_name_pressure">Pressure sensor</string>
<string name="sensor_name_proximity">Proximity sensor</string>
<string name="sensor_name_quest">Quest sensors</string>
<string name="sensor_name_ringer_mode">Ringer mode</string>
<string name="sensor_name_speakerphone">Speakerphone</string>
<string name="sensor_name_steps">Steps sensor</string>
<string name="sensor_name_storage">Storage sensors</string>
<string name="sensor_name_time_zone">Time zone sensor</string>
<string name="sensor_name_traffic_stats">Traffic stats sensors</string>
<string name="sensor_name_volume_alarm">Volume level alarm</string>
<string name="sensor_name_volume_call">Volume level call</string>
<string name="sensor_name_volume_music">Volume level music</string>
<string name="sensor_name_volume_ring">Volume level ringer</string>
<string name="sensor_name_work_profile">Work profile</string>
<string name="sensor_setting_ble_advertise_mode_balanced_label">Balanced (3Hz)</string>
<string name="sensor_setting_ble_advertise_mode_lowLatency_label">Low latency (10Hz)</string>
<string name="sensor_setting_ble_advertise_mode_lowPower_label">Low power (1Hz)</string>
<string name="sensor_setting_ble_advertise_mode_title">Advertise mode</string>
<string name="sensor_setting_ble_enable_toggle_all_title">Include when enabling all sensors</string>
<string name="sensor_setting_ble_major_title">Major</string>
<string name="sensor_setting_ble_measured_power_at_1m_title">Measured power</string>
<string name="sensor_setting_ble_minor_title">Minor</string>
<string name="sensor_setting_ble_transmit_enabled_title">Enable transmitter</string>
<string name="sensor_setting_ble_home_wifi_only_title">Transmit on Home network only</string>
<string name="sensor_setting_ble_transmit_power_high_label">High</string>
<string name="sensor_setting_ble_transmit_power_low_label">Low</string>
<string name="sensor_setting_ble_transmit_power_medium_label">Medium</string>
<string name="sensor_setting_ble_transmit_power_title">Transmitter power</string>
<string name="sensor_setting_ble_transmit_power_ultraLow_label">Ultra low</string>
<string name="sensor_setting_ble_uuid_title">UUID</string>
<string name="sensor_setting_beacon_monitor_enabled_title">Enable beacon monitor</string>
<string name="sensor_setting_beacon_monitor_scan_period_title">Scan period</string>
<string name="sensor_setting_beacon_monitor_scan_interval_title">Scan interval</string>
<string name="sensor_setting_beacon_monitor_filter_iterations_title">Filter iterations</string>
<string name="sensor_setting_beacon_monitor_filter_rssi_multiplier_title">Filter RSSI multiplier</string>
<string name="sensor_setting_beacon_monitor_uuid_filter_title">UUID filter</string>
<string name="sensor_setting_beacon_monitor_uuid_filter_exclude_title">Exclude selected UUIDs</string>
<string name="sensor_setting_geocode_minimum_accuracy_title">Minimum accuracy</string>
<string name="sensor_setting_geocode_include_location_updates_title">Update sensor with location sensors</string>
<string name="sensor_setting_lastreboot_deadband_title">Deadband</string>
<string name="sensor_setting_lastupdate_add_new_intent_title">Add new intent</string>
<string name="sensor_setting_lastupdate_intent_title" translatable="false">Intent %1$1s</string>
<string name="sensor_setting_location_send_as_title">Location sent</string>
<string name="sensor_setting_location_send_as_exact_label">Exact</string>
<string name="sensor_setting_location_send_as_zone_only_label">Zone only</string>
<string name="sensor_setting_location_ham_enabled_title">High accuracy mode (May drain battery fast)</string>
<string name="sensor_setting_location_ham_zone_bt_combined_title">High accuracy mode enabled only when in zone and BT device connected</string>
<string name="sensor_setting_location_ham_only_bt_dev_title">High accuracy mode only when connected to BT devices</string>
<string name="sensor_setting_location_ham_only_enter_zone_title">High accuracy mode only when entering zone</string>
<string name="sensor_setting_location_ham_trigger_range_title">High accuracy mode trigger range for zone (meters)</string>
<string name="sensor_setting_location_ham_update_interval_title">High accuracy mode update interval (seconds)</string>
<string name="sensor_setting_location_include_sensor_update_title">Include in sensor update</string>
<string name="sensor_setting_location_minimum_accuracy_title">Minimum accuracy</string>
<string name="sensor_setting_location_minimum_time_updates_title">Minimum time between updates</string>
<string name="sensor_setting_network_get_current_bssid_title">Get current BSSID</string>
<string name="sensor_setting_network_replace_mac_title">Replace MAC address %1$s with …</string>
<string name="sensor_setting_nextalarm_allow_list_title">Allow list</string>
<string name="sensor_setting_notification_allow_list_title">Allow list</string>
<string name="sensor_setting_notification_disable_allow_list_title">Disable allow list requirement</string>
<string name="sensor_setting_active_notification_count_content_attrs_title">Include content from all notifications as attributes</string>
<string name="sensor_setting_battery_current_divisor_title">Battery current divisor</string>
<string name="sensor_setting_battery_voltage_divisor_title">Battery voltage divisor</string>
<string name="sensor_settings">Sensor settings</string>
<string name="sensor_summary">Use this to manage what sensors are enabled/disabled.</string>
<string name="sensor_title">Manage sensors</string>
<string name="sensor_unfold_less">Hide server settings</string>
<string name="sensor_unfold_more">Show server settings</string>
<string name="sensor">Sensor</string>
<string name="sensors">Sensors</string>
<string name="server">Server</string>
<string name="server_settings">Server settings</string>
<string name="servers_devices_category">Servers & devices</string>
<string name="server_activate">Activate</string>
<string name="server_activate_gesture_hint">Tip: you can quickly activate and switch servers by using gestures.</string>
<string name="server_add">Add server</string>
<string name="server_add_success">Server added</string>
<string name="server_add_failed">Couldn\'t add server</string>
<string name="server_select">Select server</string>
<string name="server_delete">Delete server</string>
<string name="server_delete_confirm">Are you sure you want to delete this server from the app?</string>
<string name="server_delete_working">Deleting server…</string>
<string name="server_name">Server name</string>
<string name="action_failure">Unable to send action</string>
<string name="session_timeout_title">Session timeout (in seconds)</string>
<string name="set_favorite">Set favorites</string>
<string name="set_favorites_on_device">Set favorites on Wear OS device</string>
<string name="set_lock_message">No biometric sensor or screen lock credentials available</string>
<string name="set_lock_title">App locking error</string>
<string name="setting_haptic_label">Haptics</string>
<string name="setting_toast_label">Toast message</string>
<string name="setting_entity_name_on_tile">Show name on tile</string>
<string name="settings">Settings</string>
<string name="share_failed">Sharing with Home Assistant failed!</string>
<string name="share_logs_sens_message">Please note: by sharing the log, you could share sensitive data like location data or your Home Assistant URL.\n\nDo you want to continue?</string>
<string name="share_logs">Share logs</string>
<string name="share_server">Share server</string>
<string name="share_success">Shared with Home Assistant</string>
<string name="shortcut_icon">Select an icon for this shortcut</string>
<string name="shortcut_instruction_desc">Use the below sections to create your shortcuts. Once you have added a shortcut you will need to drag it on your home screen after long pressing on the app icon. Although Android supports up to 5 dynamic shortcuts most launchers will only show 4 shortcuts.</string>
<string name="shortcut_n">Shortcut %d</string>
<string name="shortcut_pinned_desc">Pinned shortcut description</string>
<string name="shortcut_pinned_id">Pinned shortcut ID</string>
<string name="shortcut_pinned_label">Pinned shortcut label</string>
<string name="shortcut_pinned_list">Select a pinned shortcut ID to edit</string>
<string name="shortcut_pinned_note">Make sure to change the ID below for each new shortcut you want to add otherwise the existing ID will be updated. There are no limits to the amount of pinned shortcuts you can create.</string>
<string name="shortcut_type">Select shortcut type</string>
<string name="shortcut_updated">Shortcut updated</string>
<string name="shortcut">Shortcut</string>
<string name="shortcuts_choose">Choose shortcuts</string>
<string name="shortcut5_note">Not all launchers support displaying 5 shortcuts, you may not see this shortcut if the above 4 are already added.</string>
<string name="shortcut_tiles">Shortcuts tiles</string>
<string name="shortcuts_tile_n">Shortcuts tile #%d</string>
<string name="shortcuts_tile_select">Select shortcuts tile to manage</string>
<string name="shortcuts_tile_description">Select up to 7 entities</string>
<string name="shortcuts_tile_empty">Choose entities in settings</string>
<string name="shortcuts_tile_text_setting">Show names on tile</string>
<string name="shortcuts_tile_log_in">Log in to add your first shortcut</string>
<string name="shortcuts_tile_no_tiles_yet">There are no shortcuts tiles added yet</string>
<string name="shortcuts">Shortcuts</string>
<string name="show">Show</string>
<string name="show_on_map">Show on map</string>
<string name="show_share_logs_summary">Sharing logs with the Home Assistant team will help to solve issues. Please share the logs only if you have been asked to do so by a Home Assistant developer</string>
<string name="show_share_logs">Show and share logs</string>
<string name="show_entity_title">Show entity name</string>
<string name="show_unit_title">Show entity unit</string>
<string name="slider_decreased">%1$s decreased</string>
<string name="slider_increased">%1$s increased</string>
<string name="slider_fan_speed">Fan speed</string>
<string name="slider_light_brightness">Brightness</string>
<string name="slider_light_colortemp">Color temperature</string>
<string name="skip">Skip</string>
<string name="speed">Speed: %1$d%%</string>
<string name="state_auto">Auto</string>
<string name="state_cleaning">Cleaning</string>
<string name="state_closed">Closed</string>
<string name="state_closing">Closing</string>
<string name="state_cool">Cool</string>
<string name="state_docked">Docked</string>
<string name="state_dry">Dry</string>
<string name="state_error">Error</string>
<string name="state_fan_only">Fan only</string>
<string name="state_heat_cool">Heat/Cool</string>
<string name="state_heat">Heat</string>
<string name="state_idle">Idle</string>
<string name="state_jammed">Jammed</string>
<string name="state_locked">Locked</string>
<string name="state_locking">Locking</string>
<string name="state_off" tools:override="true">Off</string>
<string name="state_on" tools:override="true">On</string>
<string name="state_open">Open</string>
<string name="state_opening">Opening</string>
<string name="state_paused">Paused</string>
<string name="state_returning">Returning</string>
<string name="state_unavailable">Unavailable</string>
<string name="state_unknown">Unknown</string>
<string name="state_unlocked">Unlocked</string>
<string name="state_unlocking">Unlocking</string>
<string name="state_recording">Recording</string>
<string name="state_streaming">Streaming</string>
<string name="state">State</string>
<string name="state_name">State: %1$s</string>
<string name="store_request_successful">Request to install app on wear device sent successfully</string>
<string name="store_request_unsuccessful">Play Store request failed. Wear device(s) may not support Play Store, that is, the Wear device may be version 1.0.</string>
<string name="successful">Successful</string>
<string name="suggestion_assist_title">Use Assist from anywhere</string>
<string name="suggestion_assist_summary">Set Home Assistant as your assistant app</string>
<string name="suggestion_notifications_title">Enable notifications</string>
<string name="suggestion_notifications_summary">Allow Home Assistant to send notifications</string>
<string name="sun">Sun</string>
<string name="switches">Switches</string>
<string name="tag_reader_title">Processing tag</string>
<string name="template">Template</string>
<string name="template_tile">Template tile</string>
<string name="template_tile_n">Template tile #%d</string>
<string name="template_tiles">Template tiles</string>
<string name="template_tile_configure">Configure Template tiles</string>
<string name="template_tile_no_tiles_yet">There are no Template tiles added yet - add one from the watch face to set it up</string>
<string name="template_tile_set_on_watch">Configure templates to use as Wear OS tiles</string>
<string name="template_tile_change_message">Change template in phone settings</string>
<string name="template_tile_content">Template tile content</string>
<string name="template_tile_desc">Renders and displays a template</string>
<string name="template_tile_empty">Set template in the phone settings</string>
<string name="template_tile_log_in">Log in to set up a template</string>
<string name="template_error">Error in template</string>
<string name="template_render_error">Error rendering template</string>
<string name="template_tile_help">Provide a template below that will be displayed on the Wear OS template tile. See help for markup options.</string>
<string name="template_widget_default">Enter template here</string>
<string name="template_widget_desc">Render any template with HTML formatting</string>
<string name="template_widget">Template widget</string>
<string name="troubleshooting">Troubleshooting</string>
<string name="troubleshooting_summary">Logs and other tools to diagnose issues</string>
<string name="themes_option_label_dark">Dark</string>
<string name="themes_option_label_light">Light</string>
<string name="themes_option_label_system">Follow system settings</string>
<string name="themes_title_settings">Theme</string>
<string name="tile_1">Tile 1</string>
<string name="tile_10">Tile 10</string>
<string name="tile_11">Tile 11</string>
<string name="tile_12">Tile 12</string>
<string name="tile_13">Tile 13</string>
<string name="tile_14">Tile 14</string>
<string name="tile_15">Tile 15</string>
<string name="tile_16">Tile 16</string>
<string name="tile_17">Tile 17</string>
<string name="tile_18">Tile 18</string>
<string name="tile_19">Tile 19</string>
<string name="tile_2">Tile 2</string>
<string name="tile_20">Tile 20</string>
<string name="tile_21">Tile 21</string>
<string name="tile_22">Tile 22</string>
<string name="tile_23">Tile 23</string>
<string name="tile_24">Tile 24</string>
<string name="tile_25">Tile 25</string>
<string name="tile_26">Tile 26</string>
<string name="tile_27">Tile 27</string>
<string name="tile_28">Tile 28</string>
<string name="tile_29">Tile 29</string>
<string name="tile_3">Tile 3</string>
<string name="tile_30">Tile 30</string>
<string name="tile_31">Tile 31</string>
<string name="tile_32">Tile 32</string>
<string name="tile_33">Tile 33</string>
<string name="tile_34">Tile 34</string>
<string name="tile_35">Tile 35</string>
<string name="tile_36">Tile 36</string>
<string name="tile_37">Tile 37</string>
<string name="tile_38">Tile 38</string>
<string name="tile_39">Tile 39</string>
<string name="tile_4">Tile 4</string>
<string name="tile_40">Tile 40</string>
<string name="tile_5">Tile 5</string>
<string name="tile_6">Tile 6</string>
<string name="tile_7">Tile 7</string>
<string name="tile_8">Tile 8</string>
<string name="tile_9">Tile 9</string>
<string name="tile_add">Add tile</string>
<string name="tile_added">Tile added</string>
<string name="tile_data_missing">You need to set up the tile before using it</string>
<string name="tile_entity">Select an entity to toggle or call (required)</string>
<string name="tile_label">Tile label (required)</string>
<string name="tile_not_setup">Requires setup</string>
<string name="tile_save">Update tile data</string>
<string name="tile_server">Select a server (required)</string>
<string name="tile_subtitle">Tile subtitle</string>
<string name="tile_updated">Tile data updated</string>
<string name="tiles">Tiles</string>
<string name="toast_message">%1$s was selected</string>
<string name="toggle_flashlight">Toggle flashlight</string>
<string name="trust_server_title">Remotely control app & device</string>
<string name="trust_server_summary">Allow this server to enable and manage sensors and send notification commands</string>
<string name="tts_error_utterance">Unable to process notification \"%1$s\" as text to speech.</string>
<string name="tts_error_init">Failed to initialize a text to speech engine.</string>
<string name="tts_no_text">Please set the text for text to speech to process</string>
<string name="unknown_address">Unknown address</string>
<string name="update_shortcut">Update shortcut data</string>
<string name="update_widget">Update widget</string>
<string name="updating_sensors">Updating sensors</string>
<string name="url_invalid">URL invalid</string>
<string name="url_parse_error">Unable to parse your URL. It should look like this: https://example.com.</string>
<string name="username">Username</string>
<string name="view_password">View password</string>
<string name="wait">Wait</string>
<string name="wear_favorite_entities">Favorite entities</string>
<string name="wear_os_settings_summary">Manage Wear OS app</string>
<string name="wear_os_settings_title">Wear OS settings</string>
<string name="wear_set_favorites">Select your favorite entities to appear at the top of the Wear home screen. You can also drag and drop to change the order in which they appear.</string>
<string name="wear_settings">Wear device settings</string>
<string name="wear_unsupported_title">Wear OS not supported</string>
<string name="wear_unsupported_message">Wear OS onboarding requires the full version of the Home Assistant app with Google Play Services</string>
<string name="websocket_listening">Connected to Home Assistant</string>
<string name="websocket_restricted_title">Unable to open connection to Home Assistant</string>
<string name="websocket_restricted_fix">Update settings to fix or disable</string>
<string name="webview_error_AUTH_SCHEME">Unsupported authentication scheme (not basic or digest), please check network settings.</string>
<string name="webview_error_AUTHENTICATION">User authentication failed on server, please check server settings.</string>
<string name="webview_error_description">Encountered error:</string>
<string name="webview_error_FAILED_SSL_HANDSHAKE">Failed to perform SSL handshake, please ensure your certificate is valid.</string>
<string name="webview_error_HOST_LOOKUP">Server or proxy hostname lookup failed, please check that the URL is a valid Home Assistant URL.</string>
<string name="webview_error_TIMEOUT">Connection timed out, please check your network connection and server availability.</string>
<string name="webview_error_CONNECT">Failed to connect to the server, please check your network connection and server availability.</string>
<string name="webview_error_PROXY_AUTHENTICATION">User authentication failed on proxy, please check proxy settings.</string>
<string name="webview_error_SSL_DATE_INVALID">The date of the Home Assistant certificate is invalid, please review the Home Assistant certificate or the connection settings and try again.</string>
<string name="webview_error_SSL_EXPIRED">The Home Assistant certificate has expired, please review the Home Assistant certificate or the connection settings and try again.</string>
<string name="webview_error_SSL_IDMISMATCH">The Home Assistant Hostname certificate mismatch, please review the Home Assistant certificate or the connection settings and try again.</string>
<string name="webview_error_SSL_INVALID">A generic SSL error occurred when loading Home Assistant, please review the Home Assistant certificate or the connection settings and try again.</string>
<string name="webview_error_SSL_NOTYETVALID">The Home Assistant certificate is not yet valid, please review the Home Assistant certificate or the connection settings and try again.</string>
<string name="webview_error_SSL_UNTRUSTED">The Home Assistant certificate authority is not trusted, please review the Home Assistant certificate or the connection settings and try again.</string>
<string name="webview_error">There was an error loading Home Assistant, please review the connection settings and try again. We will attempt to try another provided URL when you select Refresh.</string>
<string name="webview_creation_error_title">WebView unavailable</string>
<string name="webview_creation_failed">WebView failed to initialize, please check and update your system WebView.</string>
<string name="welcome_hass">Welcome to Home Assistant Companion!</string>
<string name="widget_attribute_separator_label">Separator between attributes:</string>
<string name="widget_background_type_title">Select widget theme</string>
<string name="widget_background_type_label">Widget theme:</string>
<string name="widget_background_type_daynight">Light/dark theme</string>
<string name="widget_background_type_dynamiccolor">Dynamic color</string>
<string name="widget_background_type_transparent">Transparent</string>
<string name="widget_button_image_description">Action button</string>
<string name="widget_camera_description">Picture widget</string>
<string name="widget_camera_contentdescription">Image</string>
<string name="widget_config_action_error">A custom component is preventing action data from loading.</string>
<string name="widget_creation_error">Unable to create widget.</string>
<string name="widget_entity_fetch_error">Unable to fetch data for configured entity.</string>
<string name="widget_label_placeholder_text_button">Toggle</string>
<string name="widget_label_placeholder_text_media_player">Living room</string>
<string name="widget_label_placeholder_text_static_state">72.9 °F</string>
<string name="widget_label_placeholder_text_static_label">Office temp</string>