-
Notifications
You must be signed in to change notification settings - Fork 436
Expand file tree
/
Copy pathLocalizable.strings
More file actions
1265 lines (1265 loc) · 99.2 KB
/
Localizable.strings
File metadata and controls
1265 lines (1265 loc) · 99.2 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
"about.acknowledgements.title" = "Acknowledgements";
"about.beta.title" = "Join Beta";
"about.chat.title" = "Chat";
"about.documentation.title" = "Documentation";
"about.easter_egg.message" = "i love you";
"about.easter_egg.title" = "You found me!";
"about.forums.title" = "Forums";
"about.github.title" = "GitHub";
"about.github_issue_tracker.title" = "GitHub Issue Tracker";
"about.help_localize.title" = "Help localize the app!";
"about.home_assistant_on_facebook.title" = "Home Assistant on Facebook";
"about.home_assistant_on_twitter.title" = "Home Assistant on Twitter";
"about.logo.app_title" = "Home Assistant Companion";
"about.logo.tagline" = "Awaken Your Home";
"about.logo.title" = "Home Assistant";
"about.review.title" = "Leave a review";
"about.title" = "About";
"about.website.title" = "Website";
"actions_configurator.action.create_automation" = "Create automation";
"actions_configurator.action.footer" = "Define what will be executed when Action is performed, alternatively you can use the example trigger below manually.";
"actions_configurator.action.title" = "Execute";
"actions_configurator.rows.background_color.title" = "Background Color";
"actions_configurator.rows.icon.title" = "Icon";
"actions_configurator.rows.icon_color.title" = "Icon Color";
"actions_configurator.rows.name.title" = "Name";
"actions_configurator.rows.text.title" = "Text";
"actions_configurator.rows.text_color.title" = "Text Color";
"actions_configurator.title" = "New Action";
"actions_configurator.trigger_example.share" = "Share Contents";
"actions_configurator.trigger_example.title" = "Example Trigger";
"actions_configurator.visual_section.scene_defined" = "The appearance of this action is controlled by the scene configuration.";
"actions_configurator.visual_section.scene_hint_footer" = "You can also change these by customizing the Scene attributes: %@";
"actions_configurator.visual_section.server_defined" = "The appearance of this action is controlled by the server configuration.";
"addButtonLabel" = "Add";
"alert.confirmation.delete_entities.message" = "This will clean your entities from database and it will only reload the next time you open the app from zero.";
"alert.confirmation.generic.title" = "Are you sure?";
"alerts.action_automation_editor.unavailable.body" = "To automatically create an automation for an Action please update your Home Assistant to at least version 2024.2";
"alerts.action_automation_editor.unavailable.title" = "Please update Home Assistant";
"alerts.alert.ok" = "OK";
"alerts.auth_required.message" = "The server has rejected your credentials, and you must sign in again to continue.";
"alerts.auth_required.title" = "You must sign in to continue";
"alerts.confirm.cancel" = "Cancel";
"alerts.confirm.confirm" = "Confirm";
"alerts.confirm.ok" = "OK";
"alerts.deprecations.notification_category.message" = "You must migrate to actions defined in the notification itself before %1$@.";
"alerts.deprecations.notification_category.title" = "Notification Categories are deprecated";
"alerts.open_url_from_deep_link.message" = "Open URL (%@) from deep link?";
"alerts.open_url_from_notification.message" = "Open URL (%@) found in notification?";
"alerts.open_url_from_notification.title" = "Open URL?";
"alerts.prompt.cancel" = "Cancel";
"alerts.prompt.ok" = "OK";
"always_open_label" = "Always Open";
"announcement.drop_support.button" = "Continue";
"announcement.drop_support.button_read_more" = "Read more";
"announcement.drop_support.subtitle" = "After careful consideration, we will be discontinuing support for iOS 12, 13 and 14 in our upcoming updates.";
"announcement.drop_support.title" = "Important update";
"app_intents.assist.pipeline.default.title" = "Default";
"app_intents.assist.pipeline.title" = "Pipeline";
"app_intents.assist.preferred_pipeline.title" = "Preferred";
"app_intents.assist.refresh_warning.title" = "Can't find your Assist pipeline? Open Assist in the app to refresh pipelines list.";
"app_intents.closed_state_icon.title" = "Icon for closed state";
"app_intents.controls.assist.parameter.with_voice" = "With voice";
"app_intents.controls.assist.title" = "Assist in app";
"app_intents.cover.title" = "Cover";
"app_intents.haptic_confirmation.title" = "Haptic confirmation";
"app_intents.icon.title" = "Icon";
"app_intents.intent.cover.title" = "Control cover";
"app_intents.intent.light.title" = "Control light";
"app_intents.intent.switch.title" = "Control switch";
"app_intents.lights.light.target" = "Target state";
"app_intents.lights.light.title" = "Light";
"app_intents.lights.off_state_icon.title" = "Icon for off state";
"app_intents.lights.on_state_icon.title" = "Icon for on state";
"app_intents.notify_when_run.description" = "Shows notification after executed";
"app_intents.notify_when_run.title" = "Notify when run";
"app_intents.open_state_icon.title" = "Icon for open state";
"app_intents.perform_action.action_parameter_configuration" = "Which action?";
"app_intents.perform_action.action_parameter_confirmation" = "Just to confirm, you wanted ‘%@’?";
"app_intents.perform_action.action_parameter_disambiguation_intro" = "There are %@ options matching ‘%@’.";
"app_intents.perform_action.response_failure" = "Failed: %@";
"app_intents.perform_action.response_success" = "Done";
"app_intents.scenes.failure_message.content" = "Scene \"%@\" failed to execute, please check your logs.";
"app_intents.scenes.icon.title" = "Icon";
"app_intents.scenes.parameter.scene.title" = "Scene";
"app_intents.scenes.requires_confirmation_before_run.description" = "Requires manual confirmation before running the scene.";
"app_intents.scenes.requires_confirmation_before_run.title" = "Confirm before run";
"app_intents.scenes.scene.title" = "Scene";
"app_intents.scenes.success_message.content" = "Scene \"%@\" executed.";
"app_intents.scenes.title" = "Run Scene";
"app_intents.scripts.failure_message.content" = "Script \"%@\" failed to execute, please check your logs.";
"app_intents.scripts.haptic_confirmation.title" = "Haptic confirmation";
"app_intents.scripts.icon.title" = "Icon";
"app_intents.scripts.requires_confirmation_before_run.description" = "Requires manual confirmation before running the script.";
"app_intents.scripts.requires_confirmation_before_run.title" = "Confirm before run";
"app_intents.scripts.script.title" = "Run Script";
"app_intents.scripts.show_confirmation_dialog.description" = "Shows confirmation notification after executed";
"app_intents.scripts.show_confirmation_dialog.title" = "Confirmation notification";
"app_intents.scripts.success_message.content" = "Script \"%@\" executed.";
"app_intents.show_confirmation_dialog.description" = "Shows confirmation notification after executed";
"app_intents.show_confirmation_dialog.title" = "Confirmation notification";
"app_intents.state.target" = "Target state";
"app_intents.state.toggle" = "Toggle";
"app_intents.switch.title" = "Switch";
"app_intents.widget_action.actions_parameter_configuration" = "Which actions?";
"assist.button.listening.title" = "Listening...";
"assist.error.pipelines_response" = "Failed to obtain Assist pipelines, please check your pipelines configuration.";
"assist.pipelines_picker.title" = "Assist Pipelines";
"assist.watch.mic_button.title" = "Tap to";
"assist.watch.not_reachable.title" = "Assist requires iPhone connectivity. Your iPhone is currently unreachable.";
"assist.watch.volume.title" = "Volume control";
"assist_pipeline_picker.placeholder" = "Pick pipeline";
"cancel_label" = "Cancel";
"carPlay.action.intro.item.body" = "Tap to continue on your iPhone";
"carPlay.action.intro.item.title" = "Create your first action";
"carPlay.config.tabs.title" = "Tabs";
"carPlay.debug.delete_db.alert.failed.message" = "Failed to delete configuration, error: %@";
"carPlay.debug.delete_db.alert.title" = "Are you sure you want to delete CarPlay configuration? This can't be reverted";
"carPlay.debug.delete_db.button.title" = "Delete CarPlay configuration";
"carPlay.debug.delete_db.reset.title" = "Reset configuration";
"carPlay.labels.already_added_server" = "Already added";
"carPlay.labels.empty_domain_list" = "No domains available";
"carPlay.labels.no_servers_available" = "No servers available. Add a server in the app.";
"carPlay.labels.select_server" = "Select server";
"carPlay.labels.servers" = "Servers";
"carPlay.labels.settings.advanced.section.button.detail" = "Use this option if your server data is not loaded properly.";
"carPlay.labels.settings.advanced.section.button.title" = "Restart App";
"carPlay.labels.settings.advanced.section.title" = "Advanced";
"carPlay.labels.tab.settings" = "Settings";
"carPlay.lock.confirmation.title" = "Are you sure you want to perform lock action on %@?";
"carPlay.navigation.button.next" = "Next";
"carPlay.navigation.button.previous" = "Previous";
"carPlay.navigation.tab.actions" = "Actions";
"carPlay.navigation.tab.areas" = "Areas";
"carPlay.navigation.tab.domains" = "Control";
"carPlay.navigation.tab.quick_access" = "Quick access";
"carPlay.navigation.tab.settings" = "Settings";
"carPlay.no_actions.title" = "Open iOS Companion App to create actions for CarPlay.";
"carPlay.no_entities.title" = "No CarPlay compatible entities available.";
"carPlay.notification.action.intro.body" = "Tap to create your first iOS Action";
"carPlay.notification.action.intro.title" = "Create iOS Action";
"carPlay.notification.quick_access.intro.body" = "Tap to create your CarPlay configuration.";
"carPlay.notification.quick_access.intro.title" = "Create CarPlay configuration";
"carPlay.quick_access.intro.item.title" = "Create your CarPlay configuration";
"carPlay.state.loading.title" = "Loading…";
"carPlay.tabs.active.delete_action.title" = "Swipe left to remove tab";
"carPlay.tabs.active.title" = "Active";
"carPlay.tabs.inactive.title" = "Inactive";
"carPlay.unlock.confirmation.title" = "Are you sure you want to perform unlock action on %@?";
"carplay.labels.already_added_server" = "Already added";
"carplay.labels.empty_domain_list" = "No domains available";
"carplay.labels.no_servers_available" = "No servers available. Add a server in the app.";
"carplay.labels.servers" = "Servers";
"carplay.lock.confirmation.title" = "Are you sure you want to perform lock action on %@?";
"carplay.navigation.button.next" = "Next";
"carplay.navigation.button.previous" = "Previous";
"carplay.unlock.confirmation.title" = "Are you sure you want to perform unlock action on %@?";
"cl_error.description.deferred_accuracy_too_low" = "Deferred mode is not supported for the requested accuracy.";
"cl_error.description.deferred_canceled" = "The request for deferred updates was canceled by your app or by the location manager.";
"cl_error.description.deferred_distance_filtered" = "Deferred mode does not support distance filters.";
"cl_error.description.deferred_failed" = "The location manager did not enter deferred mode for an unknown reason.";
"cl_error.description.deferred_not_updating_location" = "The manager did not enter deferred mode since updates were already disabled/paused.";
"cl_error.description.denied" = "Access to the location service was denied by the user.";
"cl_error.description.geocode_canceled" = "The geocode request was canceled.";
"cl_error.description.geocode_found_no_result" = "The geocode request yielded no result.";
"cl_error.description.geocode_found_partial_result" = "The geocode request yielded a partial result.";
"cl_error.description.heading_failure" = "The heading could not be determined.";
"cl_error.description.location_unknown" = "The location manager was unable to obtain a location value right now.";
"cl_error.description.network" = "The network was unavailable or a network error occurred.";
"cl_error.description.ranging_failure" = "A general ranging error occurred.";
"cl_error.description.ranging_unavailable" = "Ranging is disabled.";
"cl_error.description.region_monitoring_denied" = "Access to the region monitoring service was denied by the user.";
"cl_error.description.region_monitoring_failure" = "A registered region cannot be monitored.";
"cl_error.description.region_monitoring_response_delayed" = "Core Location will deliver events but they may be delayed.";
"cl_error.description.region_monitoring_setup_delayed" = "Core Location could not initialize the region monitoring feature immediately.";
"cl_error.description.unknown" = "Unknown Core Location error";
"client_events.event_type.all" = "All";
"client_events.event_type.background_operation" = "Background operation";
"client_events.event_type.database" = "Database";
"client_events.event_type.location_update" = "Location Update";
"client_events.event_type.networkRequest" = "Network Request";
"client_events.event_type.notification" = "Notification";
"client_events.event_type.notification.title" = "Received a Push Notification: %@";
"client_events.event_type.service_call" = "Service Call";
"client_events.event_type.settings" = "Settings";
"client_events.event_type.unknown" = "Unknown";
"client_events.no_events" = "No events";
"client_events.view.clear" = "Clear";
"client_events.view.clear_confirm.message" = "This cannot be undone.";
"client_events.view.clear_confirm.title" = "Are you sure you want to clear all events?";
"close_label" = "Close";
"component.collapsible_view.collapse" = "Collapse";
"component.collapsible_view.expand" = "Expand";
"connection.error.details.button.clipboard" = "Copy to clipboard";
"connection.error.details.button.discord" = "Ask in Discord";
"connection.error.details.button.doc" = "Read documentation";
"connection.error.details.button.github" = "Report issue in GitHub";
"connection.error.details.button.search_github" = "Search in GitHub";
"connection.error.details.label.code" = "Code";
"connection.error.details.label.description" = "Description";
"connection.error.details.label.domain" = "Domain";
"connection.error.details.title" = "Connection error";
"connection.error.failed_connect.cloud.title" = "Make sure your Home Assistant Cloud subscription is active and connected to your server, you can verify that at [Nabu Casa](https://account.nabucasa.com)";
"connection.error.failed_connect.cloud_inactive.title" = "You have disabled Home Assistant Cloud use in the app, if you need it for remote access please open companion app settings and enable it.";
"connection.error.failed_connect.subtitle" = "Check your connection and try again. If you are not at home make sure you have configured remote access.";
"connection.error.failed_connect.title" = "We couldn't connect to Home Assistant";
"connection.error.failed_connect.url" = "The app is currently connecting to";
"connection.error.generic_title" = "Uh oh! Looks like we are unable to establish a connection.";
"connection.permission.internal_url.body1" = "To access Home Assistant locally in a secure way, you need to grant the location permission ('Always').";
"connection.permission.internal_url.body2" = "This permission allows Home Assistant to detect the wireless network that you're connected to and establish a local connection.";
"connection.permission.internal_url.body3" = "You are always in control if your location is shared with Home Assistant. You can change these settings in the companion app setting screen.";
"connection.permission.internal_url.button_configure" = "Configure local access";
"connection.permission.internal_url.button_ignore" = "I know what I am doing. Allow local connections without permission access.";
"connection.permission.internal_url.footer" = "If you still want to use the local URL and don't want to provide location permission, you can tap the button below, but please, be aware of the security risks.";
"connection.permission.internal_url.ignore.alert.title" = "Are you sure?";
"connection.permission.internal_url.title" = "Permission access";
"connection_error.advanced_section.title" = "Advanced";
"connection_error.more_details_section.title" = "More details";
"connection_error.open_settings.title" = "Open settings";
"continue_label" = "Continue";
"copy_label" = "Copy";
"database.problem.delete" = "Delete Database & Quit App";
"database.problem.quit" = "Quit App";
"database.problem.title" = "Database Error";
"debug.reset.entities_database.title" = "Reset app entities database";
"debug_section_label" = "Debug";
"delete" = "Delete";
"done_label" = "Done";
"download_manager.downloading.title" = "Downloading";
"download_manager.failed.title" = "Failed to download file, error: %@";
"download_manager.finished.title" = "Download finished";
"entity_picker.placeholder" = "Pick entity";
"error_label" = "Error";
"extensions.map.location.new" = "New Location";
"extensions.map.location.original" = "Original Location";
"extensions.map.payload_missing_homeassistant.message" = "Payload didn't contain a homeassistant dictionary!";
"extensions.map.value_missing_or_uncastable.latitude.message" = "Latitude wasn't found or couldn't be casted to string!";
"extensions.map.value_missing_or_uncastable.longitude.message" = "Longitude wasn't found or couldn't be casted to string!";
"extensions.notification_content.error.no_entity_id" = "No entity_id found in payload!";
"extensions.notification_content.error.request.auth_failed" = "Authentication failed!";
"extensions.notification_content.error.request.entity_not_found" = "Entity '%@' not found!";
"extensions.notification_content.error.request.hls_unavailable" = "HLS stream unavailable";
"extensions.notification_content.error.request.other" = "Got non-200 status code (%li)";
"gestures.1_finger.title" = "Using one finger";
"gestures.2_fingers.title" = "Using two fingers";
"gestures.2_fingers_swipe_down.title" = "2 👆 swipe down";
"gestures.2_fingers_swipe_left.title" = "2 👆 swipe left";
"gestures.2_fingers_swipe_right.title" = "2 👆 swipe right";
"gestures.2_fingers_swipe_up.title" = "2 👆 swipe up";
"gestures.3_fingers.title" = "Using three fingers";
"gestures.3_fingers_swipe_down.title" = "3 👆 swipe down";
"gestures.3_fingers_swipe_left.title" = "3 👆 swipe left";
"gestures.3_fingers_swipe_right.title" = "3 👆 swipe right";
"gestures.3_fingers_swipe_up.title" = "3 👆 swipe up";
"gestures.category.app" = "App";
"gestures.category.homeAssistant" = "Home Assistant";
"gestures.category.other" = "Other";
"gestures.category.page" = "Navigation";
"gestures.category.servers" = "Servers";
"gestures.footer.title" = "Customize gestures to be used on the frontend.";
"gestures.reset.title" = "Reset";
"gestures.screen.body" = "Gestures below will be applied whenever you are using Home Assistant main UI.";
"gestures.screen.title" = "Gestures";
"gestures.shake.title" = "Shake";
"gestures.swipe.down.header" = "Swipe down";
"gestures.swipe.left.header" = "Swipe left";
"gestures.swipe.right.header" = "Swipe right";
"gestures.swipe.up.header" = "Swipe up";
"gestures.swipe_left.title" = "Swipe Left";
"gestures.swipe_right.title" = "Swipe Right";
"gestures.value.option.assist" = "Open Assist";
"gestures.value.option.back_page" = "Back to previous page";
"gestures.value.option.more_info.search_commands" = "Search commands";
"gestures.value.option.more_info.search_devices" = "Search devices";
"gestures.value.option.more_info.search_entities" = "Search entities";
"gestures.value.option.next_page" = "Go to next page";
"gestures.value.option.next_server" = "Next server";
"gestures.value.option.none" = "None";
"gestures.value.option.open_debug" = "Open debug";
"gestures.value.option.previous_server" = "Previous server";
"gestures.value.option.search_commands" = "Search commands";
"gestures.value.option.search_devices" = "Search devices";
"gestures.value.option.search_entities" = "Search entities";
"gestures.value.option.servers_list" = "Servers list";
"gestures.value.option.show_settings" = "Open App settings";
"gestures.value.option.show_sidebar" = "Show sidebar";
"grdb.config.migration_error.failed_access_grdb" = "Failed to access database (GRDB), error: %@";
"grdb.config.migration_error.failed_to_save" = "Failed to save new config, error: %@";
"ha_api.api_error.cant_build_url" = "Cant build API URL";
"ha_api.api_error.invalid_response" = "Received invalid response from Home Assistant";
"ha_api.api_error.manager_not_available" = "HA API Manager is unavailable";
"ha_api.api_error.mobile_app_component_not_loaded" = "The mobile_app component is not loaded. Please add it to your configuration, restart Home Assistant, and try again.";
"ha_api.api_error.must_upgrade_home_assistant" = "Your Home Assistant version (%@) is too old, you must upgrade to at least version %@ to use the app.";
"ha_api.api_error.no_available_api" = "No API available, double check if internal URL or external URL are available.";
"ha_api.api_error.not_configured" = "HA API not configured";
"ha_api.api_error.unacceptable_status_code" = "Unacceptable status code %1$li.";
"ha_api.api_error.unexpected_type" = "Received response with result of type %1$@ but expected type %2$@.";
"ha_api.api_error.unknown" = "An unknown error occurred.";
"ha_api.api_error.update_not_possible" = "Operation could not be performed.";
"help_label" = "Help";
"improv.button.continue" = "Continue";
"improv.connection_state.authorized" = "Setting up Wi-Fi";
"improv.connection_state.autorization_required" = "Please authorize your device to continue";
"improv.connection_state.provisioning" = "Connecting to Wi-Fi";
"improv.error_state.invalid_rpc_packet" = "Invalid RPC Packet";
"improv.error_state.not_authorized" = "Not authorized";
"improv.error_state.unable_to_connect" = "Unable to connect";
"improv.error_state.unknown" = "Unknown error, please try again.";
"improv.error_state.unknown_command" = "Unknown command";
"improv.list.title" = "Devices ready to set up";
"improv.state.connected" = "Connected";
"improv.state.connecting" = "Connecting...";
"improv.state.success" = "Wi-Fi connected successfully";
"improv.toast.title" = "There are devices available to setup.";
"improv.wifi.alert.cancel_button" = "Cancel";
"improv.wifi.alert.connect_button" = "Connect";
"improv.wifi.alert.description" = "Please enter your SSID and password.";
"improv.wifi.alert.password_placeholder" = "Password";
"improv.wifi.alert.ssid_placeholder" = "Network Name";
"improv.wifi.alert.title" = "Connect to WiFi";
"intents.server_required_for_value" = "Select a server before picking this value.";
"location_change_notification.app_shortcut.body" = "Location updated via App Shortcut";
"location_change_notification.background_fetch.body" = "Current location delivery triggered via background fetch";
"location_change_notification.beacon_region_enter.body" = "%@ entered via iBeacon";
"location_change_notification.beacon_region_exit.body" = "%@ exited via iBeacon";
"location_change_notification.launch.body" = "Location updated via app launch";
"location_change_notification.manual.body" = "Location update triggered by user";
"location_change_notification.periodic.body" = "Location updated via periodic update";
"location_change_notification.push_notification.body" = "Location updated via push notification";
"location_change_notification.region_enter.body" = "%@ entered";
"location_change_notification.region_exit.body" = "%@ exited";
"location_change_notification.signaled.body" = "Location updated via update signal";
"location_change_notification.significant_location_update.body" = "Significant location change detected";
"location_change_notification.siri.body" = "Location update triggered by Siri";
"location_change_notification.title" = "Location change";
"location_change_notification.unknown.body" = "Location updated via unknown method";
"location_change_notification.url_scheme.body" = "Location updated via URL Scheme";
"location_change_notification.visit.body" = "Location updated via Visit";
"location_change_notification.watch_context.body" = "Location updated via watch context sync";
"location_change_notification.x_callback_url.body" = "Location updated via X-Callback-URL";
"magic_item.action" = "Action";
"magic_item.action.assist.pipeline.title" = "Pipeline";
"magic_item.action.assist.start_listening.title" = "Start listening";
"magic_item.action.assist.title" = "Assist";
"magic_item.action.navigation_path.placeholder" = "e.g. /lovelace/cameras";
"magic_item.action.navigation_path.title" = "Navigation path";
"magic_item.action.on_tap" = "On tap";
"magic_item.action.script.title" = "Script";
"magic_item.add" = "Add";
"magic_item.background_color.title" = "Background color";
"magic_item.display_text.title" = "Display text";
"magic_item.edit" = "Save";
"magic_item.icon_color.title" = "Icon color";
"magic_item.icon_name.title" = "Icon name";
"magic_item.item_type.action.list.title" = "iOS Actions";
"magic_item.item_type.action.list.warning.title" = "We will stop supporting iOS Actions in the future, please consider using Home Assistant scripts or scenes instead.";
"magic_item.item_type.app.list.title" = "App";
"magic_item.item_type.entity.list.title" = "Entity";
"magic_item.item_type.scene.list.title" = "Scenes";
"magic_item.item_type.script.list.title" = "Scripts";
"magic_item.item_type.selection.list.title" = "Item type";
"magic_item.name.title" = "Name";
"magic_item.name_and_icon.footer" = "Edit script name and icon in frontend under 'Settings' > 'Automations & scenes' > 'Scripts'.";
"magic_item.name_and_icon.footer.scenes" = "Edit scene name and icon in frontend under 'Settings' > 'Automations & scenes' > 'Scenes'.";
"magic_item.require_confirmation.title" = "Require confirmation";
"magic_item.text_color.title" = "Text color";
"magic_item.use_custom_colors.title" = "Use custom colors";
"menu.actions.configure" = "Configure…";
"menu.actions.title" = "Actions";
"menu.application.about" = "About %@";
"menu.application.preferences" = "Preferences…";
"menu.file.update_sensors" = "Update Sensors";
"menu.help.help" = "%@ Help";
"menu.status_item.quit" = "Quit";
"menu.status_item.toggle" = "Toggle %1$@";
"menu.view.reload_page" = "Reload Page";
"navBar.close" = "Close";
"network.error.no_active_url.body" = "Open companion app settings and check your server settings, internal URL will only be used if local network is defined (SSID), if you are using VPN try setting your external URL as the same as internal URL.";
"network.error.no_active_url.title" = "No URL available to load";
"nfc.detail.copy" = "Copy to Pasteboard";
"nfc.detail.duplicate" = "Create a Duplicate";
"nfc.detail.example_trigger" = "Example Trigger";
"nfc.detail.fire" = "Fire Event";
"nfc.detail.share" = "Share Identifier";
"nfc.detail.tag_value" = "Tag Identifier";
"nfc.detail.title" = "NFC Tag";
"nfc.generic_tag_read" = "Tag Read";
"nfc.list.description" = "NFC tags written by the app will show a notification when you bring your device near them. Activating the notification will launch the app and fire an event.\
\
Tags will work on any device with Home Assistant installed which has hardware support to read them.";
"nfc.list.learn_more" = "Learn More";
"nfc.list.read_tag" = "Read Tag";
"nfc.list.title" = "NFC Tags";
"nfc.list.write_tag" = "Write Tag";
"nfc.not_available" = "NFC is not available on this device";
"nfc.read.error.generic_failure" = "Failed to read tag";
"nfc.read.error.not_home_assistant" = "NFC tag is not a Home Assistant tag";
"nfc.read.error.tag_invalid" = "NFC tag is invalid";
"nfc.read.start_message" = "Hold your %@ near an NFC tag";
"nfc.tag_read" = "NFC Tag Read";
"nfc.write.error.capacity" = "NFC tag has insufficient capacity: needs %ld but only has %ld";
"nfc.write.error.invalid_format" = "NFC tag is not NDEF format";
"nfc.write.error.not_writable" = "NFC tag is read-only";
"nfc.write.identifier_choice.manual" = "Manual";
"nfc.write.identifier_choice.message" = "The identifier helps differentiate various tags.";
"nfc.write.identifier_choice.random" = "Random (Recommended)";
"nfc.write.identifier_choice.title" = "What kind of tag identifier?";
"nfc.write.manual_input.title" = "What identifier for the tag?";
"nfc.write.start_message" = "Hold your %@ near a writable NFC tag";
"nfc.write.success_message" = "Tag Written!";
"no_label" = "No";
"notification_service.failed_to_load" = "Failed to load attachment";
"notification_service.loading_dynamic_actions" = "Loading Actions…";
"notification_service.parser.camera.invalid_entity" = "entity_id provided was invalid.";
"notification_service.parser.url.invalid_url" = "The given URL was invalid.";
"notification_service.parser.url.no_url" = "No URL was provided.";
"notifications_configurator.action.rows.authentication_required.footer" = "When the user selects an action with this option, the system prompts the user to unlock the device. After unlocking, Home Assistant will be notified of the selected action.";
"notifications_configurator.action.rows.authentication_required.title" = "Authentication Required";
"notifications_configurator.action.rows.destructive.footer" = "When enabled, the action button is displayed with special highlighting to indicate that it performs a destructive task.";
"notifications_configurator.action.rows.destructive.title" = "Destructive";
"notifications_configurator.action.rows.foreground.footer" = "Enabling this will cause the app to launch if it's in the background when tapping a notification";
"notifications_configurator.action.rows.foreground.title" = "Launch app";
"notifications_configurator.action.rows.text_input_button_title.title" = "Button Title";
"notifications_configurator.action.rows.text_input_placeholder.title" = "Placeholder";
"notifications_configurator.action.rows.title.title" = "Title";
"notifications_configurator.action.text_input.title" = "Text Input";
"notifications_configurator.category.example_call.title" = "Example Service Call";
"notifications_configurator.category.navigation_bar.title" = "Category Configurator";
"notifications_configurator.category.preview_notification.body" = "This is a test notification for the %@ notification category";
"notifications_configurator.category.preview_notification.title" = "Test notification";
"notifications_configurator.category.rows.actions.footer" = "Categories can have a maximum of 10 actions.";
"notifications_configurator.category.rows.actions.header" = "Actions";
"notifications_configurator.category.rows.category_summary.default" = "%%u notifications in %%@";
"notifications_configurator.category.rows.category_summary.footer" = "A format string for the summary description used when the system groups the category’s notifications. You can optionally use '%%u' to show the number of notifications in the group and '%%@' to show the summary argument provided in the push payload.";
"notifications_configurator.category.rows.category_summary.header" = "Category Summary";
"notifications_configurator.category.rows.hidden_preview_placeholder.default" = "%%u notifications";
"notifications_configurator.category.rows.hidden_preview_placeholder.footer" = "This text is only displayed if you have notification previews hidden. Use '%%u' for the number of messages with the same thread identifier.";
"notifications_configurator.category.rows.hidden_preview_placeholder.header" = "Hidden Preview Placeholder";
"notifications_configurator.category.rows.name.title" = "Name";
"notifications_configurator.identifier" = "Identifier";
"notifications_configurator.new_action.title" = "New Action";
"notifications_configurator.settings.footer" = "Identifier must contain only letters and underscores and be uppercase. It must be globally unique to the app.";
"notifications_configurator.settings.footer.id_set" = "Identifier can not be changed after creation. You must delete and recreate the action to change the identifier.";
"notifications_configurator.settings.header" = "Settings";
"off_label" = "Off";
"ok_label" = "OK";
"on_label" = "On";
"onboarding.connect.mac_safari_warning.message" = "Try restarting Safari if the login form does not open.";
"onboarding.connect.mac_safari_warning.title" = "Launching Safari";
"onboarding.connect.title" = "Connecting to %@";
"onboarding.connection_error.more_info_button" = "More Info";
"onboarding.connection_error.title" = "Failed to Connect";
"onboarding.connection_test_result.authentication_unsupported.description" = "Authentication type is unsupported%@.";
"onboarding.connection_test_result.basic_auth.description" = "HTTP Basic Authentication is unsupported.";
"onboarding.connection_test_result.certificate_error.action_dont_trust" = "Don't Trust";
"onboarding.connection_test_result.certificate_error.action_trust" = "Trust Certificate";
"onboarding.connection_test_result.certificate_error.title" = "Failed to connect securely";
"onboarding.connection_test_result.client_certificate.description" = "Client Certificate Authentication is not supported.";
"onboarding.connection_test_result.error_code" = "Error Code:";
"onboarding.connection_test_result.local_network_permission.description" = "\"Local Network\" privacy permission may have been denied. You can change this in the system Settings app.";
"onboarding.device_name_check.error.prompt" = "What device name should be used instead?";
"onboarding.device_name_check.error.rename_action" = "Rename";
"onboarding.device_name_check.error.title" = "A device already exists with the name '%1$@'";
"onboarding.invitation.accept_button" = "Accept";
"onboarding.invitation.other_options" = "Other options";
"onboarding.invitation.title" = "Home Assistant Invite";
"onboarding.manual_setup.connect" = "Connect";
"onboarding.manual_setup.couldnt_make_url.message" = "The value '%@' was not a valid URL.";
"onboarding.manual_setup.couldnt_make_url.title" = "Could not create a URL";
"onboarding.manual_setup.description" = "The URL of your Home Assistant server. Make sure it includes the protocol and port.";
"onboarding.manual_setup.helper_section.title" = "Did you mean...";
"onboarding.manual_setup.input_error.message" = "Make sure you have entered a valid URL.";
"onboarding.manual_setup.input_error.title" = "Invalid URL";
"onboarding.manual_setup.no_scheme.message" = "Should we try connecting using http:// or https://?";
"onboarding.manual_setup.no_scheme.title" = "URL entered without scheme";
"onboarding.manual_setup.text_field.placeholder" = "e.g. http://homeassistant.local:8123";
"onboarding.manual_setup.text_field.title" = "Your Home Assistant URL";
"onboarding.manual_setup.title" = "Enter URL";
"onboarding.permission.location.buttons.allow_and_share" = "Allow & Share with Home Assistant";
"onboarding.permission.location.buttons.allow_for_app" = "Allow for App use only";
"onboarding.permission.location.buttons.deny" = "Deny";
"onboarding.permission.location.deny.alert.body" = "If you are sure, please continue and tap 'Deny' on the next popup as well, in case you don't have a remote connection configured, the App will use your local connection configuration to access Home Assistant.";
"onboarding.permission.location.deny.alert.header" = "Information";
"onboarding.permission.location.deny.alert.message" = "Without location permission future versions of the App may deny access to your local Home Assistant server due to privacy concerns. If you are sure, please continue and tap 'Deny' on the next popup as well. By doing that we recommend you use your internal URL as external, since it is the only URL the app will try to access.";
"onboarding.permission.location.deny.alert.title" = "Are you sure?";
"onboarding.permission.location.description" = "To identify if you are at home and connect locally to Home Assistant, Apple requires that we ask for your location permission.";
"onboarding.permission.location.privacy_note" = "Your location won't be shared with your local Home Assistant server unless you select 'Allow & Share with Home Assistant'. You can choose to share later in companion app settings > sensors.";
"onboarding.permissions.allow" = "Allow";
"onboarding.permissions.allowed" = "Done";
"onboarding.permissions.change_later_note" = "You can change this permission later in Settings";
"onboarding.permissions.focus.bullet.automations" = "Focus-based automations";
"onboarding.permissions.focus.bullet.instant" = "Instant updates when status changes";
"onboarding.permissions.focus.description" = "Allow whether you are in focus mode to be sent to Home Assistant";
"onboarding.permissions.focus.grant_description" = "Allow focus permission to create sensors for your focus status, also known as do-not-disturb.";
"onboarding.permissions.focus.title" = "Focus";
"onboarding.permissions.location.bullet.automations" = "Presence-based automations";
"onboarding.permissions.location.bullet.history" = "Track location history";
"onboarding.permissions.location.bullet.wifi" = "Internal URL at home";
"onboarding.permissions.location.description" = "Enable location services to allow presence detection automations.";
"onboarding.permissions.location.grant_description" = "Allow location permission to create a device_tracker for your device.";
"onboarding.permissions.location.title" = "Location";
"onboarding.permissions.motion.bullet.activity" = "Sensor for current activity type";
"onboarding.permissions.motion.bullet.distance" = "Sensor for distance moved";
"onboarding.permissions.motion.bullet.steps" = "Sensor for step counts";
"onboarding.permissions.motion.description" = "Allow motion activity and pedometer data to be sent to Home Assistant";
"onboarding.permissions.motion.grant_description" = "Allow motion permission to create sensors for motion and pedometer data.";
"onboarding.permissions.motion.title" = "Motion & Pedometer";
"onboarding.permissions.notification.bullet.alert" = "Get alerted from notifications";
"onboarding.permissions.notification.bullet.badge" = "Update app icon badge";
"onboarding.permissions.notification.bullet.commands" = "Send commands to your device";
"onboarding.permissions.notification.description" = "Allow push notifications to be sent from your Home Assistant";
"onboarding.permissions.notification.grant_description" = "Allow notification permission to create a notify service for your device.";
"onboarding.permissions.notification.title" = "Notifications";
"onboarding.scanning.discovered_announcement" = "Discovered: %@";
"onboarding.scanning.manual" = "Enter Address Manually";
"onboarding.scanning.manual.button.divider.title" = "or";
"onboarding.scanning.manual.button.title" = "Enter address manually";
"onboarding.scanning.manual_hint" = "Not finding your server?";
"onboarding.scanning.title" = "Scanning for Servers";
"onboarding.servers.docs.read" = "Read documentation";
"onboarding.servers.search.message" = "Looking for servers nearby...";
"onboarding.servers.title" = "Searching on home network";
"onboarding.welcome.body" = "Allows you to access your Home Assistant installation on the go. It runs locally in your home via a device like the Home Assistant Green or Raspberry Pi.";
"onboarding.welcome.continue_button" = "Connect to my Home Assistant";
"onboarding.welcome.description" = "This app connects to your Home Assistant server and allows integrating data about you and your phone.\
\
Home Assistant is free and open source home automation software with a focus on local control and privacy.";
"onboarding.welcome.get_started" = "Get started with Home Assistant";
"onboarding.welcome.header" = "Home Assistant Companion App";
"onboarding.welcome.learn_more" = "Learn more";
"onboarding.welcome.logo.accessibility_label" = "Home Assistant logo";
"onboarding.welcome.primary_button" = "Connect to my Home Assistant";
"onboarding.welcome.secondary_button" = "Getting started";
"onboarding.welcome.title" = "Welcome to Home Assistant %@!";
"open_label" = "Open";
"permission.screen.bluetooth.secondary_button" = "Skip";
"permission.screen.bluetooth.subtitle" = "The Home Assistant app can find devices using Bluetooth of this device. Allow Bluetooth access for the Home Assistant app.";
"permission.screen.bluetooth.title" = "Search devices";
"post_onboarding.permission.notification.message" = "Notifications can be useful in your automations. Tap the icon to allow or deny.";
"post_onboarding.permission.notification.title" = "Do you want to receive notifications?";
"preview_output" = "Preview Output";
"privacyLabel" = "Privacy";
"reload_label" = "Reload";
"requires_version" = "Requires %@ or later.";
"retry_label" = "Retry";
"save_label" = "Save";
"sensors.active.setting.time_until_idle" = "Time Until Idle";
"sensors.geocoded_location.setting.use_zones" = "Use Zone Name";
"servers_selection.title" = "Servers";
"settings.connection_section.activate_server" = "Activate";
"settings.connection_section.activate_swipe_hint" = "Quickly activate using a three-finger swipe left or right when viewing a server.";
"settings.connection_section.add_server" = "Add Server";
"settings.connection_section.all_servers" = "All Servers";
"settings.connection_section.always_fallback_internal.confirmation.confirm_button" = "I am sure";
"settings.connection_section.always_fallback_internal.confirmation.message" = "If you have an unsecure connection this can expose your authentication token on public networks.";
"settings.connection_section.always_fallback_internal.confirmation.title" = "Are you sure?";
"settings.connection_section.always_fallback_internal.footer" = "Enabling this with an unsecure URL (http) may compromise your security on public networks.";
"settings.connection_section.always_fallback_internal.title" = "Always fallback to internal URL";
"settings.connection_section.cloud_overrides_external" = "When connecting via Cloud, the External URL will not be used. You do not need to configure one unless you want to disable Cloud.";
"settings.connection_section.connecting_via" = "Connected via";
"settings.connection_section.delete_server.message" = "Are you sure you wish to delete this server?";
"settings.connection_section.delete_server.progress" = "Deleting Server…";
"settings.connection_section.delete_server.title" = "Delete Server";
"settings.connection_section.details" = "Details";
"settings.connection_section.errors.cannot_remove_last_url" = "You cannot remove only available URL.";
"settings.connection_section.external_base_url.placeholder" = "https://homeassistant.myhouse.com";
"settings.connection_section.external_base_url.title" = "External URL";
"settings.connection_section.header" = "Connection";
"settings.connection_section.home_assistant_cloud.title" = "Home Assistant Cloud";
"settings.connection_section.internal_base_url.placeholder" = "e.g. http://homeassistant.local:8123/";
"settings.connection_section.internal_base_url.requires_setup.title" = "Requires setup";
"settings.connection_section.internal_base_url.ssid_bssid_required.title" = "To use internal URL you need to specify your Wifi network name (SSID) or hardware addresses, otherwise the App will always default to external URL.";
"settings.connection_section.internal_base_url.ssid_required.title" = "To use internal URL you need to specify your Wifi network name (SSID), otherwise the App will always default to external URL.";
"settings.connection_section.internal_base_url.title" = "Internal URL";
"settings.connection_section.internal_url_hardware_addresses.add_new_ssid" = "Add New Hardware Address";
"settings.connection_section.internal_url_hardware_addresses.footer" = "Internal URL will be used when the primary network interface has a MAC address matching one of these hardware addresses.";
"settings.connection_section.internal_url_hardware_addresses.header" = "Hardware Addresses";
"settings.connection_section.internal_url_hardware_addresses.invalid" = "Hardware addresses must look like aa:bb:cc:dd:ee:ff";
"settings.connection_section.internal_url_ssids.add_new_ssid" = "Add new SSID";
"settings.connection_section.internal_url_ssids.footer" = "Internal URL will be used when connected to listed SSIDs";
"settings.connection_section.internal_url_ssids.header" = "SSIDs";
"settings.connection_section.internal_url_ssids.placeholder" = "MyFunnyNetworkName";
"settings.connection_section.invite_to_server" = "Invite someone to this server";
"settings.connection_section.local_push_description" = "Directly connect to the Home Assistant server for push notifications when on internal SSIDs.";
"settings.connection_section.location_send_type.setting.exact" = "Exact";
"settings.connection_section.location_send_type.setting.never" = "Never";
"settings.connection_section.location_send_type.setting.zone_only" = "Zone Name Only";
"settings.connection_section.location_send_type.title" = "Location Sent";
"settings.connection_section.logged_in_as" = "Logged in as";
"settings.connection_section.no_base_url.title" = "No URL";
"settings.connection_section.remote_ui_url.title" = "Remote UI URL";
"settings.connection_section.sensor_send_type.setting.all" = "All";
"settings.connection_section.sensor_send_type.setting.none" = "None";
"settings.connection_section.sensor_send_type.title" = "Sensors Sent";
"settings.connection_section.servers" = "Servers";
"settings.connection_section.servers_footer" = "Reorder to define default server";
"settings.connection_section.servers_header" = "Servers";
"settings.connection_section.ssid_permission_and_accuracy_message" = "Accessing SSIDs in the background requires 'Always' location permission and 'Full' location accuracy. Tap here to change your settings.";
"settings.connection_section.ssid_permission_message" = "Accessing SSIDs in the background requires 'Always' location permission. Tap here to change your settings.";
"settings.connection_section.validate_error.edit_url" = "Edit URL";
"settings.connection_section.validate_error.title" = "Error Saving URL";
"settings.connection_section.validate_error.use_anyway" = "Use Anyway";
"settings.connection_section.websocket.status.authenticating" = "Authenticating";
"settings.connection_section.websocket.status.connected" = "Connected";
"settings.connection_section.websocket.status.connecting" = "Connecting";
"settings.connection_section.websocket.status.disconnected.error" = "Error: %1$@";
"settings.connection_section.websocket.status.disconnected.next_retry" = "Next Retry: %1$@";
"settings.connection_section.websocket.status.disconnected.retry_count" = "Retry Count: %1$li";
"settings.connection_section.websocket.status.disconnected.title" = "Disconnected";
"settings.connection_section.websocket.title" = "WebSocket";
"settings.debugging.critical_section.footer" = "Make sure you are aware that these operations cannot be reverted.";
"settings.debugging.header.subtitle" = "Let's fix that 🐞";
"settings.debugging.header.title" = "Debug";
"settings.debugging.shake_disclaimer.title" = "Now when you shake the app you can access debug features.";
"settings.debugging.shake_disclaimer_optional.title" = "Shake the App to open debug";
"settings.debugging.thread.footer" = "Check what Thread credentials are inside Apple Keychain, you can also import in Home Assistant or delete from Keychain.";
"settings.debugging.title" = "Debugging";
"settings.details_section.location_settings_row.title" = "Location";
"settings.details_section.notification_settings_row.title" = "Notifications";
"settings.details_section.watch_row.title" = "Apple Watch";
"settings.details_section.watch_row_complications.title" = "Complications";
"settings.details_section.watch_row_configuration.title" = "Configuration";
"settings.developer.annoying_background_notifications.title" = "Annoying Background Info";
"settings.developer.camera_notification.notification.body" = "Expand this to show the camera content extension";
"settings.developer.camera_notification.title" = "Show camera notification content extension";
"settings.developer.copy_realm.alert.message" = "Copied Realm from %@ to %@";
"settings.developer.copy_realm.alert.title" = "Copied Realm";
"settings.developer.copy_realm.title" = "Copy Realm from app group to Documents";
"settings.developer.crashlytics_test.fatal.notification.body" = "NOTE: This will not work if the debugger is connected! When you press OK, the app will crash. You must then re-open the app and wait up to 5 minutes for the crash to appear in the console";
"settings.developer.crashlytics_test.fatal.notification.title" = "About to crash";
"settings.developer.crashlytics_test.fatal.title" = "Test Crashlytics Fatal Error";
"settings.developer.crashlytics_test.non_fatal.notification.body" = "When you press OK, a non-fatal error will be sent to Crashlytics. It may take up to 5 minutes to appear in the console.";
"settings.developer.crashlytics_test.non_fatal.notification.title" = "About to submit a non-fatal error";
"settings.developer.crashlytics_test.non_fatal.title" = "Test Crashlytics Non-Fatal Error";
"settings.developer.debug_strings.title" = "Debug strings";
"settings.developer.export_log_files.title" = "Export log files";
"settings.developer.footer" = "Don't use these if you don't know what you are doing!";
"settings.developer.header" = "Developer";
"settings.developer.map_notification.notification.body" = "Expand this to show the map content extension";
"settings.developer.map_notification.title" = "Show map notification content extension";
"settings.developer.mock_thread_credentials_sharing.title" = "Simulator Thread Credentials Sharing";
"settings.developer.show_log_files.title" = "Show log files in Finder";
"settings.developer.sync_watch_context.title" = "Sync Watch Context";
"settings.event_log.title" = "Event Log";
"settings.location_history.detail.explanation" = "The purple circle is your location and its accuracy. Blue circles are your zones. You are inside a zone if the purple circle overlaps a blue circle. Orange circles are additional regions used for sub-100 m zones.";
"settings.location_history.empty" = "No Location History";
"settings.location_history.title" = "Location History";
"settings.navigation_bar.about_button.title" = "About";
"settings.navigation_bar.title" = "Settings";
"settings.reset_section.reset_alert.message" = "Your settings will be reset and this device will be unregistered from push notifications as well as removed from your Home Assistant configuration.";
"settings.reset_section.reset_alert.progress_message" = "Resetting…";
"settings.reset_section.reset_alert.title" = "Reset";
"settings.reset_section.reset_app.title" = "Reset App (Remove servers and data)";
"settings.reset_section.reset_row.title" = "Reset";
"settings.reset_section.reset_web_cache.title" = "Reset frontend cache";
"settings.server_select.page_title" = "Server";
"settings.server_select.title" = "Server";
"settings.status_section.header" = "Status";
"settings.status_section.location_name_row.placeholder" = "My Home Assistant";
"settings.status_section.location_name_row.title" = "Name";
"settings.status_section.version_row.placeholder" = "0.92.0";
"settings.status_section.version_row.title" = "Version";
"settings.template_edit.title" = "Edit Template";
"settings.whats_new.title" = "What's new?";
"settings.widgets.create.add_item.title" = "Add item";
"settings.widgets.create.footer.title" = "While the widget preview only displays one widget size, your custom widget will be available on multiple sizes respecting the limit of items per size.";
"settings.widgets.create.items.title" = "Items";
"settings.widgets.create.name.placeholder" = "e.g. Living room favorites";
"settings.widgets.create.name.title" = "Name";
"settings.widgets.create.no_items.title" = "No items";
"settings.widgets.create.title" = "Create widget";
"settings.widgets.custom.delete_all.title" = "Reset all custom widgets";
"settings.widgets.title" = "Widgets";
"settings.widgets.your_widgets.title" = "Your widgets";
"settings_details.actions.actions_synced.empty" = "No Synced Actions";
"settings_details.actions.actions_synced.footer" = "Actions defined in .yaml are not editable on device.";
"settings_details.actions.actions_synced.footer_no_actions" = "Actions may be also defined in the .yaml configuration.";
"settings_details.actions.actions_synced.header" = "Synced Actions";
"settings_details.actions.carPlay.available.title" = "Show in CarPlay";
"settings_details.actions.footer" = "Actions are used in the Apple Watch app, App Icon Actions, the Today widget and CarPlay.";
"settings_details.actions.footer_mac" = "Actions are used in the application menu and widgets.";
"settings_details.actions.learn.button.title" = "Introduction to iOS Actions";
"settings_details.actions.scenes.customize_action" = "Customize";
"settings_details.actions.scenes.empty" = "No Scenes";
"settings_details.actions.scenes.footer" = "When enabled, Scenes display alongside actions. When performed, they trigger scene changes.";
"settings_details.actions.scenes.select_all" = "Select All";
"settings_details.actions.scenes.title" = "Scene Actions";
"settings_details.actions.server_controlled.update.title" = "Update server Actions";
"settings_details.actions.title" = "Actions";
"settings_details.actions.use_custom_colors.title" = "Use custom colors";
"settings_details.actions.watch.available.title" = "Show in Watch";
"settings_details.general.app_icon.current_selected.title" = "- Selected";
"settings_details.general.app_icon.enum.beta" = "Beta";
"settings_details.general.app_icon.enum.black" = "Black";
"settings_details.general.app_icon.enum.blue" = "Blue";
"settings_details.general.app_icon.enum.caribbean_green" = "Caribbean Green";
"settings_details.general.app_icon.enum.classic" = "Classic";
"settings_details.general.app_icon.enum.cornflower_blue" = "Cornflower Blue";
"settings_details.general.app_icon.enum.crimson" = "Crimson";
"settings_details.general.app_icon.enum.dev" = "Dev";
"settings_details.general.app_icon.enum.electric_violet" = "Electric Violet";
"settings_details.general.app_icon.enum.fire_orange" = "Fire Orange";
"settings_details.general.app_icon.enum.green" = "Green";
"settings_details.general.app_icon.enum.ha_blue" = "Home Assistant Blue";
"settings_details.general.app_icon.enum.old_beta" = "Old Beta";
"settings_details.general.app_icon.enum.old_dev" = "Old Dev";
"settings_details.general.app_icon.enum.old_release" = "Old Release";
"settings_details.general.app_icon.enum.orange" = "Orange";
"settings_details.general.app_icon.enum.pink" = "Pink";
"settings_details.general.app_icon.enum.pride_bi" = "Pride: Bi";
"settings_details.general.app_icon.enum.pride_non_binary" = "Pride: Non Binary";
"settings_details.general.app_icon.enum.pride_poc" = "Pride: 8-Color";
"settings_details.general.app_icon.enum.pride_rainbow" = "Pride: Rainbow";
"settings_details.general.app_icon.enum.pride_rainbow_invert" = "Pride: Rainbow (Inverted)";
"settings_details.general.app_icon.enum.pride_trans" = "Pride: Trans";
"settings_details.general.app_icon.enum.purple" = "Purple";
"settings_details.general.app_icon.enum.red" = "Red";
"settings_details.general.app_icon.enum.release" = "Release";
"settings_details.general.app_icon.enum.white" = "White";
"settings_details.general.app_icon.explanation.title" = "Each icon has 3 variants (iOS 18+), default, dark and tinted to react according to the selected iOS home screen style. Some icons are the same in dark mode or handled automatically by iOS.";
"settings_details.general.app_icon.title" = "App Icon";
"settings_details.general.body" = "Basic App configuration, App Icon and web page settings.";
"settings_details.general.device_name.title" = "Device Name";
"settings_details.general.full_screen.title" = "Full Screen";
"settings_details.general.launch_on_login.title" = "Launch App on Login";
"settings_details.general.links.title" = "Links";
"settings_details.general.menu_bar_text.title" = "Menu Bar Text";
"settings_details.general.open_in_browser.chrome" = "Google Chrome";
"settings_details.general.open_in_browser.default" = "System Default";
"settings_details.general.open_in_browser.firefox" = "Mozilla Firefox";
"settings_details.general.open_in_browser.firefoxFocus" = "Mozilla Firefox Focus";
"settings_details.general.open_in_browser.firefoxKlar" = "Mozilla Firefox Klar";
"settings_details.general.open_in_browser.safari" = "Apple Safari";
"settings_details.general.open_in_browser.safari_in_app" = "Apple Safari (in app)";
"settings_details.general.open_in_browser.title" = "Open Links In";
"settings_details.general.open_in_private_tab.title" = "Open in Private Tab";
"settings_details.general.page.title" = "Page";
"settings_details.general.page_zoom.default" = "%@ (Default)";
"settings_details.general.page_zoom.title" = "Page Zoom";
"settings_details.general.pinch_to_zoom.title" = "Pinch to Zoom";
"settings_details.general.restoration.title" = "Remember Last Page";
"settings_details.general.title" = "General";
"settings_details.general.visibility.options.dock" = "Dock";
"settings_details.general.visibility.options.dock_and_menu_bar" = "Dock and Menu Bar";
"settings_details.general.visibility.options.menu_bar" = "Menu Bar";
"settings_details.general.visibility.title" = "Show App In…";
"settings_details.legacy_actions.title" = "(Legacy) iOS Actions";
"settings_details.location.background_refresh.disabled" = "Disabled";
"settings_details.location.background_refresh.enabled" = "Enabled";
"settings_details.location.background_refresh.title" = "Background Refresh";
"settings_details.location.focus_permission.denied" = "Denied";
"settings_details.location.focus_permission.enabled" = "Enabled";
"settings_details.location.focus_permission.needs_request" = "Disabled";
"settings_details.location.focus_permission.restricted" = "Restricted";
"settings_details.location.location_accuracy.full" = "Full";
"settings_details.location.location_accuracy.reduced" = "Reduced";
"settings_details.location.location_accuracy.title" = "Location Accuracy";
"settings_details.location.location_permission.always" = "Always";
"settings_details.location.location_permission.needs_request" = "Disabled";
"settings_details.location.location_permission.never" = "Never";
"settings_details.location.location_permission.title" = "Location Permission";
"settings_details.location.location_permission.while_in_use" = "While In Use";
"settings_details.location.motion_permission.denied" = "Denied";
"settings_details.location.motion_permission.enabled" = "Enabled";
"settings_details.location.motion_permission.needs_request" = "Disabled";
"settings_details.location.motion_permission.restricted" = "Restricted";
"settings_details.location.motion_permission.title" = "Motion Permission";
"settings_details.location.notifications.background_fetch.title" = "Background Fetch Notifications";
"settings_details.location.notifications.beacon_enter.title" = "Enter Zone via iBeacon Notifications";
"settings_details.location.notifications.beacon_exit.title" = "Exit Zone via iBeacon Notifications";
"settings_details.location.notifications.enter.title" = "Enter Zone Notifications";
"settings_details.location.notifications.exit.title" = "Exit Zone Notifications";
"settings_details.location.notifications.header" = "Location Notifications";
"settings_details.location.notifications.location_change.title" = "Significant Location Change Notifications";
"settings_details.location.notifications.push_notification.title" = "Pushed Location Request Notifications";
"settings_details.location.notifications.url_scheme.title" = "URL Scheme Location Notifications";
"settings_details.location.notifications.x_callback_url.title" = "X-Callback-URL Location Notifications";
"settings_details.location.title" = "Location";
"settings_details.location.update_location" = "Update Location";
"settings_details.location.updates.background.title" = "Background fetch";
"settings_details.location.updates.footer" = "Manual location updates can always be triggered";
"settings_details.location.updates.header" = "Update sources";
"settings_details.location.updates.notification.title" = "Push notification request";
"settings_details.location.updates.significant.title" = "Significant location change";
"settings_details.location.updates.zone.title" = "Zone enter/exit";
"settings_details.location.zones.beacon.prop_not_set.value" = "Not set";
"settings_details.location.zones.beacon_major.title" = "iBeacon Major";
"settings_details.location.zones.beacon_minor.title" = "iBeacon Minor";
"settings_details.location.zones.beacon_uuid.title" = "iBeacon UUID";
"settings_details.location.zones.enter_exit_tracked.title" = "Enter/exit tracked";
"settings_details.location.zones.footer" = "To disable location tracking add track_ios: false to each zones settings or under customize.";
"settings_details.location.zones.location.title" = "Location";
"settings_details.location.zones.radius.label" = "%li m";
"settings_details.location.zones.radius.title" = "Radius";
"settings_details.mac_native_features.footer" = "This will open Safari instead of the App webview, while keeping the native features such as widgets working.";
"settings_details.mac_native_features.title" = "Native Features Only (Experimental)";
"settings_details.notifications.badge_section.automatic_setting.description" = "Resets the badge to 0 every time you launch the app.";
"settings_details.notifications.badge_section.automatic_setting.title" = "Automatically";
"settings_details.notifications.badge_section.button.title" = "Reset Badge";
"settings_details.notifications.categories.deprecated_note" = "Categories are no longer required for actionable notifications and will be removed in a future release.";
"settings_details.notifications.categories.header" = "Categories";
"settings_details.notifications.categories_synced.empty" = "No Synced Categories";
"settings_details.notifications.categories_synced.footer" = "Categories defined in .yaml are not editable on device.";
"settings_details.notifications.categories_synced.footer_no_categories" = "Categories may be also defined in the .yaml configuration.";
"settings_details.notifications.categories_synced.header" = "Synced Categories";
"settings_details.notifications.info" = "Use the mobile_app notify service to send notifications to your device.";
"settings_details.notifications.local_push.status.available" = "Available (%1$@)";
"settings_details.notifications.local_push.status.disabled" = "Disabled";
"settings_details.notifications.local_push.status.establishing" = "Establishing";
"settings_details.notifications.local_push.status.unavailable" = "Unavailable";
"settings_details.notifications.local_push.status.unsupported" = "Unsupported";
"settings_details.notifications.local_push.title" = "Local Push";
"settings_details.notifications.new_category.title" = "New Category";
"settings_details.notifications.permission.disabled" = "Denied";
"settings_details.notifications.permission.enabled" = "Enabled";
"settings_details.notifications.permission.needs_request" = "Disabled";
"settings_details.notifications.permission.title" = "Permission";
"settings_details.notifications.prompt_to_open_urls.title" = "Confirm before opening URL";
"settings_details.notifications.push_id_section.header" = "Push ID";
"settings_details.notifications.push_id_section.not_registered" = "Not registered for remote notifications";
"settings_details.notifications.rate_limits.attempts" = "Attempts";
"settings_details.notifications.rate_limits.delivered" = "Delivered";
"settings_details.notifications.rate_limits.errors" = "Errors";
"settings_details.notifications.rate_limits.footer" = "You are allowed 300 push notifications per 24 hours. Rate limits reset at midnight Universal Coordinated Time (UTC).";
"settings_details.notifications.rate_limits.footer_with_param" = "You are allowed %u push notifications per 24 hours. Rate limits reset at midnight Universal Coordinated Time (UTC).";
"settings_details.notifications.rate_limits.header" = "Rate Limits";
"settings_details.notifications.rate_limits.resets_in" = "Resets In";
"settings_details.notifications.rate_limits.total" = "Total";
"settings_details.notifications.sounds.bundled" = "Bundled";
"settings_details.notifications.sounds.error.cant_build_library_sounds_path" = "Can't build ~/Library/Sounds path: %@";
"settings_details.notifications.sounds.error.cant_get_directory_contents" = "Can't list directory contents: %@";
"settings_details.notifications.sounds.error.cant_get_file_sharing_path" = "Can't access file sharing sounds directory: %@";
"settings_details.notifications.sounds.error.conversion_failed" = "Failed to convert audio to PCM 32 bit 48khz: %@";
"settings_details.notifications.sounds.error.copy_error" = "Failed to copy file: %@";
"settings_details.notifications.sounds.error.delete_error" = "Failed to delete file: %@";
"settings_details.notifications.sounds.footer" = "Built-in, system, or custom sounds can be used with your notifications.";
"settings_details.notifications.sounds.import_custom" = "Import custom sound";
"settings_details.notifications.sounds.import_file_sharing" = "Import sounds from iTunes File Sharing";
"settings_details.notifications.sounds.import_mac_instructions" = "Add custom sounds to your Sounds folder to use them in notifications. Use their filename as the sound value in the service call.";
"settings_details.notifications.sounds.import_mac_open_folder" = "Open Folder in Finder";
"settings_details.notifications.sounds.import_system" = "Import system sounds";
"settings_details.notifications.sounds.imported" = "Imported";
"settings_details.notifications.sounds.imported_alert.message" = "%li sounds were imported. Please restart your phone to complete the import.";
"settings_details.notifications.sounds.imported_alert.title" = "Sounds Imported";
"settings_details.notifications.sounds.system" = "System";
"settings_details.notifications.sounds.title" = "Sounds";
"settings_details.notifications.title" = "Notifications";
"settings_details.privacy.alerts.description" = "Allows checking for important alerts like security vulnerabilities.";
"settings_details.privacy.alerts.title" = "Alerts";
"settings_details.privacy.analytics.generic_description" = "Allows collection of basic information about your device and interactions with the app. No user identifiable data is shared, including your Home Assistant URLs and tokens. You must restart the app for changes to this setting to take effect.";
"settings_details.privacy.analytics.generic_title" = "Analytics";
"settings_details.privacy.body" = "You are in control of your data.";
"settings_details.privacy.crash_reporting.description" = "Allows for deeper tracking of crashes and other errors in the app, leading to faster fixes being published. No user identifiable information is sent, other than basic device information. You must restart the app for changes to this setting to take effect.";
"settings_details.privacy.crash_reporting.sentry" = "This feature currently uses Sentry as the report destination.";
"settings_details.privacy.crash_reporting.title" = "Crash Reporting";
"settings_details.privacy.messaging.description" = "Firebase Cloud Messaging must be enabled for push notifications to function.";
"settings_details.privacy.messaging.title" = "Firebase Cloud Messaging";
"settings_details.privacy.title" = "Privacy";
"settings_details.thread.delete_credential.confirmation.title" = "Are you sure you want to delete this credential from your Apple Keychain? This can't be reverted and should only be executed if you know what you're doing.";
"settings_details.thread.title" = "Thread";
"settings_details.updates.check_for_updates.include_betas" = "Include Beta Releases";
"settings_details.updates.check_for_updates.title" = "Automatically Check for Updates";
"settings_details.watch.title" = "Apple Watch";
"settings_details.widgets.reload_all.description" = "This will reload all widgets timelines, use this in case your widgets are stuck in a blank state or not updating for some reason.";
"settings_details.widgets.reload_all.title" = "Reload all widgets";
"settings_sensors.body" = "Decide which of your device sensors you want to share with Home Assistant.";
"settings_sensors.detail.attributes" = "Attributes";
"settings_sensors.detail.device_class" = "Device Class";
"settings_sensors.detail.enabled" = "Enabled";
"settings_sensors.detail.icon" = "Icon";
"settings_sensors.detail.state" = "State";
"settings_sensors.disabled_state_replacement" = "Disabled";
"settings_sensors.focus_permission.title" = "Focus Permission";
"settings_sensors.last_updated.footer" = "Last Updated %@";
"settings_sensors.last_updated.prefix" = "Last Updated";
"settings_sensors.loading_error.title" = "Failed to load sensors";
"settings_sensors.periodic_update.description" = "When enabled, these sensors will update with this frequency while the app is open in the foreground.";
"settings_sensors.periodic_update.description_mac" = "When enabled, these sensors will update with this frequency while the app is open. Some sensors will update automatically more often.";
"settings_sensors.periodic_update.off" = "Off";
"settings_sensors.periodic_update.title" = "Periodic Update";
"settings_sensors.permissions.header" = "Permissions";
"settings_sensors.sensors.header" = "Sensors";
"settings_sensors.settings.footer" = "Changes will be applied on the next update.";
"settings_sensors.settings.header" = "Settings";
"settings_sensors.title" = "Sensors";
"share_extension.entered_placeholder" = "'entered' in event";
"share_extension.error.title" = "Couldn't Send";
"shortcut_item.open_settings.title" = "Open Settings";
"success_label" = "Success";
"thread.active_operational_data_set.title" = "Active operational data set";
"thread.border_agent_id.title" = "Border Agent ID";
"thread.credentials.border_agent_id_title" = "Border Agent ID";
"thread.credentials.network_key_title" = "Network Key";
"thread.credentials.network_name_title" = "Network Name";
"thread.credentials.no_credential_available" = "You don't have credentials available on your iCloud Keychain.";
"thread.credentials.screen_title" = "Thread Credentials";
"thread.credentials.share_credentials.no_credentials_message" = "Make sure your are logged in with your iCloud account which is owner of a Home in Apple Home.";
"thread.credentials.share_credentials.no_credentials_title" = "You don't have credentials to share";
"thread.credentials.share_credentials_button_title" = "Share credential with Home Assistant";
"thread.extended_pan_id.title" = "Extended PAN ID";
"thread.management.title" = "Thread Credentials";
"thread.network_key.title" = "Network Key";
"thread.save_credential.fail.alert.message" = "Failed to save thread network credential.";
"thread.save_credential.fail.alert.title" = "Failed to save thread network credential, error: %@";
"thread.save_credential.fail.continue.button" = "Continue";
"thread.store_in_keychain.error.generic.body" = "Failed to store thread credential in keychain, check logs for more information.";
"thread.store_in_keychain.error.hexadecimal_conversion.body" = "Failed to convert input to hexadecimal while storing thread credential in keychain";
"thread.store_in_keychain.error.message" = "Failed to store thread credential in keychain, error: %@";
"thread.store_in_keychain.error.title" = "Operation failed";
"thread.transter_to_apple.title" = "Transfer to Apple Keychain";
"thread.transter_to_homeassistant.title" = "Transfer to Home Assistant";
"token_error.connection_failed" = "Connection failed.";
"token_error.expired" = "Token is expired.";
"token_error.token_unavailable" = "Token is unavailable.";
"unauthenticated.message.body" = "This could be temporary if you are behind a proxy or network restriction, otherwise if it persists remove your server and add it back in.";
"unauthenticated.message.title" = "You are unauthenticated";
"unknownLabel" = "Unknown";
"updater.check_for_updates_menu.title" = "Check for Updates…";
"updater.no_updates_available.on_latest_version" = "You're on the latest version!";
"updater.no_updates_available.title" = "Check for Updates";
"updater.update_available.open" = "View '%@'";
"updater.update_available.title" = "Update Available";
"url_handler.call_service.confirm.message" = "Do you want to call the service %@?";
"url_handler.call_service.confirm.title" = "Call service?";
"url_handler.call_service.error.message" = "An error occurred while attempting to call service %@: %@";
"url_handler.call_service.success.message" = "Successfully called %@";
"url_handler.call_service.success.title" = "Called service";
"url_handler.error.action_not_found" = "Action Not Found";
"url_handler.fire_event.confirm.message" = "Do you want to fire the event %@?";
"url_handler.fire_event.confirm.title" = "Fire event?";
"url_handler.fire_event.error.message" = "An error occurred while attempting to fire event %@: %@";
"url_handler.fire_event.success.message" = "Successfully fired event %@";
"url_handler.fire_event.success.title" = "Fired event";
"url_handler.no_service.message" = "%@ is not a valid route";
"url_handler.render_template.confirm.message" = "Do you want to render %@?";
"url_handler.render_template.confirm.title" = "Render template?";
"url_handler.send_location.confirm.message" = "Do you want to send your location?";
"url_handler.send_location.confirm.title" = "Send location?";
"url_handler.send_location.error.message" = "An unknown error occurred while attempting to send location: %@";
"url_handler.send_location.success.message" = "Sent a one shot location";
"url_handler.send_location.success.title" = "Sent location";
"url_handler.x_callback_url.error.eventNameMissing" = "eventName must be defined";
"url_handler.x_callback_url.error.general" = "A general error occurred";
"url_handler.x_callback_url.error.serviceMissing" = "service (e.g. homeassistant.turn_on) must be defined";
"url_handler.x_callback_url.error.templateMissing" = "A renderable template must be defined";
"url_label" = "URL";
"username_label" = "Username";
"watch.assist.button.recording.title" = "Recording...";
"watch.assist.button.send_request.title" = "Tap to send request";
"watch.assist.lack_config.error.title" = "Please configure Assist using iOS companion App";
"watch.config.assist.select_server" = "Server";
"watch.config.cache.error.message" = "Failed to load watch config from cache.";
"watch.config.error.message" = "Failed to load watch config, error: %@";
"watch.config.migration_error.failed_access_grdb" = "Failed to access database (GRDB), error: %@";
"watch.config.migration_error.failed_create_new_config" = "Failed to save initial watch config, error: %@";
"watch.config.migration_error.failed_migrate_actions" = "Failed to migrate actions to watch config, error: %@";
"watch.config.migration_error.failed_to_save" = "Failed to save new Watch config, error: %@";
"watch.configuration.add_item.title" = "Add item";
"watch.configuration.items.title" = "Items";
"watch.configuration.save.title" = "Save";
"watch.configuration.show_assist.title" = "Show Assist";
"watch.configurator.delete.button" = "Delete Complication";
"watch.configurator.delete.message" = "Are you sure you want to delete this Complication? This cannot be undone.";
"watch.configurator.delete.title" = "Delete Complication?";
"watch.configurator.list.description" = "Configure a new Complication using the Add button. Once saved, you can choose it on your Apple Watch or in the Watch app.";
"watch.configurator.list.manual_updates.footer" = "Automatic updates occur 4 times per hour. Manual updates can also be done using notifications.";
"watch.configurator.list.manual_updates.manually_update" = "Update Complications";
"watch.configurator.list.manual_updates.remaining" = "Remaining";
"watch.configurator.list.manual_updates.state.not_enabled" = "Not Enabled";
"watch.configurator.list.manual_updates.state.not_installed" = "Not Installed";
"watch.configurator.list.manual_updates.state.not_paired" = "No Device";
"watch.configurator.list.manual_updates.title" = "Manual Updates";
"watch.configurator.new.multiple_complication_info" = "Adding another Complication for the same type as an existing one requires watchOS 7 or newer.";
"watch.configurator.new.title" = "New Complication";
"watch.configurator.preview_error.not_number" = "Expected a number but got %1$@: '%2$@'";
"watch.configurator.preview_error.out_of_range" = "Expected a number between 0.0 and 1.0 but got %1$f";
"watch.configurator.rows.color.title" = "Color";
"watch.configurator.rows.column_2_alignment.options.leading" = "Leading";
"watch.configurator.rows.column_2_alignment.options.trailing" = "Trailing";
"watch.configurator.rows.column_2_alignment.title" = "Column 2 Alignment";
"watch.configurator.rows.display_name.title" = "Display Name";
"watch.configurator.rows.gauge.color.title" = "Color";
"watch.configurator.rows.gauge.gauge_type.options.closed" = "Closed";
"watch.configurator.rows.gauge.gauge_type.options.open" = "Open";
"watch.configurator.rows.gauge.gauge_type.title" = "Type";
"watch.configurator.rows.gauge.style.options.fill" = "Fill";
"watch.configurator.rows.gauge.style.options.ring" = "Ring";
"watch.configurator.rows.gauge.style.title" = "Style";
"watch.configurator.rows.gauge.title" = "Gauge";
"watch.configurator.rows.icon.choose.title" = "Choose an icon";
"watch.configurator.rows.icon.color.title" = "Color";
"watch.configurator.rows.is_public.title" = "Show When Locked";
"watch.configurator.rows.ring.color.title" = "Color";
"watch.configurator.rows.ring.ring_type.options.closed" = "Closed";
"watch.configurator.rows.ring.ring_type.options.open" = "Open";
"watch.configurator.rows.ring.ring_type.title" = "Type";
"watch.configurator.rows.ring.value.title" = "Fractional value";
"watch.configurator.rows.template.selector_title" = "Choose a template";
"watch.configurator.rows.template.title" = "Template";
"watch.configurator.sections.gauge.footer" = "The gauge to display in the complication.";
"watch.configurator.sections.gauge.header" = "Gauge";