-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathstrings.xml
More file actions
1172 lines (1084 loc) · 80.6 KB
/
strings.xml
File metadata and controls
1172 lines (1084 loc) · 80.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="MissingTranslation">
<!-- Code on the Go -->
<string name="copy" tools:override="true">Copy</string>
<string name="terminal_more">More…</string>
<string name="text_to_search">Text to find</string>
<string name="app_name" translatable="false">Code on the Go</string>
<string name="about_option_email">Email</string>
<string name="about_option_website">Website</string>
<string name="about_footer_alternate" translatable="false">Code on the Go v\u2022 %s</string>
<string name="about_footer">Code on the Go %1$s for %2$s</string>
<string name="about_subtitle">No computer? No Internet? No problem. Code apps anywhere.</string>
<string name="msg_get_package_failed">Failed to extract package name.</string>
<string name="msg_need_help">If you\'re facing issues while using Code on the Go or with building Android apps, you can join the Telegram Group and ask for help there.\n\nYou can also send suggestions on our email.</string>
<string name="download_codeonthego_message">Download Code on the Go from the official website to get the latest features and updates.</string>
<string name="download_codeonthego_url">https://appdevforall.org/codeonthego</string>
<string name="msg_invalid_url">Invalid URL provided.</string>
<string name="msg_no_browser_found">No browser found to handle the request.</string>
<string name="need_help">Need Help?</string>
<string name="ide_preferences">IDE preferences</string>
<string name="discussions_on_telegram">Discussions on Telegram</string>
<string name="official_tg_channel">Official Telegram channel</string>
<string name="msg_empty_view">No data</string>
<string name="title_terminal">Terminal</string>
<string name="reset">Reset</string>
<string name="app_logs">App Logs</string>
<string name="ide_logs">IDE Logs</string>
<string name="default_tooltip">General information about this feature.</string>
<string name="err_insufficient_storage_title">Insufficient Storage</string>
<string name="err_insufficient_storage_msg">%1$s requires at least %2$dGB of free space to run and extract the necessary tools.\n\nPlease free up space on your device and try again.</string>
<string name="action_close_app">Close %1$s</string>
<string name="action_free_up_space">Free Up Space</string>
<!-- Agent -->
<string name="agent_backend_selected">🤖 System: %1$s backend selected.</string>
<string name="agent_current_model">Current model: %1$s</string>
<string name="agent_no_model_selected_warning">⚠️ Warning: No model file selected.</string>
<string name="agent_local_model_not_loaded">Local model is not loaded. Open AI Settings, pick a model, and try again.</string>
<string name="agent_backend_not_ready">The AI backend is not ready. Please review your AI settings.</string>
<string name="agent_local_model_loaded_success">Local model loaded successfully!</string>
<string name="agent_local_model_loaded_failure">Error: Failed to load local model.</string>
<string name="agent_operation_cancelled_by_user">Operation cancelled by user.</string>
<string name="agent_planner_tool_fallback">The planner could not produce a valid tool invocation after multiple attempts. Provide a direct textual answer without calling any tools.</string>
<string name="agent_planner_reject_unexpected_tool">The previous plan was rejected because the model attempted to call a tool even though no tool calls were allowed at that time.</string>
<string name="agent_planner_reject_malformed_tool">The previous plan failed because the tool invocation was malformed.</string>
<string name="agent_planner_reject_invalid_tool">The previous plan was rejected due to an invalid tool invocation.</string>
<string name="agent_planner_tool_blocked_note"> Tool `%1$s` is now blocked until you can explain how to call it safely.</string>
<string name="agent_planner_retry_instruction">%1$s%2$s Before attempting another tool call, double-check the required parameters and confirm that calling a tool is necessary. If the request can be answered conceptually, respond with text instead of forcing a tool call.</string>
<string name="agent_planner_invalid_output_notice">Planner output was invalid. Asking it to correct the plan...</string>
<string name="agent_tool_call_missing_name">A function call without a name was emitted. Provide a valid tool name.</string>
<string name="agent_tool_call_unknown_tool">Unknown tool `%1$s` was requested. Use only the supported tools.</string>
<string name="agent_tool_call_blocked">Tool `%1$s` is temporarily blocked after a malformed invocation. Choose a different tool or respond with a textual answer.</string>
<string name="agent_tool_call_missing_args">Tool `%1$s` is missing required arguments: %2$s.</string>
<string name="agent_planner_invalid_tool_usage_header">The previous plan violated tool requirements:\n</string>
<string name="agent_planner_invalid_tool_usage_footer">Re-plan with valid tool arguments, or provide a textual response if tools are unnecessary.</string>
<string name="agent_planner_invalid_tool_usage_notice">Planner proposed invalid tool usage. Requesting a corrected plan...</string>
<string name="agent_approval_deny">Deny</string>
<string name="agent_approval_once">Approve Once</string>
<string name="agent_approval_session">Approve for Session</string>
<string name="agent_approval_title">Approve \'%1$s\'?</string>
<string name="agent_dialog_cancel">Cancel</string>
<string name="agent_dialog_run">Run</string>
<string name="agent_hint_boolean">true or false</string>
<string name="agent_hint_file_content">File content...</string>
<string name="agent_hint_limit">1000</string>
<string name="agent_hint_number">Enter a number</string>
<string name="agent_hint_offset">0</string>
<string name="agent_hint_param">Enter %1$s</string>
<string name="agent_hint_path_example">e.g., app/src/main/AndroidManifest.xml</string>
<string name="agent_hint_search_pattern">Search pattern...</string>
<string name="agent_images_selected">%1$d images selected.</string>
<string name="agent_required_fields_missing">Please fill in all required fields (marked with *).</string>
<string name="agent_select_tool_to_test">Select a tool to test</string>
<string name="agent_test_tool_title">Test Tool: %1$s</string>
<string name="agent_title_ellipsis_suffix">...</string>
<string name="agent_tokens_na">Tokens: N/A</string>
<string name="agent_tokens_percentage">Tokens: %1$d%%</string>
<string name="agent_tool_description_missing">No description</string>
<string name="agent_tool_no_params">Description: %1$s\n\nThis tool has no parameters.</string>
<string name="agent_tool_not_found">Tool not found: %1$s</string>
<string name="agent_run_tool_title">Run %1$s</string>
<!-- LSP, Diagnostics & Completions -->
<string name="get_started">Get started</string>
<string name="msg_cannot_perform_fix">Unable to perform quick fix</string>
<string name="msg_performing_actions">Performing code action…</string>
<string name="msg_api_info_since">Since API %d</string>
<string name="msg_api_info_removed">Removed in API %d</string>
<string name="msg_api_info_deprecated">Deprecated in API %d</string>
<string name="msg_finding_references">Finding references…</string>
<string name="msg_finding_definition">Finding definition…</string>
<string name="msg_no_definition">Definition not found</string>
<!-- Build Tools Installation -->
<string name="msg_no_references">No references found</string>
<string name="view_diags">Diagnostics</string>
<string name="title_installation_failed">Installation failed</string>
<string name="error_installation_failed">Failed to install assets</string>
<string name="verifying_installation">Verifying installation…</string>
<string name="asset_verification_failed">Asset verification failed: %1$s — %2$s. Not enough space or corrupted files. Try again.</string>
<string name="err_asset_entry_not_found">Entry \'%1$s\' not found in assets zip file</string>
<string name="err_missing_or_corrupt_assets">Missing installation files. %1$s installation might be corrupt or incomplete.</string>
<string name="msg_picked_isnt_dir">The picked file is not a directory.</string>
<string name="please_wait">Please wait for a moment.</string>
<string name="not_enough_storage">Not enough storage available for installation. An additional %1$.1fGB is required on the internal storage partition. You currently have %2$.1fGB available.</string>
<string name="storage_not_accessible">Storage is not accessible. Please ensure the device is unlocked and try again.</string>
<string name="terminal_installation_failed_low_storage">Terminal setup failed. Storage space is insufficient, or files were removed during installation. Please free up some space and try again.</string>
<string name="terminal_installation_failed_secondary_user">Terminal installation is only supported for the primary user.</string>
<!-- Project Builder -->
<string name="title_unsupported_device">This device is not supported</string>
<string name="msg_unsupported_device">You are using %1$s variant of Code On The Go on a %2$s-only device. This configuration is not supported. Please install the %2$s variant of Code On The Go.</string>
<string name="title_clear_output">Clear output</string>
<string name="build_output">Build Output</string>
<string name="quick_run_debug">Quick run</string>
<string name="msg_sync_needed">Gradle files have changed. Sync the project to update dependencies and settings.</string>
<string name="preparing">Preparing</string>
<string name="preparing_first">Initializing a project may take a few moments.</string>
<string name="msg_installing_gradlew">Gradle wrapper is not available.\nInstalling a default one. Gradle v7.4 will be downloaded if necessary.</string>
<string name="run">Run</string>
<string name="gradle" translatable="false">Gradle</string>
<string name="action_start_debugger">Debug</string>
<!-- Project -->
<string name="title_first_build">Setting up your project</string>
<string name="msg_first_build">Code on the Go is initializing your project. Please be patient!\n\nWhen setup is finished, \"Project initialized\" will be displayed at the bottom of the screen.</string>
<string name="create_project">Create a new project</string>
<string name="minimum_sdk">Minimum SDK</string>
<string name="new_project">New project</string>
<string name="package_name">Package name</string>
<string name="project_app_name">App name</string>
<string name="msg_create_new_project_greeting">Read the Quick Start guide</string>
<string name="title_confirm_open_project">Open last project?</string>
<string name="msg_confirm_open_project">Do you want to open the last opened project? The project was:\n%s</string>
<string name="title_close_project">Close this project</string>
<string name="msg_opened_project_does_not_exist">Last opened project doesn\'t exist.</string>
<string name="msg_create_new_project">Create new project</string>
<string name="msg_open_existing_project">Open a saved project</string>
<string name="msg_delete_existing_project">Delete a saved project</string>
<string name="download_git_project">Download a Git project</string>
<string name="msg_delete_existing_project_failed">Failed to delete existing project.</string>
<string name="title_confirm_project_close">Close project</string>
<string name="cancel_project_text">Cancel</string>
<string name="close_without_saving">Close without saving files</string>
<string name="save_and_close">Save files and close project</string>
<string name="search_projects_hint">Search projects by name…</string>
<string name="sort_projects_label">Sort projects</string>
<string name="reset_sorting">Reset</string>
<string name="apply_sorting">Sort</string>
<string name="sort_by_hint">Sort by</string>
<string name="sort_by_name">Name</string>
<string name="sort_by_created">Created</string>
<string name="sort_by_modified">Edited</string>
<string-array name="sort_options">
<item>@string/sort_by_name</item>
<item>@string/sort_by_created</item>
<item>@string/sort_by_modified</item>
</string-array>
<string name="project_info">Info</string>
<string name="project_info_title">Basic project info</string>
<string name="project_info_general_title">General</string>
<string name="project_info_structure_title">Structure</string>
<string name="project_info_build_title">Build</string>
<string name="project_info_name">Project name</string>
<string name="project_info_path">Project path</string>
<string name="project_info_template">Base template</string>
<string name="project_info_size">Project size</string>
<string name="project_info_files_count">Number of files</string>
<string name="project_info_gradle_v">Gradle version</string>
<string name="project_info_kotlin_v">Kotlin version</string>
<string name="project_info_java_v">Java version</string>
<!-- Templates -->
<string name="msg_confirm_project_close">When you close the project, all build tasks will be stopped and unsaved changes to your project file may be lost. Do you want to save the files before you close the project?</string>
<string name="template_basic">Basic Activity</string>
<string name="template_empty">Empty Activity</string>
<string name="template_navigation_drawer">Navigation Drawer Activity</string>
<string name="template_compose" translatable="false">Compose Activity</string>
<string name="template_navigation_tabs">Bottom Nav Activity</string>
<string name="template_tabs">Tabbed Activity</string>
<string name="template_no_activity">No Activity</string>
<string name="template_no_AndroidX">Legacy Project (No AndroidX)</string>
<string name="template_plugin">Code on the Go Plugin</string>
<string name="template_ndk">NDK Activity</string>
<!-- Plugin Template Wizard -->
<string name="wizard_plugin_name">Plugin Name</string>
<string name="wizard_plugin_id">Plugin ID (Package Name)</string>
<string name="wizard_plugin_description">Plugin description</string>
<string name="wizard_plugin_author">Author Name</string>
<string name="wizard_include_sample_code">Include sample code</string>
<string name="wizard_plugin_permissions">Permissions</string>
<string name="wizard_plugin_extensions">Extensions</string>
<string name="wizard_plugin_options">Options</string>
<!-- Plugin Permissions -->
<string name="perm_filesystem_read">Filesystem Read</string>
<string name="perm_filesystem_write">Filesystem Write</string>
<string name="perm_network_access">Network access</string>
<string name="perm_system_commands">System commands</string>
<string name="perm_ide_settings">IDE settings</string>
<string name="perm_project_structure">Project structure</string>
<!-- Plugin Extensions -->
<string name="ext_ui">UI extension</string>
<string name="ext_editor_tab">Editor tab extension</string>
<string name="ext_documentation">Documentation extension</string>
<string name="ext_editor">Editor extension</string>
<string name="ext_project">Project extension</string>
<string name="unknown">Unknown</string>
<!-- Files -->
<string name="save">Save</string>
<string name="menu_find">Find</string>
<string name="menu_find_file">Find in file</string>
<string name="menu_find_project">Find in project</string>
<string name="msg_search_modules">Search in modules</string>
<string name="msg_no_modules">No modules found in project</string>
<string name="hint_find_project_filter">Filter file extensions (optional)</string>
<string name="msg_find_project_filter">Separated by \'|\'</string>
<string name="msg_empty_search_query">Please enter text</string>
<string name="msg_select_search_modules">Select modules to search</string>
<string name="msg_searching_project">Searching the project…</string>
<string name="view_search_results">Search Results</string>
<string name="project_created_successfully">Project created successfully!</string>
<string name="project_creation_failed">Failed to create project</string>
<string name="msg_folder_creation_failed">Failed to create folder</string>
<string name="msg_file_creation_failed">Failed to create file</string>
<string name="msg_layout_file_creation_failed">Failed to create layout file</string>
<string name="msg_folder_created">Folder created successfully</string>
<string name="msg_file_created">File created successfully</string>
<string name="msg_folder_exists">Folder already exists</string>
<string name="msg_file_exists">File already exists</string>
<string name="msg_layout_file_exists">Layout file already exists</string>
<string name="msg_invalid_name">Invalid name</string>
<string name="text_create">Create</string>
<string name="msg_can_contain_slashes">If the file path includes a folder separator (\'/\'), any missing parent folders will be created automatically.</string>
<string name="folder_name">Folder name</string>
<string name="file_name">File name</string>
<string name="new_name">New name</string>
<string name="new_file">New file</string>
<string name="create_auto_layout">Create layout file</string>
<string name="new_java_class">New Java class</string>
<string name="new_xml_resource">New XML resource</string>
<string name="new_folder">New folder</string>
<string name="title_confirm_delete">Confirm delete</string>
<string name="msg_confirm_delete">Are you sure you want to delete: \n%s?</string>
<string name="copied">Copied successfully!</string>
<string name="msg_rename_file">Enter a new name for the file/folder.</string>
<string name="renamed">Renamed successfully</string>
<string name="rename_failed">Unable to rename file</string>
<string name="deleted">Deleted successfully</string>
<string name="delete_failed">Unable to delete file</string>
<string name="copy_path">Copy path</string>
<string name="rename_file">Rename</string>
<string name="delete_file">Delete</string>
<string name="action_closeAll">Close all</string>
<string name="action_closeOthers">Close others</string>
<string name="action_closeThis">Close this</string>
<string name="all_saved">All files saved</string>
<string name="save_failed">Failed to save files</string>
<string name="msg_newfile_dest">Destination: %s/</string>
<string name="restype_drawable">Drawable</string>
<string name="restype_layout">Layout</string>
<string name="restype_menu">Menu</string>
<string name="restype_other">Other</string>
<string name="classtype_class">Class</string>
<string name="classtype_activity">Activity</string>
<string name="title_interface">Interface</string>
<string name="classtype_enum">Enum</string>
<string name="lang_java">Java</string>
<string name="lang_kotlin">Kotlin</string>
<string name="new_kotlin_class">New Kotlin class</string>
<string name="msg_failed_list_files">Failed to list project files</string>
<!-- Code Editor -->
<string name="open_with">Open with…</string>
<string name="undo">Undo</string>
<string name="redo">Redo</string>
<!-- Preferences -->
<string name="title_change_text_size">Editor font size</string>
<string name="idepref_about_title">About Code on the Go</string>
<string name="idepref_build_clearCache_title">Clear Gradle caches</string>
<string name="idepref_build_clearCache_summary">Clear Gradle caches directory. This will delete all dependencies downloaded by Gradle. Required files will be downloaded again in next build.</string>
<string name="idepref_build_customgradlecommands_title">Additional Gradle flags</string>
<string name="idepref_build_customgradlecommands_summary">Choose additional Gradle flags to execute with every task.</string>
<string name="idepref_editor_fontsize_title">Font size</string>
<string name="idepref_editor_fontsize_summary">Set the default font size (measured in sp).</string>
<string name="idepref_editor_paintingflags_title">Show non-printing characters</string>
<string name="idepref_editor_paintingflags_summary">Choose which non-printing characters (like tabs, spaces, and line breaks) are displayed.</string>
<string name="idepref_editor_word_wrap_title">Word wrap</string>
<string name="idepref_editor_word_wrap_summary">Break long lines of text or code into multiple lines so they fit in the visible window.</string>
<string name="idepref_editor_use_magnifier_title">Enable magnifier</string>
<string name="idepref_editor_use_magnifier_summary">Long-press and hold to zoom in on the area around the cursor.</string>
<string name="idepref_editor_title">Editor</string>
<string name="idepref_build_title">Build & Run</string>
<string name="title_open_projects">Open last project</string>
<string name="msg_open_projects">When enabled, restarting Code on the Go will automatically open the last project that was open.</string>
<string name="title_confirm_project_open">Confirm project opening</string>
<string name="msg_confirm_project_open">When enabled, Code on the Go asks for confirmation before opening the last project.</string>
<string name="msg_error_opening_project">Error opening project.</string>
<string name="title_default_shell">Use system shell in terminal</string>
<string name="msg_default_shell">If checked, \'/system/bin/sh\' will be used in terminal.</string>
<string name="title_general">General</string>
<string name="title_tab_size">Tab size</string>
<string name="msg_tab_size">Set the number of spaces that the tab character indents.</string>
<string name="msg_preferences">Preferences</string>
<string name="pref_changelog">Changelog</string>
<string name="msg_editor_font_size">Please choose default font size of editor :</string>
<string name="msg_clear_cache">This will delete caches directory created by Gradle. If you delete it, the next build may take a bit longer than normal as Gradle will download required files again.\n\nAre you sure you want to delete caches?</string>
<!-- Error Messages used while Logging -->
<!-- Layout preview and designer -->
<string name="title_preview_layout">Preview Layout</string>
<string name="title_preview_compose">Preview Compose</string>
<string name="title_viewaction_delete">Delete</string>
<string name="msg_yesno_def_title">Please confirm</string>
<string name="msg_yesno_def_message">Are you sure?</string>
<string name="msg_empty_ui_layout">No views have been added. Click to add a view.</string>
<string name="msg_generate_xml_failed">Failed to generate XML code</string>
<string name="xml_validation_error_title">Layout XML error</string>
<string name="xml_validation_error_invalid_file">Selected file is not a valid Android XML layout.</string>
<string name="xml_error_parse">We could not read this layout XML. %1$s</string>
<string name="xml_error_io">We could not open this layout XML. %1$s</string>
<string name="xml_error_generic">We could not open this layout. %1$s</string>
<string name="xml_error_single_child_container">%1$s can have only one direct child. Wrap your views in a container like LinearLayout or ConstraintLayout.</string>
<string name="xml_error_add_child_failed">We could not place %1$s inside %2$s. Check the view hierarchy.</string>
<string name="xml_validation_error_generic">We could not open this layout. Fix the XML and try again.</string>
<string name="title_generating_xml">Generating XML code</string>
<string name="msg_swipe_up">Swipe up to display logs, diagnostics, debug info, and more</string>
<string name="preview_render_error_title">Preview Unavailable</string>
<string name="preview_render_error_message">Could not create a root view. The XML is empty or missing a valid top-level element.</string>
<!-- Crash Screen -->
<string name="msg_ide_crashed">Code on the Go crashed</string>
<string name="msg_crash_info">An internal error has occurred.\n\nDetails to
help us fix the problem have been saved and will be sent securely the next time your
device is online.\n\nWhen you press OK, the app will close and any unsaved changes may
be lost. Please restart the app to continue.\n\nIf the error happens again, try restarting
your device. If the problem persists, please %1$s</string>
<string name="contact_support_team">contact our support team.</string>
<string name="crash_email_subject">App Crash Report</string>
<string name="crash_email_body">Build Number - %1$s\n\nPlease describe what you were doing when the app crashed:\n\n</string>
<string name="msg_close_crash_page">Click on the button below to close this page.</string>
<string name="msg_ok">OK</string>
<string name="title_translations">Translations</string>
<string name="action_expand_selection">Expand selection</string>
<string name="idepref_java_matchLower_title">Match completions in lower case</string>
<string name="title_common">Common</string>
<string name="idepref_editor_category_common" translatable="false">@string/title_common</string>
<string name="idepref_editor_category_java" translatable="false">Java</string>
<string name="title_files_unsaved">Unsaved files</string>
<string name="msg_files_unsaved">Some files are not saved. Would you like to save them before closing? Unsaved files are: \n%s</string>
<string name="idepref_java_matchLower_summary">When enabled, code completion matches class names and members even when typed in lowercase (case-insensitive matching).</string>
<string name="idepref_editor_ligatures_title">Font ligatures</string>
<string name="idepref_editor_ligatures_summary">Enable/disable font ligatures</string>
<string name="yes">Yes</string>
<string name="no">No</string>
<string name="msg_viewaction_add_attr">Add attribute</string>
<string name="msg_file_tree">File tree</string>
<string name="hint_attr_value">Attribute value</string>
<string name="title_format_code">Format code</string>
<string name="title_show_tooltip">Help</string>
<string name="show_tooltip_show_more">Show more</string>
<string name="faq_activity_title">More information</string>
<string name="idepref_java_useGoogleStyle_title">Use Google Java Style code formatting</string>
<string name="idepref_java_useGoogleStyle_summary">Format Java code using Google’s conventions.</string>
<string name="idepref_visiblePassword_title">Hide keyboard suggestions</string>
<string name="idepref_visiblePassword_summary">Disable text predictions and auto-correction for the on-screen keyboard.</string>
<string name="previous">Previous</string>
<string name="title_gradle_service_notification_ticker">Gradle build service started</string>
<string name="title_gradle_service_notification">Gradle build service</string>
<string name="title_cancel_build">Cancel build</string>
<string name="msg_initializing_project">Initializing project</string>
<string name="msg_project_initialized">Project initialized</string>
<string name="msg_project_initialization_failed_with_name">Project initialization failed for %1$s</string>
<string name="msg_project_initialization_failed">Project initialization failed</string>
<string name="msg_project_not_initialized">Project is not initialized</string>
<string name="msg_replacement">Replacement</string>
<string name="title_sync_project">Sync project</string>
<string name="wizard_save_location">Save location</string>
<string name="wizard_language">Project language</string>
<string name="next">Next</string>
<string name="exit">Exit</string>
<string name="idepref_title_customGradleInstallation">Custom Gradle installation</string>
<string name="idepref_msg_customGradleInstallation">Specify a custom Gradle installation to use for build. This OVERRIDES the version specified in gradle-wrapper.properties.</string>
<string name="msg_gradle_installation_path">Gradle installation path</string>
<string name="msg_gradle_installation_input_help">Leave empty to use Gradle wrapper.</string>
<string name="build_status_idle">No builds in progress</string>
<string name="build_status_in_progress">Build in progress…</string>
<string name="build_status_failed">Build failed. See the build output panel for more details.</string>
<string name="build_status_sucess">Build successful</string>
<string name="msg_output_text_extraction_failed">Failed to get text from editor</string>
<string name="err_invalid_data_by_intent">Intent returned invalid data</string>
<string name="msg_select_from_primary_storage">Select a directory from primary storage</string>
<string name="err_authority_not_allowed">Authority \'%s\' not allowed</string>
<string name="idepref_useIcu_title">Use spaces as word boundaries</string>
<string name="idepref_useIcu_summary">When enabled, the editor considers blank space to be the boundary between words.</string>
<string name="msg_drawer_for_files">To view the file tree and project options, swipe from left to right or tap the menu icon at the upper left.</string>
<string name="msg_swipe_for_output">To view logs, diagnostics, and more, swipe up or tap the bottom of the page.</string>
<string name="msg_help_hint">To view help for the Code on the Go app, long-press anything to view a tooltip. In the editor, select and long-press text to show the editing toolbar and help button.</string>
<string name="msg_long_press_help">To view help in Code on the Go, long-press anything to view a tooltip. In the editor, select and long-press text to show the editing toolbar and help button.</string>
<string name="idepref_editor_useSoftTabs_title">Use soft tab</string>
<string name="idepref_editor_useSoftTabs_summary">Choose whether the tab key inserts spaces instead of the tab character.</string>
<string name="btn_donate">Donate</string>
<string name="btn_docs">Documentation</string>
<string name="btn_close">Close</string>
<string name="msg_ignore_case">Ignore case</string>
<string name="msg_use_regex">Use regex</string>
<string name="idepref_buildnrun_summary">Configure the Gradle build</string>
<string name="configure">Configure</string>
<string name="about">About</string>
<string name="idepref_channel_summary">Subscribe for latest updates.</string>
<string name="idepref_group_summary">Discuss features, bugs, and improvements here.</string>
<string name="idepref_changelog_summary">What\'s new in this version?</string>
<string name="idepref_about_summary">More about Code on the Go</string>
<string name="idepref_general_summary">General IDE configuration</string>
<string name="idepref_editor_summary">Configure the editor</string>
<string name="xml" translatable="false">XML</string>
<string name="idepref_xml_trimFinalNewLine_title">Trim final new line</string>
<string name="idepref_xml_insertFinalNewLine_title">Insert final new line</string>
<string name="idepref_xml_trimFinalNewLine_summary">Remove empty new line characters at the end of a file.</string>
<string name="idepref_xml_insertFinalNewLine_summary">Insert a single new line character at the end of a file.</string>
<string name="idepref_xml_splitAttributes_title">Split attributes</string>
<string name="idepref_xml_splitAttributes_summary">Place each attribute on a new line.</string>
<string name="idepref_xml_joinCDataLines_title">Join CDATA lines</string>
<string name="idepref_xml_joinCDataLines_summary">Combine multiple CDATA blocks into a single block.</string>
<string name="idepref_xml_joinComment_title">Join comment lines</string>
<string name="idepref_xml_joinComment_summary">Combine multiple single-line XML comments into a single line.</string>
<string name="idepref_xml_joinContent_title">Join content lines</string>
<string name="idepref_xml_joinContent_summary">Combine multiple lines of text in a single XML element into a single line.</string>
<string name="idepref_xml_spaceBeforeEmptyClose_title">Space before empty close tag</string>
<string name="idepref_xml_spaceBeforeEmptyClose_summary">Add a single space before every closing tag.</string>
<string name="idepref_xml_preserveEmptyContent_title">Preserve empty content</string>
<string name="idepref_xml_preserveEmptyContent_summary">Preserve tags that appear on otherwise-empty lines instead of collapsing them.</string>
<string name="idepref_xml_preserveAttrLineBreaks_title">Preserve attribute line breaks</string>
<string name="idepref_xml_preserveAttrLineBreaks_summary">Keep attributes on separate lines instead of collapsing them.</string>
<string name="idepref_xml_closingBrackNewLine_title">Closing bracket on new line</string>
<string name="idepref_xml_closingBrackNewLine_summary">Place closing brackets and self-closing tags on a new line after the last attribute.</string>
<string name="idepref_xml_trimTrailingWs_title">Trim trailing whitespace</string>
<string name="idepref_xml_trimTrailingWs_summary">Remove extra whitespace at the end of lines.</string>
<string name="idepref_maxLineWidth_title">Maximum line width</string>
<string name="idepref_maxLineWidth_summary">Set the maximum number of characters on a single line before the editor automatically wraps or breaks the line.</string>
<string name="idepref_splitAttrIndentSize_title">Split attributes indent size</string>
<string name="idepref_splitAttrIndentSize_summary">Set the number of spaces to automatically indent attributes that are split on separate lines.</string>
<string name="idepref_preservedNewLines_title">Preserve new lines</string>
<string name="idepref_preservedNewLines_summary">Set the maximum number of blank new lines that are kept when the file is reformatted or saved.</string>
<string name="idepref_emptyElements_title">Empty elements behavior</string>
<string name="idepref_emptyElements_summary">Choose how empty XML elements are formatted.</string>
<string name="xml_formatting_options">XML formatting options</string>
<string name="xml_formatting_options_summary">Set formatting preferences for XML files.</string>
<string name="idepref_customFont_title">Use custom font</string>
<string name="idepref_customFont_summary">If enabled, the file at \"/data/data/com.itsaky.androidide/files/home/.androidide/ui/font.ttf\" will be used as Editor font.</string>
<string name="msg_installing_apk">Installing APK…</string>
<string name="msg_action_open_application">Your app is installed. Do you want to launch the app?</string>
<string name="msg_action_open_title_application">App installed</string>
<string name="title_gradle_service_notification_channel">Code on the Go Gradle build service</string>
<string name="msg_hex_color_code">Hex color code</string>
<string name="msg_unsupported_color_format">Unsupported color format: %s</string>
<string name="msg_color_picker_pick">Pick</string>
<string name="msg_chmod_exec">Setting executable permissions…</string>
<string name="msg_linking">Linking %1$s to %2$s</string>
<string name="msg_extracting_hooks">Extracting hook libraries…</string>
<string name="msg_empty_package">Package name is empty</string>
<string name="msg_package_is_not_valid">Package name is not valid</string>
<string name="msg_package_is_to_long">Package name is too long</string>
<string name="msg_package_not_valid_char_1">The character \'_\' cannot be the first character in a package segment</string>
<string name="msg_package_not_use_digit_first">A digit cannot be the first character in a package segment</string>
<string name="msg_package_not_valid_char_2">The character "%1$s" is not allowed in Android application package names.</string>
<string name="msg_package_mus_have_dot">The package must have at least one \'.\' separator.</string>
<string name="action_import_classes">Import class(es)</string>
<string name="action_generate_setters_getters">Generate setters/getters</string>
<string name="action_add_throws">Add \'throws\'</string>
<string name="action_comment_line">Comment line</string>
<string name="action_create_missing_method">Create missing method</string>
<string name="action_convert_to_block">Convert to block</string>
<string name="action_generate_constructor">Generate constructor</string>
<string name="action_implement_abstract_methods">Implement abstract method(s)</string>
<string name="action_remove_class">Remove class</string>
<string name="action_remove_method">Remove method</string>
<string name="action_remove_unused_throws">Remove unused throws</string>
<string name="action_suppress_unchecked_warning">Suppress \'unchecked\' warning</string>
<string name="action_uncomment_line">Uncomment line</string>
<string name="action_convert_to_statement">Convert to statement</string>
<string name="msg_select_fields">Select fields</string>
<string name="msg_no_fields_selected">No fields selected</string>
<string name="msg_no_fields_found">No fields found</string>
<string name="action_override_superclass_methods">Override superclass methods</string>
<string name="msg_no_methods_selected">No methods selected</string>
<string name="msg_cannot_override_methods">Unable to override methods</string>
<string name="msg_cannot_generate_setters_getters">Unable to generate setters and getters</string>
<string name="msg_select_methods">Select methods to override</string>
<string name="msg_no_overridable_methods">Unable to find any overridable method</string>
<string name="action_goto_definition">Go to definition</string>
<string name="action_find_references">Find references</string>
<string name="action_generate_toString">Generate toString()</string>
<string name="action_remove_unused_imports">Remove unused imports</string>
<string name="action_organize_imports">Organize imports</string>
<string name="msg_cannot_generate_toString">Unable to generate toString() implementation</string>
<string name="msg_toString_overridden">toString() is already overridden</string>
<string name="action_generate_missing_constructor">Generate missing constructor</string>
<string name="msg_cannot_generate_constructor">Unable to generate constructor</string>
<string name="msg_constructor_available">A constructor with the same parameter types is already available</string>
<string name="replace">Replace</string>
<string name="replaceAll">Replace all</string>
<string name="title_run_tasks">Run tasks</string>
<string name="hint_search_tasks">Search tasks…</string>
<string name="msg_err_select_tasks">Please select tasks to run</string>
<string name="title_confirmation">Confirmation</string>
<string name="msg_tasks_to_run">The following tasks will be run in order. Click the \'Run\' button again to confirm.\n\n%1$s</string>
<string name="msg_loading_tasks">Loading tasks…</string>
<string name="ui_category_widgets" translatable="false">Widgets</string>
<string name="ui_category_layouts" translatable="false">Layouts</string>
<string name="widget_view" translatable="false">View</string>
<string name="widget_textview" translatable="false">TextView</string>
<string name="widget_button" translatable="false">Button</string>
<string name="widget_checkbox" translatable="false">CheckBox</string>
<string name="widget_checked_textview" translatable="false">CheckedTextView</string>
<string name="widget_edittext" translatable="false">EditText</string>
<string name="widget_image_button" translatable="false">ImageButton</string>
<string name="widget_image_view" translatable="false">ImageView</string>
<string name="widget_progressbar" translatable="false">ProgressBar</string>
<string name="widget_radio_button" translatable="false">RadioButton</string>
<string name="widget_radio_group" translatable="false">RadioGroup</string>
<string name="widget_seekbar" translatable="false">SeekBar</string>
<string name="widget_spinner" translatable="false">Spinner</string>
<string name="widget_auto_complete_textview" translatable="false">AutoCompleteTextView</string>
<string name="widget_multi_auto_complete_textview" translatable="false">MultiAutoCompleteTextView</string>
<string name="widget_listview" translatable="false">ListView</string>
<string name="widget_surfaceview" translatable="false">SurfaceView</string>
<string name="widget_switch" translatable="false">Switch</string>
<string name="widget_textureview" translatable="false">TextureView</string>
<string name="widget_togglebutton" translatable="false">ToggleButton</string>
<string name="widget_webview" translatable="false">WebView</string>
<string name="widget_frame_layout" translatable="false">FrameLayout</string>
<string name="widget_grid_layout" translatable="false">GridLayout</string>
<string name="widget_linear_layout_horz" translatable="false">LinearLayout (H)</string>
<string name="widget_linear_layout_vert" translatable="false">LinearLayout (V)</string>
<string name="widget_relative_layout" translatable="false">RelativeLayout</string>
<string name="widget_scrollview" translatable="false">ScrollView</string>
<string name="widget_horizontal_scrollview" translatable="false">HorizontalScrollView</string>
<string name="widget_text_clock" translatable="false">TextClock</string>
<string name="widget_digital_clock" translatable="false">DigitalClock</string>
<string name="widget_calendar_view" translatable="false">CalendarView</string>
<string name="widget_space" translatable="false">Space</string>
<string name="widget_number_picker" translatable="false">NumberPicker</string>
<string name="widget_chronometer" translatable="false">Chronometer</string>
<string name="widget_rating_bar" translatable="false">RatingBar</string>
<string name="widget_quick_contact_badge" translatable="false">QuickContactBadge</string>
<string name="widget_videoview" translatable="false">VideoView</string>
<string name="widget_analog_clock" translatable="false">AnalogClock</string>
<string name="widget_grid_view" translatable="false">GridView</string>
<string name="widget_viewanimator" translatable="false">ViewAnimator</string>
<string name="widget_viewswitcher" translatable="false">ViewSwitcher</string>
<string name="widget_textswitcher" translatable="false">TextSwitcher</string>
<string name="widget_imageswitcher" translatable="false">ImageSwitcher</string>
<string name="widget_viewflipper" translatable="false">ViewFlipper</string>
<string name="msg_select_attr">Select an attribute from the below list</string>
<string name="action_show_hierarchy">Show layout hierarchy</string>
<string name="idepref_editor_colorScheme">Color Scheme</string>
<string name="idepref_editor_colorScheme_summary">Choose color scheme to use in editor</string>
<string name="idepref_general_uiMode">UI mode</string>
<string name="idepref_general_uiMode_summary">Choose whether to use light mode, dark mode, or the current system settings.</string>
<string name="uiMode_light">Light</string>
<string name="uiMode_dark">Dark</string>
<string name="uiMode_system">Follow system</string>
<string name="idepref_general_themeSelector_title">Theme</string>
<string name="idepref_general_themeSelector_summary">Select a theme for Code on the Go (requires restart).</string>
<string name="idepref_general_projectConfig">Project configuration</string>
<string name="msg_app_launch_failed">You must build and install the app before you can launch it.</string>
<string name="idepref_java_diagnosticEnabled_title">Diagnostics enabled</string>
<string name="idepref_java_diagnosticsEnabled_summary">(EXPERIMENTAL) Whether the Java source files should be analyzed for errors or not.</string>
<string name="title_reload_color_schemes">Reload color schemes</string>
<string name="msg_dir_picker_failed">Failed to start directory picker : %1$s</string>
<string name="msg_tooling_server_unavailable">Tooling API server is unavailable. Check build output and IDE logs for errors.</string>
<string name="idepref_deleteEmptyLines_title">Delete empty lines on backspace</string>
<string name="idepref_deleteEmptyLines_summary">If a line contains no visible text characters, pressing backspace removes the entire line.</string>
<string name="idepref_deleteTabs_title">Smart backspace indent</string>
<string name="idepref_deleteTabs_summary">Remove a full indent level instead of just one character when you press backspace.</string>
<!-- GitHub -->
<string name="title_warning">Warning</string>
<string name="title_github" translatable="false">GitHub</string>
<string name="choose_different_location">Choose a different location</string>
<string name="new_directory_name">New directory name</string>
<string name="error">Error</string>
<string name="error_deleting_directory">Error while deleting the directory: %s</string>
<string name="deleting_directory">Deleting directory</string>
<string name="btn_sync">Sync</string>
<string name="btn_ignore_changes">Ignore these changes</string>
<string name="title_fix_imports">Fix imports</string>
<string name="msg_no_unresolved_classes">No unresolved class names found</string>
<string name="title_class_chooser">Which %1$s?</string>
<string name="permlab_bind_logger_service">bind to log service</string>
<string name="permdesc_bind_logger_service">Allows this app to bind to Code on the Go\'s logging service. This permission is needed for Code on the Go to read this app\'s logs.</string>
<string name="wizard_module_name">Module name</string>
<string name="wizard_module_type">Module type</string>
<string name="msg_invalid_module_name">Invalid Gradle module name</string>
<string name="msg_value_empty">Value is empty</string>
<string name="msg_file_not_exist">File does not exist</string>
<string name="msg_path_must_be_file">Must be path to a file</string>
<string name="msg_classname_with_keywords">Class name contains keywords</string>
<string name="msg_path_must_be_dir">Must be path to a directory</string>
<string name="msg_invalid_layout_name">Invalid layout file name</string>
<string name="msg_invalid_project_details">Invalid project details</string>
<string name="msg_use_kts">Use Kotlin Script (.kts) for Gradle build files</string>
<string name="title_privacy">Privacy</string>
<string name="privacy_disclosure_title">Privacy & analytics</string>
<string name="privacy_disclosure_message">Code on the Go uses Firebase Analytics and Sentry to help us improve the app.\n\nFirebase Analytics collects anonymous usage data to help us understand how the app is used. \n\nSentry helps us track and fix errors.\n\nNo personal information is collected or shared. All data is processed in accordance with our privacy policy.</string>
<string name="privacy_disclosure_accept">I understand</string>
<string name="privacy_disclosure_learn_more">Learn more</string>
<string name="title_unique_id">Unique ID</string>
<string name="title_device">Device</string>
<string name="title_app_version">App version</string>
<string name="title_country">Country</string>
<string name="title_cpu_arch">CPU Arch</string>
<string name="title_preview_data">Preview data</string>
<string name="title_android_version">Android version</string>
<string name="btn_opt_in">Opt-in</string>
<string name="title_developer_options">Developer Options</string>
<string name="idepref_devOptions_summary">Experimental/debugging options for Code on the Go</string>
<string name="idepref_group_debugging">Debugging</string>
<string name="idepref_devOptions_dumpLogs_title">Dump logs</string>
<string name="idepref_devOptions_dumpLogs_summary">Dump Code on the Go logs to $HOME/.androidide/logs</string>
<string name="msg_emptyview_applogs">Run the debug variant of your application to view its logs here.</string>
<string name="msg_logsender_disabled">LogSender is disabled. You can enable it in preferences.</string>
<string name="msg_emptyview_idelogs">Logs from the IDE are shown here.</string>
<string name="msg_emptyview_diagnostics">Open a file to show its diagnostic results</string>
<string name="msg_emptyview_buildoutput">"Build the application or run a task to see its build output here. "</string>
<string name="msg_codeaction_failed">Failed to perform code action</string>
<string name="idepref_devOptions_enableLogsender_title">Enable LogSender</string>
<string name="idepref_devOptions_enableLogsender_summary">When disabled, logs from applications won\'t be shown in Code on the Go</string>
<string name="title_build_variants">Build variants</string>
<string name="title_agent">Agent</string>
<string name="build_variants_apply">Apply</string>
<string name="build_variants_cancel">Cancel</string>
<string name="msg_build_variants_fetch_failed">Failed to fetch build variants</string>
<string name="title_choose_application">Choose application</string>
<string name="err_selected_variant_not_found">Selected build variant not found</string>
<string name="title_disconnect_log_senders">Disconnect log senders</string>
<string name="title_begin_long_select">Begin long select</string>
<string name="idepref_editor_stickScroll_title">Sticky scroll</string>
<string name="idepref_editor_stickyScroll_summary">Keep the current scope header pinned at the top of the editor while you scroll.</string>
<string name="idepref_launchAppAfterInstall_title">Launch app after installation</string>
<string name="idepref_launchAppAfterInstall_summary">If enabled, the IDE will (without confirmation) launch the application right after it is installed.</string>
<string name="title_run_options">Run options</string>
<string name="err_cannot_determine_package">Cannot run application. Unable to determine package name.</string>
<string name="msg_launch_failure_no_app_module">Cannot run application. No application modules found in project.</string>
<string name="title_launch_app">Launch app</string>
<string name="title_experiment_flavor">Experimental</string>
<string name="msg_experimental_flavor">You are using %1$s variant of Code On The Go on a %2$s device. This configuration may work, but it\'ll result in reduced performance and possible security vulnerabilities. Please avoid using this configuration whenever possible.</string>
<string name="idepref_editor_pinLineNumbers_title">Pin line numbers</string>
<string name="idepref_editor_pinLineNumbers_summary">Locks line numbers in view so they stay visible when scrolling horizontally.</string>
<string name="theme_blue_wave">Blue Wave</string>
<string name="theme_sunny_glow">Sunny Glow</string>
<string name="theme_material_you">Material You</string>
<string name="idepref_general_localeSelector_title">Language</string>
<string name="idepref_general_localeSelector_summary">Choose the language for Code on the Go.</string>
<string name="locale_system_default">System Default</string>
<string name="msg_project_dir_inaccessible">Project directory is not accessible</string>
<string name="msg_file_is_not_dir">Selected file is not a directory</string>
<string name="msg_project_dir_doesnt_exist">Project directory does not exist</string>
<string name="msg_project_cache_read_failure">Failed to read project cache</string>
<string name="msg_font_copy_failed">Could not save the font file. Please try again.</string>
<string name="msg_files_being_saved">A file save operation is already in progress!</string>
<string name="title_install_tools">Install Development Tools</string>
<string name="subtitle_install_tools">\nTo install the tools needed to build Android projects, tap the button at the bottom right of the screen\n</string>
<string name="msg_install_tools"> </string>
<string name="greeting_title">Welcome</string>
<string name="greeting_subtitle">No computer? No Internet? No problem.</string>
<string name="title_grant">Allow</string>
<string name="permission_title_storage">Storage</string>
<string name="permission_desc_storage">Allow Code on the Go to access files.</string>
<string name="permission_title_install_packages">Install packages</string>
<string name="permission_desc_install_packages">Allow Code on the Go to install apps that you build.</string>
<string name="permission_title_overlay_window">Overlay window</string>
<string name="permission_desc_overlay_window">Allow Code on the Go to display overlay windows over other apps.</string>
<string name="permission_overlay_restricted_settings_hint">Overlay access is still denied. On Pixel, open App info, use the top-right menu to enable restricted settings, then allow Display over other apps.</string>
<string name="permission_title_notifications">Notifications</string>
<string name="permission_desc_notifications">Allow Code on the Go to post notifications.</string>
<string name="permission_title_accessibility">Accessibility</string>
<string name="permission_desc_accessibility">Allow Code on the Go to access accessibility services for debugging.</string>
<string name="permissions_info_intro">Next page: permissions</string>
<string name="permissions_info_notifications">• <b>Notifications</b> (to receive status messages) On Android 12 and earlier, notifications are enabled already.</string>
<string name="permissions_info_storage">• <b>Storage</b> (to create project directories and files)</string>
<string name="permissions_info_install">• <b>Install packages</b> (to install the apps that you build)</string>
<string name="permissions_info_overlay_accessibility">• <b>Overlay window</b> (to use the debugger) If you can\'t enable this permission, go to <b>Settings \u2192 Apps \u2192 Code on the Go</b>. In the upper right Options menu, tap <b>Enable restricted settings</b>. Return to the installer and assign the permission. (The steps may vary on different devices.)</string>
<string name="finish_installation">Finish installation</string>
<string name="onboarding_title_permissions">Permissions</string>
<string name="onboarding_subtitle_permissions">Code on the Go requires the following permissions:</string>
<string name="msg_grant_permissions">Please grant the permissions to continue.</string>
<string name="msg_no_internet">It seems you\'re offline. Check your internet connection.</string>
<string name="msg_connected_to_cellular">Heads up! You\'re using cellular data.</string>
<string name="msg_connected_to_metered_connection">Heads up! You\'re on a metered network.</string>
<string name="msg_disable_background_data_restriction">Disable background data restriction to avoid installation failures.</string>
<string name="msg_cannot_create_terminal_session">Unable to create terminal session</string>
<string name="action_auto_install">Automatic installation</string>
<string name="action_manual_install">Manual installation</string>
<string name="hint_android_sdk_version">Android SDK version</string>
<string name="hin_jdk_version">JDK version</string>
<string name="action_install_git">Install Git</string>
<string name="action_install_openssh">Install OpenSSH</string>
<string name="msg_terminal_new_sessions_disabled">Cannot create session. New sessions are disabled.</string>
<string name="title_install_location_error">Install location error</string>
<string name="title_unsupported_user">Unsupported user</string>
<string name="title_socials">Socials</string>
<string name="title_contributors">Contributors</string>
<string name="summary_contributors">Top community contributors.</string>
<string name="title_github_contributors">GitHub Contributors</string>
<string name="title_crowdin_translators">Crowdin Translators</string>
<string name="title_misc">Misc</string>
<string name="title_contribute">Contribute</string>
<string name="summary_contribute">It\'s not just an IDE, it\'s a community. Contribute code, ideas, and passion to Code On The Go.</string>
<string name="msg_app_unavailable_for_intent">No application available to handle intent.</string>
<string name="title_open_source_licenses">Open source licenses</string>
<string name="summary_open_source_licenses">View open source licenses.</string>
<string name="idepref_jdkVersion_title">JDK version</string>
<string name="idepref_jdkVersion_summary">Currently selected: %1$s (requires restart if changed)</string>
<string name="ide_setup_in_progress">Setup is in progress</string>
<string name="ide_setup_complete">Code on the Go setup complete.</string>
<string name="msg_complete_ide_setup">Please complete the IDE setup to continue.</string>
<string name="debugger_title">Debugger</string>
<string name="debugger_starting">Starting debugger…</string>
<string name="debugger_starting_failed">Failed to start debugger. See IDE logs for more details.</string>
<string name="debugger_started">Debugger started</string>
<string name="debugger_variables">Variables</string>
<string name="debugger_call_stack">Call stack</string>
<string name="debugger_thread">Thread</string>
<string name="debugger_step_into">Step into</string>
<string name="debugger_step_out">Step out</string>
<string name="debugger_step_over">Step over</string>
<string name="debugger_kill">Kill</string>
<string name="debugger_suspend">Suspend</string>
<string name="debugger_resume">Resume</string>
<string name="debugger_restart">Restart</string>
<string name="debugger_status_resolving">Resolving…</string>
<string name="debugger_thread_resolution_failure"><![CDATA[<resolution-failure>]]></string>
<string name="debugger_loading_variable_value">Loading variable value</string>
<string name="debugger_variable_truncated">Truncated due to size</string>
<!-- Connected to <VM-name> (<VM-version>) -->
<string name="debugger_state_connected">Connected to %1$s (%2$s)</string>
<string name="debugger_state_not_paired">The app is not paired. Tap the debugger button to start wireless ADB pairing.</string>
<string name="debugger_state_not_connected">The app is successfully paired. Tap the debugger button to build and install a debuggable version.</string>
<string name="debugger_value_unavailable"><unavailable></string>
<string name="debugger_value_error"><error></string>
<string name="debugger_variable_value_hint">Variable value</string>
<string name="debugger_variable_dialog_title">%1$s: %2$s</string>
<string name="debugger_value_null">null</string>
<string name="debugger_dialog_hint_enter_value">Enter value</string>
<string name="debugger_dialog_button_set">Set</string>
<string name="debugger_variable_value_invalid">Invalid value for this variable</string>
<string name="debugger_error_immutable_variable">The value of variable \'%1$s\' cannot be updated.</string>
<string name="err_no_activity_to_handle_action">No activity to handle action %1$s</string>
<string name="file">File</string>
<string name="actions">Actions</string>
<string name="help">Help</string>
<string name="email_feedback_warning_prompt">To send a private message to feedback@appdevforall.org, tap <b>OK</b>. If you aren’t connected to the Internet, the message will not be sent immediately. Do you want to continue?</string>
<string name="feedback_subject">Feedback for %1$s Screen</string>
<string name="feedback_message">\n\nPlease enter your feedback in the space below. If you are reporting a problem, please include as much information as possible about the issue.\n\nThanks!\n\n-------------stack trace----------\n%1$s</string>
<string name="feedback_device_info">App Version: %1$s\n\nAndroid Version: %2$s\n\nDevice: %3$s</string>
<string name="feedback_stack_trace_unavailable">Stack trace unavailable. Please describe the issue you encountered.</string>
<string name="send_feedback">Send feedback</string>
<string name="alert_message">Send feedback</string>
<string name="fab_more">More</string>
<string name="msg_recent_projects">Recent projects</string>
<string name="msg_create_new_from_recent">Click the <b>New project</b> button to create a new project, or open an existing project from a folder.</string>
<string name="msg_no_recent_projects">You don\'t have any recent projects</string>
<string name="msg_no_projects_to_delete">There are no projects available to delete.</string>
<string name="msg_no_valid_projects">No valid Android projects found in %1$s</string>
<string name="msg_skipped_invalid_projects">Some folders were skipped because they are not valid Android project folders.</string>
<string name="msg_cannot_access_folder">Cannot access folder %1$s. Check storage permissions.</string>
<string name="msg_no_subfolders">The folder %1$s does not contain any subfolders.</string>
<string name="msg_create_new_project_instruction">Click the New project button to create a new project.</string>
<string name="date">%1$s: %2$s</string>
<string name="date_created_label">Created</string>
<string name="date_modified_label">Modified</string>
<string name="loading_project">Loading project…</string>
<string name="project_directory_invalid">%s is not a valid Android project folder. Please open another folder instead.</string>
<string name="open_from_folder">Open from folder</string>
<string name="msg_delete_selected_project">Are you sure want to delete the selected project(s)? This action cannot be undone.</string>
<string name="feedback_email">feedback@appdevforall.org</string>
<string name="no_email_apps">No email apps found</string>
<string name="msg_internet_access_required">Internet access is required.</string>
<string name="msg_contact_app_dev_title">Contact App Dev for All</string>
<string name="msg_contact_app_dev_description">To report issues, make suggestions, and ask questions, email us at feedback@appdevforall.org.
Internet access is required.</string>
<string name="code_on_the_go">Code on the Go</string>
<string name="feedback_email_subject">Feedback for Code on the Go</string>
<string name="msg_feedback_log_too_long">The log is too large to send directly.</string>
<string name="msg_no_internet_no_problem">No computer? No Internet?\nNo problem.</string>
<string name="offline_message">Offline</string>
<string name="more_label">More</string>
<string name="send_email">Send Email</string>
<string name="close">Close</string>
<string name="tooltip_see_more_text">+ See more</string>
<string name="more_information_about">More information about %1$s</string>
<string name="learn_more">Learn more</string>
<string name="alert">Alert!</string>
<string name="commit_canceled_files_to_commit">There are files to commit, commit canceled</string>
<string name="commit_canceled_no_files_to_commit">No files to commit, commit canceled</string>
<string name="committed_all_changes_to_repository_in">Committed all changes to repository in %1$s</string>
<string name="halt">Halt</string>
<string name="breakpoint">Breakpoint</string>
<string name="project_name">Project name</string>
<string name="project_options">Project Options</string>
<!-- Plugin System -->
<string name="plugin_manager">Plugin Manager</string>
<string name="plugin_manager_title">Plugin Manager</string>
<string name="plugin_manager_summary">Manage IDE plugins and extensions</string>
<string name="plugins">Plugins</string>
<string name="no_plugins_installed">No plugins installed</string>
<string name="install_plugin">Install Plugin</string>
<string name="plugin_installed">Plugin installed successfully</string>
<string name="plugin_install_failed">Failed to install plugin</string>
<string name="plugin_enabled">Plugin enabled</string>
<string name="plugin_disabled">Plugin disabled</string>
<string name="plugin_uninstalled">Plugin uninstalled</string>
<string name="enable_plugin">Enable</string>
<string name="disable_plugin">Disable</string>
<string name="uninstall_plugin">Uninstall</string>
<string name="plugin_details">Plugin Details</string>
<string name="plugin_permissions">Permissions</string>
<string name="plugin_dependencies">Dependencies</string>
<!-- Message shown when the bootstrap installer is extract a file from the zip -->
<!-- The first parameter is the name of the zip entry -->
<string name="bootstrap_installer_unzipping">Unzipping %1$s</string>
<!-- Message shown when the bootstrap installer is in the linking phase -->
<string name="bootstrap_installer_linking">Resolving symlinks…</string>
<!-- Tooltip HTML Template -->
<string name="tooltip_html_template"><![CDATA[
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
margin: 0;
padding: 10px;
word-wrap: break-word;
color: %1$s;
}
a{
color: %3$s;
text-decoration: underline;
}
</style>
</head>
<body>
%2$s
</body>
</html>
]]></string>
<!-- Tooltip HTML Components -->
<string name="tooltip_buttons_separator"><![CDATA[<br>]]></string>
<string name="tooltip_detail_links_template"><![CDATA[%1$s<br><br>%2$s]]></string>
<string name="plugin_documentation_third_party_disclaimer"><br><br><em style="color: #888; font-size: 0.9em;">This documentation is provided by a third-party plugin.</em></string>
<!-- Tooltip Debug Dialog -->
<string name="tooltip_debug_dialog_title">Tooltip Debug Info</string>
<string name="tooltip_debug_metadata_html"><![CDATA[<b>Version</b> <small>%1$s</small><br/>
<b>Row:</b> %2$d<br/>
<b>ID:</b> %3$d<br/>
<b>Category:</b> %4$s<br/>
<b>Tag:</b> %5$s<br/>
<b>Raw Summary:</b> %6$s<br/>
<b>Raw Detail:</b> %7$s<br/>
<b>Buttons:</b> %8$s<br/>]]></string>
<string name="tooltip_debug_plugin_html"><![CDATA[<h3>Plugin Tooltip Debug Info</h3>
<b>Version:</b> <small>%1$s</small><br/>
<b>Row:</b> %2$d<br/>
<b>ID:</b> %3$d<br/>
<b>Category:</b> %4$s<br/>
<b>Tag:</b> %5$s<br/>
<br/>
<b>Raw Summary:</b><br/>
<small>%6$s</small><br/>
<br/>
<b>Raw Detail:</b><br/>
<small>%7$s</small><br/>
<br/>
<b>Buttons:</b> %8$s]]></string>
<!-- Tooltip Debug Button Formatting -->
<string name="tooltip_debug_button_separator"><![CDATA[<br/>]]></string>
<string name="tooltip_debug_button_item_template_simple">• %1$s</string>
<string name="tooltip_debug_button_item_template">\'%1$s \u2192 %2$s\'</string>
<string name="info_icon_content_description">Info icon</string>
<string name="feedback_button_description">Send feedback about this tooltip</string>
<string name="cd_more_options">More options</string>
<string name="cd_expand_collapse">Expand or collapse</string>
<string name="cd_file_icon">File icon</string>
<string name="cd_folder_icon">Folder icon</string>
<string name="cd_close">Close</string>
<string name="cd_save">Save</string>
<string name="cd_undo">Undo</string>
<string name="cd_redo">Redo</string>
<string name="cd_delete">Delete</string>
<string name="cd_add">Add</string>
<string name="cd_search">Search</string>
<string name="cd_diagnostic_error">Error</string>
<string name="cd_diagnostic_warning">Warning</string>
<string name="cd_diagnostic_info">Information</string>
<!-- Toolbar content descriptions for TalkBack (match actual function) -->
<string name="cd_toolbar_quick_run">Quick run</string>
<string name="cd_toolbar_cancel_build">Cancel build</string>
<string name="cd_toolbar_sync_project">Sync project</string>
<string name="cd_toolbar_start_debugger">Start debugger</string>
<string name="cd_toolbar_run_gradle_tasks">Run Gradle tasks</string>
<string name="cd_toolbar_undo">Undo</string>
<string name="cd_toolbar_redo">Redo</string>
<string name="cd_toolbar_save">Save</string>
<string name="cd_toolbar_preview_layout">Preview layout</string>
<string name="cd_toolbar_find">Find</string>
<string name="cd_toolbar_find_in_file">Find in file</string>
<string name="cd_toolbar_find_in_project">Find in project</string>
<string name="cd_toolbar_launch_app">Launch app</string>
<string name="cd_toolbar_disconnect_log_senders">Disconnect log senders</string>
<string name="cd_toolbar_image_to_layout">Image to layout</string>
<!-- Drawer toggle content descriptions -->
<string name="cd_drawer_open">Open project menu</string>
<string name="cd_drawer_close">Close project menu</string>
<string name="unknown_error">"An unknown error occurred."</string>
<string name="build_in_progress_warning">Build is already in progress. Ignoring new request.</string>
<string name="error_build_service_not_found">Build service not found.</string>
<string name="error_task_execution_failed">Task execution failed.</string>
<string name="error_no_output_listing_file">No output listing file found in project model.</string>
<string name="error_no_apk_in_output_listing">No APK found in output listing file.</string>
<string name="error_apk_not_exist">APK file specified does not exist: %1$s</string>
<string name="info_build_cancelled">Build was cancelled by the user.</string>
<string name="error_quick_run_failed">Quick Run failed.</string>
<string name="status_building">Building…</string>
<string name="status_installing_plugin">Installing plugin…</string>
<string name="title_install_plugin">Install Plugin</string>
<string name="msg_install_plugin_prompt">Plugin \'%1$s\' built successfully. Would you like to install it now?</string>
<string name="btn_install">Install</string>
<string name="btn_later">Later</string>
<string name="msg_plugin_installed_restart">Plugin installed. Restart the app to activate it.</string>
<string name="title_restart_required">Restart Required</string>
<string name="msg_restart_for_plugin_changes">Plugin changes will take effect after restarting the app. Do you want to restart now?</string>
<string name="btn_restart_now">Restart Now</string>
<string name="msg_plugin_install_failed">Failed to install plugin: %1$s</string>
<string name="msg_plugin_file_not_found">Plugin file not found</string>
<string name="init_failed_with_reason">%1$s: %2$s</string>
<!-- Name of the notification channel which is used to show notifications for wireless debugging -->
<string name="notification_channel_adb_pairing">Wireless debugging pairing</string>
<!-- Hint for the notification text field which asks the user to enter the wireless debugging pairing code -->
<string name="notification_adb_pairing_input_paring_code">Enter pairing code</string>
<!-- Title for the notification when the wireless debugging pairing service is being searched. -->
<string name="notification_adb_pairing_searching_for_service_title">Searching for pairing service</string>
<!-- Title for the notification when the wireless debugging pairing service is found. -->
<string name="notification_adb_pairing_service_found_title">Pairing service found</string>
<!-- Text for the button in the notification to stop searching for the wireless debugging pairing service. -->
<string name="notification_adb_pairing_stop_searching">Stop searching</string>
<!-- Title for the notification when wireless debugging pairing is in progress. -->
<string name="notification_adb_pairing_working_title">Pairing in progress</string>
<!-- Title for the notification when wireless debugging pairing has succeeded. -->
<string name="notification_adb_pairing_succeed_title">Pairing successful</string>
<!-- Text for the notification when wireless debugging pairing has succeeded, instructing the user on the next step. -->
<string name="notification_adb_pairing_succeed_text">Code on the Go\'s Shizuku service will now be started.</string>
<!-- Title for the notification when wireless debugging pairing has failed. -->
<string name="notification_adb_pairing_failed_title">Pairing failed</string>