-
-
Notifications
You must be signed in to change notification settings - Fork 194
Expand file tree
/
Copy pathstrings.js
More file actions
2402 lines (2303 loc) · 148 KB
/
strings.js
File metadata and controls
2402 lines (2303 loc) · 148 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
/*
* GNU AGPL-3.0 License
*
* Copyright (c) 2021 - present core.ai . All rights reserved.
* Original work Copyright (c) 2012 - 2021 Adobe Systems Incorporated. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License
* for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see https://opensource.org/licenses/AGPL-3.0.
*
*/
define({
/**
* Errors
*/
// Generic strings
"SYSTEM_DEFAULT": "System Default",
"PROJECT_BUSY": "Project Operations In Progress",
"DUPLICATING": "Duplicating {0}",
"MOVING": "Moving {0}",
"COPYING": "Copying {0}",
"DELETING": "Deleting {0}",
"DELETE_TO_TRASH": "Moving {0} to Trash",
"DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin",
"RENAMING": "Renaming",
"STORED_IN_YOUR_BROWSER": "Stored in Your Browser",
"SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors",
// General file io error strings
"GENERIC_ERROR": "(error {0})",
"NOT_FOUND_ERR": "The file/directory could not be found.",
"NOT_READABLE_ERR": "The file/directory could not be read.",
"EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.",
"NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.",
"NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.",
"CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.",
"UNSUPPORTED_ENCODING_ERR": "Unknown encoding format",
"ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.",
"DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.",
"UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.",
"FILE_EXISTS_ERR": "The file or directory already exists.",
"FILE": "file",
"FILE_TITLE": "File",
"DIRECTORY": "directory",
"DIRECTORY_TITLE": "Directory",
"DIRECTORY_NAMES_LEDE": "Directory names",
"FILENAMES_LEDE": "Filenames",
"FILENAME": "Filename",
"DIRECTORY_NAME": "Directory Name",
// Project error strings
"ERROR_LOADING_PROJECT": "Error Loading Project",
"OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})",
"REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory <span class='dialog-filename'>{0}</span>. (error {1})",
"READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory <span class='dialog-filename'>{0}</span>. (error {1})",
// FirefoxZoom Dialogue
"ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom",
"ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts <code><i>{0}</i></code> to Zoom In and <code><i>{1}</i></code> to Zoom Out.",
// File open/save error string
"ERROR_OPENING_FILE_TITLE": "Error Opening File",
"ERROR_OPENING_FILE": "An error occurred when trying to open the file <span class='dialog-filename'>{0}</span>. {1}",
"ERROR_OPENING_FILES": "An error occurred when trying to open the following files:",
"ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk",
"ERROR_RELOADING_FILE": "An error occurred when trying to reload the file <span class='dialog-filename'>{0}</span>. {1}",
"ERROR_SAVING_FILE_TITLE": "Error Saving File",
"ERROR_SAVING_FILE": "An error occurred when trying to save the file <span class='dialog-filename'>{0}</span>. {1}",
"ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}",
"ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} <span class='dialog-filename'>{0}</span>. {1}",
"ERROR_RENAMING_NOT_IN_PROJECT": "The file or directory is not part of the currently opened project. Unfortunately, only project files can be renamed at this point.",
"ERROR_MOVING_FILE_TITLE": "Error Moving {0}",
"ERROR_MOVING_FILE": "An error occurred when trying to move the {2} <span class='dialog-filename'>{0}</span>. {1}",
"ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.",
"ERROR_DELETING_FILE_TITLE": "Error Deleting {0}",
"ERROR_DELETING_FILE": "An error occurred when trying to delete the {2} <span class='dialog-filename'>{0}</span>. {1}",
"INVALID_FILENAME_TITLE": "Invalid {0}",
"CANNOT_PASTE_TITLE": "Cannot Paste {0}",
"CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}",
"ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading <span class='dialog-filename'>{0}</span>",
"ERR_TYPE_PASTE_FAILED": "An error occurred while pasting <span class='dialog-filename'>{0}</span> to <span class='dialog-filename'>{1}</span>",
"CANNOT_DUPLICATE_TITLE": "Cannot Duplicate",
"ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating <span class='dialog-filename'>{0}</span>",
"ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.",
"INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: <code class='emphasized'>{1}</code>",
"ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name <span class='dialog-filename'>{0}</span> already exists.",
"ERROR_CREATING_FILE_TITLE": "Error Creating {0}",
"ERROR_CREATING_FILE": "An error occurred when trying to create the {0} <span class='dialog-filename'>{1}</span>. {2}",
"ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.",
"DROP_TO_OPEN_FILES": "Drop to open files",
"DROP_TO_OPEN_FILE": "Drop to open file",
"DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project",
// User key map error strings
"ERROR_KEYMAP_TITLE": "Error Reading User Key Map",
"ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.",
"ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded",
"ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}",
"ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}",
"ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}",
"ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}",
"ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}",
"ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}",
// Application preferences corrupt error strings
"ERROR_PREFS_CORRUPT_TITLE": "Error Reading Preferences",
"ERROR_PREFS_RESET_TITLE": "Settings Reset - Restart Required",
"ERROR_PREFS_PROJECT_LINT": "Project Preferences",
"ERROR_PREFS_PROJECT_LINT_MESSAGE": "Error: The project contains both `.brackets.json` and `.phcode.json` files, causing a conflict. Please delete either `.brackets.json` or `.phcode.json` and then reload the project.",
"ERROR_PREFS_CORRUPT": "Your preferences file is not valid JSON. The file will be opened so that you can correct the format. You will need to restart {APP_NAME} for the changes to take effect.",
"ERROR_PREFS_CORRUPT_RESET": "Your {APP_NAME} settings were damaged and have been reset. Please restart {APP_NAME} for the changes to take effect.",
"ERROR_PROJ_PREFS_CORRUPT": "Your project preferences file is not valid JSON. The file will be opened so that you can correct the format. You will need to reload the project for the changes to take effect.",
// Application error strings
"ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.",
"ERROR_IN_BROWSER": "{APP_NAME} is built in HTML, but right now it runs as a desktop app so you can use it to edit local files. Please use the application shell in the <b>github.com/adobe/brackets-shell</b> repo to run {APP_NAME}.",
// ProjectManager max files error string
"ERROR_MAX_FILES_TITLE": "Error Indexing Files",
"ERROR_MAX_FILES": "This project contains more than 30,000 files. Features that operate across multiple files may be disabled or behave as if the project is empty. <a href='https://github.com/adobe/brackets/wiki/Large-Projects'>Read more about working with large projects</a>.",
// Live Preview error strings
"UNSUPPORTED_DOM_APIS_CONFIRM": "The `window.confirm` and `window.prompt` APIs are unavailable in the embedded Live Preview of {APP_NAME}. Please popout Live Preview to use these APIs in the browser.",
"ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser",
"ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.",
"ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})",
"LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error",
"LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser",
"LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.<br /><br />Would you like to relaunch Chrome and enable remote debugging?<br /><br />",
"LIVE_DEV_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.",
"LIVE_DEV_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.",
"LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.",
"LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see <a href='{0}' title='{0}'>Troubleshooting Live Preview connection errors</a>.",
"LIVE_PREVIEW_HIDE_OVERLAY": "Hide this message",
"LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview",
"LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting\u2026",
"LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing\u2026",
"LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active",
"LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview",
"LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor\u2026",
"LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview",
"LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page",
"LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights",
"LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window",
"LIVE_DEV_OPEN_CHROME": "Open In Chrome\u2026",
"LIVE_DEV_OPEN_SAFARI": "Open In Safari\u2026",
"LIVE_DEV_OPEN_EDGE": "Open In Edge\u2026",
"LIVE_DEV_OPEN_FIREFOX": "Open In Firefox\u2026",
"LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}",
"LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.",
"LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page",
"MD_VIEWER_THEME_DESCRIPTION": "Theme for the Markdown viewer (light or dark)",
"LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)",
"LIVE_DEV_SETTINGS": "Live Preview Settings\u2026",
"LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `<b>{0}</b>` and other server-rendered files (PHP, JSP, etc.)",
"LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings",
"LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup",
"LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development server",
"LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup",
"LIVE_DEV_SETTINGS_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save",
"LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project",
"LIVE_DEV_SETTINGS_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php",
"LIVE_DEV_SETTINGS_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.",
"LIVE_DEV_SETTINGS_SERVER_ROOT": "Serving Folder in Project",
"LIVE_DEV_SETTINGS_SERVER_ROOT_HELP": "Eg. www/ (Default is /)",
"LIVE_DEV_SETTINGS_SERVER_ROOT_PREF": "Path within project that is served by Development Server Eg. www/ (Default is /)",
"LIVE_DEV_SETTINGS_RELOAD": "Server supports hot reload",
"LIVE_DEV_SETTINGS_RELOAD_HELP": "Some servers support hot reload where code changes are pushed to page without a full page reload.\nEnable this feature if you do not want {APP_NAME} to reload the page on every save.",
"LIVE_DEV_SETTINGS_FRAMEWORK": "Server Framework",
"LIVE_DEV_SETTINGS_FRAMEWORK_CUSTOM": "Custom",
"LIVE_DEV_SETTINGS_FRAMEWORK_PREFERENCES": "Server Framework, currently supports only docusaurus",
"LIVE_DEV_SETTINGS_ELEMENT_HIGHLIGHT_PREFERENCE": "Inspect element in Live Preview on 'hover' or 'click'. Defaults to 'hover'",
"LIVE_DEV_SETTINGS_SHOW_RULER_LINES_PREFERENCE": "Show measurements when elements are selected in live preview. Defaults to 'false'",
"LIVE_DEV_TOOLBOX_SELECT_PARENT": "Select Parent",
"LIVE_DEV_TOOLBOX_EDIT_TEXT": "Edit Text",
"LIVE_DEV_TOOLBOX_EDIT_HYPERLINK": "Edit Hyperlink",
"LIVE_DEV_HYPERLINK_NO_HREF": "No href set",
"LIVE_DEV_HYPERLINK_OPEN_LINK": "Open this link",
"LIVE_DEV_HYPERLINK_OPENS_NEW_TAB": "Opens in new tab",
"LIVE_DEV_TOOLBOX_DUPLICATE": "Duplicate",
"LIVE_DEV_TOOLBOX_DELETE": "Delete",
"LIVE_DEV_TOOLBOX_IMAGE_GALLERY": "Image Gallery",
"LIVE_DEV_TOOLBOX_MORE_OPTIONS": "More Options",
"LIVE_DEV_MORE_OPTIONS_CUT": "Cut",
"LIVE_DEV_MORE_OPTIONS_COPY": "Copy",
"LIVE_DEV_MORE_OPTIONS_PASTE": "Paste",
"LIVE_DEV_INSERT_ELEMENT": "Insert Element",
"LIVE_DEV_INSERT_BEFORE": "Before",
"LIVE_DEV_INSERT_AFTER": "After",
"LIVE_DEV_INSERT_INSIDE": "Inside",
"LIVE_DEV_INSERT_WRAP": "Wrap",
"LIVE_DEV_INSERT_SEARCH_PLACEHOLDER": "Search elements\u2026",
"LIVE_DEV_INSERT_COMMON": "Common",
"LIVE_DEV_INSERT_NO_RESULTS": "No matching elements",
"LIVE_DEV_INSERT_SEE_MORE": "See more",
"LIVE_DEV_INSERT_SHOW_LESS": "Show less",
"LIVE_DEV_IMAGE_GALLERY_USE_IMAGE": "Download image",
"LIVE_DEV_IMAGE_GALLERY_SELECT_DOWNLOAD_FOLDER": "Choose image download folder",
"LIVE_DEV_IMAGE_GALLERY_SEARCH_PLACEHOLDER": "Search images\u2026",
"LIVE_DEV_IMAGE_GALLERY_SEARCH_BUTTON": "Search",
"LIVE_DEV_IMAGE_GALLERY_LOADING_INITIAL": "Loading images\u2026",
"LIVE_DEV_IMAGE_GALLERY_LOADING_MORE": "Loading\u2026",
"LIVE_DEV_IMAGE_GALLERY_NO_IMAGES": "No images found",
"LIVE_DEV_IMAGE_GALLERY_LOAD_ERROR": "Failed to load images",
"LIVE_DEV_IMAGE_GALLERY_SELECT_FROM_COMPUTER_TOOLTIP": "Select an image from your device",
"LIVE_DEV_IMAGE_GALLERY_SELECT_FROM_COMPUTER": "Select from device",
"LIVE_DEV_IMAGE_GALLERY_DIALOG_OVERLAY_MESSAGE": "Select image download location in the editor to continue",
"LIVE_DEV_IMAGE_GALLERY_OFFLINE_BANNER": "No connection - Working in offline mode",
"LIVE_DEV_IMAGE_GALLERY_OFFLINE_RETRY": "Retry",
"LIVE_DEV_IMAGE_GALLERY_CHECKING_CONNECTION": "Checking connection",
"LIVE_DEV_IMAGE_GALLERY_STILL_OFFLINE": "Still offline. Please check your connection.",
"LIVE_DEV_IMAGE_GALLERY_SELECT_SIZE": "Select image size",
"LIVE_DEV_IMAGE_GALLERY_SIZE_THUMBNAIL": "Thumbnail",
"LIVE_DEV_IMAGE_GALLERY_SIZE_XS": "Avatar",
"LIVE_DEV_IMAGE_GALLERY_SIZE_SM": "Card",
"LIVE_DEV_IMAGE_GALLERY_SIZE_MD": "Content",
"LIVE_DEV_IMAGE_GALLERY_SIZE_REGULAR": "Standard",
"LIVE_DEV_IMAGE_GALLERY_SIZE_LG": "Hero",
"LIVE_DEV_IMAGE_GALLERY_SIZE_XL": "Banner",
"LIVE_DEV_IMAGE_GALLERY_SIZE_RETINA": "Retina",
"LIVE_DEV_IMAGE_GALLERY_ATTRIBUTION_ON": "on {0}",
"LIVE_DEV_IMAGE_GALLERY_GET_PRO": "Get Pro",
"LIVE_DEV_IMAGE_GALLERY_USAGE_THRESHOLD": "You've used {0}% of your free image searches ({1}/{2})",
"LIVE_DEV_LP_SELBOX_TITLE": "Save Changes",
"LIVE_DEV_LP_SELBOX_INLINE": "Inline",
"LIVE_DEV_LP_SELBOX_INLINE_SECONDARY": "element.style",
"LIVE_DEV_LP_SELBOX_LOADING": "Finding matching rules\u2026",
"LIVE_DEV_LP_SELBOX_FILE_EMBEDDED": "embedded",
"LIVE_DEV_LP_SELBOX_SAVE_TOOLTIP": "Save changes to the selected target (Enter)",
"LIVE_DEV_LP_SELBOX_CANCEL_TOOLTIP": "Revert changes (Esc)",
"LIVE_DEV_STYLES_PANEL_HEADER": "Style Editor",
"LIVE_DEV_STYLES_EDIT_TOOLTIP": "Edit Styles",
"LIVE_DEV_STYLES_PANEL_ADD": "+ Add",
"LIVE_DEV_STYLES_PANEL_NO_RULES": "No CSS rules found",
"LIVE_DEV_STYLES_PANEL_MATCHING_RULES": "Matching Rules ({0})",
"LIVE_DEV_STYLES_PANEL_LOADING": "Loading styles\u2026",
"LIVE_DEV_STYLES_PANEL_NO_STYLES": "No styles found",
"LIVE_DEV_STYLES_PANEL_PROPERTY_PLACEHOLDER": "property",
"LIVE_DEV_STYLES_PANEL_VALUE_PLACEHOLDER": "value",
"LIVE_DEV_STYLES_TAB_ADVANCED": "Styles",
"LIVE_DEV_STYLES_TAB_COMPUTED": "Computed",
"LIVE_DEV_STYLES_FILTER_ALL": "All",
"LIVE_DEV_STYLES_FILTER_LAYOUT": "Layout",
"LIVE_DEV_STYLES_FILTER_TYPOGRAPHY": "Typography",
"LIVE_DEV_STYLES_FILTER_COLOR": "Color",
"LIVE_DEV_STYLES_FILTER_EFFECTS": "Effects",
"LIVE_DEV_STYLES_FILTER_BOX_MODEL": "Box Model",
"LIVE_DEV_STYLES_COMPUTED_SEARCH": "Filter properties\u2026",
"LIVE_DEV_STYLES_COMPUTED_NO_RESULTS": "No results found",
"LIVE_DEV_STYLES_COMPUTED_USER_AGENT": "User Agent",
"LIVE_DEV_FORMAT_BOLD": "Bold",
"LIVE_DEV_FORMAT_ITALIC": "Italic",
"LIVE_DEV_FORMAT_UNDERLINE": "Underline",
"LIVE_DEV_FORMAT_STRIKETHROUGH": "Strikethrough",
"LIVE_DEV_FORMAT_SUBSCRIPT": "Subscript",
"LIVE_DEV_FORMAT_SUPERSCRIPT": "Superscript",
"LIVE_DEV_FORMAT_HIGHLIGHT": "Highlight",
"LIVE_DEV_FORMAT_CODE": "Code",
"LIVE_DEV_FORMAT_SMALL": "Small",
"LIVE_DEV_FORMAT_MORE": "More formatting",
"LIVE_DEV_ELEMENT_PROPS_TITLE": "Element Properties",
"LIVE_DEV_ELEMENT_PROPS_TAG": "Tag",
"LIVE_DEV_ELEMENT_PROPS_SIZE": "Size",
"LIVE_DEV_ELEMENT_PROPS_CLASS": "Class",
"LIVE_DEV_ELEMENT_PROPS_ID": "ID",
"LIVE_DEV_ELEMENT_PROPS_HREF": "Link",
"LIVE_DEV_ELEMENT_PROPS_ADD_CLASS": "+ add class",
"LIVE_DEV_ELEMENT_PROPS_SEARCH_TAGS": "Search tags\u2026",
"LIVE_DEV_ELEMENT_PROPS_COMPUTED": "Computed:",
"LIVE_DEV_ELEMENT_PROPS_USE_CUSTOM": "Use \u201c{0}\u201d",
"LIVE_DEV_ELEMENT_PROPS_ATTRIBUTES": "Attributes",
"LIVE_DEV_ELEMENT_PROPS_ADD_ATTR": "+ add attribute",
"LIVE_DEV_ELEMENT_PROPS_ATTR_NAME": "name",
"LIVE_DEV_ELEMENT_PROPS_ATTR_VALUE": "value",
"LIVE_DEV_ELEMENT_PROPS_LOADING": "Loading",
"LIVE_DEV_ELEMENT_PROPS_NO_ATTRIBUTES": "No attributes",
"LIVE_DEV_ELEMENT_PROPS_RESETTING": "Resetting",
"LIVE_DEV_CB_EXCEEDED_CLASSES": "+{0} more",
"LIVE_DEV_CB_TIP_TEXT_COLOR": "Text Color",
"LIVE_DEV_CB_TIP_BG_COLOR": "Background Color",
"LIVE_DEV_CB_TIP_FONT": "Font",
"LIVE_DEV_CB_TIP_TEXT_SPACING": "Text Spacing",
"LIVE_DEV_CB_TIP_APPEARANCE": "Border & Opacity",
"LIVE_DEV_CB_TIP_LAYOUT": "Layout",
"LIVE_DEV_CB_TIP_POSITION": "Position",
"LIVE_DEV_CB_TIP_OBJECT_FIT": "Object Fit",
"LIVE_DEV_CB_TIP_IMAGE": "Image",
"LIVE_DEV_CB_CHANGE_IMAGE": "Change Image",
"LIVE_DEV_CB_TIP_LIST_STYLE": "List Style",
"LIVE_DEV_CB_TIP_ALL_STYLES": "All Styles",
"LIVE_DEV_CB_LABEL_FAMILY": "Family",
"LIVE_DEV_CB_LABEL_SIZE": "Size",
"LIVE_DEV_CB_LABEL_WEIGHT": "Weight",
"LIVE_DEV_CB_LABEL_STYLE": "Style",
"LIVE_DEV_CB_LABEL_ALIGN": "Text Align",
"LIVE_DEV_CB_LABEL_TRANSFORM": "Transform",
"LIVE_DEV_CB_LABEL_LETTER_SPACING": "Letter Spacing",
"LIVE_DEV_CB_LABEL_WORD_SPACING": "Word Spacing",
"LIVE_DEV_CB_LABEL_LINE_HEIGHT": "Line Height",
"LIVE_DEV_CB_LABEL_TEXT_INDENT": "Text Indent",
"LIVE_DEV_CB_LABEL_WIDTH": "Width",
"LIVE_DEV_CB_LABEL_RADIUS": "Radius",
"LIVE_DEV_CB_LABEL_COLOR": "Color",
"LIVE_DEV_CB_LABEL_OPACITY": "Opacity",
"LIVE_DEV_CB_LABEL_DISPLAY": "Display",
"LIVE_DEV_CB_LABEL_DIRECTION": "Direction",
"LIVE_DEV_CB_LABEL_WRAP": "Wrap",
"LIVE_DEV_CB_LABEL_JUSTIFY": "Justify",
"LIVE_DEV_CB_LABEL_GAP": "Gap",
"LIVE_DEV_CB_LABEL_OVERFLOW": "Overflow",
"LIVE_DEV_CB_LABEL_POSITION": "Position",
"LIVE_DEV_CB_LABEL_TOP": "Top",
"LIVE_DEV_CB_LABEL_RIGHT": "Right",
"LIVE_DEV_CB_LABEL_BOTTOM": "Bottom",
"LIVE_DEV_CB_LABEL_LEFT": "Left",
"LIVE_DEV_CB_LABEL_Z_INDEX": "Z-Index",
"LIVE_DEV_CB_LABEL_FIT": "Fit",
"LIVE_DEV_CB_LABEL_TYPE": "Type",
"LIVE_DEV_CB_WEIGHT_THIN": "Thin",
"LIVE_DEV_CB_WEIGHT_REGULAR": "Regular",
"LIVE_DEV_CB_WEIGHT_BOLD": "Bold",
"LIVE_DEV_CB_WEIGHT_BLACK": "Black",
"LIVE_DEV_CB_STYLE_ITALIC": "Italic",
"LIVE_DEV_CB_STYLE_UNDERLINE": "Underline",
"LIVE_DEV_CB_STYLE_STRIKETHROUGH": "Strikethrough",
"LIVE_DEV_CB_STYLE_OVERLINE": "Overline",
"LIVE_DEV_CB_ALIGN_LEFT": "Left",
"LIVE_DEV_CB_ALIGN_CENTER": "Center",
"LIVE_DEV_CB_ALIGN_RIGHT": "Right",
"LIVE_DEV_CB_ALIGN_JUSTIFY": "Justify",
"LIVE_DEV_CB_TRANSFORM_NONE": "None",
"LIVE_DEV_CB_TRANSFORM_CAPITALIZE": "Capitalize",
"LIVE_DEV_CB_TRANSFORM_UPPERCASE": "Uppercase",
"LIVE_DEV_CB_TRANSFORM_LOWERCASE": "Lowercase",
"LIVE_DEV_CB_SEARCH_FONTS": "Search fonts\u2026",
"LIVE_DEV_CB_BACK": "Back",
"LIVE_DEV_CB_BACK_ESC": "Back (Esc)",
"LIVE_DEV_CB_RESET": "Reset",
"LIVE_DEV_CB_APPLIES_TO": "Applies to:",
"LIVE_DEV_CB_INLINE": "Inline",
"LIVE_DEV_CB_LIST_DISC": "Disc",
"LIVE_DEV_CB_LIST_CIRCLE": "Circle",
"LIVE_DEV_CB_LIST_SQUARE": "Square",
"LIVE_DEV_CB_LIST_NONE": "None",
"LIVE_DEV_CB_LIST_DECIMAL": "Decimal",
"LIVE_DEV_CB_LIST_LOWER_ALPHA": "Lower Alpha",
"LIVE_DEV_CB_LIST_UPPER_ALPHA": "Upper Alpha",
"LIVE_DEV_CB_LIST_LOWER_ROMAN": "Lower Roman",
"LIVE_DEV_CB_LIST_UPPER_ROMAN": "Upper Roman",
"LIVE_DEV_CB_LIST_OUTSIDE": "Outside",
"LIVE_DEV_CB_LIST_INSIDE": "Inside",
"LIVE_DEV_CB_TIP_SPACING": "Margin & Padding",
"LIVE_DEV_CB_LABEL_MARGIN": "Margin",
"LIVE_DEV_CB_LABEL_PADDING": "Padding",
"LIVE_DEV_CB_LABEL_CONTENT": "content",
"LIVE_DEV_CB_SPACING_LINK_INDEPENDENT": "Separate",
"LIVE_DEV_CB_SPACING_LINK_AXIS": "Pairs",
"LIVE_DEV_CB_SPACING_LINK_ALL": "All equal",
"LIVE_DEV_CB_LABEL_BORDER_TOP": "Top",
"LIVE_DEV_CB_LABEL_BORDER_RIGHT": "Right",
"LIVE_DEV_CB_LABEL_BORDER_BOTTOM": "Bottom",
"LIVE_DEV_CB_LABEL_BORDER_LEFT": "Left",
"LIVE_DEV_CB_LABEL_BORDER_TL": "TL",
"LIVE_DEV_CB_LABEL_BORDER_TR": "TR",
"LIVE_DEV_CB_LABEL_BORDER_BR": "BR",
"LIVE_DEV_CB_LABEL_BORDER_BL": "BL",
"LIVE_DEV_CB_PER_SIDE": "Per side",
"LIVE_DEV_CB_PER_CORNER": "Per corner",
"LIVE_DEV_CB_COLOR_RECENT": "Recent",
"LIVE_DEV_CB_COLOR_FROM_PAGE": "From page",
"LIVE_DEV_CB_COLOR_SUGGESTED": "Suggested",
"LIVE_DEV_CB_LABEL_COLUMNS": "Columns",
"LIVE_DEV_CB_LABEL_ROWS": "Rows",
"LIVE_DEV_CB_LABEL_JUSTIFY_ITEMS": "Justify",
"LIVE_DEV_CB_LABEL_ALIGN_ITEMS": "Align",
"LIVE_DEV_CB_LABEL_ROW_GAP": "Row Gap",
"LIVE_DEV_CB_LABEL_COL_GAP": "Col Gap",
"LIVE_DEV_CB_WEIGHT_EXTRA_LIGHT": "Extra Light",
"LIVE_DEV_CB_WEIGHT_LIGHT": "Light",
"LIVE_DEV_CB_WEIGHT_MEDIUM": "Medium",
"LIVE_DEV_CB_WEIGHT_SEMI_BOLD": "Semi Bold",
"LIVE_DEV_CB_WEIGHT_EXTRA_BOLD": "Extra Bold",
"LIVE_DEV_CB_GO_TO_SOURCE": "Go to source",
"LIVE_DEV_CB_TIP_AI_STYLE": "Style with AI",
"LIVE_DEV_CB_AI_PLACEHOLDER": "Describe the style you want\u2026",
"LIVE_DEV_CB_AI_SEND": "Send",
"LIVE_DEV_CB_AI_THINKING": "Applying styles\u2026",
"LIVE_DEV_CB_MORE_OPTIONS": "More options",
"LIVE_DEV_CB_DIM_W": "W",
"LIVE_DEV_CB_DIM_H": "H",
"LIVE_DEV_CB_MINMAX_TOOLTIP": "Min/Max constraints",
"LIVE_DEV_CB_MINMAX_MIN": "Min",
"LIVE_DEV_CB_MINMAX_MAX": "Max",
"LIVE_DEV_CB_ID_PLACEHOLDER": "none",
"LIVE_DEV_CB_ALL_WEIGHTS": "All weights",
"LIVE_DEV_CB_ALL_STYLES": "All styles",
"LIVE_DEV_HB_PARAGRAPH": "Paragraph",
"LIVE_DEV_HB_HEADING_1": "Heading 1",
"LIVE_DEV_HB_HEADING_2": "Heading 2",
"LIVE_DEV_HB_HEADING_3": "Heading 3",
"LIVE_DEV_HB_HEADING_4": "Heading 4",
"LIVE_DEV_HB_HEADING_5": "Heading 5",
"LIVE_DEV_HB_HEADING_6": "Heading 6",
"LIVE_DEV_HB_SPAN": "Span",
"LIVE_DEV_HB_BLOCKQUOTE": "Blockquote",
"LIVE_DEV_HB_PREFORMATTED": "Preformatted",
"LIVE_DEV_HB_CODE": "Code",
"LIVE_DEV_HB_EMPHASIS": "Emphasis",
"LIVE_DEV_HB_STRONG": "Strong",
"LIVE_DEV_HB_BOLD": "Bold",
"LIVE_DEV_HB_ITALIC": "Italic",
"LIVE_DEV_HB_UNDERLINE": "Underline",
"LIVE_DEV_HB_STRIKETHROUGH": "Strikethrough",
"LIVE_DEV_HB_SMALL": "Small",
"LIVE_DEV_HB_SUBSCRIPT": "Subscript",
"LIVE_DEV_HB_SUPERSCRIPT": "Superscript",
"LIVE_DEV_HB_MARK": "Highlight",
"LIVE_DEV_HB_ABBREVIATION": "Abbreviation",
"LIVE_DEV_HB_CITATION": "Citation",
"LIVE_DEV_HB_INLINE_QUOTE": "Inline Quote",
"LIVE_DEV_HB_TIME": "Time",
"LIVE_DEV_HB_KEYBOARD": "Keyboard",
"LIVE_DEV_HB_SAMPLE_OUTPUT": "Sample Output",
"LIVE_DEV_HB_VARIABLE": "Variable",
"LIVE_DEV_HB_CONTAINER": "Div",
"LIVE_DEV_HB_SECTION": "Section",
"LIVE_DEV_HB_ARTICLE": "Article",
"LIVE_DEV_HB_HEADER": "Header",
"LIVE_DEV_HB_FOOTER": "Footer",
"LIVE_DEV_HB_NAVIGATION": "Navigation",
"LIVE_DEV_HB_SIDEBAR": "Sidebar",
"LIVE_DEV_HB_MAIN": "Main",
"LIVE_DEV_HB_IMAGE": "Image",
"LIVE_DEV_HB_VIDEO": "Video",
"LIVE_DEV_HB_AUDIO": "Audio",
"LIVE_DEV_HB_PICTURE": "Picture",
"LIVE_DEV_HB_CANVAS": "Canvas",
"LIVE_DEV_HB_SVG": "SVG",
"LIVE_DEV_HB_FIGURE": "Figure",
"LIVE_DEV_HB_FIGCAPTION": "Caption",
"LIVE_DEV_HB_LINK": "Link",
"LIVE_DEV_HB_BUTTON": "Button",
"LIVE_DEV_HB_DETAILS": "Details",
"LIVE_DEV_HB_SUMMARY": "Summary",
"LIVE_DEV_HB_DIALOG": "Dialog",
"LIVE_DEV_HB_UNORDERED_LIST": "Unordered List",
"LIVE_DEV_HB_ORDERED_LIST": "Ordered List",
"LIVE_DEV_HB_LIST_ITEM": "List Item",
"LIVE_DEV_HB_DEF_LIST": "Definition List",
"LIVE_DEV_HB_DEF_TERM": "Definition Term",
"LIVE_DEV_HB_DEF_DESC": "Definition",
"LIVE_DEV_HB_FORM": "Form",
"LIVE_DEV_HB_TEXT_INPUT": "Text Input",
"LIVE_DEV_HB_TEXT_AREA": "Text Area",
"LIVE_DEV_HB_DROPDOWN": "Dropdown",
"LIVE_DEV_HB_OPTION": "Option",
"LIVE_DEV_HB_OPTION_GROUP": "Option Group",
"LIVE_DEV_HB_FIELDSET": "Fieldset",
"LIVE_DEV_HB_LEGEND": "Legend",
"LIVE_DEV_HB_LABEL": "Label",
"LIVE_DEV_HB_OUTPUT": "Output",
"LIVE_DEV_HB_METER": "Meter",
"LIVE_DEV_HB_PROGRESS": "Progress",
"LIVE_DEV_HB_EMAIL_INPUT": "Email Input",
"LIVE_DEV_HB_PASSWORD_INPUT": "Password Input",
"LIVE_DEV_HB_FILE_INPUT": "File Input",
"LIVE_DEV_HB_CHECKBOX": "Checkbox",
"LIVE_DEV_HB_RADIO": "Radio Button",
"LIVE_DEV_HB_NUMBER_INPUT": "Number Input",
"LIVE_DEV_HB_RANGE_INPUT": "Range Slider",
"LIVE_DEV_HB_DATE_INPUT": "Date Input",
"LIVE_DEV_HB_COLOR_INPUT": "Color Picker",
"LIVE_DEV_HB_SEARCH_INPUT": "Search Input",
"LIVE_DEV_HB_URL_INPUT": "URL Input",
"LIVE_DEV_HB_TEL_INPUT": "Phone Input",
"LIVE_DEV_HB_SUBMIT_BUTTON": "Submit Button",
"LIVE_DEV_HB_RESET_BUTTON": "Reset Button",
"LIVE_DEV_HB_HIDDEN_INPUT": "Hidden Input",
"LIVE_DEV_HB_TABLE": "Table",
"LIVE_DEV_HB_TABLE_HEAD": "Table Head",
"LIVE_DEV_HB_TABLE_BODY": "Table Body",
"LIVE_DEV_HB_TABLE_FOOT": "Table Foot",
"LIVE_DEV_HB_TABLE_ROW": "Table Row",
"LIVE_DEV_HB_TABLE_HEADER": "Table Header",
"LIVE_DEV_HB_TABLE_CELL": "Table Cell",
"LIVE_DEV_HB_TABLE_CAPTION": "Table Caption",
"LIVE_DEV_HB_COL_GROUP": "Column Group",
"LIVE_DEV_HB_COLUMN": "Column",
"LIVE_DEV_HB_IFRAME": "Iframe",
"LIVE_DEV_HB_EMBED": "Embed",
"LIVE_DEV_HB_OBJECT": "Object",
"LIVE_DEV_HB_DIVIDER": "Divider",
"LIVE_DEV_HB_LINE_BREAK": "Line Break",
"LIVE_DEV_HB_SOURCE": "Source",
"LIVE_DEV_HB_TEMPLATE": "Template",
"LIVE_DEV_HB_SLOT": "Slot",
"LIVE_DEV_HB_NOSCRIPT": "Noscript",
"LIVE_DEV_HB_SCRIPT": "Script",
"LIVE_DEV_HB_STYLE": "Style",
"LIVE_DEV_TOAST_NOT_EDITABLE": "Element not editable - generated by script",
"LIVE_DEV_COPY_TOAST_MESSAGE": "Element copied. Use 'Paste' to add it after the selected element",
"LIVE_DEV_TOAST_FIXED_ELEMENT_DISMISSED": "Element doesn't scroll with page - edit boxes hidden",
"LIVE_DEV_IMAGE_FOLDER_DIALOG_TITLE": "Select Folder to Save Image",
"LIVE_DEV_IMAGE_FOLDER_DIALOG_DESCRIPTION": "Choose where to download the image:",
"LIVE_DEV_IMAGE_FOLDER_DIALOG_PLACEHOLDER": "Type folder path (e.g., assets/images/)",
"LIVE_DEV_IMAGE_FOLDER_DIALOG_HELP": "💡 Type folder path or leave empty to download in 'images' folder.",
"LIVE_DEV_IMAGE_FOLDER_DIALOG_REMEMBER": "Don't ask again for this project",
"AVAILABLE_IN_PRO_TITLE": "Available in Phoenix Pro",
"DEVICE_SIZE_LIMIT_MESSAGE": "Phoenix Pro lets you preview your page at the screen sizes defined in your CSS.",
"MD_EDIT_UPSELL_MESSAGE": "Write Markdown like a document. Phoenix handles the formatting so you can stay focused on writing.",
"IMAGE_UPLOADING": "Uploading",
"IMAGE_UPLOAD_FAILED": "Failed to upload image",
"IMAGE_UPLOAD_LOGIN_REQUIRED_TITLE": "Log in to Embed Image",
"IMAGE_UPLOAD_LOGIN_REQUIRED_MSG": "Log in to upload and embed images in your document.",
"IMAGE_UPLOAD_LOGIN_BTN": "Log In",
"IMAGE_UPLOAD_CONFIRM_TITLE": "Embed Image",
"IMAGE_UPLOAD_CONFIRM_MSG": "Upload this image so it's included directly in your file. It'll work on any computer — no broken images when you share or move markdown files.",
"IMAGE_UPLOAD_HOSTED_ON": "Images are hosted on user-cdn.phcode.site",
"IMAGE_UPLOAD_BTN": "Upload & Embed",
"IMAGE_UPLOAD_DONT_SHOW_AGAIN": "Always embed without asking",
"IMAGE_UPLOAD_UNSUPPORTED_TYPE": "Unsupported image type: {0}",
"IMAGE_UPLOAD_LIMIT_TITLE": "Upload more images with Phoenix Pro",
"IMAGE_SEARCH_LIMIT_TITLE": "Image search limit reached",
"IMAGE_SEARCH_LIMIT_MESSAGE": "You’ve used all {0} image searches for this month.<br>Start a paid Phoenix Pro plan to remove trial limits and continue searching.",
"IMAGE_SEARCH_LIMIT_MESSAGE_THROTTLE": "Image search is temporarily unavailable due to high demand.<br>Start a paid Phoenix Pro plan to remove trial limits and continue searching.",
"IMAGE_SEARCH_PRO_THROTTLE_TITLE": "Image search limit reached",
"IMAGE_SEARCH_PRO_THROTTLE_MESSAGE": "Image search is temporarily unavailable due to high demand. This usually clears within an hour — please try again shortly.",
"LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}",
"LIVE_PREVIEW_MODE_TOGGLE_PREVIEW": "Toggle Preview Mode (F8)",
"LIVE_PREVIEW_MODE_PREVIEW": "Preview Mode",
"LIVE_PREVIEW_MODE_HIGHLIGHT": "Highlight Mode",
"LIVE_PREVIEW_MODE_EDIT": "Edit Mode",
"LIVE_PREVIEW_EDIT_HIGHLIGHT_ON": "Inspect Element on Hover",
"LIVE_PREVIEW_SHOW_RULER_LINES": "Show Measurements",
"LIVE_PREVIEW_LINK_EDITOR_AND_PREVIEW": "Link Editor and Preview",
"LIVE_DEV_SETTINGS_LINK_EDITOR_AND_PREVIEW_PREFERENCE": "Link editor cursor with live preview element highlighting. When enabled, moving the cursor in the editor highlights the corresponding element in the live preview, and clicking an element in the live preview jumps the cursor to its source code. Defaults to 'true'",
"LIVE_PREVIEW_MODE_PREFERENCE": "'{0}' shows only the webpage, '{1}' connects the webpage to your code - click on elements to jump to their code and vice versa, '{2}' provides highlighting along with advanced element manipulation",
"LIVE_PREVIEW_CONFIGURE_MODES": "Configure Live Preview Modes",
"LIVE_DEV_DETACHED_REPLACED_WITH_DEVTOOLS": "Live Preview was canceled because the browser's developer tools were opened",
"LIVE_DEV_DETACHED_TARGET_CLOSED": "Live Preview was canceled because the page was closed in the browser",
"LIVE_DEV_NAVIGATED_AWAY": "Live Preview was canceled because the browser navigated to a page that is not part of the current project",
"LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})",
"SAVE_CLOSE_TITLE": "Save Changes",
"SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document <span class='dialog-filename'>{0}</span>?",
"SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?",
"EXT_MODIFIED_TITLE": "External Changes",
"CONFIRM_DELETE_TITLE": "Confirm Delete",
"CONFIRM_FILE_DELETE": "Are you sure you want to delete the file <span class='dialog-filename'>{0}</span>?",
"CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder <span class='dialog-filename'>{0}</span>?",
"CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file <span class='dialog-filename'>{0}</span>?<br>You can restore this file from the trash.",
"CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder <span class='dialog-filename'>{0}</span>?<br>You can restore this folder from the trash.",
"CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file <span class='dialog-filename'>{0}</span>?<br>You can restore this file from the Recycle Bin.",
"CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder <span class='dialog-filename'>{0}</span>?<br>You can restore this folder from the Recycle Bin.",
"MOVE_TO_TRASH": "Move to Trash",
"MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin",
"FILE_DELETED_TITLE": "File Deleted",
"EXT_MODIFIED_WARNING": "<span class='dialog-filename'>{0}</span> has been modified on disk outside of {APP_NAME}.<br /><br />Do you want to save the file and overwrite those changes?",
"EXT_MODIFIED_MESSAGE": "<span class='dialog-filename'>{0}</span> has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.<br /><br />Which version do you want to keep?",
"EXT_DELETED_MESSAGE": "<span class='dialog-filename'>{0}</span> has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.<br /><br />Do you want to keep your changes?",
"EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart",
// Window unload warning messages
"WINDOW_UNLOAD_WARNING": "Are you sure you want to navigate to a different URL and leave {APP_NAME}?",
"WINDOW_UNLOAD_WARNING_WITH_UNSAVED_CHANGES": "You have unsaved changes! Are you sure you want to navigate to a different URL and leave {APP_NAME}?",
// Generic dialog/button labels
"DONE": "Done",
"OK": "OK",
"CANCEL": "Cancel",
"DONT_SAVE": "Don't Save",
"SAVE": "Save",
"SAVE_AS": "Save As\u2026",
"SAVE_AND_OVERWRITE": "Overwrite",
"ALWAYS_OVERWRITE": "Always Overwrite",
"DELETE": "Delete",
"BUTTON_YES": "Yes",
"BUTTON_NO": "No",
// Find, Replace, Find in Files
"FIND_MATCH_INDEX": "{0} of {1}",
"FIND_NO_RESULTS": "No results",
"FIND_QUERY_PLACEHOLDER": "Find\u2026",
"FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History",
"REPLACE_PLACEHOLDER": "Replace with\u2026",
"BUTTON_REPLACE_ALL": "Replace All",
"BUTTON_REPLACE_BATCH": "Batch\u2026",
"BUTTON_REPLACE_ALL_IN_FILES": "Replace\u2026",
"BUTTON_REPLACE": "Replace",
"BUTTON_NEXT": "\u25B6",
"BUTTON_PREV": "\u25C0",
"BUTTON_NEXT_HINT": "Next Match",
"BUTTON_PREV_HINT": "Previous Match",
"BUTTON_CASESENSITIVE_HINT": "Match Case",
"BUTTON_REGEXP_HINT": "Regular Expression",
"REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo",
"REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.<br />You won't be able to undo replacements in those files.",
"BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo",
"OPEN_FILE": "Open File",
"SAVE_FILE_AS": "Save File",
"CHOOSE_FOLDER": "Choose a folder",
"RELEASE_NOTES": "Release Notes",
"NO_UPDATE_TITLE": "You're Up to Date!",
"NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.",
// Find and Replace
"FIND_REPLACE_TITLE_LABEL": "Replace",
"FIND_REPLACE_TITLE_WITH": "with",
"FIND_TITLE_LABEL": "Found",
"FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}",
// Find in Files
"FIND_NUM_FILES": "{0} {1}",
"FIND_IN_FILES_SCOPED": "in <span class='dialog-filename'>{0}</span>",
"FIND_IN_FILES_NO_SCOPE": "in project",
"FIND_IN_FILES_PROJECT_SCOPE": "Find in project",
"FIND_IN_FILES_PROJECT_SCOPE_FILTER": "Find in {0}",
"FIND_IN_FILES_PROJECT_SCOPE_REPLACE": "Replace in project",
"FIND_IN_FILES_PROJECT_SCOPE_REPLACE_FILTER": "Replace in {0}",
"FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}",
"FIND_IN_FILES_FILE": "file",
"FIND_IN_FILES_FILES": "files",
"FIND_IN_FILES_MATCH": "match",
"FIND_IN_FILES_MATCHES": "matches",
"FIND_IN_FILES_MORE_THAN": "Over ",
"FIND_IN_FILES_PAGING": "{0}—{1}",
"FIND_IN_FILES_FILE_PATH": "<span class='dialog-filename'>{0}</span> {2} <span class='dialog-path'>{1}</span>", // We should use normal dashes on Windows instead of em dash eventually
"FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all",
"FIND_IN_FILES_INDEXING": "Indexing for Instant Search\u2026",
"FIND_IN_FILES_SEARCHING": "Searching Files\u2026",
"FIND_IN_FILES_SEARCHING_IN": "In {0}",
"FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search\u2026",
"FIND_IN_FILES_CACHE_LIMIT_TITLE": "File Indexing Suspended",
"FIND_IN_FILES_CACHE_LIMIT_MSG": "The project file cache has reached {0} MB. Indexing has been suspended to prevent high memory usage. Find in Files is disabled for this project. To reduce indexing size, add folders with large or generated files to .gitignore.",
"DESCRIPTION_MAX_FILE_CACHE_SIZE_MB": "Maximum size in MB for the instant search file cache.",
"REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors",
"REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.",
"ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info",
"ERROR_FETCHING_UPDATE_INFO_MSG": "There was a problem getting the latest update information from the server. Please make sure you are connected to the Internet and try again.",
// File exclusion filters
"NEW_FILE_FILTER": "New Exclusion Set\u2026",
"CLEAR_FILE_FILTER": "Don't Exclude Files",
"NO_FILE_FILTER": "No Files Excluded",
"EXCLUDE_FILE_FILTER": "Exclude files",
"INCLUDE_FILE_FILTER": "Search in files",
"FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css",
"FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.",
"FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.",
"FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.",
"FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.",
// Quick Edit
"ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position",
"ERROR_CSSQUICKEDIT_BETWEENCLASSES": "CSS Quick Edit: place cursor on a single class name",
"ERROR_CSSQUICKEDIT_CLASSNOTFOUND": "CSS Quick Edit: incomplete class attribute",
"ERROR_CSSQUICKEDIT_IDNOTFOUND": "CSS Quick Edit: incomplete id attribute",
"ERROR_CSSQUICKEDIT_UNSUPPORTEDATTR": "CSS Quick Edit: place cursor in tag, class, or id",
"ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax",
"ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name",
// Quick Docs
"ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position",
/**
* ProjectManager
*/
"PROJECT_LOADING": "Loading\u2026",
"UNTITLED": "Untitled",
"WORKING_FILES": "Working Files",
/**
* MainViewManager
*/
"TOP": "Top",
"BOTTOM": "Bottom",
"LEFT": "Left",
"RIGHT": "Right",
"CMD_SPLITVIEW_NONE": "No Split",
"CMD_SPLITVIEW_VERTICAL": "Vertical Split",
"CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split",
"SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally",
"GEAR_MENU_TOOLTIP": "Configure Working Files",
"CMD_TOGGLE_SHOW_WORKING_SET": "Show Working Files",
"CMD_TOGGLE_SHOW_FILE_TABS": "Show File Tab Bar",
"SPLITVIEW_INFO_TITLE": "Already Open",
"SPLITVIEW_MULTIPANE_WARNING": "The file is already open in another pane. {APP_NAME} will soon support opening the same file in more than one pane. Until then, the file will be shown in the pane it's already open in.<br /><br />(You'll only see this message once.)",
/**
* Keyboard modifiers and special key names
*/
"KEYBOARD_CTRL": "Ctrl",
"KEYBOARD_CTRL_DO_NOT_TRANSLATE": "true",
"KEYBOARD_SHIFT": "Shift",
"KEYBOARD_SHIFT_DO_NOT_TRANSLATE": "true",
"KEYBOARD_SPACE": "Space",
"KEYBOARD_SPACE_DO_NOT_TRANSLATE": "true",
"KEYBOARD_PAGE_UP": "Page Up",
"KEYBOARD_PAGE_UP_DO_NOT_TRANSLATE": "true",
"KEYBOARD_PAGE_DOWN": "Page Down",
"KEYBOARD_PAGE_DOWN_DO_NOT_TRANSLATE": "true",
"KEYBOARD_HOME": "Home",
"KEYBOARD_HOME_DO_NOT_TRANSLATE": "true",
"KEYBOARD_END": "End",
"KEYBOARD_END_DO_NOT_TRANSLATE": "true",
"KEYBOARD_INSERT": "Insert",
"KEYBOARD_INSERT_DO_NOT_TRANSLATE": "true",
"KEYBOARD_DELETE": "Delete",
"KEYBOARD_DELETE_DO_NOT_TRANSLATE": "true",
"KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.",
"KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut\u2026",
"KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut",
"KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for <b>'{0}'</b> (Current: <b>{1}</b>)",
"KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination <b>{0}</b> is already assigned to <b>'{1}'</b>. Reassign to <b>'{2}'</b>?",
"KEYBOARD_SHORTCUT_ASSIGN": "Assign",
"KEYBOARD_SHORTCUT_NONE": "None",
// keyboard shortcuts panel
"KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts\u2026",
"KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts\u2026",
//Table
"KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key",
"KEYBOARD_SHORTCUT_TABLE_KEY_BINDING": "Shortcut",
"KEYBOARD_SHORTCUT_TABLE_COMMAND_ID": "Command ID",
"KEYBOARD_SHORTCUT_TABLE_COMMAND_NAME": "Command",
"KEYBOARD_SHORTCUT_TABLE_DOUBLE_CLICK": "Double-click to change shortcut",
"KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin",
//Origins
"KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension",
//Bottom panel
"KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts",
"KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text",
"KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets",
"KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}",
"DEFAULT": "Default",
"KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…",
"KEYBOARD_SHORTCUT_PANEL_RESET": "Reset\u2026",
"KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts\u2026",
"KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts",
"KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.",
"KEYBOARD_SHORTCUT_SRC_USER": "User Defined",
"KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset",
/**
* StatusBar strings
*/
"STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}",
"STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}",
"STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line",
"STATUSBAR_SELECTION_SHORT_DO_NOT_TRANSLATE": " \u2014 Sel {0}",
"STATUSBAR_SELECTION_CH_SINGULAR": " \u2014 Selected {0} column",
"STATUSBAR_SELECTION_CH_PLURAL": " \u2014 Selected {0} columns",
"STATUSBAR_SELECTION_LINE_SINGULAR": " \u2014 Selected {0} line",
"STATUSBAR_SELECTION_LINE_PLURAL": " \u2014 Selected {0} lines",
"STATUSBAR_SELECTION_MULTIPLE": " \u2014 {0} Multiple Cursor selections",
"STATUSBAR_SELECTION_MULTIPLE_SHORT_DO_NOT_TRANSLATE": " \u2014 Mul {0}",
"STATUSBAR_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces",
"STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs",
"STATUSBAR_INDENT_SIZE_TOOLTIP_SPACES": "Click to change number of spaces used when indenting",
"STATUSBAR_INDENT_SIZE_TOOLTIP_TABS": "Click to change tab character width",
"STATUSBAR_SPACES": "Spaces:",
"STATUSBAR_TAB_SIZE": "Tab Size:",
"STATUSBAR_AUTO_INDENT": "<span title='Click to switch to fixed indents. Currently set to automatically detect and apply indents based on current file.'>Auto</span>",
"STATUSBAR_FIXED_INDENT": "<span title='Click to switch to Auto indent detection. Currently set to Fixed indent.'>Fixed</span>",
"STATUSBAR_LINE_COUNT_SINGULAR": "\u2014 {0} Line",
"STATUSBAR_LINE_COUNT_PLURAL": "\u2014 {0} Lines",
"STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled",
"STATUSBAR_INSERT": "INS",
"STATUSBAR_OVERWRITE": "OVR",
"STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes",
"STATUSBAR_LANG_TOOLTIP": "Click to change file type",
"STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.",
"STATUSBAR_DEFAULT_LANG": "(default)",
"STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files",
"STATUSBAR_ENCODING_TOOLTIP": "Select the encoding",
"STATUSBAR_TASKS": "Tasks",
"STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks",
"STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon",
"STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task\u2026",
"STATUSBAR_TASKS_PLAY": "Start or Resume",
"STATUSBAR_TASKS_PAUSE": "Pause",
"STATUSBAR_TASKS_STOP": "Stop",
"STATUSBAR_TASKS_RESTART": "Restart",
// Tab bar Strings
"CLOSE_TABS_TO_THE_RIGHT": "Close Tabs to the Right",
"CLOSE_TABS_TO_THE_LEFT": "Close Tabs to the Left",
"CLOSE_ALL_TABS": "Close All Tabs",
"CLOSE_SAVED_TABS": "Close Saved Tabs",
"CLOSE_TAB_TOOLTIP": "Close Tab",
// CodeInspection: errors/warnings
"ERRORS_NO_FILE": "No File Open",
"ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}",
"ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}",
"SINGLE_ERROR": "1 {0} Problem - {1}",
"SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}",
"MULTIPLE_ERRORS": "{0} {1} Problems - {2}",
"MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}",
"NO_ERRORS": "No {0} problems found - good job!",
"NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!",
"LINT_DISABLED": "Linting is disabled",
"NO_LINT_AVAILABLE": "No linter available for {0}",
"NOTHING_TO_LINT": "Nothing to lint",
"COPY_ERROR": "Copy problem",
"FIX": "Fix",
"CANNOT_FIX_TITLE": "Failed to Apply Fix",
"CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes",
"CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.",
"LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms",
"LINTER_FAILED": "{0} terminated with error: {1}",
"CLICK_VIEW_PROBLEM": "Click to view problem in panel",
/**
* Command Name Constants
*/
// File menu commands
"FILE_MENU": "File",
"CMD_FILE_NEW_UNTITLED": "New",
"CMD_FILE_NEW": "New File",
"CMD_FILE_DUPLICATE": "Duplicate",
"CMD_FILE_DUPLICATE_FILE": "Duplicate File",
"CMD_FILE_DOWNLOAD_PROJECT": "Download Project",
"CMD_FILE_DOWNLOAD": "Download",
"CMD_FILE_CUT": "Cut",
"CMD_FILE_COPY": "Copy",
"CMD_FILE_COPY_PATH": "Copy Path",
"CMD_FILE_PASTE": "Paste",
"CMD_PROJECT_NEW": "Start Project\u2026",
"CMD_FILE_NEW_FOLDER": "New Folder",
"CMD_FILE_OPEN": "Open Files\u2026",
"CMD_RECENT_FILES_OPEN": "Recent Files\u2026",
"CMD_ADD_TO_WORKING_SET": "Open To Working Set",
"CMD_OPEN_DROPPED_FILES": "Open Dropped Files",
"CMD_OPEN_FOLDER": "Open Folder\u2026",
"CMD_FILE_CLOSE": "Close",
"CMD_FILE_CLOSE_ALL": "Close All",
"CMD_REOPEN_CLOSED": "Reopen Closed File",
"CMD_FILE_CLOSE_LIST": "Close List",
"CMD_FILE_CLOSE_OTHERS": "Close Others",
"CMD_FILE_CLOSE_ABOVE": "Close Others Above",
"CMD_FILE_CLOSE_BELOW": "Close Others Below",
"CMD_FILE_SAVE": "Save File",
"CMD_FILE_SAVE_ALL": "Save All",
"CMD_FILE_SAVE_AS": "Save As\u2026",
"CMD_LIVE_FILE_PREVIEW": "Live Preview",
"CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings",
"CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview",
"CMD_RELOAD_LIVE_PREVIEW": "Reload Live Preview",
"CMD_PROJECT_SETTINGS": "Project Settings\u2026",
"CMD_FILE_RENAME": "Rename",
"CMD_FILE_DELETE": "Delete",
"CMD_INSTALL_EXTENSION": "Install Extension\u2026",
"CMD_EXTENSION_MANAGER": "Extension Manager\u2026",
"CMD_FILE_REFRESH": "Refresh File Tree",
"CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First",
"CMD_QUIT": "Quit",
"CMD_OPEN_IN": "Open In",
// Used in native File menu on Windows
"CMD_EXIT": "Exit",
// Edit menu commands
"EDIT_MENU": "Edit",
"CMD_UNDO": "Undo",
"CMD_REDO": "Redo",
"CMD_CUT": "Cut",
"CMD_COPY": "Copy",
"CMD_PASTE": "Paste",
"CMD_SELECT_ALL": "Select All",
"CMD_SELECT_LINE": "Select Line",
"CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines",
"CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line",
"CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line",
"CMD_INDENT": "Indent",
"CMD_UNINDENT": "Unindent",
"CMD_DUPLICATE": "Duplicate",
"CMD_DELETE_LINES": "Delete Line",
"CMD_COMMENT": "Toggle Line Comment",
"CMD_BLOCK_COMMENT": "Toggle Block Comment",
"CMD_LINE_UP": "Move Line Up",
"CMD_LINE_DOWN": "Move Line Down",
"CMD_OPEN_LINE_ABOVE": "Open Line Above",
"CMD_OPEN_LINE_BELOW": "Open Line Below",
"CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces",
"CMD_SHOW_CODE_HINTS": "Show Code Hints",
"CMD_BEAUTIFY_CODE": "Beautify Code",
"CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save",
"CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags",
"CMD_TOGGLE_EMMET": "Emmet",
// Search menu commands
"FIND_MENU": "Find",
"CMD_FIND": "Find",
"CMD_FIND_NEXT": "Find Next",
"CMD_FIND_PREVIOUS": "Find Previous",
"CMD_FIND_ALL_AND_SELECT": "Select All Occurrences",
"CMD_ADD_NEXT_MATCH": "Add Next Occurrence",
"CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence",
"CMD_FIND_IN_FILES": "Find in Files",
"CMD_FIND_IN_SUBTREE": "Find in\u2026",
"CMD_REPLACE": "Replace",
"CMD_REPLACE_IN_FILES": "Replace in Files",
"CMD_REPLACE_IN_SUBTREE": "Replace in\u2026",
// View menu commands
"VIEW_MENU": "View",
"CMD_HIDE_SIDEBAR": "Hide Sidebar",
"CMD_SHOW_SIDEBAR": "Show Sidebar",
"CMD_TOGGLE_SIDEBAR": "Toggle Sidebar",
"CMD_TOGGLE_TABBAR": "File Tab Bar",
"CMD_TOGGLE_PANELS": "Toggle Panels",
"CMD_TOGGLE_PURE_CODE": "No Distractions",
"CMD_TOGGLE_FULLSCREEN": "Fullscreen",
"CMD_ZOOM_UI": "Zoom UI and Fonts",
"CMD_ZOOM_IN": "Zoom In",
"CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)",
"CMD_ZOOM_OUT": "Zoom Out",
"CMD_INCREASE_FONT_SIZE": "Increase Font Size",
"CMD_DECREASE_FONT_SIZE": "Decrease Font Size",
"CMD_RESTORE_FONT_SIZE": "Restore Font Size",
"CMD_SCROLL_LINE_UP": "Scroll Line Up",
"CMD_SCROLL_LINE_DOWN": "Scroll Line Down",
"CMD_TOGGLE_LINE_NUMBERS": "Line Numbers",
"CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line",
"CMD_TOGGLE_WORD_WRAP": "Word Wrap",
"CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save",
"CMD_VIEW_TOGGLE_PROBLEMS": "Problems",
"CMD_VIEW_TERMINAL": "Terminal",
"CMD_WORKINGSET_SORT_BY_ADDED": "Sort by Added",
"CMD_WORKINGSET_SORT_BY_NAME": "Sort by Name",
"CMD_WORKINGSET_SORT_BY_TYPE": "Sort by Type",
"CMD_WORKING_SORT_TOGGLE_AUTO": "Automatic Sort",
"CMD_THEMES": "Themes\u2026",
"CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search",
"CMD_TOGGLE_RULERS": "Rulers",
"CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines",
"CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette",
// Navigate menu commands
"NAVIGATE_MENU": "Navigate",
"CMD_QUICK_OPEN": "Quick Open",
"CMD_GOTO_LINE": "Go to Line",
"CMD_GOTO_DEFINITION": "Quick Find Definition",
"CMD_GOTO_DEFINITION_PROJECT": "Quick Find Definition in Project",
"CMD_GOTO_FIRST_PROBLEM": "Go to First Problem",
"CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem",
"CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem",
"CMD_TOGGLE_QUICK_EDIT": "Quick Edit",
"CMD_TOGGLE_QUICK_DOCS": "Quick Docs",
"CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item",
"CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item",
"CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule",
"CMD_NEXT_DOC": "Next Document",
"CMD_PREV_DOC": "Previous Document",
"CMD_NAVIGATE_BACKWARD": "Navigate Backward",
"CMD_NAVIGATE_FORWARD": "Navigate Forward",
"CMD_NEXT_DOC_LIST_ORDER": "Next Document in List",
"CMD_PREV_DOC_LIST_ORDER": "Previous Document in List",
"CMD_SHOW_IN_TREE": "Show in File Tree",
"CMD_SHOW_IN_EXPLORER": "Windows File Explorer",
"CMD_SHOW_IN_FINDER": "macOS Finder",
"CMD_SHOW_IN_FILE_MANAGER": "File Manager",
"CMD_OPEN_IN_TERMINAL_DO_NOT_TRANSLATE": "Terminal",
"CMD_OPEN_IN_INTEGRATED_TERMINAL": "Integrated Terminal",
"CMD_OPEN_IN_CMD": "Command Prompt",
"CMD_OPEN_IN_POWER_SHELL": "PowerShell",
"CMD_OPEN_IN_DEFAULT_APP": "System Default App",
"CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus",
// Debug menu commands
"CMD_OPEN_VFS": "Open Virtual File System",
"CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools",
"CMD_EXPERIMENTAL_FEATURES": "Experimental Features",
"CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files",
"CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder\u2026",
"CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server",
// Help menu commands
"HELP_MENU": "Help",
"CMD_CHECK_FOR_UPDATE": "Check for Updates\u2026",
"CMD_AUTO_UPDATE": "Auto Update",