-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathstrings.xml
857 lines (713 loc) · 51.6 KB
/
strings.xml
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
<resources>
<string name="click_next_for_setup">Click Next button in order to start setup process</string>
<string name="try_again_text">Try Again</string>
<string name="continue_text">Continue</string>
<string name="connecting_please_wait">Connecting. Please wait…</string>
<string name="connection_server_failed">Server connection failed</string>
<string name="connection_server_failed_message">Connection to Home Assistant server failed. Please check the URL / IP provided and try again.</string>
<string name="ok_text">OK</string>
<string name="connection_success_text">Connection successful</string>
<string name="enter_assistant_password">Enter Home Assistant credentials</string>
<string name="password_text">Password</string>
<string name="incorrect_password_message_text">Failed to authenticate using the credentials provided. Please check the credentials and try again.</string>
<string name="setup_complete_text">Setup Complete</string>
<string name="setup_complete_message_text">Home Assistant setup process is successful. Now you can use this app to control Home Assistant.</string>
<string name="configure_text">Configure</string>
<string name="connection_server_failed_splash">Failed to connect to Home Assistant server. You can try again to connect or configure the server again. What would you like to do?</string>
<string name="server_not_configured_text">Server not configured</string>
<string name="server_not_configured_message_text">Home Assistant is not configured yet. Would you like to configure it?</string>
<string name="title_activity_dashboard">Dashboard</string>
<string name="navigation_drawer_open">Open navigation drawer</string>
<string name="navigation_drawer_close">Close navigation drawer</string>
<string name="action_settings">Settings</string>
<string name="location_enable_text">Enable Location</string>
<string name="wifi_enable_text">Enable Wifi</string>
<string name="wifi_state_connected">CONNECTED</string>
<string name="wifi_state_connecting">CONNECTING</string>
<string name="wifi_state_disconnected">DISCONNECTED</string>
<string name="wifi_state_disconnecting">DISCONNECTING</string>
<string name="wifi_choose_message">Choose the Wi-Fi network where Home Assistant server is running. This will be used later to determine if the currently connected network is your home network. Swipe down to refresh Wi-Fi networks list if you do not see your network.</string>
<string name="searching_wifi_networks">Searching Wi-Fi networks…</string>
<string name="home_text">HOME</string>
<string name="button_scene_activate">activate</string>
<string name="climate_current_temperature" formatted="true">Currently: %1$.1f %2$s</string>
<string name="media_player_stop_toast">Stopping playback…</string>
<string name="location_permission_required">In order to proceed further, Location permission is required. Would you like to enable it?</string>
<string name="yes_text">YES</string>
<string name="no_text">NO</string>
<string name="skip_text">Skip</string>
<string name="connect_text">Connect</string>
<string name="server_connection_lost_message">Connection to Home Assistant server has been lost. Please check your network connection and press connect button when ready.</string>
<string name="contact_text">Contact</string>
<string name="about_text">About</string>
<string name="open_web_ui_text">Open Web-UI</string>
<string name="logbook_text">Logbook</string>
<string name="rate_app_text">Rate App</string>
<string name="enter_external_ip">Enter external Home Assistant IP / URL and Port</string>
<string name="ip_url_text">IP / URL and Port</string>
<string name="external_access_text">External Access</string>
<string name="external_access_message">In order to setup Home Assistant external access please connect to a network different then your home Wi-Fi(eg: 3G / 4G / other networks). Note that in order to work, your Home Assistant server must be accessible from external so please check your router on how to do that first.</string>
<string name="cancel_text">Cancel</string>
<string name="off_text">Off</string>
<string name="idle_text">Idle</string>
<string name="media_players_text">Media Players</string>
<string name="server_not_running_text">Failed to connect to Home Assistant Server</string>
<string name="air_pressure_text">Air pressure: </string>
<string name="humidity_text">Humidity: </string>
<string name="wind_speed_text">Wind speed: </string>
<string name="choose_sensor_text">Choose item</string>
<string name="no_sensors_messages">Can\'t add the sensor widget because we couldn\'t find any configured sensors.</string>
<string name="remove_ads">Remove Ads</string>
<string name="no_zone_message">We couldn\'t find a zone entity in your Home Assistant configuration. Please check your config.</string>
<string name="ads_disabled_message">Thank you! Ads have been disabled.</string>
<string name="video_ad_failed_load">Failed to load video ads. Please try again later.</string>
<string name="remove_ads_text_info">To remove ads, watch an advertising video. Do you wish to continue?</string>
<string name="exit_text">Exit</string>
<string name="map_text">Map</string>
<string name="server_config_text">Server Configuration</string>
<string name="logout_text">Logout</string>
<string name="locked_text">Locked</string>
<string name="unlocked_text">Unlocked</string>
<string name="target_temperature">Target Temperature</string>
<string name="operation_text">Operation</string>
<string name="away_mode_string">Away Mode</string>
<string name="default_notification_channel_id">On-going notification</string>
<string name="firebase_notifications_enabled">Firebase notifications have been enabled</string>
<string name="firebase_notifications_failed">Failed to enable Firebase notifications for this device. Please check that HANotify component is installed on Home Assistant server</string>
<string name="lovelaceui_failed_to_enable">Failed to enable Lovelace UI. Please check if Lovelace component is installed on the server.</string>
<string name="firebase_notifications_disabled">Firebase notifications has been disabled</string>
<string name="firebase_notifications_disabled_failed">Failed to disable Firebase notifications for this device. Please check that HANotify component is installed on Home Assistant server</string>
<string name="show_all_text">Show All</string>
<string name="show_groups_text">Show Groups</string>
<string name="setting_firebase_summary">Allow Home Assistant server to send push notifications to your phone via Firebase. For more details please check https://github.com/MCrissDev/HANotify</string>
<string name="setting_firebase_title">HANotify Firebase Notifications</string>
<string name="setting_webui_summary">When this option is enabled, Web UI will be used instead of native Android views.</string>
<string name="setting_webui_title">Web UI</string>
<string name="setting_autoreconnect_summary">When this option is enabled, Ariela will retry the connection every 10 seconds if the connection is lost.</string>
<string name="setting_autoreconnect_title">Auto-reconnect</string>
<string name="settings_permanent_notification_title">Permanent Notification</string>
<string name="settings_permanent_notification_summary">Show a persistent notification when Ariela is connected to server</string>
<string name="settings_lovelaceui_title">Lovelace UI</string>
<string name="settings_lovelaceui_summary">Use Lovelace UI configuration instead of default one</string>
<string name="settings_debugmode_title">Debug Mode</string>
<string name="settings_debugmode_summary">Enable / Disable Debug Mode</string>
<string name="settings_device_tracker_title">Device Tracker</string>
<string name="settings_device_tracker_summary">Enable / Disable tracking for this device</string>
<string name="settings_phone_name_summary">Value used by Home Assistant server to identify this device.</string>
<string name="settings_phone_name_title">Device Name</string>
<string name="get_pro_version_text">Get PRO Version</string>
<string name="choose_text_size">Choose Text Size</string>
<string name="choose_text">Choose</string>
<string name="trigger_text">TRIGGER</string>
<string name="debug_mode_activated">Debug Mode activated</string>
<string name="debug_mode_deactivated">Debug Mode deactivated</string>
<string name="debug_mode_failed">Failed to activate Debug Mode</string>
<string name="device_tracker_failed">Failed to activate Device Tracker</string>
<string name="notifications_string">Notifications</string>
<string name="common_string">Common</string>
<string name="ui_string">UI</string>
<string name="others_string">Others</string>
<string name="away_text">Away</string>
<string name="home_status_text">Home</string>
<string-array name="array_horizontal_card_items">
<item>@string/auto_text</item>
<item>1</item>
<item>2</item>
<item>3</item>
<item>4</item>
<item>5</item>
</string-array>
<string-array name="array_horizontal_card_items_values">
<item>0</item>
<item>1</item>
<item>2</item>
<item>3</item>
<item>4</item>
<item>5</item>
</string-array>
<string-array name="array_setting_theme_values">
<item>0</item>
<item>1</item>
<item>2</item>
<item>3</item>
<item>4</item>
</string-array>
<string-array name="array_setting_theme">
<item>Default</item>
<item>Dark</item>
<item>Purple</item>
<item>Dark Green</item>
<item>Dark Gray</item>
</string-array>
<string-array name="array_setting_tracker_position">
<item>1 meter</item>
<item>10 meters</item>
<item>50 meters</item>
<item>100 meters</item>
<item>300 meters</item>
<item>500 meters</item>
</string-array>
<string-array name="array_setting_tracker_position_values">
<item>0</item>
<item>1</item>
<item>2</item>
<item>3</item>
<item>4</item>
<item>5</item>
</string-array>
<string-array name="array_setting_tracker_time">
<item>30 seconds</item>
<item>1 minute</item>
<item>5 minutes</item>
<item>15 minutes</item>
<item>30 minutes</item>
<item>1 hour</item>
</string-array>
<string-array name="array_setting_tracker_type">
<item>GPS</item>
<item>Wi-Fi</item>
</string-array>
<string-array name="array_setting_tracker_type_values">
<item>0</item>
<item>1</item>
</string-array>
<string-array name="array_setting_stream_source_values">
<item>0</item>
<item>1</item>
</string-array>
<string-array name="array_setting_stream_resolution_values">
<item>0</item>
<item>1</item>
<item>2</item>
<item>3</item>
</string-array>
<string-array name="array_setting_tracker_time_values">
<item>0</item>
<item>1</item>
<item>2</item>
<item>3</item>
<item>4</item>
<item>5</item>
</string-array>
<string-array name="array_setting_tracker_priority_values">
<item>0</item>
<item>1</item>
<item>2</item>
</string-array>
<string name="device_tracker_type_title">Tracking Mode</string>
<string name="device_tracker_type_summary">Choose the tracking mode that will be used to inform HA about this device location</string>
<string name="device_tracker_position_title">Updates Position</string>
<string name="device_tracker_position_summary">Minimum position change to trigger an update</string>
<string name="device_tracker_period_title">Updates Period</string>
<string name="device_tracker_period_summary">Choose time interval to send location updates</string>
<string name="web_login_text">Web Login</string>
<string name="please_wait_text">Please wait…</string>
<string name="title_activity_map_viewer">Map</string>
<string name="hours_ago_text">%d hours ago</string>
<string name="hour_ago_text">%d hour ago</string>
<string name="minutes_ago_text">%d minutes ago</string>
<string name="minute_ago_text">%d minute ago</string>
<string name="seconds_ago_text">%d seconds ago</string>
<string name="config_validation_text">Configuration validation</string>
<string name="config_valid_message_text">Validate your configuration if you recently made some changes to your configuration and want to make sure that it is all valid</string>
<string name="check_config_text">Check config</string>
<string name="config_valid_text">Configuration valid</string>
<string name="config_invalid_text">Configuration invalid</string>
<string name="failed_to_check_config">Failed to check configuration. Please try again later</string>
<string name="config_reload_text">Configuration reloading</string>
<string name="config_reload_msg_text">Some parts of Home Assistant can reload without requiring a restart. Hitting reload will unload their current configuration and load the new one. </string>
<string name="reload_core_text">Reload core</string>
<string name="reload_groups_text">Reload groups</string>
<string name="reload_automations_text">Reload automations</string>
<string name="reload_scripts_text">Reload scripts</string>
<string name="service_has_been_called">Service has been called</string>
<string name="server_management_text">Server Management</string>
<string name="server_management_message_text">Control your Home Assistant server… from Ariela.</string>
<string name="restart_text">Restart</string>
<string name="stop_text">Stop</string>
<string name="brightness_text">Brightness</string>
<string name="rgb_color_text">RGB Color</string>
<string name="unknown_text">Unknown</string>
<string name="users_text">Users</string>
<string name="users_config_summary">Manage users</string>
<string name="general_text">General</string>
<string name="general_config_summary">Validate your configuration file and control the server</string>
<string name="delete_text">Delete</string>
<string name="failed_to_retrieve_users">Failed to retrieve users. Please try again later.</string>
<string name="something_went_wrong">Something went wrong</string>
<string name="unable_to_delete_own_account">Unable to delete your own account</string>
<string name="alarm_code_text">Alarm Code</string>
<string name="arm_home_text">ARM HOME</string>
<string name="arm_away_text">ARM AWAY</string>
<string name="disarm_text">DISARM</string>
<string name="theme_text">Theme</string>
<string name="theme_summary">Choose Ariela look and feel</string>
<string name="low_text">Low</string>
<string name="normal_text">Normal</string>
<string name="cold_text">Cold</string>
<string name="connected_text">Connected</string>
<string name="disconnected_text">Disconnected</string>
<string name="open_text">Open</string>
<string name="closed_text">Closed</string>
<string name="gas_detected_text">Gas detected</string>
<string name="clear_text">Clear</string>
<string name="hot_text">Hot</string>
<string name="light_detected_text">Light detected</string>
<string name="no_light_text">No light</string>
<string name="wet_text">Wet</string>
<string name="dry_text">Dry</string>
<string name="motion_detected_text">Motion detected</string>
<string name="no_motion_text">No motion</string>
<string name="moving_text">Moving</string>
<string name="stopped_text">Stopped</string>
<string name="occupied_text">Occupied</string>
<string name="plugged_in_text">Plugged in</string>
<string name="unplugged_text">Unplugged</string>
<string name="power_text">Power</string>
<string name="no_power_text">No power</string>
<string name="problem_detected_text">Problem detected</string>
<string name="no_problem_detected_text">No Problem</string>
<string name="unsafe_text">Unsafe</string>
<string name="safe_text">Safe</string>
<string name="smoke_detected_text">Smoke detected</string>
<string name="sound_detected_text">Sound detected</string>
<string name="vibration_detected_text">Vibration detected</string>
<string name="mqtt_string">MQTT</string>
<string name="enable_mqtt_text">Enable MQTT</string>
<string name="enable_mqtt_summary">Send your device sensors information to Home Assistant</string>
<string name="mqtt_sensors_text">Sensors</string>
<string name="mqtt_sensors_summary">Choose the sensors you want to have their info send to Home Assistant</string>
<string name="battery">Battery</string>
<string name="battery_message">Send battery status from this device</string>
<string name="light">Light</string>
<string name="light_message">Send light sensor information from this device</string>
<string name="step_counter">Step Counter</string>
<string name="step_counter_message">Send step counter information from this device</string>
<string name="instructions_text">Instructions</string>
<string name="wi_fi_message">Send wi-fi connection informaion from this device</string>
<string name="clear_current_config">Clear current config</string>
<string name="current_external_config_cleared">Current external access configuration has been cleared</string>
<string name="call_state">Call State</string>
<string name="call_state_message">Send call state information from this device</string>
<string name="copy_to_clipboard">Copy to clipboard</string>
<string name="instructions_copied_to_memory">Instructions copied to clipboard</string>
<string name="setup_mqtt_first">Setup MQTT first to use this option</string>
<string name="discovery_topic">Discovery topic</string>
<string name="discovery_topic_message">Value used for automatic MQTT discovery</string>
<string name="mqtt_topic">Topic</string>
<string name="mqtt_payload">Payload (template allowed)</string>
<string name="publish_text">Publish</string>
<string name="publish_a_packet_text">MQTT: Publish a packet</string>
<string name="time_text">Change Time</string>
<string name="date_text">Change Date</string>
<string name="add_item_text">Add Item</string>
<string name="checked_items">Checked items</string>
<string name="ambient_temperature">Ambient Temperature</string>
<string name="ambient_temperature_message">Send ambient temperature sensor information from this device</string>
<string name="pressure_text">Pressure</string>
<string name="pressure_message">Send pressure sensor information from this device</string>
<string name="user_text">User</string>
<string name="setting_keepscreenon_summary">If this option is enabled, Ariela will keep the screen on if it is in the foreground</string>
<string name="setting_keepscreenon_title">Keep screen ON</string>
<string name="shopping_list_text">Shopping List</string>
<string name="text_to_speek">Text to speech</string>
<string name="send_text">Send</string>
<string name="input_source">Input Source</string>
<string name="sound_mode">Sound Mode</string>
<string name="bluetooth_text">Bluetooth</string>
<string name="bluetooth_mqtt_text">Send Bluetooth information from this device</string>
<string name="relative_humidity">Relative Humidity</string>
<string name="relative_humidity_message">Send Relative Humidity sensor information from this device</string>
<string name="apps_mqtt_text">Send installed apps data from this device</string>
<string name="apps_text">Applications</string>
<string name="setting_fullscreen_summary">If this option is enabled, Ariela will be shown in fullscreen mode</string>
<string name="setting_fullscreen_title">Full Screen Mode</string>
<string name="no_voice_recognition">No voice recognition installed</string>
<string name="states_text">States</string>
<string name="effects_text">Effects</string>
<string name="color_temp_text">Color Temperature</string>
<string name="title_text">Title</string>
<string name="icon_text">Icon</string>
<string name="url_path_text">URL Path</string>
<string name="view_configuration">View Configuration</string>
<string name="save_text">Save</string>
<string name="settings_text">Settings</string>
<string name="badges_text">Badges</string>
<string name="activate_text">Activate</string>
<string name="execute_text">Execute</string>
<string name="setting_scrolllongtext_title">Scroll Long Text</string>
<string name="setting_scrolllongtext_summary">If this option is enabled, text that is too long to fit will be animated (scrolled), else truncated</string>
<string name="vacuum_cleaner_commands">Vacuum cleaner commands:</string>
<string name="notifications_empty">No notifications</string>
<string name="dismiss_text">Dismiss</string>
<string name="failed_to_retrieve_shopping_list">Failed to retrieve shopping list. Please check if the component is enabled on the server.</string>
<string name="entity_editor_text">Entity Editor</string>
<string name="message_toast_failed_to_save_entity_info">Failed to save entity info</string>
<string-array name="array_setting_cards_column">
<item>Auto</item>
<item>1 column</item>
<item>2 columns</item>
<item>3 columns</item>
<item>4 columns</item>
</string-array>
<string-array name="array_setting_cards_column_values">
<item>0</item>
<item>1</item>
<item>2</item>
<item>3</item>
<item>4</item>
</string-array>
<string-array name="array_setting_languages_values">
<item>en</item>
<item>de</item>
<item>es</item>
<item>it</item>
<item>nb</item>
<item>nl</item>
<item>pl-rPL</item>
<item>pt</item>
<item>ro</item>
<item>ru</item>
<item>sv</item>
<item>fr</item>
<item>zh</item>
</string-array>
<string name="number_of_columns_cards">Cards Columns</string>
<string name="number_of_columns_cards_info">Choose how many columns will be used for the card list.</string>
<string name="debug_enabled_message">The debug mode has been enabled. Please restart the application and reproduce the issue you found. After that, in order to send logs, use the contact function from Ariela and choose your email app. The logs should be added automatically. If this do not happen, on your phone you will find a file called \'ariela_logfile.log\'. Please send me that file to the email address: \'[email protected]\'.</string>
<string name="picture_text">Picture</string>
<string name="create_notification">Create Notification</string>
<string name="message_text">Message</string>
<string name="create_text">Create</string>
<string name="service_text">Service</string>
<string name="services_text">Services</string>
<string name="services_summary_text">The service dev tool allows you to call any available service in Home Assistant.</string>
<string name="service_data_text">Service Data (JSON, optional)</string>
<string name="call_service_text">Call Service</string>
<string name="intro_text">Intro</string>
<string name="previous_text">Previous</string>
<string name="next_text">Next</string>
<string name="enter_local_network_info_message">Please enter your home WiFi information</string>
<string name="enter_wifi_home_name">Please enter your home WiFi name. When Ariela is connected to this network, it will use the local IP address of Home Assistant. Also, this network name can be used later to inform Home Assistant that you are home when Ariela is connected to this network.</string>
<string name="wifi_name_hint">WiFi name</string>
<string name="please_enter_wifi_name">Please enter a valid WiFi name.</string>
<string name="local_ip_address">Home Assistant IP address</string>
<string name="local_ip_address_msg">Please enter Home Assistant IP address. If that is currently not available and you can access your server outside your network, you can put that address instead.</string>
<string name="check_connection_text">Check connection</string>
<string name="external_ip_address_msg">Please enter Home Assistant IP external address. If you are not exposing your server over the internet, use \"Skip\" button to proceed further</string>
<string name="credentials_message">Please enter your user name and password. If you are using Home Assistant 0.78 or older, you can leave username empty in order to login via API_PASSWORD. If you have any issues logging in or you use 2FA please use the web login instead.</string>
<string name="home_wifi_network_choose">WiFi network chooser</string>
<string name="nfc_text">NFC</string>
<string name="nfc_summary_text">Read NFC and send the tags read to Home Assistant</string>
<string name="mqtt_client">MQTT Client</string>
<string name="mqtt_client_summary">Choose the default MQTT client to be used</string>
<string-array name="array_setting_mqtt_client">
<item>HomeAssistant</item>
<item>Built-In</item>
</string-array>
<string-array name="array_setting_mqtt_client_values">
<item>0</item>
<item>1</item>
</string-array>
<string name="configure_build_in_mqtt_title">Configure built-in MQTT client</string>
<string name="configure_build_in_mqtt_title_summary">Use this option to configure the connection of the built-in MQTT client to your broker</string>
<string name="mqtt_setup_title">MQTT Setup</string>
<string name="local_mqtt_address">Local MQTT Address and Port</string>
<string name="external_mqtt_address">External MQTT Address and Port</string>
<string name="mqtt_connection_succeeded">MQTT connection succeeded</string>
<string name="mqtt_connection_failed">MQTT connection failed. Please check your settings and try again.</string>
<string name="mqtt_connection_external_failed">MQTT connection to external IP failed. Please check your settings_debugmode_summary and try again.</string>
<string name="mqtt_setup_address_message"> Please enter the IP address and port that will be used to connect to the MQTT broker.\n If you do not have access to your local network instance you can also put the external IP to the local one.\n If you do not want to connect to MQTT when you are not home, leave the external IP entry blank.\n If you are using SSL connection, the IP address should start with \"ssl://\" instead of \"tcp://\".</string>
<string name="back_camera">Back Camera</string>
<string name="back_camera_summary">Send pictures from back camera</string>
<string name="front_camera">Front Camera</string>
<string name="front_camera_summary">Send pictures from front camera</string>
<string name="enable_camera_permission">Please enable camera permission to use this feature.</string>
<string name="common_text">Common</string>
<string name="wear_successfully_sync">Credentials had been synced.</string>
<string name="wear_failed_sync">Failed to sync wear credentials.</string>
<string name="tts_text">Text to Speech</string>
<string name="tts_mqtt_summary">Enable this to have your phone convert text to speech</string>
<string name="server_connection_text">Server connection</string>
<string name="server_setting_read_timeout_title">Read timeout</string>
<string name="server_setting_read_timeout_summary">Choose timeout value when reading data from the socket.</string>
<string name="server_setting_connect_timeout_title">Connect timeout</string>
<string name="server_setting_connect_timeout_summary">Choose timeout value when trying to connect to the socket.</string>
<string name="alarm_text">Alarm</string>
<string name="alarm_summary">Send this device time when the next alarm will be triggered</string>
<string name="start_app_boot">Start at boot</string>
<string name="start_app_boot_summary">Automatically start Ariela when the device starts.</string>
<string name="ariela_available_mqtt_sensor">Ariela Availability</string>
<string name="ariela_available_mqtt_sensor_summary">Enable this to report time when Ariela last communicated with Home Assistant</string>
<string name="notification_entities_empty">Go to Settings -> Notifications in order to add some entities here.</string>
<string name="notification_entities_title">Notification Entities</string>
<string name="notification_entities_summary">Choose entities that should appear in the persistent notification</string>
<string name="notification_entities_max_reached">Maximum entities to display reached. Delete an existing entity and try again.</string>
<string name="choose_entity_text">Choose Entity</string>
<string name="internal_ip">Internal IP</string>
<string name="internal_ip_summary">Use this option to modify the local IP where the HA instance can be found</string>
<string name="external_ip">External IP</string>
<string name="external_ip_summary">Use this option to modify the external IP where the HA instance can be found</string>
<string name="force_vertical_stack">Force vertical behaviour</string>
<string name="force_vertical_summary">When this option is enabled, Horizontal Stack cards will behave like vertical ones</string>
<string name="bluetooth_headphone">Bluetooth Headphone</string>
<string name="bluetooth_headphone_summary">Send Bluetooth Headphone connected device information</string>
<string name="bluetooth_a2dp">Bluetooth Media</string>
<string name="bluetooth_a2dp_summary">Send Bluetooth Media (A2DP) connected device information</string>
<string name="paused_text">paused</string>
<string name="start_app_update">Start after update</string>
<string name="start_app_update_summary">Automatically start Ariela when application gets updated.</string>
<string name="logout_text_info">Are you sure you to logout? Current connection info will be cleared.</string>
<string name="home_assistant_servers">Home Assistant servers</string>
<string name="home_assistant_servers_summary">Manage Home Assistant servers </string>
<string name="create_server_text">Create Server</string>
<string name="default_text">Default</string>
<string name="error_create_server_text">Please enter a valid server name in order to continue.</string>
<string name="active_server_cannot_delete">The active server cannot be deleted.</string>
<string name="certificate_message_info">Optionally, if you server connection requires custom certificates like PCKS12 you may enter the path of the certificate to be used. This is useful when having your Home Assistant server running over NGINX for example. Otherwise, skip this option.</string>
<string name="please_enter_certificate_path">Use search button to enter the certificate path:</string>
<string name="search_text">Search</string>
<string name="choose_certificate">Choose Certificate</string>
<string name="enter_certificate_password">If required, enter the certificate password:</string>
<string name="use_internal_ip_home_ap">Use internal IP when connected to a Home AP</string>
<string name="use_internal_ip_home_ap_summary">If this option is enabled, your internal IP will be used for connection when Ariela detects you are connected to a home AP.</string>
<string name="sending_nfc_tag">Sending NFC TAG: %s</string>
<string-array name="array_setting_mqtt_camera_resolution">
<item>Low</item>
<item>Medium</item>
<item>High</item>
</string-array>
<string-array name="array_setting_mqtt_camera_resolution_values">
<item>0</item>
<item>1</item>
<item>2</item>
</string-array>
<string name="mqtt_camera_resolution">MQTT Camera Resolution</string>
<string name="mqtt_camera_resolution_summary">Choose the MQTT Camera Resolution</string>
<string name="states_dev_summary">Set the representation of a device within Home Assistant. This will not communicate with the actual device. </string>
<string name="set_state_text">Set State</string>
<string name="entity_text">Entity</string>
<string name="state_text">State</string>
<string name="state_attributes">State Attributes (JSON, optional)</string>
<string name="notification_entity_show_value_text">Notification entity state</string>
<string name="notification_entity_show_value_summary">If this option is enabled, entities that are shown in notification will display its current value instead of its name</string>
<string name="active_server_cannot_be_deleted">The active server can\'t be deleted. Switch to another server in order to do this action.</string>
<string name="web_ui_swipe_tabs">WebUI tabs swipe</string>
<string name="web_ui_swipe_tabs_summary">Enable this option to change tabs in Web UI mode by swipe left / right</string>
<string name="delete_server_title">Delete Server</string>
<string name="delete_server_confirmation">Are you sure you want to delete \"%s\"?</string>
<string name="switch_server_title">Switch Server</string>
<string name="switch_server_confirmation">Are you sure you want to switch HA connection to \"%s\"?</string>
<string name="switch_server_already_active">This server is already active</string>
<string name="mobile_app_notification">Mobile APP Notification</string>
<string name="mobile_app_notification_summary">Click here to see notification example</string>
<string name="web_ui_scroll_refresh_title">WebUI Scroll Down Refresh</string>
<string name="web_ui_scroll_refresh_summary">Enable this option to allow pull down to refresh</string>
<string name="horizontal_card_items">Horizontal-Stack items count</string>
<string name="horizontal_card_items_summary">Select the number of items horizontal-stack card should show.</string>
<string name="auto_text">Auto</string>
<string name="mqtt_sensor_notification_grabber">Notifications Grabber</string>
<string name="mqtt_sensor_notification_grabber_message">Send notifications content from other applications to Home Assistant.</string>
<string name="permission_text">Permission Required</string>
<string name="notification_grabber_permission_required">In order this function to work you need to give Ariela permission to access other applications notification. Do you wish to continue?</string>
<string name="info_text">Info</string>
<string name="wifi_network">WiFi Network</string>
<string name="certificate_text">Certificate</string>
<string name="credentials_text">Credentials</string>
<string name="add_user">Add User</string>
<string name="name_text">Name</string>
<string name="no_home_wifi_text">No Home Wi-Fi networks</string>
<string name="failed_to_load_ads_message">Failed to load advertisement. If you like this app consider purchasing PRO version in order to help further development of the app. Thank you!</string>
<string name="mqtt_retain_message">MQTT Retain</string>
<string name="mqtt_retain_summary">Inform MQTT broker to keep last messages</string>
<string name="mobile_app_credentials_force">Force Mobile App credentials</string>
<string name="mobile_app_credentials_force_summary">Force Ariela to redo Mobile App connection.</string>
<string name="disable_notification_message">Please go to Settings -> Apps -> Ariela in order to disable notifications.</string>
<string name="mobile_app_force_failed">Failed to force Mobile App integration</string>
<string name="mobile_app_force_succeeded">Mobile App force integration is successful</string>
<string name="mobile_app_text">Mobile APP</string>
<string name="sensors_disabled_text">All sensors had been disabled. Please re-enable the sensors in order to have Ariela sensors updated.</string>
<string name="mobile_app_credential_force_warning">In order to not have duplicates, you should go to Home Assistant -> Integrations and delete this device. Do you wish to continue deleting this device?</string>
<string name="vibrate_ui_controls_title">Vibrate UI controls</string>
<string name="vibrate_ui_controls_summary">Trigger vibration feedback whenever you toggle a switch, button etc</string>
<string name="setting_device_tracker_mobile_app">Device Tracker - Mobile App</string>
<string name="setting_device_tracker_mobile_app_summary">Enable updating device tracker created by Mobile APP</string>
<string name="setting_device_tracker_see">Device Tracker - See</string>
<string name="setting_device_tracker_see_summary">Enable updating device tracker using See service</string>
<string name="wear_battery_sensor">Wear Battery</string>
<string name="wear_battery_sensor_message">Send Android Wear battery level</string>
<string name="device_tracker_accuracy_title">Accuracy</string>
<string name="device_tracker_accuracy_message">Do not send GPS location if accuracy (in meters) is higher then this value. Put 0 (zero) to send GPS location for any accuracy.</string>
<string name="allow_background_running">Allow background running</string>
<string name="allow_background_running_summary">If this option is enabled, Ariela will be allowed to run in background. This is useful if you want to receive updates in realtime but it may consume more battery.</string>
<string name="entity_registry_text">Entity Registry</string>
<string name="entity_registry_summary">Overview of all known entities.</string>
<string name="failed_to_retrieve_entities_message">Failed to retrieve entities list. Please try again later.</string>
<string name="heart_rate_text">Heart Rate</string>
<string name="heart_rate_summary">Send Heart Rate information sensor to Home Assistant</string>
<string name="enable_body_sensors_permission">Please enable Body Sensors permission in order to use this function.</string>
<string name="wear_heart_rate_sensor">Wear Heart Rate</string>
<string name="wear_heart_rate_message">Send Android Wear heart rate sensor info.</string>
<string name="vpn_connection_text">VPN Connection</string>
<string name="vpn_connection_summary">If this option is enabled, the internal IP address will be used for communicating with Home Assistant.</string>
<string name="device_tracker_update_mode">Update Mode</string>
<string name="notification_vibrate_title">Vibrate</string>
<string name="notification_vibrate_summary">Vibrate whenever a push notification is shown.</string>
<string name="notification_notification_lights">Lights</string>
<string name="notification_notification_summary">Enable light whenever a push notification is shown.</string>
<string name="push_notifications_text">Push Notifications</string>
<string name="language_text">Language</string>
<string name="language_setting_summary">Choose application language.</string>
<string-array name="array_setting_language_column">
<item>English</item>
<item>German</item>
<item>Spanish</item>
<item>Italian</item>
<item>Norwegian</item>
<item>Dutch</item>
<item>Polish</item>
<item>Portuguese</item>
<item>Romanian</item>
<item>Russian</item>
<item>Swedish</item>
<item>French</item>
<item>Chinese</item>
</string-array>
<string-array name="array_setting_rtsp_stream_resolution">
<item>320 x 240</item>
<item>480 x 320</item>
<item>640 x 480</item>
<item>1280 x 720</item>
</string-array>
<string name="language_changed_dialog_message">Please restart the application in order to have the changes applied.</string>
<string name="attention_text">Attention</string>
<string name="web_ui_enable_mode_message">In order to return to native Ariela or access the Ariela settings, please swipe right from the left display margin.</string>
<string name="push_notifications_text_aa">Android Auto Push Notifications</string>
<string name="add_wifi_text">Add WiFi</string>
<string name="zone_text">Zone</string>
<string name="wifi_name_cannot_be_empty">WiFi name cannot be empty</string>
<string name="settings_wifi_home_title">WiFi & Zones</string>
<string name="settings_wifi_home_summary">When you are connected to one of the listed networks, Ariela will inform Home Assistant that your device is at the assigned zone location.</string>
<string name="screen_state_summary">Send information if screen is off or on</string>
<string name="screen_state_text">Screen State</string>
<string name="preset_text">Preset</string>
<string name="notification_settings_text">Push Notification Settings</string>
<string name="notification_settings_summary">Change notification sound, vibration mode etc.</string>
<string name="fan_mode">Fan Mode</string>
<string name="swing_mode">Swing Mode</string>
<string name="accelerometer_text">Accelerometer</string>
<string name="accelerometer_sensor_summary">Send accelerometer sensor informations to Home Assistant</string>
<string name="device_tracker_distance_title">Distance between locations</string>
<string name="device_tracker_distance_message">Do not send GPS location if the distance (in meters) between previous location sent to Home Assistant and the new location is less than this value. Put 0 (zero) to send GPS location for any distance.</string>
<string name="proximity_sensor">Proximity Sensor</string>
<string name="proximity_sensor_summary">Send proximity sensor information to Home Assistant</string>
<string name="rtsp_camera_text">MJPEG Camera Streaming</string>
<string name="rtsp_camera_enable_text">Enable MJPEG Camera streaming</string>
<string name="rtsp_camera_enable_summary">Enable MJPEG Camera streaming. Note that having this function enabled will make MQTT camera not to work.</string>
<string name="configuration_text">Configuration</string>
<string name="streaming_source_text">Stream Source</string>
<string name="streaming_source_summary">Choose camera streaming source</string>
<string-array name="array_setting_rtsp_stream_source">
<item>Back Camera</item>
<item>Front Camera</item>
</string-array>
<string name="streaming_setup_instructions_title">Setup Instructions</string>
<string name="streaming_setup_instructions_summary">Click here to view how to integrate streaming with Home Assistant</string>
<string name="stream_port_text">Stream Port</string>
<string name="stream_port_summary">Choose a unique port where the Ariela will create and stream the mjpeg data</string>
<string name="jpeg_compression_quality">Compression Quality</string>
<string name="jpeg_compression_quality_summary">Choose a value from 10 – 100 that will represent the JPEG compression quality.</string>
<string name="mjpeg_stream_resolution">Stream Resolution</string>
<string name="mjpeg_stream_resolution_summary">Choose the video resolution of the stream.</string>
<string name="webui_startup_page">WebUI Startup Page</string>
<string name="webui_startup__page_summary">Put the page number (or name) on which Web UI mode will start. Default is 0 (zero) which represent home or first tab.</string>
<string name="error_log">Error Log</string>
<string name="error_log_summary">Check Home Assistant errors log.</string>
<string name="error_log_retrieve_toast">Failed to retrieve error history. Please try again later.</string>
<string name="error_log_no_issues">There are no new issues!</string>
<string name="speech_recognizer">Speech Recognizer</string>
<string name="speech_recognizer_summary">Use your phone to send voice control instructions to Home Assistant</string>
<string name="quick_settings_web_ui">Quick Settings</string>
<string name="quick_settings_web_ui_summary">Enable Quick Settings button when using Web UI.</string>
<string-array name="array_setting_tracker_priority">
<item>GPS</item>
<item>Wifi & Cell</item>
<item>No Power</item>
</string-array>
<string name="device_tracker_priority_title">Priority</string>
<string name="device_tracker_priority_summary">Choose the method that Ariela will use to retrieve the location.</string>
<string name="flash_text">Flash</string>
<string name="flash_summary">Enable Flash when streaming back camera.</string>
<string name="sensor_motion_detector">Motion Detection</string>
<string name="sensor_motion_detector_summary">Enable Motion Detection when streaming MJPEG camera</string>
<string name="mobile_app_notification_setting_title">Push Notifications - Mobile App</string>
<string name="mobile_app_notification_setting_summary">Enable / disable push notifications of mobile_app component</string>
<string name="device_tracker_ignore_wifi_setting">Ignore WiFi & Zones</string>
<string name="device_tracker_ignore_wifi_setting_summary">When using GPS tracking, ignore WiFi & Zones detection. Use this function to rely only on GPS data.</string>
<string name="unsupported_lovelace_card">Unsupported Card</string>
<string name="unsupported_lovelace_card_message">\"%s\" lovelace card is not supported yet. Please request adding it via email. Thank you!</string>
<string name="disable_unsupported_cards">Render Unsupported Card</string>
<string name="disable_unsupported_cards_summary">If this option is enabled, a card will appear when a Lovelace card is not supported.</string>
<string name="enable_microphone_permission">Please enable Record permission in order to use this function.</string>
<string name="sensor_microphone">Microphone Sensor</string>
<string name="ssensor_microphone_summary">Enable Microphone Sensor for silence detection and more.</string>
<string name="app_support_development">Support App Development</string>
<string name="error_products_none">There are no products found! Error code is %s</string>
<string name="subscriber_text">Subscribe \n %s / month</string>
<string name="subscribing_success_text">Thank you very much for the subscription. As a gift the ads will be disabled for each month subscription is running.</string>
<string name="useful_resources">Useful Resources</string>
<string name="changelog_text">Changelog</string>
<string name="documentation_text">Online Documentation</string>
<string name="settings_password">Settings Password</string>
<string name="settings_password_summary">Enter a settings password to prevent unauthorized access.</string>
<string name="password_required">Password Required</string>
<string name="enter_password_text">Please enter password to access settings</string>
<string name="invalid_password_text">Invalid password! Please try again later.</string>
<string name="arm_night_text">ARM NIGHT</string>
<string name="arm_custom_bypass_text">CUSTOM BYPASS</string>
<string name="unnamed_view_text">unnamed view</string>
<string name="social_text">Social Links</string>
<string name="facebook_text">Facebook</string>
<string name="twitter_text">Twitter</string>
<string name="patreon_text">Patreon</string>
<string name="help_translate_app">Help App Translation</string>
<string name="show_tabs_bottom_setting">Show Tabs on Bottom</string>
<string name="show_tabs_bottom_setting_summary">Enable this option if you want tabs to be shown on bottom of the screen instead of top (useful for big screens)</string>
<string name="background_image_text">Background Image</string>
<string name="copy_certificate_text">Please copy your certificate to \"%s\". Due to Android 10 security policies, this cannot be automated unfortunately.</string>
<string name="view_visible_in_ariela">Disable this view in Ariela</string>
<string name="clear_hidden_lovelace_views">Clear Hidden Lovelace views</string>
<string name="clear_hidden_lovelace_views_summary">Use this option in order to un-hide any hidden views in Ariela when using Lovelace mode.</string>
<string name="independent_mqtt_session">Independent MQTT Session</string>
<string name="independent_mqtt_session_summary">When this option is enabled and built-in MQTT client its used, the MQTT session will remain active even if connection to the HA server is broken.</string>
<string name="ip_name_hint">IP</string>
<string name="settings_wifi_ip_home_title">WiFi IP\'s & Zones</string>
<string name="settings_wifi_ip_home_summary">When you are connected to one of the listed IP\'s, Ariela will inform Home Assistant that your device is at the assigned zone location.</string>
<string name="invalid_date_text">Invalid Date</string>
<string name="help_text">Help</string>
<string name="certificate_choose_text">Does your server connection requires custom certificates like PCKS12? If yes, press \"Continue\" else please press the \"Skip\" button. </string>
<string name="location_permission_text">This function requires location access permission in order to continue. Please allow that permission to Ariela in order to retrieve device location in the background and send regular updates to Home Assistant server. Do you wish to continue?</string>
<string name="connection_local_ip_success_text_message">Connection to Home Assistant server is successful. Do you want to setup external IP also? Note that you can do setup the external IP at a later point from the app settings. What would you like to do?.</string>
<string name="setup_external_ip_text">Setup External IP</string>
<string name="use_web_login_option_text">or use WEB login</string>
<string name="setup_location_text_2">In order to use location tracking features or different connection urls based on WiFi SSID, we need access to your location. If you want consistent background updates your will also need to allow background processing.</string>
<string name="setup_location_text">This app collects location data in order to enable "Device Tracker" feature even when the app is closed or not in use. Please note that the location information is only sent to your hosted Home Assistant server and its not stored, logged or shared with another 3rd party. This data is also used to provide ads. Would you like to grant the Location permission to the app?</string>
<string name="grant_permission_text">Grant Permission</string>
<string name="background_location_not_active_text">Background location access was not granted. You can enable later this permission by going to phone settings. The application will be able to send location updates only while the app is in use.</string>
<string name="permission_location_not_active_text">Location permission is not granted and device tracker capabilities were disabled. You can enable device tracker later using the app settings.</string>
<string name="add_widget_text">Add Widget</string>
<string name="powered_by_text">Powered by: </string>
<string name="app_quick_launch">Ariela: Quick Launch</string>
<string name="dashboards_text">Dashboards</string>
<string name="device_name_text">Device Name</string>
<string name="device_name_info">Please enter device name:</string>
<string name="build_in_mqtt_options_text">Build-in MQTT Client options</string>
<string name="overview_text">Overview</string>
<string name="switch_dashboard_text">Switch Dashboard</string>
<string name="switch_dashboard_info_text">Choose to switch dashboard only in this current app session or the dashboard should be also set as default.</string>
<string name="switch_only_text">Switch Only</string>
<string name="switch_setdefault_text">Switch & set default</string>
<string name="forecast_text">Forecast</string>
<string name="edit_current_view_text">Edit Current View</string>
<string name="native_rendering_text">Native Rendering UI</string>
</resources>