diff --git a/gulpfile.js/translateStrings.js b/gulpfile.js/translateStrings.js index 0cba588192..5d7c2065d2 100644 --- a/gulpfile.js/translateStrings.js +++ b/gulpfile.js/translateStrings.js @@ -231,6 +231,22 @@ function shallowEqual(obj1, obj2) { return true; } +/** + * Returns a new object whose keys are sorted in ascending order. + * + * @param {Object} obj - The object to sort by keys. + * @returns {Object} sortedObj - A new object with sorted keys. + */ +function getSortedObject(obj) { + const sortedObj = {}; + // Gather all keys, sort them, then build the new object in that order + const sortedKeys = Object.keys(obj).sort(); + for (const key of sortedKeys) { + sortedObj[key] = obj[key]; + } + return sortedObj; +} + /** * Auto translations scans the following files to determine which strings have changed and needs to be translated: * 1. nls//lastTranslated.json holds the last root english strings that was automatically translated. This will be @@ -326,7 +342,8 @@ async function _processLang(lang) { fs.writeFileSync(`src/nls/${lang}/strings.js`, fileToWrite); } if(!shallowEqual(updatedLastTranslatedJSON, lastTranslated)){ - fs.writeFileSync(`src/nls/${lang}/lastTranslated.json`, JSON.stringify(updatedLastTranslatedJSON, null, 2)); + const sortedList = getSortedObject(updatedLastTranslatedJSON); + fs.writeFileSync(`src/nls/${lang}/lastTranslated.json`, JSON.stringify(sortedList, null, 2)); } } diff --git a/src/nls/ar/lastTranslated.json b/src/nls/ar/lastTranslated.json index 3cbbd5d32a..14708c9e71 100644 --- a/src/nls/ar/lastTranslated.json +++ b/src/nls/ar/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", "BUTTON_CANCEL": "Cancel", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BUTTON_CASESENSITIVE_HINT": "Match Case", "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", "BUTTON_SAVE": "Save", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/bg/lastTranslated.json b/src/nls/bg/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/bg/lastTranslated.json +++ b/src/nls/bg/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/cs/lastTranslated.json b/src/nls/cs/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/cs/lastTranslated.json +++ b/src/nls/cs/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/da/lastTranslated.json b/src/nls/da/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/da/lastTranslated.json +++ b/src/nls/da/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/de/lastTranslated.json b/src/nls/de/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/de/lastTranslated.json +++ b/src/nls/de/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/el/lastTranslated.json b/src/nls/el/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/el/lastTranslated.json +++ b/src/nls/el/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/en-gb/lastTranslated.json b/src/nls/en-gb/lastTranslated.json index 3cbbd5d32a..14708c9e71 100644 --- a/src/nls/en-gb/lastTranslated.json +++ b/src/nls/en-gb/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", "BUTTON_CANCEL": "Cancel", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BUTTON_CASESENSITIVE_HINT": "Match Case", "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", "BUTTON_SAVE": "Save", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/es/lastTranslated.json b/src/nls/es/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/es/lastTranslated.json +++ b/src/nls/es/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/fa-ir/lastTranslated.json b/src/nls/fa-ir/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/fa-ir/lastTranslated.json +++ b/src/nls/fa-ir/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/fi/lastTranslated.json b/src/nls/fi/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/fi/lastTranslated.json +++ b/src/nls/fi/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/fr/lastTranslated.json b/src/nls/fr/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/fr/lastTranslated.json +++ b/src/nls/fr/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/gl/lastTranslated.json b/src/nls/gl/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/gl/lastTranslated.json +++ b/src/nls/gl/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/hi/lastTranslated.json b/src/nls/hi/lastTranslated.json index 3cbbd5d32a..14708c9e71 100644 --- a/src/nls/hi/lastTranslated.json +++ b/src/nls/hi/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", "BUTTON_CANCEL": "Cancel", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BUTTON_CASESENSITIVE_HINT": "Match Case", "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", "BUTTON_SAVE": "Save", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/hr/lastTranslated.json b/src/nls/hr/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/hr/lastTranslated.json +++ b/src/nls/hr/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/hu/lastTranslated.json b/src/nls/hu/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/hu/lastTranslated.json +++ b/src/nls/hu/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/id/lastTranslated.json b/src/nls/id/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/id/lastTranslated.json +++ b/src/nls/id/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/it/lastTranslated.json b/src/nls/it/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/it/lastTranslated.json +++ b/src/nls/it/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/ja/lastTranslated.json b/src/nls/ja/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/ja/lastTranslated.json +++ b/src/nls/ja/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/ko/lastTranslated.json b/src/nls/ko/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/ko/lastTranslated.json +++ b/src/nls/ko/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/lv/lastTranslated.json b/src/nls/lv/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/lv/lastTranslated.json +++ b/src/nls/lv/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/ml/lastTranslated.json b/src/nls/ml/lastTranslated.json index 3cbbd5d32a..14708c9e71 100644 --- a/src/nls/ml/lastTranslated.json +++ b/src/nls/ml/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", "BUTTON_CANCEL": "Cancel", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BUTTON_CASESENSITIVE_HINT": "Match Case", "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", "BUTTON_SAVE": "Save", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/nb/lastTranslated.json b/src/nls/nb/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/nb/lastTranslated.json +++ b/src/nls/nb/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/nl/lastTranslated.json b/src/nls/nl/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/nl/lastTranslated.json +++ b/src/nls/nl/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/pl/lastTranslated.json b/src/nls/pl/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/pl/lastTranslated.json +++ b/src/nls/pl/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/pt-br/lastTranslated.json b/src/nls/pt-br/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/pt-br/lastTranslated.json +++ b/src/nls/pt-br/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/pt-pt/lastTranslated.json b/src/nls/pt-pt/lastTranslated.json index ac427ecdb3..14708c9e71 100644 --- a/src/nls/pt-pt/lastTranslated.json +++ b/src/nls/pt-pt/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/ro/lastTranslated.json b/src/nls/ro/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/ro/lastTranslated.json +++ b/src/nls/ro/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/ru/lastTranslated.json b/src/nls/ru/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/ru/lastTranslated.json +++ b/src/nls/ru/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/sk/lastTranslated.json b/src/nls/sk/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/sk/lastTranslated.json +++ b/src/nls/sk/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/sr/lastTranslated.json b/src/nls/sr/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/sr/lastTranslated.json +++ b/src/nls/sr/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/sv/lastTranslated.json b/src/nls/sv/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/sv/lastTranslated.json +++ b/src/nls/sv/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/tr/lastTranslated.json b/src/nls/tr/lastTranslated.json index ac427ecdb3..14708c9e71 100644 --- a/src/nls/tr/lastTranslated.json +++ b/src/nls/tr/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/uk/lastTranslated.json b/src/nls/uk/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/uk/lastTranslated.json +++ b/src/nls/uk/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/ur/lastTranslated.json b/src/nls/ur/lastTranslated.json index 3cbbd5d32a..14708c9e71 100644 --- a/src/nls/ur/lastTranslated.json +++ b/src/nls/ur/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", "BUTTON_CANCEL": "Cancel", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BUTTON_CASESENSITIVE_HINT": "Match Case", "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", "BUTTON_SAVE": "Save", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/zh-cn/lastTranslated.json b/src/nls/zh-cn/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/zh-cn/lastTranslated.json +++ b/src/nls/zh-cn/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file diff --git a/src/nls/zh-tw/lastTranslated.json b/src/nls/zh-tw/lastTranslated.json index 7905718868..14708c9e71 100644 --- a/src/nls/zh-tw/lastTranslated.json +++ b/src/nls/zh-tw/lastTranslated.json @@ -1,1131 +1,375 @@ { - "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", - "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", - "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 {0}. (error {1})", - "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", - "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", - "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", - "ERROR_OPENING_FILE_TITLE": "Error Opening File", - "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {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 {0}. {1}", - "ERROR_SAVING_FILE_TITLE": "Error Saving File", - "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", - "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", - "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {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} {0}. {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} {0}. {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 {0}", - "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", - "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", - "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", - "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: {1}", - "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", - "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", - "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {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", - "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}", - "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.", - "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", - "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. Read more about working with large projects.", - "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.

Would you like to relaunch Chrome and enable remote debugging?

", - "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 Troubleshooting Live Preview connection errors.", - "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", - "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", - "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", - "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…", - "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…", - "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", - "LIVE_DEV_OPEN_EDGE": "Open In Edge…", - "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", - "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", - "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", - "LIVE_DEV_SETTINGS": "Live Preview Settings…", - "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` 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_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", - "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 {0}?", - "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 {0}?", - "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", - "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", - "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", - "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", - "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
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": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", - "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", - "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", - "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", - "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}?", - "DONE": "Done", - "OK": "OK", - "CANCEL": "Cancel", - "DONT_SAVE": "Don't Save", - "SAVE": "Save", - "SAVE_AS": "Save As…", - "SAVE_AND_OVERWRITE": "Overwrite", - "ALWAYS_OVERWRITE": "Always Overwrite", - "DELETE": "Delete", - "BUTTON_YES": "Yes", - "BUTTON_NO": "No", - "FIND_MATCH_INDEX": "{0} of {1}", - "FIND_NO_RESULTS": "No results", - "FIND_QUERY_PLACEHOLDER": "Find…", - "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", - "REPLACE_PLACEHOLDER": "Replace with…", - "BUTTON_REPLACE_ALL": "Replace All", - "BUTTON_REPLACE_BATCH": "Batch…", - "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", - "BUTTON_REPLACE": "Replace", - "BUTTON_NEXT": "▶", - "BUTTON_PREV": "◀", - "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.
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_REPLACE_TITLE_LABEL": "Replace", - "FIND_REPLACE_TITLE_WITH": "with", - "FIND_TITLE_LABEL": "Found", - "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", - "FIND_NUM_FILES": "{0} {1}", - "FIND_IN_FILES_SCOPED": "in {0}", - "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": "{0} {2} {1}", - "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", - "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", - "FIND_IN_FILES_SEARCHING": "Searching Files…", - "FIND_IN_FILES_SEARCHING_IN": "In {0}", - "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", - "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.", - "NEW_FILE_FILTER": "New Exclusion Set…", - "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.", - "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", - "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", - "PROJECT_LOADING": "Loading…", - "UNTITLED": "Untitled", - "WORKING_FILES": "Working Files", - "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 Set", - "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.

(You'll only see this message once.)", - "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", - "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", - "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", - "KEYBOARD_SHORTCUT_ASSIGN": "Assign", - "KEYBOARD_SHORTCUT_NONE": "None", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", - "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", - "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", - "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", - "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…", - "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", - "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_CURSOR_POSITION": "Line {0}, Column {1}", - "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", - "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", - "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", - "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", - "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", - "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", - "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", - "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": "Auto", - "STATUSBAR_FIXED_INDENT": "Fixed", - "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", - "STATUSBAR_LINE_COUNT_PLURAL": "— {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…", - "STATUSBAR_TASKS_PLAY": "Start or Resume", - "STATUSBAR_TASKS_PAUSE": "Pause", - "STATUSBAR_TASKS_STOP": "Stop", - "STATUSBAR_TASKS_RESTART": "Restart", - "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", - "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…", - "CMD_FILE_NEW_FOLDER": "New Folder", - "CMD_FILE_OPEN": "Open Files…", - "CMD_RECENT_FILES_OPEN": "Recent Files…", - "CMD_ADD_TO_WORKING_SET": "Open To Working Set", - "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", - "CMD_OPEN_FOLDER": "Open Folder…", - "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…", - "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": "Force Reload Live Preview", - "CMD_PROJECT_SETTINGS": "Project Settings…", - "CMD_FILE_RENAME": "Rename", - "CMD_FILE_DELETE": "Delete", - "CMD_INSTALL_EXTENSION": "Install Extension…", - "CMD_EXTENSION_MANAGER": "Extension Manager…", - "CMD_FILE_REFRESH": "Refresh File Tree", - "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", - "CMD_QUIT": "Quit", - "CMD_OPEN_IN": "Open In", - "CMD_EXIT": "Exit", - "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", - "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…", - "CMD_REPLACE": "Replace", - "CMD_REPLACE_IN_FILES": "Replace in Files", - "CMD_REPLACE_IN_SUBTREE": "Replace in…", - "VIEW_MENU": "View", - "CMD_HIDE_SIDEBAR": "Hide Sidebar", - "CMD_SHOW_SIDEBAR": "Show Sidebar", - "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", - "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_LIVE_HIGHLIGHT": "Live Preview Highlight", - "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", - "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", - "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…", - "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": "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_CMD": "Command Prompt", - "CMD_OPEN_IN_POWER_SHELL": "PowerShell", - "CMD_OPEN_IN_DEFAULT_APP": "System Default App", - "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", - "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…", - "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", - "HELP_MENU": "Help", - "CMD_CHECK_FOR_UPDATE": "Check for Updates…", - "CMD_AUTO_UPDATE": "Auto Update", - "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", - "CMD_SUPPORT": "{APP_NAME} Support", - "CMD_DOCS": "Help, Getting Started", - "CMD_SUGGEST": "Suggest a Feature", - "CMD_RELEASE_NOTES": "Release Notes", - "CMD_GET_INVOLVED": "Get Involved", - "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", - "CMD_HEALTH_DATA_STATISTICS": "Health Report…", - "CMD_HOMEPAGE": "Download Apps - Home Page", - "CMD_TWITTER": "{TWITTER_NAME} on Twitter", - "CMD_YOUTUBE": "Youtube Channel", - "CMD_ABOUT": "About {APP_TITLE}", - "CMD_OPEN_PREFERENCES": "Open Preferences File", - "CMD_OPEN_KEYMAP": "Open User Key Map File", - "EXPERIMENTAL_BUILD": "experimental build", - "RELEASE_BUILD": "build", - "DEVELOPMENT_BUILD": "development build", - "PRERELEASE_BUILD": "prerelease build", - "RELOAD_FROM_DISK": "Reload from Disk", - "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", - "CLOSE_DONT_SAVE": "Close (Don't Save)", - "RELAUNCH_CHROME": "Relaunch Chrome", - "ABOUT": "About", - "CLOSE": "Close", - "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", - "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", - "ABOUT_RELEASE_CREDITS": "Release Credits:", - "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", - "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", - "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", - "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", - "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", - "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", - "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", - "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", - "UPDATE_AVAILABLE_TITLE": "Update Available", - "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", - "UPDATE_READY_RESTART_TITLE": "Restart App to Update", - "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", - "UPDATE_FAILED_TITLE": "Update Failed", - "UPDATE_INSTALLING": "Installing Update…", - "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", - "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", - "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", - "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", - "GET_IT_NOW": "Get it now!", - "UPDATE_ON_EXIT": "Update On Exit", - "UPDATE_LATER": "Remind Me Later", - "UPDATE_DONE": "Restart to Update {APP_NAME}", - "UPDATE_RESTART_INSTALL": "Restart to install updates", - "UPDATE_DOWNLOADING": "Downloading Installer", - "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", - "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", - "UPDATING_APP": "Updating {APP_NAME}", - "UPDATING_APP_MESSAGE": "This may take a while", - "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", - "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", - "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", - "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", - "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", - "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", - "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", - "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", - "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", - "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", - "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", - "CURRENT_THEME": "Current Theme", - "GET_MORE_THEMES": "Get More...", - "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", - "FONT_SIZE": "Font Size", - "FONT_FAMILY": "Font Family", - "FONT_LINE_HEIGHT": "Line Height", - "THEMES_SETTINGS": "Themes Settings", - "THEMES_ERROR": "Themes Error", - "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", - "BUTTON_NEW_RULE": "New Rule", - "INSTALL": "Install", - "APPLY": "Apply", - "UPDATE": "Update", - "REMOVE": "Remove", - "DISABLE": "Disable", - "ENABLE": "Enable", - "OVERWRITE": "Overwrite", - "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", - "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", - "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", - "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", - "INSTALL_EXTENSION_TITLE": "Install Extension", - "UPDATE_EXTENSION_TITLE": "Update Extension", - "INSTALL_EXTENSION_LABEL": "Extension URL", - "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", - "INSTALLING_FROM": "Installing extension from {0}…", - "INSTALL_SUCCEEDED": "Installation successful!", - "INSTALL_FAILED": "Installation failed.", - "CANCELING_INSTALL": "Canceling…", - "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", - "INSTALL_CANCELED": "Installation canceled.", - "VIEW_COMPLETE_DESCRIPTION": "View complete description", - "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", - "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", - "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", - "MISSING_PACKAGE_JSON": "The package has no package.json file.", - "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", - "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", - "BAD_PACKAGE_NAME": "{0} is an invalid package name.", - "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", - "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", - "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", - "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", - "NPM_INSTALL_FAILED": "npm install command failed: {0}", - "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", - "MISSING_MAIN": "The package has no main.js file.", - "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", - "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", - "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", - "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", - "NO_SERVER_RESPONSE": "Cannot connect to server.", - "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", - "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", - "ERROR_LOADING": "The extension encountered an error while starting up.", - "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", - "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", - "UNKNOWN_ERROR": "Unknown internal error.", - "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", - "EXTENSION_VERIFIED_SORT": "Verified", - "EXTENSION_STAR": "Star", - "EXTENSION_STAR_SORT": "Star Rating", - "EXTENSION_MANAGER_TITLE": "Extension Manager", - "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", - "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", - "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", - "INSTALL_EXTENSION_DRAG": "Drag .zip here or", - "INSTALL_EXTENSION_DROP": "Drop .zip to install", - "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", - "INSTALL_FROM_URL": "Install from URL…", - "INSTALL_EXTENSION_VALIDATING": "Validating…", - "EXTENSION_AUTHOR": "Author", - "EXTENSION_DATE": "Date", - "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", - "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", - "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", - "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", - "EXTENSION_NO_DESCRIPTION": "No description", - "EXTENSION_MORE_INFO": "More info…", - "EXTENSION_ERROR": "Extension error", - "EXTENSION_KEYWORDS": "Keywords", - "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", - "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", - "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", - "EXTENSION_INSTALLED": "Installed", - "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", - "EXTENSION_SEARCH_PLACEHOLDER": "Search", - "EXTENSION_MORE_INFO_LINK": "More", - "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", - "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", - "BROWSE_EXTENSIONS": "Browse Extensions", - "EXTENSION_MANAGER_REMOVE": "Remove Extension", - "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_UPDATE": "Update Extension", - "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_DISABLE": "Disable Extension", - "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", - "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", - "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", - "MARKED_FOR_REMOVAL": "Marked for removal", - "UNDO_REMOVE": "Undo", - "MARKED_FOR_UPDATE": "Marked for update", - "UNDO_UPDATE": "Undo", - "MARKED_FOR_DISABLING": "Marked for disabling", - "UNDO_DISABLE": "Undo", - "CHANGE_AND_RELOAD_TITLE": "Change Extensions", - "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", - "REMOVE_AND_RELOAD": "Remove Extensions and Reload", - "CHANGE_AND_RELOAD": "Change Extensions and Reload", - "UPDATE_AND_RELOAD": "Update Extensions and Reload", - "DISABLE_AND_RELOAD": "Disable Extensions and Reload", - "PROCESSING_EXTENSIONS": "Processing extension changes…", - "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", - "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", - "NO_EXTENSION_MATCHES": "No extensions match your search.", - "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", - "EXTENSIONS_INSTALLED_TITLE": "Installed", - "EXTENSIONS_DEFAULT_TITLE": "Default", - "EXTENSIONS_AVAILABLE_TITLE": "Available", - "EXTENSIONS_THEMES_TITLE": "Themes", - "EXTENSIONS_UPDATES_TITLE": "Updates", - "EXTENSIONS_LAST_UPDATED": "Last Updated", - "EXTENSIONS_DOWNLOADS": "Downloads", - "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", - "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", - "INLINE_EDITOR_NO_MATCHES": "No matches available.", - "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", - "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", - "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", - "IMAGE_VIEWER_LARGEST_ICON": "largest", - "UNIT_PIXELS": "pixels", - "DEBUG_MENU": "Debug", - "ERRORS": "Errors", - "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", - "CMD_REFRESH_WINDOW": "Reload With Extensions", - "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", - "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", - "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", - "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", - "CMD_NEW_BRACKETS_WINDOW": "New Window", - "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", - "CMD_SWITCH_LANGUAGE": "Switch Language…", - "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", - "CMD_BUILD_TESTS": "Build Editor Tests", - "CMD_SHOW_PERF_DATA": "Show Performance Data", - "CMD_ENABLE_LOGGING": "Enable Detailed Logs", - "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", - "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", - "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", - "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", - "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", - "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", - "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", - "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", - "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", - "ERROR_CLTOOLS_SERVFAILED": "Internal error.", - "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", - "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", - "ERROR_LOADING_EXTENSION": "Error Loading Extension", - "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", - "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", - "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", - "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", - "LANGUAGE_TITLE": "Switch Language", - "LANGUAGE_MESSAGE": "Language:", - "LANGUAGE_SUBMIT": "Reload {APP_NAME}", - "LANGUAGE_CANCEL": "Cancel", - "LANGUAGE_SYSTEM_DEFAULT": "System Default", - "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", - "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", - "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", - "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", - "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", - "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", - "INLINE_TIMING_EDITOR_TIME": "Time", - "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", - "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", - "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", - "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", - "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", - "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", - "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", - "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", - "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", - "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", - "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", - "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", - "EDIT": "Edit", - "CMD_JUMPTO_DEFINITION": "Jump to Definition", - "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", - "NO_ARGUMENTS": "", - "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", - "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", - "CMD_REFACTOR": "Refactor", - "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", - "CMD_EXTRACTTO_FUNCTION": "Extract to Function", - "ERROR_TERN_FAILED": "Unable to get data from Tern", - "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", - "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", - "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", - "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", - "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", - "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", - "CMD_REFACTORING_RENAME": "Rename", - "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", - "CMD_REFACTORING_CONDITION": "Wrap in Condition", - "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", - "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", - "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", - "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", - "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", - "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", - "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", - "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", - "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", - "ERROR_RENAME_GENERAL": "Cannot rename selected text", - "JSHINT_NAME": "JSHint", - "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", - "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", - "ESLINT_NAME": "ESLint", - "CSS_LINT_NAME": "{0}", - "HTML_LINT_NAME": "HTML", - "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", - "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", - "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", - "CMD_ENABLE_SELECTION_VIEW": "Selection View", - "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", - "CMD_RECENT_PROJECTS": "Recent Projects", - "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", - "DOCS_MORE_LINK": "Read more", - "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", - "COLLAPSE_ALL": "Collapse All", - "EXPAND_ALL": "Expand All", - "COLLAPSE_CURRENT": "Collapse Current", - "EXPAND_CURRENT": "Expand Current", - "RECENT_FILES_DLG_HEADER": "Recent Files", - "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", - "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", - "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", - "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", - "RECOVER_UNSAVED_FILES_RESTORE": "Restore", - "DISCARD_UNSAVED_FILES_RESTORE": "Discard", - "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", - "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", - "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", - "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", - "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", - "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", - "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", - "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", - "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", - "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", - "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", - "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", - "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", - "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", - "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", - "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", - "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", - "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", - "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", - "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", - "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", - "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", - "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", - "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", - "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", - "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", - "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", - "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", - "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", - "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", - "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", - "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", - "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", - "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", - "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", - "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", - "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", - "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", - "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", - "DESCRIPTION_LANGUAGE": "Language specific settings", - "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", - "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", - "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", - "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", - "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", - "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", - "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", - "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", - "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", - "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", - "DESCRIPTION_PATH": "Path specific settings", - "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", - "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", - "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", - "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", - "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", - "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", - "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", - "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", - "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", - "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", - "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", - "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", - "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", - "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", - "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", - "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", - "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", - "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", - "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", - "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", - "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", - "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", - "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", - "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", - "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", - "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", - "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", - "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", - "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", - "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", - "DESCRIPTION_THEME": "Select a {APP_NAME} theme", - "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", - "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", - "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", - "DESCRIPTION_FONT_FAMILY": "Change font family", - "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", - "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", - "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", - "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", - "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", - "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", - "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", - "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", - "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", - "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", - "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", - "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", - "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", - "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", - "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", - "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", - "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", - "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", - "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", - "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", - "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", - "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", - "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", - "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", - "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", - "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", - "TRUST_PROJECT": "Trust & Execute Preview - {0}", - "TRUST_AUTHORS": "Do you trust the authors of this project?", - "DOWNLOAD_FAILED": "Download failed.", - "DOWNLOAD_COMPLETE": "Download complete!", - "UPDATE_SUCCESSFUL": "Update successful!", - "UPDATE_FAILED": "Update failed!", - "VALIDATION_FAILED": "Validation failed!", - "INITIALISATION_FAILED": "Initialization failed!", - "CLEANUP_FAILED": "Clean-up failed!", - "WARNING_TYPE": "Warning!", - "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", - "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", - "GO_TO_SITE": "Go to brackets.io to retry.", - "INTERNET_UNAVAILABLE": "No Internet connection available.", - "UPDATEDIR_READ_FAILED": "Update directory could not be read.", - "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", - "INITIAL_DOWNLOAD": "Downloading Update...", - "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", - "VALIDATING_INSTALLER": "Download complete! Validating Installer...", - "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", - "INSTALLER_NOT_FOUND": "Installer not found.", - "DOWNLOAD_ERROR": "Error occurred while downloading.", - "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", - "RESTART_BUTTON": "Restart", - "LATER_BUTTON": "Later", - "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", - "AUTOUPDATE_ERROR": "Error!", - "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", - "NUMBER_WITH_PERCENTAGE": "{0}%", - "CMD_FIND_RELATED_FILES": "Find Related Files", - "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", - "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", - "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", - "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", - "PHP_SERVER_ERROR_TITLE": "Error", - "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", - "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", - "OPEN_PREFERENNCES": "Open Preferences", - "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", - "FIND_ALL_REFERENCES": "Find All References", - "REFERENCES_IN_FILES": "references", - "REFERENCE_IN_FILES": "reference", - "REFERENCES_NO_RESULTS": "No References available for current cursor position", - "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", - "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", - "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", - "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", - "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", - "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", - "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", - "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", - "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", - "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", - "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", - "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", - "ATTENTION_SAFARI_USERS": "Attention Safari Users", - "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", - "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", - "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", - "SHARE_WEBSITE": "Publish and Share Website?", - "PUBLISH": "Publish", - "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", - "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", - "PUBLISH_PAGE": "Click to publish and share this site", - "PUBLISH_VIEW_PAGE": "Click to view published page", - "MISSING_FIELDS": "Missing Fields", - "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", - "CODE_EDITOR": "Code Editor", - "BUILD_THE_WEB": "Build the web", - "IMPORT_PROJECT": "Import Project", - "START_PROJECT": "Start Project…", - "DOWNLOAD_DESKTOP_APP": "Download Desktop App", - "GET_DESKTOP_APP": "Get Desktop App", - "CREATE_PROJECT": "Create Project", - "SETTING_UP_PROJECT": "Setting Up Project", - "LOCATION": "Location :", - "DOWNLOADING": "Downloading...", - "DOWNLOADING_FILE": "Downloading {0}...", - "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", - "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", - "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", - "PLEASE_SELECT_A_FOLDER": "Please select a folder...", - "UNZIP_IN_PROGRESS": "Unzipping files...", - "UNZIP_FAILED": "Error: Unzipping failed.", - "CONFIRM_REPLACE_TITLE": "Confirm Replace", - "KEEP_BOTH": "Keep Both", - "EXPLORE": "HTML Games", - "BLOG": "Blog", - "PHOENIX_DEFAULT_PROJECT": "Default Project", - "PROJECT_NAME": "Project name:", - "NEW_HTML": "New HTML Project", - "LICENSE": "License & Credits:", - "PREVIEW": "Preview", - "BUILD_WEBSITE": "Build Website", - "VIEW_MORE": "View More...", - "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", - "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", - "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", - "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", - "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", - "BUILD_WEBSITE_SECTION": "Build Website", - "LEARN_SECTION": "Learn With Examples", - "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", - "CREATE_EXTENSION": "Create Extension", - "CREATE_THEME": "Create Theme", - "WEBPAGE_HOME_PAGE": "Home Page", - "WEBPAGE_BLOG": "Blog Page", - "WEBPAGE_DASHBOARD": "HTML Dashboard", - "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", - "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", - "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", - "PROJECT_FROM_BROWSER": "Stored in Your Browser", - "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", - "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", - "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", - "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", - "ENJOYING_APP": "Enjoying {APP_NAME}?", - "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", - "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", - "TEST_TRANSLATE": "use this to test translations", - "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", - "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", - "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", - "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", - "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", - "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", - "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", - "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", - "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", - "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", - "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", - "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", - "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", - "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", - "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", - "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", - "AUTHOR": "Author", - "BUTTON_CANCEL": "Cancel", - "BUTTON_CLOSE": "Close", - "BUTTON_OK": "OK", - "BUTTON_SAVE": "Save", - "GIT_PROJECT": "Get from Git", - "NEW_PROJECT_FROM_GIT": "New Project from Git", - "GIT_REPO_URL": "Git Repo URL :", - "GIT_CLONE_URL": "Git Clone URL :", - "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", - "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", - "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", - "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", - "ERROR_CLONING_TITLE": "Git clone Failed", - "ENABLE_GIT": "Enable Git", + "ABOUT": "About", + "ABOUT_RELEASE_CREDITS": "Release Credits:", + "ABOUT_TEXT_BUILD_TIMESTAMP": "build timestamp: ", + "ABOUT_TEXT_LINE1": "Release {VERSION_MAJOR}.{VERSION_MINOR} {BUILD_TYPE} {VERSION}", + "ABOUT_TEXT_LINE3": "Third Party Libraries that we use - Licences and Attributions . ", + "ABOUT_TEXT_LINE4": "Documentation and source at https://github.com/phcode-dev/phoenix/", + "ABOUT_TEXT_LINE5": "Made with ❤ and JavaScript by:", + "ABOUT_TEXT_LINE6": "Lots of people (but we're having trouble loading that data right now).", + "ABOUT_TEXT_MDN_DOCS": "MDN Docs and the MDN graphical logo are licensed under a Creative Commons Attribution license, CC-BY-SA 2.5 Unported.", "ACTION": "Action", - "STATUSBAR_SHOW_GIT": "Git Panel", "ADD_ENDLINE_TO_THE_END_OF_FILE": "Add endline at the end of file", "ADD_TO_GITIGNORE": "Add to .gitignore", + "ALWAYS_OVERWRITE": "Always Overwrite", "AMEND_COMMIT": "Amend last commit", - "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", "AMEND_COMMIT_FORBIDDEN": "Cannot amend commit when there are no unpushed commits", - "_ANOTHER_BRANCH": "another branch", + "API_NOT_COMPATIBLE": "The extension isn't compatible with this version of {APP_NAME}. It's installed in your disabled extensions folder.", + "APPLY": "Apply", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_CNF_MSG": "Following file types have been successfully associated with default applications.
{0} You have the option to change your preference on whether you delete/add new file type associations in phcode.json by going to “Debug->Open Preferences File” menu.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_MSG": "Your current folder has graphic file types which are not supported by {APP_NAME}.
You can now associate specific file types with external editors. Once associated, you can open graphic files like .xd, .psd, .jpg, .png, .ai, .svg in their default applications by double clicking on the files in File Tree.

Please click on ‘Ok’ button to associate the graphic file types with their respective default applications.", + "ASSOCIATE_GRAPHICS_FILE_TO_DEFAULT_APP_TITLE": "Open Graphic Files in External Editors.", + "ATTENTION_SAFARI_USERS": "Attention Safari Users", + "ATTENTION_SAFARI_USERS_MESSAGE": "Safari automatically deletes website data if a site is not revisited within 7 days. {APP_NAME} relies on browser storage to save your projects, which may be removed due to this policy.

It is recommended to download the macOS desktop app from https://phcode.io
", + "AUTHOR": "Author", "AUTHORS_OF": "Authors of", - "SYSTEM_CONFIGURATION": "System configuration", + "AUTOUPDATE_ERROR": "Error!", + "AUTOUPDATE_IN_PROGRESS": "An update is already in progress.", + "BAD_HTTP_STATUS": "File not found on server (HTTP {0}).", + "BAD_PACKAGE_NAME": "{0} is an invalid package name.", + "BASEURL_ERROR_HASH_DISALLOWED": "The base URL can't contain hashes like \"{0}\".", + "BASEURL_ERROR_INVALID_CHAR": "Special characters like '{0}' must be %-encoded.", + "BASEURL_ERROR_INVALID_PROTOCOL": "The {0} protocol isn't supported by Live Preview—please use http: or https: .", + "BASEURL_ERROR_SEARCH_DISALLOWED": "The base URL can't contain search parameters like \"{0}\".", + "BASEURL_ERROR_UNKNOWN_ERROR": "Unknown error parsing Base URL", + "BEAUTIFY_CODE_NOTIFICATION": "Click here or press `{0}` to Beautify code.

ok", + "BEAUTIFY_ERROR": "Could not beautify code. Check Syntax.", + "BEAUTIFY_ERROR_ORIGINAL_CHANGED": "Could not beautify. Editor text changed after beautification.", + "BEAUTIFY_ERROR_SELECTION": "Could not beautify.
Incomplete code block selected or invalid syntax.", + "BEAUTIFY_OPTIONS": "Options that control how Beautify Code works", + "BEAUTIFY_OPTION_BRACKET_SAME_LINE": "Put the > of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements)", + "BEAUTIFY_OPTION_PRINT_TRAILING_COMMAS": "Print trailing commas wherever possible in multi-line comma-separated syntactic structures", + "BEAUTIFY_OPTION_PRINT_WIDTH": "Specify the line length that beautifier will wrap on", + "BEAUTIFY_OPTION_PROSE_WRAP": "Wrap prose if it exceeds the print width in markdown files", + "BEAUTIFY_OPTION_QUOTE_PROPS": "Change when properties in objects are quoted", + "BEAUTIFY_OPTION_SEMICOLON": "Add a semicolon at the end of every statement", + "BEAUTIFY_OPTION_SINGLE_ATTRIBUTE_PER_LINE": "Enforce single attribute per line in HTML, Vue and JSX", + "BEAUTIFY_OPTION_SINGLE_QUOTE": "Use single quotes instead of double quotes", + "BEAUTIFY_PROJECT_BUSY_MESSAGE": "Beautifying File {0}", + "BEZIER_EDITOR_INFO": " Move selected point
Shift Move by ten units
Tab Switch points", + "BLOG": "Blog", + "BOTTOM": "Bottom", "BRACKETS_GIT_ERROR": "Git encountered an error…", "BRANCH_NAME": "Branch name", - "CHECKOUT_COMMIT": "Checkout", - "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", - "GIT_CLONE": "Clone", + "BROWSE_EXTENSIONS": "Browse Extensions", + "BUILD_THE_WEB": "Build the web", + "BUILD_WEBSITE": "Build Website", + "BUILD_WEBSITE_SECTION": "Build Website", + "BUTTON_CANCEL": "Cancel", + "BUTTON_CASESENSITIVE_HINT": "Match Case", + "BUTTON_CLOSE": "Close", "BUTTON_COMMIT": "Commit", "BUTTON_DEFAULTS": "Restore defaults", "BUTTON_FIND_CONFLICTS": "Find conflicts…", - "GIT_INIT": "Init", "BUTTON_MERGE_ABORT": "Abort merge", + "BUTTON_NEW_RULE": "New Rule", + "BUTTON_NEXT": "▶", + "BUTTON_NEXT_HINT": "Next Match", + "BUTTON_NO": "No", + "BUTTON_OK": "OK", + "BUTTON_PREV": "◀", + "BUTTON_PREV_HINT": "Previous Match", "BUTTON_REBASE_ABORT": "Abort", "BUTTON_REBASE_CONTINUE": "Continue rebase", "BUTTON_REBASE_SKIP": "Skip", - "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", - "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", - "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", - "MENU_TAG_COMMIT": "Tag Commit", - "RESET_HARD_TITLE": "Confirm Hard Reset", - "RESET_MIXED_TITLE": "Confirm Mixed Reset", - "RESET_SOFT_TITLE": "Confirm Soft Reset", - "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", - "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", - "RESET": "Reset", - "CHANGE_USER_EMAIL_TITLE": "Change git email", + "BUTTON_REGEXP_HINT": "Regular Expression", + "BUTTON_REPLACE": "Replace", + "BUTTON_REPLACE_ALL": "Replace All", + "BUTTON_REPLACE_ALL_IN_FILES": "Replace…", + "BUTTON_REPLACE_BATCH": "Batch…", + "BUTTON_REPLACE_WITHOUT_UNDO": "Replace Without Undo", + "BUTTON_SAVE": "Save", + "BUTTON_YES": "Yes", + "CANCEL": "Cancel", + "CANCELING_HUNG": "Canceling the install is taking a long time. An internal error may have occurred.", + "CANCELING_INSTALL": "Canceling…", + "CANNOT_DOWNLOAD_TITLE": "Cannot Download {0}", + "CANNOT_DUPLICATE_TITLE": "Cannot Duplicate", + "CANNOT_FIX_MESSAGE": "The document has been modified since the fix was prepared. Please try again.", + "CANNOT_FIX_SOME_TITLE": "Failed to Apply Some Fixes", + "CANNOT_FIX_TITLE": "Failed to Apply Fix", + "CANNOT_PASTE_TITLE": "Cannot Paste {0}", + "CANNOT_PUBLISH_LARGE_PROJECT": "Cannot Publish Large Project", + "CANNOT_PUBLISH_LARGE_PROJECT_MESSAGE": "Phoenix is still in experimental alpha. We have not yet enabled sync of projects with greater than 500 files.", + "CANNOT_WRITE_TEMP": "Unable to save download to temp file.", + "CANT_DROP_ZIP": "Dropping zip files will be supported soon...", + "CANT_REMOVE_DEV": "Extensions in the \"dev\" folder must be manually deleted.", + "CANT_UPDATE": "The update isn't compatible with this version of {APP_NAME}.", + "CANT_UPDATE_DEV": "Extensions in the \"dev\" folder can't be updated automatically.", + "CHANGE_AND_RELOAD": "Change Extensions and Reload", + "CHANGE_AND_RELOAD_MESSAGE": "To update, remove or disable the marked extensions, {APP_NAME} will need to reload. You'll be prompted to save unsaved changes.", + "CHANGE_AND_RELOAD_TITLE": "Change Extensions", "CHANGE_USER_EMAIL": "Change git email…", "CHANGE_USER_EMAIL_MENU": "Change git email ({0})…", - "CHANGE_USER_NAME_TITLE": "Change git username", + "CHANGE_USER_EMAIL_TITLE": "Change git email", "CHANGE_USER_NAME": "Change git username…", "CHANGE_USER_NAME_MENU": "Change git username ({0})…", - "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "CHANGE_USER_NAME_TITLE": "Change git username", + "CHECKOUT_COMMIT": "Checkout", + "CHECKOUT_COMMIT_DETAIL": "Commit Message: {0}
Commit hash: {1}", + "CHECKSUM_DID_NOT_MATCH": "Checksum didn't match.", + "CHOOSE_FOLDER": "Choose a folder", + "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEANUP_FAILED": "Clean-up failed!", "CLEAN_FILE_END": "File cleaned", "CLEAN_FILE_START": "Cleaning file", - "CLEANING_WHITESPACE_PROGRESS": "Cleaning whitespace from files…", + "CLEAR_FILE_FILTER": "Don't Exclude Files", "CLEAR_WHITESPACE_ON_FILE_SAVE": "Clear whitespace on file save", + "CLICK_RESTART_TO_UPDATE": "Click Restart to update Brackets.", + "CLICK_VIEW_PROBLEM": "Click to view problem in panel", "CLONE_REPOSITORY": "Clone repository", - "CODE_INSPECTION_PROBLEMS": "Code inspection problems", + "CLOSE": "Close", + "CLOSE_DONT_SAVE": "Close (Don't Save)", + "CMD_ABOUT": "About {APP_TITLE}", + "CMD_ADD_CUR_TO_NEXT_LINE": "Add Cursor to Next Line", + "CMD_ADD_CUR_TO_PREV_LINE": "Add Cursor to Previous Line", + "CMD_ADD_NEXT_MATCH": "Add Next Occurrence", + "CMD_ADD_TO_WORKING_SET": "Open To Working Set", + "CMD_AUTO_RENAME_TAGS": "Auto Rename HTML Tags", + "CMD_AUTO_UPDATE": "Auto Update", + "CMD_BEAUTIFY_CODE": "Beautify Code", + "CMD_BEAUTIFY_CODE_ON_SAVE": "Beautify Code After Save", + "CMD_BLOCK_COMMENT": "Toggle Block Comment", + "CMD_BUILD_TESTS": "Build Editor Tests", + "CMD_CHECK_FOR_UPDATE": "Check for Updates…", + "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", + "CMD_COMMENT": "Toggle Line Comment", + "CMD_COPY": "Copy", + "CMD_CSS_QUICK_EDIT_NEW_RULE": "New Rule", + "CMD_CUT": "Cut", + "CMD_DECREASE_FONT_SIZE": "Decrease Font Size", + "CMD_DELETE_LINES": "Delete Line", + "CMD_DIAGNOSTIC_TOOLS": "{APP_NAME} Diagnostic Tools", + "CMD_DOCS": "Help, Getting Started", + "CMD_DUPLICATE": "Duplicate", + "CMD_ENABLE_DRAG_AND_DROP": "Drag And Drop Files", + "CMD_ENABLE_GIT_LOGS": "Git Verbose Logs", + "CMD_ENABLE_LIVE_PREVIEW_LOGS": "Live Preview Logs", + "CMD_ENABLE_LOGGING": "Enable Detailed Logs", + "CMD_ENABLE_PHNODE_INSPECTOR": "Enable PhNode Inspector", + "CMD_ENABLE_QUICK_VIEW": "Quick View on Hover", + "CMD_ENABLE_SELECTION_VIEW": "Selection View", + "CMD_EXIT": "Exit", + "CMD_EXPERIMENTAL_FEATURES": "Experimental Features", + "CMD_EXTENSION_MANAGER": "Extension Manager…", + "CMD_EXTRACTTO_FUNCTION": "Extract to Function", + "CMD_EXTRACTTO_VARIABLE": "Extract to Variable", + "CMD_FILE_CLOSE": "Close", + "CMD_FILE_CLOSE_ABOVE": "Close Others Above", + "CMD_FILE_CLOSE_ALL": "Close All", + "CMD_FILE_CLOSE_BELOW": "Close Others Below", + "CMD_FILE_CLOSE_LIST": "Close List", + "CMD_FILE_CLOSE_OTHERS": "Close Others", + "CMD_FILE_COPY": "Copy", + "CMD_FILE_COPY_PATH": "Copy Path", + "CMD_FILE_CUT": "Cut", + "CMD_FILE_DELETE": "Delete", + "CMD_FILE_DOWNLOAD": "Download", + "CMD_FILE_DOWNLOAD_PROJECT": "Download Project", + "CMD_FILE_DUPLICATE": "Duplicate", + "CMD_FILE_DUPLICATE_FILE": "Duplicate File", + "CMD_FILE_NEW": "New File", + "CMD_FILE_NEW_FOLDER": "New Folder", + "CMD_FILE_NEW_UNTITLED": "New", + "CMD_FILE_OPEN": "Open Files…", + "CMD_FILE_PASTE": "Paste", + "CMD_FILE_REFRESH": "Refresh File Tree", + "CMD_FILE_RENAME": "Rename", + "CMD_FILE_SAVE": "Save File", + "CMD_FILE_SAVE_ALL": "Save All", + "CMD_FILE_SAVE_AS": "Save As…", + "CMD_FILE_SHOW_FOLDERS_FIRST": "Sort Folders First", + "CMD_FIND": "Find", + "CMD_FIND_ALL_AND_SELECT": "Select All Occurrences", + "CMD_FIND_DOCUMENT_SYMBOLS": "Find Document Symbols", + "CMD_FIND_IN_FILES": "Find in Files", + "CMD_FIND_IN_SUBTREE": "Find in…", + "CMD_FIND_NEXT": "Find Next", + "CMD_FIND_PREVIOUS": "Find Previous", + "CMD_FIND_PROJECT_SYMBOLS": "Find Project Symbols", + "CMD_FIND_RELATED_FILES": "Find Related Files", + "CMD_GET_INVOLVED": "Get Involved", + "CMD_GET_PHNODE_INSPECTOR_URL": "How to Inspect PhNode", + "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_LINE": "Go to Line", + "CMD_GOTO_NEXT_PROBLEM": "Go to Next Problem", + "CMD_GOTO_PREV_PROBLEM": "Go to Previous Problem", + "CMD_HEALTH_DATA_STATISTICS": "Health Report…", + "CMD_HIDE_SIDEBAR": "Hide Sidebar", + "CMD_HOMEPAGE": "Download Apps - Home Page", + "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", + "CMD_INCREASE_FONT_SIZE": "Increase Font Size", + "CMD_INDENT": "Indent", + "CMD_INSTALL_EXTENSION": "Install Extension…", + "CMD_JUMPTO_DEFINITION": "Jump to Definition", + "CMD_KEYBOARD_NAV_OVERLAY": "Visual Command Palette", + "CMD_LAUNCH_SCRIPT_MAC": "Install Command Line Shortcut", + "CMD_LINE_DOWN": "Move Line Down", + "CMD_LINE_UP": "Move Line Up", + "CMD_LIVE_FILE_PREVIEW": "Live Preview", + "CMD_LIVE_FILE_PREVIEW_SETTINGS": "Live Preview Settings", + "CMD_LIVE_HIGHLIGHT": "Live Preview Highlight", + "CMD_LOAD_CURRENT_EXTENSION": "Load Project As Extension", + "CMD_NAVIGATE_BACKWARD": "Navigate Backward", + "CMD_NAVIGATE_FORWARD": "Navigate Forward", + "CMD_NEW_BRACKETS_WINDOW": "New Window", + "CMD_NEXT_DOC": "Next Document", + "CMD_NEXT_DOC_LIST_ORDER": "Next Document in List", + "CMD_OPEN_BRACKETS_SOURCE": "Open {APP_NAME} Source", + "CMD_OPEN_DROPPED_FILES": "Open Dropped Files", + "CMD_OPEN_EXTENSIONS_FOLDER": "Open Extensions Folder…", + "CMD_OPEN_FOLDER": "Open Folder…", + "CMD_OPEN_IN": "Open In", + "CMD_OPEN_IN_CMD": "Command Prompt", + "CMD_OPEN_IN_DEFAULT_APP": "System Default App", + "CMD_OPEN_IN_POWER_SHELL": "PowerShell", + "CMD_OPEN_KEYMAP": "Open User Key Map File", + "CMD_OPEN_LINE_ABOVE": "Open Line Above", + "CMD_OPEN_LINE_BELOW": "Open Line Below", + "CMD_OPEN_PREFERENCES": "Open Preferences File", + "CMD_OPEN_VFS": "Open Virtual File System", + "CMD_OPEN_VIRTUAL_SERVER": "Open Virtual Server", + "CMD_PASTE": "Paste", + "CMD_PREV_DOC": "Previous Document", + "CMD_PREV_DOC_LIST_ORDER": "Previous Document in List", + "CMD_PROJECT_NEW": "Start Project…", + "CMD_PROJECT_SETTINGS": "Project Settings…", + "CMD_QUICK_EDIT_NEXT_MATCH": "Next Quick Edit Item", + "CMD_QUICK_EDIT_PREV_MATCH": "Previous Quick Edit Item", + "CMD_QUICK_OPEN": "Quick Open", + "CMD_QUIT": "Quit", + "CMD_RECENT_FILES_OPEN": "Recent Files…", + "CMD_RECENT_PROJECTS": "Recent Projects", + "CMD_REDO": "Redo", + "CMD_REFACTOR": "Refactor", + "CMD_REFACTORING_ARROW_FUNCTION": "Convert to Arrow Function", + "CMD_REFACTORING_CONDITION": "Wrap in Condition", + "CMD_REFACTORING_GETTERS_SETTERS": "Create Getters/Setters", + "CMD_REFACTORING_RENAME": "Rename", + "CMD_REFACTORING_TRY_CATCH": "Wrap in Try Catch", + "CMD_REFRESH_WINDOW": "Reload With Extensions", + "CMD_RELEASE_NOTES": "Release Notes", + "CMD_RELOAD_CURRENT_EXTENSION": "Reload Project As Extension", + "CMD_RELOAD_LIVE_PREVIEW": "Force Reload Live Preview", + "CMD_RELOAD_WITHOUT_USER_EXTS": "Reload Without Extensions", + "CMD_REOPEN_CLOSED": "Reopen Closed File", + "CMD_REPLACE": "Replace", + "CMD_REPLACE_IN_FILES": "Replace in Files", + "CMD_REPLACE_IN_SUBTREE": "Replace in…", + "CMD_RESTORE_FONT_SIZE": "Restore Font Size", + "CMD_RUN_UNIT_TESTS": "Run {APP_NAME} Tests", + "CMD_SCROLL_LINE_DOWN": "Scroll Line Down", + "CMD_SCROLL_LINE_UP": "Scroll Line Up", + "CMD_SELECT_ALL": "Select All", + "CMD_SELECT_LINE": "Select Line", + "CMD_SHOW_CODE_HINTS": "Show Code Hints", + "CMD_SHOW_DEV_TOOLS": "{APP_NAME} Developer Tools", + "CMD_SHOW_EXTENSIONS_FOLDER": "Show Extensions Folder", + "CMD_SHOW_IN_EXPLORER": "Windows File Explorer", + "CMD_SHOW_IN_FILE_MANAGER": "File Manager", + "CMD_SHOW_IN_FINDER": "macOS Finder", + "CMD_SHOW_IN_TREE": "Show in File Tree", + "CMD_SHOW_PARAMETER_HINT": "Show Parameter Hint", + "CMD_SHOW_PERF_DATA": "Show Performance Data", + "CMD_SHOW_SIDEBAR": "Show Sidebar", + "CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence", + "CMD_SPLITVIEW_HORIZONTAL": "Horizontal Split", + "CMD_SPLITVIEW_NONE": "No Split", + "CMD_SPLITVIEW_VERTICAL": "Vertical Split", + "CMD_SPLIT_SEL_INTO_LINES": "Split Selection into Lines", + "CMD_SUGGEST": "Suggest a Feature", + "CMD_SUPPORT": "{APP_NAME} Support", + "CMD_SWITCH_LANGUAGE": "Switch Language…", + "CMD_SWITCH_PANE_FOCUS": "Switch Pane Focus", + "CMD_THEMES": "Themes…", + "CMD_TOGGLE_ACTIVE_LINE": "Highlight Active Line", + "CMD_TOGGLE_CLOSE_BRACKETS": "Auto Close Braces", + "CMD_TOGGLE_FULLSCREEN": "Fullscreen", + "CMD_TOGGLE_INDENT_GUIDES": "Indent Guide Lines", + "CMD_TOGGLE_LINE_NUMBERS": "Line Numbers", + "CMD_TOGGLE_LIVE_PREVIEW_MB_MODE": "Enable Experimental Live Preview", + "CMD_TOGGLE_PANELS": "Toggle Panels", + "CMD_TOGGLE_PURE_CODE": "No Distractions", + "CMD_TOGGLE_QUICK_DOCS": "Quick Docs", + "CMD_TOGGLE_QUICK_EDIT": "Quick Edit", + "CMD_TOGGLE_RULERS": "Rulers", + "CMD_TOGGLE_SEARCH_AUTOHIDE": "Automatically close search", + "CMD_TOGGLE_SIDEBAR": "Toggle Sidebar", + "CMD_TOGGLE_WORD_WRAP": "Word Wrap", + "CMD_TWITTER": "{TWITTER_NAME} on Twitter", + "CMD_UNDO": "Undo", + "CMD_UNINDENT": "Unindent", + "CMD_UNLOAD_CURRENT_EXTENSION": "Unload Project As Extension", + "CMD_VIEW_TOGGLE_INSPECTION": "Lint Files on Save", + "CMD_VIEW_TOGGLE_PROBLEMS": "Problems", + "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_YOUTUBE": "Youtube Channel", + "CMD_ZOOM_IN": "Zoom In", + "CMD_ZOOM_IN_SCALE": "Zoom In (Current: {0}%)", + "CMD_ZOOM_OUT": "Zoom Out", + "CMD_ZOOM_UI": "Zoom UI and Fonts", + "CODE_EDITOR": "Code Editor", + "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", "CODE_INSPECTION_IN_PROGRESS": "Code inspection in progress…", + "CODE_INSPECTION_PROBLEMS": "Code inspection problems", "CODE_INSPECTION_PROBLEMS_NONE": "No problems detected", - "CODE_INSPECTION_DONE_FILES": "{0} of {1} files done…", - "PLEASE_WAIT": "Please wait…", + "COLLAPSE_ALL": "Collapse All", + "COLLAPSE_CURRENT": "Collapse Current", + "COLOR_EDITOR_0X_BUTTON_TIP": "Hex (0x) Format", + "COLOR_EDITOR_CURRENT_COLOR_SWATCH_TIP": "Current Color", + "COLOR_EDITOR_HEX_BUTTON_TIP": "Hex Format", + "COLOR_EDITOR_HSLA_BUTTON_TIP": "HSLa Format", + "COLOR_EDITOR_ORIGINAL_COLOR_SWATCH_TIP": "Original Color", + "COLOR_EDITOR_RGBA_BUTTON_TIP": "RGBa Format", + "COLOR_EDITOR_USED_COLOR_TIP_PLURAL": "{0} (Used {1} times)", + "COLOR_EDITOR_USED_COLOR_TIP_SINGULAR": "{0} (Used {1} time)", "COMMIT": "Commit", "COMMIT_ALL_SHORTCUT": "Commit all files…", "COMMIT_CURRENT_SHORTCUT": "Commit current file…", "COMMIT_MESSAGE_PLACEHOLDER": "Enter commit message here…", + "COMPRESS_FILES_PROGRESS": "Compressing {0} of {1} files.", + "CONFIRM_DELETE_TITLE": "Confirm Delete", + "CONFIRM_EXTERNAL_BROWSER_MESSAGE": "Do you want to allow the live preview page to open this URL: {0}?", + "CONFIRM_EXTERNAL_BROWSER_TITLE": "Pop-ups Blocked", + "CONFIRM_FILE_DELETE": "Are you sure you want to delete the file {0}?", + "CONFIRM_FILE_DELETE_RECYCLE_BIN": "Are you sure you want to delete the file {0}?
You can restore this file from the Recycle Bin.", + "CONFIRM_FILE_DELETE_TRASH": "Are you sure you want to delete the file {0}?
You can restore this file from the trash.", + "CONFIRM_FOLDER_DELETE": "Are you sure you want to delete the folder {0}?", + "CONFIRM_FOLDER_DELETE_RECYCLE_BIN": "Are you sure you want to delete the folder {0}?
You can restore this folder from the Recycle Bin.", + "CONFIRM_FOLDER_DELETE_TRASH": "Are you sure you want to delete the folder {0}?
You can restore this folder from the trash.", + "CONFIRM_REPLACE_TITLE": "Confirm Replace", + "CONTENTS_MODIFIED_ERR": "The file has been modified outside of {APP_NAME}.", + "COPYING": "Copying {0}", + "COPY_ERROR": "Copy problem", + "CREATE_EXTENSION": "Create Extension", + "CREATE_EXTENSION_SECTION": "Create {APP_NAME} Extensions and Themes", "CREATE_NEW_BRANCH": "Create new branch…", "CREATE_NEW_BRANCH_TITLE": "Create new branch", "CREATE_NEW_GITFTP_SCOPE": "Create new Git-FTP remote…", "CREATE_NEW_REMOTE": "Create new remote…", + "CREATE_PROJECT": "Create Project", + "CREATE_THEME": "Create Theme", + "CREATING_LAUNCH_SCRIPT_TITLE": "{APP_NAME} Command Line Shortcut", + "CREDENTIALS": "Credentials", + "CSS_LINT_NAME": "{0}", + "CSS_QUICK_EDIT_NO_MATCHES": "There are no existing CSS rules that match your selection.
Click \"New Rule\" to create one.", + "CSS_QUICK_EDIT_NO_STYLESHEETS": "There are no stylesheets in your project.
Create one to add CSS rules.", + "CURRENT_THEME": "Current Theme", "CURRENT_TRACKING_BRANCH": "Current tracking branch", - "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "DEBUG_MENU": "Debug", + "DECODE_FILE_FAILED_ERR": "{APP_NAME} was not able to decode the contents of file.", + "DEFAULT": "Default", "DEFAULT_GIT_TIMEOUT": "Default Git operation timeout (in seconds)", + "DEFAULT_PREFERENCES_JSON_DEFAULT": "Default", + "DEFAULT_PREFERENCES_JSON_HEADER_COMMENT": "/*\n * This is a read-only file with the preferences supported\n * by {APP_NAME}.\n * Use this file as a reference to modify your preferences\n * file \"phcode.json\" opened in the other pane.\n * For more information on how to use preferences inside\n * {APP_NAME}, refer to the web page at https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences\n */", + "DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file", + "DEFAULT_PROJECT_NOTIFICATION": "Click here to open the
default project in phoenix.
ok", + "DELETE": "Delete", "DELETE_FILE_BTN": "Delete file…", "DELETE_LOCAL_BRANCH": "Delete local branch", "DELETE_LOCAL_BRANCH_NAME": "Do you really wish to delete local branch \"{0}\"?", @@ -1133,15 +377,172 @@ "DELETE_REMOTE_NAME": "Do you really wish to delete remote \"{0}\"?", "DELETE_SCOPE": "Delete Git-FTP scope", "DELETE_SCOPE_NAME": "Do you really wish to delete Git-FTP scope \"{0}\"?", + "DELETE_TO_RECYCLE_BIN": "Moving {0} to Recycle Bin", + "DELETE_TO_TRASH": "Moving {0} to Trash", + "DELETING": "Deleting {0}", + "DESCRIPTION_ASYNC_TIMEOUT": "The time in milliseconds after which asynchronous linters time out", + "DESCRIPTION_ATTR_HINTS": "Enable/disable HTML attribute hints", + "DESCRIPTION_AUTO_RENAME_TAGS": "true to automatically rename paired HTML/XML tag, else false", + "DESCRIPTION_AUTO_TAB_SPACE": "true to auto detect tabs and spaces used in current file", + "DESCRIPTION_AUTO_UPDATE": "Enable/disable {APP_NAME} Auto-update", + "DESCRIPTION_CLOSE_BRACKETS": "true to automatically close braces, brackets and parentheses", + "DESCRIPTION_CLOSE_OTHERS": "false to remove the \"Close Others\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_ABOVE": "false to remove the \"Close Others Above\" from the Working Files context menu", + "DESCRIPTION_CLOSE_OTHERS_BELOW": "false to remove the \"Close Others Below\" from the Working Files context menu", + "DESCRIPTION_CLOSE_TAGS": "Sets the tag closing options", + "DESCRIPTION_CLOSE_TAGS_DONT_CLOSE_TAGS": "An array of tags that should not be auto-closed", + "DESCRIPTION_CLOSE_TAGS_INDENT_TAGS": "An array of tags that when opened has a blank line", + "DESCRIPTION_CLOSE_TAGS_WHEN_CLOSING": "Close when / of closing tag is typed", + "DESCRIPTION_CLOSE_TAGS_WHEN_OPENING": "Close when > of opening tag is typed", + "DESCRIPTION_CODE_FOLDING_ALWAY_USE_INDENT_FOLD": "true to always generate collapsible section markers when indent level changes", + "DESCRIPTION_CODE_FOLDING_ENABLED": "true to enable code folding", + "DESCRIPTION_CODE_FOLDING_HIDE_UNTIL_MOUSEOVER": "true to make Section-collapsing markers visible only when you move the mouse over the gutter", + "DESCRIPTION_CODE_FOLDING_MAKE_SELECTIONS_FOLDABLE": "true to enable code folding on selected text in the editor", + "DESCRIPTION_CODE_FOLDING_MAX_FOLD_LEVEL": "Limits how many levels deep Collapse All applies", + "DESCRIPTION_CODE_FOLDING_MIN_FOLD_SIZE": "Minimum lines before a collapsible section icon appears", + "DESCRIPTION_CODE_FOLDING_SAVE_FOLD_STATES": "true to remember collapsed sections if you close and reopen a file or project", + "DESCRIPTION_CODE_REFACTORING": "Enable/disable JavaScript Code Refactoring", + "DESCRIPTION_CSS_COLOR_PREVIEW": "true to display color previews in the gutter, else false.", + "DESCRIPTION_CSS_PROP_HINTS": "Enable/disable CSS/LESS/SCSS property hints", + "DESCRIPTION_DESKTOP_ZOOM_SCALE": "Choose a zoom scale factor ranging from 0.1 (for a more compact view) to 2 (for a larger, more magnified view). Available in desktop apps only", + "DESCRIPTION_DETECTED_EXCLUSIONS": "A list of files that have been detected to cause Tern to run out of control", + "DESCRIPTION_DISABLED_DEFAULT_EXTENSIONS": "Default extensions that are disabled", + "DESCRIPTION_DRAG_AND_DROP_ENABLED": "true to enable drag and drop functionality for files and folders from the file explorer or Finder", + "DESCRIPTION_DRAG_DROP_TEXT": "Enable/disable Drag & Drop functionality", + "DESCRIPTION_EDITOR_LINE_HEIGHT": "Adjust the vertical spacing between lines of code in the editor. Choose a value between 1 and 3, default is 1.5", + "DESCRIPTION_ESLINT_DISABLE": "true to disable ESLint linter in problems panel", + "DESCRIPTION_ESLINT_DO_NPM_INSTALL": "Please run `npm install` on your project to enable ESLint", + "DESCRIPTION_ESLINT_FAILED": "ESLint Failed ({0}). Make sure the project contains valid Configuration Files", + "DESCRIPTION_ESLINT_LOAD_FAILED": "Failed to load ESLint for this project. {APP_NAME} supports only ESLint versions above 7.", + "DESCRIPTION_ESLINT_USE_NATIVE_APP": "ESLint is only available in the Desktop app. Download it from phcode.io", + "DESCRIPTION_EXTENSION_LESS_IMAGE_PREVIEW": "true to show image previews for URLs missing extensions", + "DESCRIPTION_EXTERNAL_APPLICATION_ASSOCIATE": "Mappings for file extension to external applications. Syntax: \"\": \"\", Use \"default\" to open files in system default application for the file type.", + "DESCRIPTION_FIND_IN_FILES_INSTANT": "true to enable instant search", + "DESCRIPTION_FIND_IN_FILES_NODE": "true to enable node based search", + "DESCRIPTION_FONT_FAMILY": "Change font family", + "DESCRIPTION_FONT_SIZE": "Change font size; e.g. 13px", + "DESCRIPTION_FONT_SMOOTHING": "Mac-only: \"subpixel-antialiased\" to enable sub-pixel antialiasing or \"antialiased\" for gray scale antialiasing", + "DESCRIPTION_HEALTH_DATA_TRACKING": "Enable the Health Data Tracking", + "DESCRIPTION_HIDE_FIRST": "true to show the first Indent Guide line else false.", + "DESCRIPTION_HIGHLIGHT_MATCHES": "Enables automatic highlighting of matching strings throughout the document", + "DESCRIPTION_HIGHLIGHT_MATCHES_SHOW_TOKEN": "Highlight all strings that match the token the cursor is currently in (no selection needed)", + "DESCRIPTION_HIGHLIGHT_MATCHES_WORDS_ONLY": "Highlight only when selection is a complete token", + "DESCRIPTION_HTML_LINT_DISABLE": "true to disable HTML linter in problems panel", + "DESCRIPTION_HTML_TAG_HINTS": "Enable/disable HTML tag hints", + "DESCRIPTION_INDENT_GUIDES_ENABLED": "true to show indent guide lines, else false.", + "DESCRIPTION_INDENT_LINE_COMMENT": "true to enable indenting of line comments", + "DESCRIPTION_INFERENCE_TIMEOUT": "The amount of time after which Tern will time out when trying to understand files", + "DESCRIPTION_INPUT_STYLE": "Selects the way CodeMirror handles input and focus. It can be textarea, which is the default, or contenteditable which is better for screen readers (unstable)", + "DESCRIPTION_INSERT_HINT_ON_TAB": "true to insert the currently selected code hint on tab", + "DESCRIPTION_JSHINT_DISABLE": "true to disable JSHints linter in problems panel", + "DESCRIPTION_JS_HINTS": "Enable/disable JavaScript code hints", + "DESCRIPTION_JS_HINTS_TYPE_DETAILS": "Enable/disable datatype details in JavaScript code hints", + "DESCRIPTION_LANGUAGE": "Language specific settings", + "DESCRIPTION_LANGUAGE_FILE_EXTENSIONS": "Additional mappings from file extension to language name", + "DESCRIPTION_LANGUAGE_FILE_NAMES": "Additional mappings from file name to language name", + "DESCRIPTION_LINEWISE_COPY_CUT": "Doing copy and cut when there's no selection will copy or cut the whole lines that have cursors in them", + "DESCRIPTION_LINTING_COLLAPSED": "true to collapse linting panel", + "DESCRIPTION_LINTING_ENABLED": "true to enable Code Inspection", + "DESCRIPTION_LINTING_PREFER": "Array of linters to run first", + "DESCRIPTION_LIVEDEV_ENABLE_REVERSE_INSPECT": "false to disable live preview reverse inspect", + "DESCRIPTION_LIVEDEV_EXCLUDED": "Custom Server Cannot Serve This file", + "DESCRIPTION_LIVEDEV_MAIN_HEADING": "Uh Oh!
Your current browser doesn't support live preview.", + "DESCRIPTION_LIVEDEV_MAIN_SPAN": "Get the best live preview experience by downloading our native apps for Windows, Mac, and Linux from phcode.io.
", + "DESCRIPTION_LIVEDEV_NO_PREVIEW": "Nothing to preview!", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_DETAILS": "Please select an HTML file to preview", + "DESCRIPTION_LIVEDEV_NO_PREVIEW_EXCLUDED": "Live preview settings is configured to only serve files from folder '{0}'", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED": "Preview Unavailable!", + "DESCRIPTION_LIVEDEV_PREVIEW_RESTRICTED_DETAILS": "This HTML file is not part of the current project. For security reasons, only project files can be live-previewed. To preview this file, open its containing folder as a separate project.", + "DESCRIPTION_LIVEDEV_SECURITY_POPOUT_MESSAGE": "You are about to open a file for live preview. Please proceed only if you trust the source of this project. Click 'Trust Project' to continue, or close this window if you do not trust the source.", + "DESCRIPTION_LIVEDEV_SECURITY_TRUST_MESSAGE": "You are about to open a file for live preview. Please proceed by clicking 'Trust Project' only if you trust the source of this project!", + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT": "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS": "Live Preview Highlight settings", + "DESCRIPTION_LIVE_DEV_MULTIBROWSER": "true to enable experimental Live Preview", + "DESCRIPTION_MAX_CODE_HINTS": "Maximum code hints displayed at once", + "DESCRIPTION_MERGE_PANES_WHEN_LAST_FILE_CLOSED": "true to collapse panes after the last file from the pane is closed via pane header close button", + "DESCRIPTION_NO_HINTS_ON_DOT": "true to not automatically show JS code hints when . is typed", + "DESCRIPTION_NUMBER_QUICK_VIEW": "true to show Quick View on hover over numbers in editor", + "DESCRIPTION_OPEN_PREFS_IN_SPLIT_VIEW": "false to disable opening preferences file in split view", + "DESCRIPTION_OPEN_USER_PREFS_IN_SECOND_PANE": "false to open user preferences file in left/top pane", + "DESCRIPTION_PATH": "Path specific settings", + "DESCRIPTION_PHP_TOOLING_CONFIGURATION": "PHP Tooling default configuration settings", + "DESCRIPTION_PREF_HINTS": "Enable/disable Preferences code hints", + "DESCRIPTION_PROXY": "The URL of the proxy server used for extension installation", + "DESCRIPTION_PURE_CODING_SURFACE": "true to enable code only mode and hide all other UI elements in {APP_NAME}", + "DESCRIPTION_QUICK_VIEW_ENABLED": "true to enable Quick View", + "DESCRIPTION_RECENT_FILES_NAV": "Enable/disable navigation in recent files", + "DESCRIPTION_RULERS_COLORS": "An array of ruler colors corresponding to the rulers option in the editor. Eg: [\"#3d3d3d\", \"red\"]", + "DESCRIPTION_RULERS_COLUMNS": "An array of column numbers to draw vertical rulers in the editor. Eg: [80, 100]", + "DESCRIPTION_RULERS_ENABLED": "true to enable editor rulers, else false", + "DESCRIPTION_SCROLL_PAST_END": "true to enable scrolling beyond the end of the document", + "DESCRIPTION_SEARCH_AUTOHIDE": "Close the search as soon as the editor is focused", + "DESCRIPTION_SELECTION_VIEW_ENABLED": "true to enable Selection View", + "DESCRIPTION_SHOW_CODE_HINTS": "false to disable all code hints", + "DESCRIPTION_SHOW_CURSOR_WHEN_SELECTING": "Keeps the blinking cursor visible when you have a text selection", + "DESCRIPTION_SHOW_ERRORS_IN_STATUS_BAR": "true to show errors in status bar", + "DESCRIPTION_SHOW_LINE_NUMBERS": "true to show line numbers in a “gutter” to the left of the code", + "DESCRIPTION_SHOW_PANE_HEADER_BUTTONS": "Toggle when to show the close and flip-view buttons on the header.", + "DESCRIPTION_SMART_INDENT": "Automatically indent when creating a new block", + "DESCRIPTION_SOFT_TABS": "false to turn off soft tabs behavior", + "DESCRIPTION_SORT_DIRECTORIES_FIRST": "true to sort the directories first in the project tree", + "DESCRIPTION_SPACE_UNITS": "Number of spaces to use for space-based indentation", + "DESCRIPTION_SPECIAL_CHAR_HINTS": "Enable/disable HTML entity hints", + "DESCRIPTION_STATIC_SERVER_PORT": "Port number that the built-in server should use for Live Preview", + "DESCRIPTION_STYLE_ACTIVE_LINE": "true to highlight background color of the line the cursor is on", + "DESCRIPTION_SVG_HINTS": "Enable/disable SVG code hints", + "DESCRIPTION_TAB_SIZE": "Number of spaces to display for tabs", + "DESCRIPTION_THEME": "Select a {APP_NAME} theme", + "DESCRIPTION_TRIPLE_CTRL_PALETTE": "true to enable showing the visual command overlay on pressing Ctrl/Cmd key 3 consecutive times", + "DESCRIPTION_UPPERCASE_COLORS": "true to generate uppercase hex colors in Inline Color Editor", + "DESCRIPTION_URL_CODE_HINTS": "Enable/disable URL hints in HTML & CSS/LESS/SCSS", + "DESCRIPTION_USE_PREFERED_ONLY": "true to run providers specified in linting.prefer only", + "DESCRIPTION_USE_TAB_CHAR": "true to use tabs instead of spaces", + "DESCRIPTION_USE_THEME_SCROLLBARS": "true to allow custom scroll bars", + "DESCRIPTION_WORD_WRAP": "Wrap lines that exceed the viewport width", + "DETECTED_EXCLUSION_INFO": "{APP_NAME} ran into trouble processing {0}.

This file will no longer be processed for code hints, Jump to Definition or Quick Edit. To re-enable this file, open .phcode.json in your project and edit jscodehints.detectedExclusions.

This is likely a {APP_NAME} bug. If you can provide a copy of this file, please file a bug with a link to the file named here.", + "DETECTED_EXCLUSION_TITLE": "JavaScript File Inference Problem", + "DEVELOPMENT_BUILD": "development build", "DIALOG_CHECKOUT": "When checking out a commit, the repo will go into a DETACHED HEAD state. You can't make any commits unless you create a branch based on this.", "DIALOG_PULL_TITLE": "Pull from remote", "DIALOG_PUSH_TITLE": "Push to remote", - "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", "DIFF": "Diff", "DIFFTOOL": "Diff with difftool", "DIFF_FAILED_SEE_FILES": "Git diff failed to provide diff results. This is the list of staged files to be commited:", "DIFF_TOO_LONG": "Diff too long to display", + "DIRECTORY": "directory", + "DIRECTORY_NAME": "Directory Name", + "DIRECTORY_NAMES_LEDE": "Directory names", + "DIRECTORY_REPLACE_MESSAGE": "The selected folder {0} is not empty. Are you sure you want to replace the folder contents with the project?", + "DIRECTORY_TITLE": "Directory", + "DISABLE": "Disable", + "DISABLE_AND_RELOAD": "Disable Extensions and Reload", + "DISALLOWED_WORDS": "The words ({1}) are not allowed in the {0} field.", + "DISCARD_CHANGES": "Discard Changes", + "DISCARD_UNSAVED_FILES_RESTORE": "Discard", + "DOCS_MORE_LINK": "Read more", + "DOCS_MORE_LINK_MDN_TITLE": "Click to read Documentation", + "DONE": "Done", + "DONT_SAVE": "Don't Save", + "DOWNLOADING": "Downloading...", + "DOWNLOADING_FILE": "Downloading {0}...", + "DOWNLOAD_COMPLETE": "Download complete!", + "DOWNLOAD_DESKTOP_APP": "Download Desktop App", + "DOWNLOAD_ERROR": "Error occurred while downloading.", + "DOWNLOAD_FAILED": "Download failed.", + "DOWNLOAD_FAILED_MESSAGE": "Make sure the download URL is a valid.
NB: As Phoenix is free, Private Repos and GitHub URLs larger than 25 MB is not allowed.", + "DOWNLOAD_ID_IN_USE": "Internal error: download ID already in use.", + "DROP_TO_OPEN_FILE": "Drop to open file", + "DROP_TO_OPEN_FILES": "Drop to open files", + "DROP_TO_OPEN_PROJECT": "Drop to open folder `{0}` as project", + "DUPLICATING": "Duplicating {0}", + "EDIT": "Edit", + "EDIT_MENU": "Edit", + "EMPTY_VIEW_HEADER": "Open a file while this pane has focus", + "ENABLE": "Enable", "ENABLE_GERRIT_PUSH_REF": "Use Gerrit-compatible push ref", + "ENABLE_GIT": "Enable Git", + "ENCODE_FILE_FAILED_ERR": "{APP_NAME} was not able to encode the contents of file.", + "ENJOYING_APP": "Enjoying {APP_NAME}?", "ENTER_NEW_USER_EMAIL": "Enter email", "ENTER_NEW_USER_NAME": "Enter username", "ENTER_PASSWORD": "Enter password:", @@ -1149,41 +550,541 @@ "ENTER_REMOTE_NAME": "Enter name of the new remote:", "ENTER_REMOTE_URL": "Enter URL of the new remote:", "ENTER_USERNAME": "Enter username:", + "ENTRY_WITH_SAME_NAME_EXISTS": "A file or directory with the name {0} already exists.", + "ERRORS": "Errors", + "ERRORS_NO_FILE": "No File Open", + "ERRORS_PANEL_TITLE_MULTIPLE": "{0} Problems - {1}", + "ERRORS_PANEL_TITLE_MULTIPLE_FIXABLE": "{0} Problems, {1} Fixable - {2}", + "ERROR_ARROW_FUNCTION": "Place the cursor inside a function expression", + "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", + "ERROR_BRANCH_LIST": "Getting branch list failed", + "ERROR_CANT_FIND_CHROME": "The Google Chrome browser could not be found. Please make sure it is installed.", + "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", + "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", + "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", + "ERROR_CLONING_TITLE": "Git clone Failed", + "ERROR_CLTOOLS_LNFAILED": "Unable to create /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_MKDIRFAILED": "Unable to create /usr/local/bin directory.", + "ERROR_CLTOOLS_NOTSUPPORTED": "Command line shortcut is not supported on this OS.", + "ERROR_CLTOOLS_RMFAILED": "Unable to remove existing /usr/local/bin/brackets symlink.", + "ERROR_CLTOOLS_SERVFAILED": "Internal error.", + "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", + "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", + "ERROR_CREATE_BRANCH": "Creating new branch failed", + "ERROR_CREATE_TAG": "Create tag failed", + "ERROR_CREATING_FILE": "An error occurred when trying to create the {0} {1}. {2}", + "ERROR_CREATING_FILE_TITLE": "Error Creating {0}", + "ERROR_CREATING_LAUNCH_SCRIPT": "An error occurred while installing the command line shortcut. Please try these troubleshooting suggestions.

Reason: {0}", + "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_DELETING_FILE": "An error occurred when trying to delete the {2} {0}. {1}", + "ERROR_DELETING_FILE_TITLE": "Error Deleting {0}", + "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", + "ERROR_DUPLICATE_SHORTCUTS": "You have multiple bindings of these shortcuts: {0}", + "ERROR_EXTRACTTO_FUNCTION_MULTICURSORS": "Extract to Function does not work in multicursors", + "ERROR_EXTRACTTO_FUNCTION_NOT_VALID": "Selected block should represent set of statements or an expression", + "ERROR_EXTRACTTO_VARIABLE_MULTICURSORS": "Extract to Variable does not work in multicursors", + "ERROR_EXTRACTTO_VARIABLE_NOT_VALID": "Selection does not form an expression", + "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.", + "ERROR_FETCHING_UPDATE_INFO_TITLE": "Error Getting Update Info", + "ERROR_FETCH_REMOTE": "Fetching remote information failed", + "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", + "ERROR_GETTERS_SETTERS": "Place the cursor at a member of an object expression", + "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", + "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", + "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", + "ERROR_GETTING_REMOTES": "Getting remotes failed!", + "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", + "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", + "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", + "ERROR_GET_HISTORY": "Failed to get history", + "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", + "ERROR_GIT_BLAME_FAILED": "Git Blame failed", + "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", + "ERROR_GIT_DIFF_FAILED": "Git Diff failed", + "ERROR_GIT_FOLDER_NOT_EMPTY": "The Selected folder cannot be used for Git clone as it is not empty or is unreadable.", + "ERROR_GIT_FOLDER_NOT_EXIST": "The Selected folder cannot be used for Git clone as it does not exist.", + "ERROR_GIT_URL_INVALID": "Please enter a valid Git clone URL.", + "ERROR_INVALID_EXTENSION_PACKAGE": "package.json file is invalid JSON.
See this link for more details.", + "ERROR_INVALID_EXTENSION_PACKAGE_FIELDS": "Required fields missing in package.json: [{0}]
See this link for more details.", + "ERROR_INVALID_SHORTCUTS": "These shortcuts are invalid: {0}", + "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 github.com/adobe/brackets-shell repo to run {APP_NAME}.", + "ERROR_IN_BROWSER_TITLE": "Oops! {APP_NAME} Doesn't Run in Browsers Yet.", + "ERROR_JSQUICKEDIT_FUNCTIONNOTFOUND": "JS Quick Edit: place cursor in function name", + "ERROR_KEYMAP_CORRUPT": "Your key map file is not valid JSON. The file will be opened so that you can correct the format.", + "ERROR_KEYMAP_TITLE": "Error Reading User Key Map", + "ERROR_LAUNCHING_BROWSER": "An error occurred when launching the browser. (error {0})", + "ERROR_LAUNCHING_BROWSER_TITLE": "Error Launching Browser", + "ERROR_LOADING": "The extension encountered an error while starting up.", + "ERROR_LOADING_EXTENSION": "Error Loading Extension", + "ERROR_LOADING_KEYMAP": "Your key map file is not a valid UTF-8 encoded text file and cannot be loaded", + "ERROR_LOADING_PROJECT": "Error Loading Project", + "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. Read more about working with large projects.", + "ERROR_MAX_FILES_TITLE": "Error Indexing Files", + "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", + "ERROR_MERGE_FAILED": "Merge failed", + "ERROR_MIXED_DRAGDROP": "Cannot open a folder at the same time as opening other files.", + "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", + "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", + "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", + "ERROR_MOVING_FILE": "An error occurred when trying to move the {2} {0}. {1}", + "ERROR_MOVING_FILE_TITLE": "Error Moving {0}", + "ERROR_MOVING_NOT_IN_PROJECT": "Cannot move the file/folder, as they are not part of the current project.", + "ERROR_MULTIPLE_SHORTCUTS": "You are reassigning multiple shortcuts to these commands: {0}", + "ERROR_NODE_JS_CRASH_MESSAGE": "We’ve run into a problem and need to restart {APP_NAME}. Don’t worry, we're trying to save all your work before restarting.
(Error: ERROR_NODE_JS_CRASH)", + "ERROR_NODE_JS_CRASH_TITLE": "Oops! Something went wrong.", + "ERROR_NONEXISTENT_COMMANDS": "You are assigning shortcuts to nonexistent commands: {0}", "ERROR_NOTHING_SELECTED": "Nothing is selected!", + "ERROR_NO_EXTENSION_PACKAGE": "package.json file not detected in current project. Is the current project a valid {APP_NAME} Extension?
See this link for more details.", + "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", + "ERROR_ONLY_GITHUB": "The browser version of {APP_NAME} supports only GitHub URLs. To work with other Git URLs, please use the desktop app.", + "ERROR_OPENING_FILE": "An error occurred when trying to open the file {0}. {1}", + "ERROR_OPENING_FILES": "An error occurred when trying to open the following files:", + "ERROR_OPENING_FILE_TITLE": "Error Opening File", + "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", + "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_PREFS_CORRUPT_TITLE": "Error Reading Preferences", + "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_RESET_TITLE": "Settings Reset - Restart Required", + "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.", + "ERROR_PULLING_OPERATION": "Pulling operation failed", + "ERROR_PULLING_REMOTE": "Pulling from remote failed", + "ERROR_PUSHING_OPERATION": "Pushing operation failed", + "ERROR_PUSHING_REMOTE": "Pushing to remote failed", + "ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND": "No Quick Docs available for current cursor position", + "ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND": "No Quick Edit available for current cursor position", + "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", + "ERROR_READING_GIT_STATE": "Reading .git state failed", + "ERROR_REBASE_FAILED": "Rebase failed", + "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", + "ERROR_RELOADING_FILE": "An error occurred when trying to reload the file {0}. {1}", + "ERROR_RELOADING_FILE_TITLE": "Error Reloading Changes From Disk", + "ERROR_REMOTE_CREATION": "Remote creation failed", + "ERROR_RENAME_GENERAL": "Cannot rename selected text", + "ERROR_RENAME_MULTICURSOR": "Cannot rename when using multi-cursors", + "ERROR_RENAME_QUICKEDIT": "Cannot rename this identifier, as it is referenced elsewhere outside this function", + "ERROR_RENAMING_FILE": "An error occurred when trying to rename the {2} {0}. {1}", + "ERROR_RENAMING_FILE_TITLE": "Error Renaming {0}", + "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_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", + "ERROR_RESTRICTED_COMMANDS": "You cannot reassign shortcuts to these commands: {0}", + "ERROR_RESTRICTED_SHORTCUTS": "You cannot reassign these shortcuts: {0}", "ERROR_SAVE_FIRST": "Save the document first!", + "ERROR_SAVING_FILE": "An error occurred when trying to save the file {0}. {1}", + "ERROR_SAVING_FILE_TITLE": "Error Saving File", + "ERROR_SWITCHING_BRANCHES": "Switching branches failed", "ERROR_TERMINAL_NOT_FOUND": "Terminal was not found for your OS, you can define a custom Terminal command in the settings", + "ERROR_TERN_FAILED": "Unable to get data from Tern", + "ERROR_TIMINGQUICKEDIT_INVALIDSYNTAX": "CSS Timing Function Quick Edit: invalid syntax", + "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", + "ERROR_TRY_CATCH": "Select valid code to wrap in a Try-catch block", + "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", + "ERROR_WRAP_IN_CONDITION": "Select valid code to wrap in a Condition block", + "ERR_TYPE_DOWNLOAD_FAILED": "An error occurred while downloading {0}", + "ERR_TYPE_DUPLICATE_FAILED": "An error occurred while duplicating {0}", + "ERR_TYPE_DUPLICATE_FAILED_NO_FILE": "Please select a file to duplicate.", + "ERR_TYPE_PASTE_FAILED": "An error occurred while pasting {0} to {1}", + "ESLINT_NAME": "ESLint", + "EXCEEDS_MAX_FILE_SIZE": "Files larger than {0} MB cannot be opened in {APP_NAME}.", + "EXCLUDE_FILE_FILTER": "Exclude files", + "EXPAND_ALL": "Expand All", + "EXPAND_CURRENT": "Expand Current", + "EXPERIMENTAL_BUILD": "experimental build", + "EXPLORE": "HTML Games", "EXTENDED_COMMIT_MESSAGE": "EXTENDED", + "EXTENSIONS_AVAILABLE_TITLE": "Available", + "EXTENSIONS_DEFAULT_TITLE": "Default", + "EXTENSIONS_DOWNLOADS": "Downloads", + "EXTENSIONS_INSTALLED_TITLE": "Installed", + "EXTENSIONS_LAST_UPDATED": "Last Updated", + "EXTENSIONS_REGISTRY_TASK_MESSAGE": "Downloading…", + "EXTENSIONS_REGISTRY_TASK_TITLE": "Updating Extension List", + "EXTENSIONS_THEMES_TITLE": "Themes", + "EXTENSIONS_UPDATES_TITLE": "Updates", + "EXTENSION_ALREADY_INSTALLED": "Installing this package will overwrite a previously installed extension. Overwrite the old extension?", + "EXTENSION_AUTHOR": "Author", + "EXTENSION_DATE": "Date", + "EXTENSION_DEFAULT_FEATURE_PRESENT": "You may not need this extension. {APP_NAME} already has this feature.", + "EXTENSION_ERROR": "Extension error", + "EXTENSION_INCOMPATIBLE_NEWER": "This extension requires a newer version of {APP_NAME}.", + "EXTENSION_INCOMPATIBLE_OLDER": "This extension currently only works with older versions of {APP_NAME}.", + "EXTENSION_INSTALLED": "Installed", + "EXTENSION_KEYWORDS": "Keywords", + "EXTENSION_LATEST_INCOMPATIBLE_NEWER": "Version {0} of this extension requires a newer version of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_LATEST_INCOMPATIBLE_OLDER": "Version {0} of this extension only works with older versions of {APP_NAME}. But you can install the earlier version {1}.", + "EXTENSION_MANAGER_CREATE_EXTENSION": "+ Create Extension", + "EXTENSION_MANAGER_CREATE_THEME": "+ Create Theme", + "EXTENSION_MANAGER_DISABLE": "Disable Extension", + "EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_ERROR_LOAD": "Unable to access the extension registry. Please try again later.", + "EXTENSION_MANAGER_REMOVE": "Remove Extension", + "EXTENSION_MANAGER_REMOVE_ERROR": "Unable to remove one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MANAGER_THEMES_INFO": "To select default themes or modify other theme settings, click here.", + "EXTENSION_MANAGER_THEMES_UNDO": "Revert To Previous Theme", + "EXTENSION_MANAGER_TITLE": "Extension Manager", + "EXTENSION_MANAGER_UPDATE": "Update Extension", + "EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.", + "EXTENSION_MORE_INFO": "More info…", + "EXTENSION_MORE_INFO_LINK": "More", + "EXTENSION_NOT_INSTALLED": "Couldn't remove extension {0} because it wasn't installed.", + "EXTENSION_NO_DESCRIPTION": "No description", + "EXTENSION_OLDER_VERSION": "This package is version {0} which is older than the currently installed ({1}). Overwrite the existing installation?", + "EXTENSION_SAME_VERSION": "This package is the same version as the one that is currently installed. Overwrite the existing installation?", + "EXTENSION_SEARCH_PLACEHOLDER": "Search", + "EXTENSION_STAR": "Star", + "EXTENSION_STAR_SORT": "Star Rating", + "EXTENSION_TRANSLATED_GENERAL": "Translated into {0} languages", + "EXTENSION_TRANSLATED_LANGS": "This extension has been translated into these languages: {0}", + "EXTENSION_TRANSLATED_USER_LANG": "Translated into {0} languages, including yours", + "EXTENSION_UPDATE_INSTALLED": "This extension update has been downloaded and will be installed after {APP_NAME} reloads.", + "EXTENSION_UPDATE_RESTART_MESSAGE": "To load updated extensions, please close all running instances of {APP_NAME} and restart the application.", + "EXTENSION_UPDATE_RESTART_TITLE": "Restart To Update", + "EXTENSION_VERIFIED_PUBLISHER": "This publisher has verified ownership of {0}", + "EXTENSION_VERIFIED_SORT": "Verified", + "EXTRACTING_FILES_PROGRESS": "Extracting {0} of {1} files.", + "EXTRACTTO_FUNCTION_SELECT_SCOPE": "Choose destination scope", + "EXTRACTTO_VARIABLE_SELECT_EXPRESSION": "Select an expression", + "EXT_ALWAYS_MODIFIED_BUTTON_TOOLTIP": "Always overwrite files until project switch or restart", + "EXT_DELETED_MESSAGE": "{0} has been deleted on disk outside of {APP_NAME}, but has unsaved changes in {APP_NAME}.

Do you want to keep your changes?", + "EXT_MODIFIED_MESSAGE": "{0} has been modified on disk outside of {APP_NAME}, but also has unsaved changes in {APP_NAME}.

Which version do you want to keep?", + "EXT_MODIFIED_TITLE": "External Changes", + "EXT_MODIFIED_WARNING": "{0} has been modified on disk outside of {APP_NAME}.

Do you want to save the file and overwrite those changes?", + "FETCH_SHORTCUT": "Fetch from remote", + "FILE": "file", + "FILENAME": "Filename", + "FILENAMES_LEDE": "Filenames", + "FILE_ADDED": "New file", + "FILE_COPIED": "Copied", + "FILE_DELETED": "Deleted", + "FILE_DELETED_TITLE": "File Deleted", + "FILE_EXISTS_ERR": "The file or directory already exists.", + "FILE_IGNORED": "Ignored", + "FILE_MENU": "File", + "FILE_MODIFIED": "Modified", + "FILE_RENAMED": "Renamed", + "FILE_STAGED": "Staged", + "FILE_TITLE": "File", + "FILE_UNMERGED": "Unmerged", + "FILE_UNMODIFIED": "Unmodified", + "FILE_UNTRACKED": "Untracked", + "FILTER_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FILTER_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FILTER_PLACEHOLDER": "e.g. index,.css,*.js,src/**/*.css", + "FIND_ALL_REFERENCES": "Find All References", + "FIND_HISTORY_MAX_COUNT": "Maximum Number of Search Items in Search History", + "FIND_HISTORY_TOOLTIP": "Press `Ctrl-Space` to view History.", + "FIND_HISTORY_TOOLTIP_MAC": "Press `Cmd-Space` to view History.", + "FIND_IN_FILES_EXPAND_COLLAPSE": "Ctrl/Cmd click to expand/collapse all", + "FIND_IN_FILES_FILE": "file", + "FIND_IN_FILES_FILES": "files", + "FIND_IN_FILES_FILE_PATH": "{0} {2} {1}", + "FIND_IN_FILES_INDEXING": "Indexing for Instant Search…", + "FIND_IN_FILES_INDEXING_PROGRESS": "Indexing {0} of {1} files for Instant Search…", + "FIND_IN_FILES_MATCH": "match", + "FIND_IN_FILES_MATCHES": "matches", + "FIND_IN_FILES_MORE_THAN": "Over ", + "FIND_IN_FILES_NO_SCOPE": "in project", + "FIND_IN_FILES_PAGING": "{0}—{1}", + "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_SCOPED": "in {0}", + "FIND_IN_FILES_SEARCHING": "Searching Files…", + "FIND_IN_FILES_SEARCHING_IN": "In {0}", + "FIND_IN_FILES_ZERO_FILES": "Filter excludes all files {0}", + "FIND_MATCH_INDEX": "{0} of {1}", + "FIND_MENU": "Find", + "FIND_NO_RESULTS": "No results", + "FIND_NUM_FILES": "{0} {1}", + "FIND_QUERY_PLACEHOLDER": "Find…", + "FIND_REPLACE_TITLE_LABEL": "Replace", + "FIND_REPLACE_TITLE_WITH": "with", + "FIND_TITLE_LABEL": "Found", + "FIND_TITLE_SUMMARY": "— {0} {1} {2} in {3}", + "FIX": "Fix", + "FLIPVIEW_BTN_TOOLTIP": "Flip this view to {0} pane", + "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", + "FONT_FAMILY": "Font Family", + "FONT_LINE_HEIGHT": "Line Height", + "FONT_SIZE": "Font Size", + "GEAR_MENU_TOOLTIP": "Configure Working Set", + "GENERIC_ERROR": "(error {0})", "GETTING_STAGED_DIFF_PROGRESS": "Getting diff of staged files…", + "GET_DESKTOP_APP": "Get Desktop App", + "GET_IT_NOW": "Get it now!", + "GET_MORE_THEMES": "Get More...", + "GITHUB_STARS_POPUP": "
Your support helps our small team motivated to make phcode.dev even better.
Please star us or consider sponsoring us on GitHub:", + "GITHUB_STARS_POPUP_TWITTER": "Give feedback or spread the word on Twitter:", + "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", + "GIT_CLONE": "Clone", + "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", + "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", + "GIT_CLONE_URL": "Git Clone URL :", "GIT_COMMIT": "Git commit…", "GIT_COMMIT_IN_PROGRESS": "Git Commit in Progress", "GIT_DIFF": "Git diff —", + "GIT_INIT": "Init", + "GIT_MERGE_SUCCESS": "Successfully completed git merge", + "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", + "GIT_PROJECT": "Get from Git", "GIT_PULL_RESPONSE": "Git Pull response", + "GIT_PULL_SUCCESS": "Successfully completed git pull", + "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", + "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", + "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", + "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", "GIT_PUSH_RESPONSE": "Git Push response", + "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", + "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", + "GIT_REBASE_SUCCESS": "Successfully completed git rebase", "GIT_REMOTES": "Git remotes", + "GIT_REPO_URL": "Git Repo URL :", "GIT_SETTINGS": "Git Settings…", "GIT_SETTINGS_TITLE": "Git Settings", "GOTO_NEXT_GIT_CHANGE": "Go to next Git change", "GOTO_PREVIOUS_GIT_CHANGE": "Go to previous Git change", + "GO_TO_SITE": "Go to brackets.io to retry.", + "GUIDED_LIVE_PREVIEW": "Make some code changes in the HTML file to see live preview.
ok", + "GUIDED_LIVE_PREVIEW_POPOUT": "Click this button to popout live preview to a new tab.
ok", "GUTTER_CLICK_DETAILS": "Click for more details", + "HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}", + "HEALTH_DATA_NOTIFICATION": "Health Report Preferences", + "HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.

You can see your data or choose not to share any anonymous data by selecting Help > Health Report. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you!

", + "HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report", + "HEALTH_DATA_PREVIEW_INTRO": "

{APP_NAME} does not collect or process any personally identifiable information, but collects anonymous usage statistics to guard your privacy. These anonymous app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.

Below is a preview of the data that will be sent in your next Health Report if it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)

", + "HEALTH_FIRST_POPUP_TITLE": "Privacy Notice", + "HELP_MENU": "Help", "HIDE_UNTRACKED": "Hide untracked files in panel", "HISTORY": "History", "HISTORY_COMMIT_BY": "by", + "HTML_LINT_CONFIG_JSON_ERROR": "Error: HTML Validator config file `{0}` is not valid JSON", + "HTML_LINT_CONFIG_UNSUPPORTED": "Error: Unsupported config format `{0}`. Use JSON config `.htmlvalidate.json`", + "HTML_LINT_NAME": "HTML", + "IMAGE_VIEWER_LARGEST_ICON": "largest", + "IMPORT_PROJECT": "Import Project", + "INCLUDE_FILE_FILTER": "Search in files", + "INITIALISATION_FAILED": "Initialization failed!", + "INITIAL_DOWNLOAD": "Downloading Update...", + "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", + "INLINE_EDITOR_HIDDEN_MATCHES": "All matches are collapsed. Expand the files listed at right to view matches.", + "INLINE_EDITOR_NO_MATCHES": "No matches available.", + "INLINE_TIMING_EDITOR_INVALID": "The old value {0} is not valid, so the displayed function was changed to {1}. The document will be updated with the first edit.", + "INLINE_TIMING_EDITOR_PROGRESSION": "Progression", + "INLINE_TIMING_EDITOR_TIME": "Time", + "INSTALL": "Install", + "INSTALLER_NOT_FOUND": "Installer not found.", + "INSTALLING_FROM": "Installing extension from {0}…", + "INSTALL_CANCELED": "Installation canceled.", + "INSTALL_EXTENSION_DRAG": "Drag .zip here or", + "INSTALL_EXTENSION_DROP": "Drop .zip to install", + "INSTALL_EXTENSION_DROP_ERROR": "Install/Update aborted due to the following errors:", + "INSTALL_EXTENSION_HINT": "URL of the extension's zip file or GitHub repo", + "INSTALL_EXTENSION_LABEL": "Extension URL", + "INSTALL_EXTENSION_TITLE": "Install Extension", + "INSTALL_EXTENSION_VALIDATING": "Validating…", + "INSTALL_FAILED": "Installation failed.", + "INSTALL_FROM_URL": "Install from URL…", + "INSTALL_SUCCEEDED": "Installation successful!", + "INSTALL_WEBAPP": "Install {APP_NAME} on Your Device", + "INTERNET_UNAVAILABLE": "No Internet connection available.", + "INVALID_BRACKETS_VERSION": "The {APP_NAME} compatibility string ({0}) is invalid.", + "INVALID_FILENAME_MESSAGE": "{0} cannot use any system reserved words, end with dots (.) or use any of the following characters: {1}", + "INVALID_FILENAME_TITLE": "Invalid {0}", + "INVALID_PACKAGE_JSON": "The package.json file is not valid (error was: {0}).", + "INVALID_VERSION_NUMBER": "The package version number ({0}) is invalid.", + "INVALID_ZIP_FILE": "The downloaded content is not a valid zip file.", + "JSHINT_CONFIG_ERROR": "Error reading JSHint config file: {0}", + "JSHINT_CONFIG_JSON_ERROR": "Error: JSHint config file `{0}` is not valid JSON", + "JSHINT_NAME": "JSHint", + "KEEP_BOTH": "Keep Both", + "KEEP_CHANGES_IN_EDITOR": "Keep Changes in Editor", + "KEYBOARD_OVERLAY_TEXT": "Use arrows to navigate, or type to select UI elements.", + "KEYBOARD_SHORTCUT_ASSIGN": "Assign", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_DUPLICATE": "Warning: The key combination {0} is already assigned to '{1}'. Reassign to '{2}'?", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TEXT": "Press the new key combination for '{0}' (Current: {1})", + "KEYBOARD_SHORTCUT_CHANGE_DIALOG_TITLE": "Change Keyboard Shortcut", + "KEYBOARD_SHORTCUT_CHANGE_TITLE": "Change Keyboard Shortcut…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS": "Keyboard Shortcuts…", + "KEYBOARD_SHORTCUT_MENU_SHOW_SHORTCUTS_BUTTON": "Show All Shortcuts…", + "KEYBOARD_SHORTCUT_NONE": "None", + "KEYBOARD_SHORTCUT_ORIG_EXTENSION": "Extension", + "KEYBOARD_SHORTCUT_PANEL_FILTER": "Filter…", + "KEYBOARD_SHORTCUT_PANEL_RESET": "Reset…", + "KEYBOARD_SHORTCUT_PANEL_RESET_DEFAULT": "Reset To Default Shortcuts…", + "KEYBOARD_SHORTCUT_PANEL_TITLE": "Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_PRESET_SELECT": "Select Shortcut Presets", + "KEYBOARD_SHORTCUT_PRESET_TOOLTIP": "Use keyboard shortcuts from editors like VSCode, WebStorm, or Sublime Text", + "KEYBOARD_SHORTCUT_PRESET_USING": "Using {0}", + "KEYBOARD_SHORTCUT_RESET_DIALOG_MESSAGE": "Reset all custom shortcuts to default? This cannot be undone.", + "KEYBOARD_SHORTCUT_RESET_DIALOG_TITLE": "Reset Keyboard Shortcuts", + "KEYBOARD_SHORTCUT_SRC_PRESET": "{0} Preset", + "KEYBOARD_SHORTCUT_SRC_USER": "User Defined", + "KEYBOARD_SHORTCUT_TABLE_BASE_KEY": "Base Key", + "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_KEY_BINDING": "Shortcut", + "KEYBOARD_SHORTCUT_TABLE_ORIGIN": "Origin", + "LANGUAGE_CANCEL": "Cancel", + "LANGUAGE_MESSAGE": "Language:", + "LANGUAGE_SUBMIT": "Reload {APP_NAME}", + "LANGUAGE_SYSTEM_DEFAULT": "System Default", + "LANGUAGE_TITLE": "Switch Language", + "LANGUAGE_TOOLS_PREFERENCES": "Preferences for Language Tools", + "LATER_BUTTON": "Later", + "LAUNCH_SCRIPT_CREATE_SUCCESS": "Success! Now you can easily launch {APP_NAME} from the command line: brackets myFile.txt to open a file or brackets myFolder to switch projects.

Learn more about using {APP_NAME} from the command line.", + "LEARN_SECTION": "Learn With Examples", + "LEFT": "Left", + "LICENSE": "License & Credits:", "LINES": "Lines", - "_LINES": "lines", + "LINTER_FAILED": "{0} terminated with error: {1}", + "LINTER_TIMED_OUT": "{0} has timed out after waiting for {1} ms", + "LINT_DISABLED": "Linting is disabled", + "LIVE_DEVELOPMENT_ERROR_MESSAGE": "In order for Live Preview to connect, Chrome needs to be relaunched with remote debugging enabled.

Would you like to relaunch Chrome and enable remote debugging?

", + "LIVE_DEVELOPMENT_ERROR_TITLE": "Live Preview Error", + "LIVE_DEVELOPMENT_RELAUNCH_TITLE": "Connecting to Browser", + "LIVE_DEVELOPMENT_TROUBLESHOOTING": "For more information, see Troubleshooting Live Preview connection errors.", + "LIVE_DEV_CLICK_POPOUT": "Popout Live Preview To New Window", + "LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page", + "LIVE_DEV_CLICK_TO_RELOAD_PAGE": "Reload Page", + "LIVE_DEV_CLOSED_UNKNOWN_REASON": "Live Preview was canceled for an unknown reason ({0})", + "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_LOADING_ERROR_MESSAGE": "Unable to load Live Preview page.", + "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_NEED_BASEURL_MESSAGE": "To launch live preview with a server-side file, you need to specify a Base URL for this project.", + "LIVE_DEV_OPEN_CHROME": "Open In Chrome…", + "LIVE_DEV_OPEN_EDGE": "Open In Edge…", + "LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.", + "LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}", + "LIVE_DEV_OPEN_FIREFOX": "Open In Firefox…", + "LIVE_DEV_OPEN_SAFARI": "Open In Safari…", + "LIVE_DEV_SELECT_FILE_TO_PREVIEW": "Select File To Live Preview", + "LIVE_DEV_SERVER_NOT_READY_MESSAGE": "Error starting up the HTTP server for live preview files. Please try again.", + "LIVE_DEV_SETTINGS": "Live Preview Settings…", + "LIVE_DEV_SETTINGS_BANNER": "Set up a custom server to live preview `{0}` and other server-rendered files (PHP, JSP, etc.)", + "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_HOT_RELOAD_PREFERENCE": "true if the server supports hot reload and disable Live Preview reload on save", + "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_SERVER_INBUILT": "Eg. http://localhost:8000/php - Currently using built-in Server.", + "LIVE_DEV_SETTINGS_SERVER_PREFERENCE": "true to enable custom development 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_SERVE_PREFERENCE": "Your Development Server URL for the project, Eg. http://localhost:8000/php", + "LIVE_DEV_SETTINGS_STARTUP": "Show Live Preview Panel at Startup", + "LIVE_DEV_SETTINGS_STARTUP_PREFERENCE": "true to show Live Preview Panel at startup", + "LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings", + "LIVE_DEV_SETTINGS_USE_SERVER": "Use Custom Development Server for This Project", + "LIVE_DEV_STATUS_TIP_CONNECTED": "Live Preview Server Active", + "LIVE_DEV_STATUS_TIP_NOT_CONNECTED": "Live Preview", + "LIVE_DEV_STATUS_TIP_OUT_OF_SYNC": "Live Preview", + "LIVE_DEV_STATUS_TIP_PROGRESS1": "Live Preview: Connecting…", + "LIVE_DEV_STATUS_TIP_PROGRESS2": "Live Preview: Initializing…", + "LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)", + "LIVE_DEV_TOGGLE_LIVE_HIGHLIGHT": "Toggle Live Preview Highlights", + "LIVE_DEV_TOOLTIP_SHOW_IN_EDITOR": "{0} - Show in Editor…", + "LIVE_PREVIEW_CUSTOM_SERVER_BANNER": "Getting preview from your custom server {0}", + "LOCATION": "Location :", + "MALFORMED_URL": "The URL is invalid. Please check that you entered it correctly.", + "MARKED_FOR_DISABLING": "Marked for disabling", + "MARKED_FOR_REMOVAL": "Marked for removal", + "MARKED_FOR_UPDATE": "Marked for update", "MARK_MODIFIED_FILES_IN_TREE": "Mark modified files in file tree", + "MENU_RESET_HARD": "Discard changes and commits after this (hard reset)", + "MENU_RESET_MIXED": "Discard commits after this but keep changes unstaged (mixed reset)", + "MENU_RESET_SOFT": "Discard commits after this but keep changes staged (soft reset)", + "MENU_TAG_COMMIT": "Tag Commit", "MERGE_BRANCH": "Merge branch", "MERGE_MESSAGE": "Merge message", "MERGE_RESULT": "Merge result", + "MISSING_FIELDS": "Missing Fields", + "MISSING_MAIN": "The package has no main.js file.", + "MISSING_PACKAGE_JSON": "The package has no package.json file.", + "MISSING_PACKAGE_NAME": "The package.json file doesn't specify a package name.", + "MISSING_PACKAGE_VERSION": "The package.json file doesn't specify a package version.", + "MORE_OPTIONS": "More Options", + "MOVE_TO_RECYCLE_BIN": "Move to Recycle Bin", + "MOVE_TO_TRASH": "Move to Trash", + "MOVING": "Moving {0}", + "MULTIPLE_ERRORS": "{0} {1} Problems - {2}", + "MULTIPLE_ERRORS_FIXABLE": "{0} {1} Problems, {2} Fixable - {3}", + "NAVIGATE_MENU": "Navigate", + "NETWORK_SLOW_OR_DISCONNECTED": "Network is disconnected or too slow.", + "NEW_FILE_FILTER": "New Exclusion Set…", + "NEW_HTML": "New HTML Project", + "NEW_PROJECT_FROM_GIT": "New Project from Git", + "NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.
See Recent Projects, Open Folder or start projects from templates.

ok", "NORMALIZE_LINE_ENDINGS": "Normalize line endings (to \\n)", "NOTHING_TO_COMMIT": "Nothing to commit, working directory clean.", + "NOTHING_TO_LINT": "Nothing to lint", + "NOT_FOUND_ERR": "The file/directory could not be found.", + "NOT_READABLE_ERR": "The file/directory could not be read.", + "NO_ARGUMENTS": "", + "NO_ERRORS": "No {0} problems found - good job!", + "NO_ERRORS_MULTIPLE_PROVIDER": "No problems found - good job!", + "NO_EXTENSIONS": "No extensions installed yet.
Click on the Available tab above to get started.", + "NO_EXTENSION_MATCHES": "No extensions match your search.", + "NO_FILE_FILTER": "No Files Excluded", + "NO_LINT_AVAILABLE": "No linter available for {0}", + "NO_MODIFICATION_ALLOWED_ERR": "The target directory cannot be modified.", + "NO_MODIFICATION_ALLOWED_ERR_FILE": "The permissions do not allow you to make modifications.", + "NO_SERVER_RESPONSE": "Cannot connect to server.", + "NO_UPDATE_MESSAGE": "You are running the latest version of {APP_NAME}.", + "NO_UPDATE_TITLE": "You're Up to Date!", + "NPM_INSTALL_FAILED": "npm install command failed: {0}", + "NUMBER_WITH_PERCENTAGE": "{0}%", + "OK": "OK", + "ON_BRANCH": "'{0}' - Current Git branch", + "OPEN_DIALOG_ERROR": "An error occurred when showing the open file dialog. (error {0})", + "OPEN_FILE": "Open File", + "OPEN_PREFERENNCES": "Open Preferences", "OPERATION_IN_PROGRESS_TITLE": "Git operation in progress…", "ORIGIN_BRANCH": "Origin branch", - "ON_BRANCH": "'{0}' - Current Git branch", + "OVERWRITE": "Overwrite", "PANEL_COMMAND": "Show Git panel", "PASSWORD": "Password", "PASSWORDS": "Passwords", "PATH_TO_GIT_EXECUTABLE": "Path to Git executable", + "PHOENIX_DEFAULT_PROJECT": "Default Project", + "PHP_EXECUTABLE_NOT_FOUND": "PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more.", + "PHP_PROCESS_SPAWN_ERROR": "Error code {0} encountered while starting the PHP process.", + "PHP_SERVER_ERROR_TITLE": "Error", + "PHP_SERVER_MEMORY_LIMIT_INVALID": "The memory limit you provided is invalid. Review the PHP preferences to set the correct value.", + "PHP_UNSUPPORTED_VERSION": "Install PHP7 runtime for enabling PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. Version found: {0}", + "PHP_VERSION_INVALID": "Error parsing PHP version. Please check the output of the “php –version” command.", + "PLEASE_FILL_ALL_REQUIRED": "Please fill all required fields highlighted in red", + "PLEASE_SELECT_A_FOLDER": "Please select a folder...", + "PLEASE_WAIT": "Please wait…", + "PRERELEASE_BUILD": "prerelease build", + "PREVIEW": "Preview", + "PROCESSING_EXTENSIONS": "Processing extension changes…", + "PROJECTS_AT_A_GLANCE": "Your Projects at a glance", + "PROJECT_AT_GLANCE_DESCRIPTION": "Watch video to get started.", + "PROJECT_BUSY": "Project Operations In Progress", + "PROJECT_FROM_BROWSER": "Stored in Your Browser", + "PROJECT_FROM_BROWSER_TERSE": "Browser Storage", + "PROJECT_LOADING": "Loading…", + "PROJECT_NAME": "Project name:", + "PROJECT_SETTINGS_TITLE": "Project Settings for: {0}", + "PROJECT_SETTING_BASE_URL": "Live Preview Base URL", + "PROJECT_SETTING_BASE_URL_HINT": "To use a local server, enter a URL like http://localhost:8000/", + "PROJECT_SHOW_ON_STARTUP": "Show This Dialogue On Startup", + "PUBLISH": "Publish", + "PUBLISH_CONSENT_MESSAGE": "Quickly preview changes and share your website with others. {APP_NAME} can publish this website for you at {0}. The published links will be valid for a period of 3 days.
Do you wish to publish and share your website?", + "PUBLISH_PAGE": "Click to publish and share this site", + "PUBLISH_SYNC_IN_PROGRESS": "Sync in progress for preview...", + "PUBLISH_VIEW_PAGE": "Click to view published page", "PULL_AVOID_MERGING": "Avoid manual merging", + "PULL_BEHAVIOR": "Pull Behavior", "PULL_DEFAULT": "Default merge", "PULL_FROM": "Pull from", "PULL_MERGE_NOCOMMIT": "Merge without commit", @@ -1191,33 +1092,132 @@ "PULL_RESET": "Use soft reset", "PULL_SHORTCUT": "Pull from remote…", "PULL_SHORTCUT_BEHIND": "Pull from remote ({0} behind)…", - "PULL_BEHAVIOR": "Pull Behavior", - "FETCH_SHORTCUT": "Fetch from remote", + "PUSH_BEHAVIOR": "Push Behavior", "PUSH_DEFAULT": "Default push", "PUSH_DELETE_BRANCH": "Delete remote branch", - "PUSH_SEND_TAGS": "Send tags", "PUSH_FORCED": "Forced push", + "PUSH_SEND_TAGS": "Send tags", "PUSH_SHORTCUT": "Push to remote…", "PUSH_SHORTCUT_AHEAD": "Push to remote ({0} ahead)…", "PUSH_TO": "Push to", - "PUSH_BEHAVIOR": "Push Behavior", "Q_UNDO_CHANGES": "Reset changes to file {0}?", + "READ_DIRECTORY_ENTRIES_ERROR": "An error occurred when reading the contents of the directory {0}. (error {1})", "REBASE_RESULT": "Rebase result", + "RECENT_FILES_DLG_CLEAR_BUTTON_LABEL": "Clear", + "RECENT_FILES_DLG_CLEAR_BUTTON_TITLE": "Clear files not in Working Set", + "RECENT_FILES_DLG_HEADER": "Recent Files", + "RECOVER_UNSAVED_FILES_MESSAGE": "Restore unsaved files from your previous session?", + "RECOVER_UNSAVED_FILES_RESTORE": "Restore", + "RECOVER_UNSAVED_FILES_TITLE": "Recover Unsaved Files?", + "REFERENCES_IN_FILES": "references", + "REFERENCES_NO_RESULTS": "No References available for current cursor position", + "REFERENCE_IN_FILES": "reference", "REFRESH_GIT": "Refresh Git", + "REGISTRY_SANITY_CHECK_WARNING": "NOTE: These extensions may come from different authors than {APP_NAME} itself. Extensions are not reviewed and have full local privileges. Be cautious when installing extensions from an unknown source.", + "RELAUNCH_CHROME": "Relaunch Chrome", + "RELEASE_BUILD": "build", + "RELEASE_NOTES": "Release Notes", + "RELOAD_FROM_DISK": "Reload from Disk", + "REMOTE_DEBUGGING_ENABLED": "Remote debugging enabled on localhost:", + "REMOTE_DEBUGGING_PORT_INVALID": "Cannot enable remote debugging on port {0}. Port numbers should be between {1} and {2}.", + "REMOVE": "Remove", + "REMOVE_AND_RELOAD": "Remove Extensions and Reload", "REMOVE_BOM": "Remove BOM from files", "REMOVE_FROM_GITIGNORE": "Remove from .gitignore", + "REMOVE_FROM_RECENT_PROJECTS": "Remove from Recent Projects", + "RENAMING": "Renaming", + "REPLACE_IN_FILES_ERRORS": "The following files weren't modified because they changed after the search or couldn't be written.", + "REPLACE_IN_FILES_ERRORS_TITLE": "Replace Errors", + "REPLACE_PLACEHOLDER": "Replace with…", + "REPLACE_WITHOUT_UNDO_WARNING": "Because more than {0} files need to be changed, {APP_NAME} will modify unopened files on disk.
You won't be able to undo replacements in those files.", + "REPLACE_WITHOUT_UNDO_WARNING_TITLE": "Replace Without Undo", + "REQUEST_NATIVE_FILE_SYSTEM_ERROR": "An error occurred when trying to load the directory {0}. (error {1})", + "REQUIRES_APP_RESTART_SETTING": "Changing this setting requires an app restart to take effect", + "RESET": "Reset", + "RESET_DETAIL": "Commits after the following will be discarded:
Commit Message: {0}
Git Command: {1}", + "RESET_HARD_MESSAGE": "This action will discard all changes and commits after the selected commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_HARD_TITLE": "Confirm Hard Reset", "RESET_LOCAL_REPO": "Discard all changes since last commit…", - "DISCARD_CHANGES": "Discard Changes", "RESET_LOCAL_REPO_CONFIRM": "Do you wish to discard all changes done since last commit? This action can't be reverted.", - "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", - "MORE_OPTIONS": "More Options", - "CREDENTIALS": "Credentials", + "RESET_MIXED_MESSAGE": "This action will discard all commits after the selected commit but keep all changes unstaged. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_MIXED_TITLE": "Confirm Mixed Reset", + "RESET_SOFT_MESSAGE": "This action will discard all commits after the selected commit but keep all changes staged for a new commit. This operation cannot be undone easily. Are you sure you want to proceed?

⚠️ Warning: This rewrites history and should not be used on commits that have been pushed to a shared branch.", + "RESET_SOFT_TITLE": "Confirm Soft Reset", + "RESTART_BUTTON": "Restart", + "RETRY_DOWNLOAD": "Download failed. Retrying...Attempt ", + "RIGHT": "Right", + "SAVE": "Save", + "SAVE_AND_OVERWRITE": "Overwrite", + "SAVE_AS": "Save As…", + "SAVE_CLOSE_MESSAGE": "Do you want to save the changes you made in the document {0}?", + "SAVE_CLOSE_MULTI_MESSAGE": "Do you want to save your changes to the following files?", + "SAVE_CLOSE_TITLE": "Save Changes", "SAVE_CREDENTIALS_HELP": "You don't need to fill out username/password if your credentials are managed elsewhere. Use this only when your operation keeps timing out.", "SAVE_CREDENTIALS_IN_URL": "Save credentials to remote url (in plain text)", + "SAVE_FILE_AS": "Save File", + "SETTING_UP_PROJECT": "Setting Up Project", "SET_THIS_BRANCH_AS_TRACKING": "Set this branch as a new tracking branch", + "SHARE_WEBSITE": "Publish and Share Website?", + "SINGLE_ERROR": "1 {0} Problem - {1}", + "SINGLE_ERROR_FIXABLE": "1 {0} Problem, {1} Fixable - {2}", + "SKIP_COMMIT_CHECKS": "Skip pre-commit checks (--no-verify)", + "SKIP_PRE_PUSH_CHECKS": "Skip pre-push checks (--no-verify)", + "SORT_EXTENSION_METHOD": "Sort Extensions using downloadCount or publishedDate", + "SPLITVIEW_INFO_TITLE": "Already Open", + "SPLITVIEW_MENU_TOOLTIP": "Split the editor vertically or horizontally", + "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.

(You'll only see this message once.)", + "START_PROJECT": "Start Project…", + "STATUSBAR_AUTO_INDENT": "Auto", + "STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.", + "STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line", + "STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}", + "STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}", + "STATUSBAR_DEFAULT_LANG": "(default)", + "STATUSBAR_ENCODING_TOOLTIP": "Select the encoding", + "STATUSBAR_FIXED_INDENT": "Fixed", + "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_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces", + "STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs", + "STATUSBAR_INSERT": "INS", + "STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes", + "STATUSBAR_LANG_TOOLTIP": "Click to change file type", + "STATUSBAR_LINE_COUNT_PLURAL": "— {0} Lines", + "STATUSBAR_LINE_COUNT_SINGULAR": "— {0} Line", + "STATUSBAR_OVERWRITE": "OVR", + "STATUSBAR_SELECTION_CH_PLURAL": " — Selected {0} columns", + "STATUSBAR_SELECTION_CH_SINGULAR": " — Selected {0} column", + "STATUSBAR_SELECTION_LINE_PLURAL": " — Selected {0} lines", + "STATUSBAR_SELECTION_LINE_SINGULAR": " — Selected {0} line", + "STATUSBAR_SELECTION_MULTIPLE": " — {0} Multiple Cursor selections", + "STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files", + "STATUSBAR_SHOW_GIT": "Git Panel", + "STATUSBAR_SPACES": "Spaces:", + "STATUSBAR_TAB_SIZE": "Tab Size:", + "STATUSBAR_TASKS": "Tasks", + "STATUSBAR_TASKS_HIDE_SPINNER": "Hide Spinner Icon", + "STATUSBAR_TASKS_PAUSE": "Pause", + "STATUSBAR_TASKS_PLAY": "Start or Resume", + "STATUSBAR_TASKS_RESTART": "Restart", + "STATUSBAR_TASKS_STOP": "Stop", + "STATUSBAR_TASKS_TOOLTIP": "Manage Active Tasks", + "STATUSBAR_TASKS_UNKNOWN_EXTENSION_TASK": "Unknown Extension Task…", + "STATUSBAR_USER_EXTENSIONS_DISABLED": "Extensions Disabled", + "STEPS_EDITOR_INFO": " Increase or decrease steps
'Start' or 'End'", + "STORED_IN_YOUR_BROWSER": "Stored in Your Browser", "STRIP_WHITESPACE_FROM_COMMITS": "Strip trailing whitespace from commits", + "SUPPORT_US_OPEN_COLLECTIVE": "Support us on GitHub Sponsors", + "SYSTEM_CONFIGURATION": "System configuration", + "SYSTEM_DEFAULT": "System Default", + "TAG_NAME": "Tag", + "TAG_NAME_PLACEHOLDER": "Enter tag name here…", "TARGET_BRANCH": "Target branch", + "TEST_TRANSLATE": "use this to test translations", + "THEMES_ERROR": "Themes Error", + "THEMES_ERROR_CANNOT_APPLY": "Could not apply theme due to an error.", + "THEMES_SETTINGS": "Themes Settings", "TITLE_CHECKOUT": "Checkout Commit?", + "TOOLTIP_CLICK_TO_EDIT_COLOR": "Click here to edit color", "TOOLTIP_CLONE": "Clone existing repository", "TOOLTIP_COMMIT": "Commit the selected files", "TOOLTIP_FETCH": "Fetch all remotes and refresh counters", @@ -1235,91 +1235,91 @@ "TOOLTIP_REFRESH_PANEL": "Refresh panel", "TOOLTIP_SHOW_FILE_HISTORY": "Show file history", "TOOLTIP_SHOW_HISTORY": "Show history", + "TOP": "Top", + "TRUST_AUTHORS": "Do you trust the authors of this project?", + "TRUST_PROJECT": "Trust & Execute Preview - {0}", "UNDO_CHANGES": "Discard changes", "UNDO_CHANGES_BTN": "Discard changes…", - "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", "UNDO_COMMIT": "Undo Commit", + "UNDO_DISABLE": "Undo", + "UNDO_LAST_LOCAL_COMMIT": "Undo last local (not pushed) commit…", + "UNDO_LOCAL_COMMIT_CONFIRM": "Are you sure you want to undo the last non-pushed commit?", + "UNDO_REMOVE": "Undo", + "UNDO_UPDATE": "Undo", + "UNIT_PIXELS": "pixels", + "UNKNOWN_ERROR": "Unknown internal error.", + "UNSUPPORTED_BROWSER_MESSAGE": "Please use a modern browser (released within the last 3 years).", + "UNSUPPORTED_BROWSER_MOBILE": "Mobile and Tablet browsers are currently not fully supported. You may close this dialogue, but some features in Phoenix will not work in this browser.

We are working on developing native apps for iOS and Android. Join the discussion here!", + "UNSUPPORTED_BROWSER_MOBILE_TITLE": "Mobile Browsers Not Supported", + "UNSUPPORTED_BROWSER_OPEN_FOLDER": "Sorry, it looks like your current browser doesn't support opening local folders. For this feature, we recommend using Chrome, Edge, or Opera.

Alternatively, we're working on developing native apps for Windows, Mac, Linux, iOS, and Android to provide full support. Stay tuned for updates!", + "UNSUPPORTED_BROWSER_OPEN_FOLDER_TITLE": "Local Folder Access Unsupported by Browser", + "UNSUPPORTED_BROWSER_TITLE": "Browser Is Not Supported", + "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.", + "UNSUPPORTED_ENCODING_ERR": "Unknown encoding format", + "UNSUPPORTED_PROTOCOL": "The URL must be an http or https URL.", + "UNSUPPORTED_UTF16_ENCODING_ERR": "{APP_NAME} currently doesn't support UTF-16 encoded text files.", + "UNTITLED": "Untitled", + "UNZIP_FAILED": "Error: Unzipping failed.", + "UNZIP_IN_PROGRESS": "Unzipping files...", + "UPDATE": "Update", + "UPDATEDIR_CLEAN_FAILED": "Update directory could not be cleaned.", + "UPDATEDIR_READ_FAILED": "Update directory could not be read.", + "UPDATE_AND_RELOAD": "Update Extensions and Reload", + "UPDATE_AVAILABLE_TITLE": "Update Available", + "UPDATE_DONE": "Restart to Update {APP_NAME}", + "UPDATE_DOWNLOADING": "Downloading Installer", + "UPDATE_DOWNLOAD_PROGRESS": "Downloading- {0} of {1} MB", + "UPDATE_EXTENSION_TITLE": "Update Extension", + "UPDATE_FAILED": "Update failed!", + "UPDATE_FAILED_MESSAGE": "Please close all {APP_NAME} app windows and reopen the application to attempt the update again.
You can also install the update by downloading the installer from phcode.io", + "UPDATE_FAILED_TITLE": "Update Failed", + "UPDATE_FAILED_VISIT_SITE_MESSAGE": "To retry, please exit all instances of {APP_NAME} and restart the application.
You will be directed to our download page shortly, where you can manually download the latest version.", + "UPDATE_INSTALLING": "Installing Update…", + "UPDATE_INSTALLING_MESSAGE": "Update Installation in Progress: {APP_NAME} is currently installing the latest updates. The application will automatically close once the installation is complete.", + "UPDATE_LATER": "Remind Me Later", + "UPDATE_MESSAGE": "Hey, there's a new build of {APP_NAME} available. Here are some of the new features:", + "UPDATE_NOTIFICATION_TOOLTIP": "There's a new build of {APP_NAME} available! Click here for details.", + "UPDATE_NOT_AVAILABLE_TITLE": "{APP_NAME} is up to date", + "UPDATE_ON_EXIT": "Update On Exit", + "UPDATE_ON_NEXT_LAUNCH": "The update will be applied on relaunch.", + "UPDATE_READY_RESTART_INSTALL_MESSAGE": "{APP_NAME} will be updated automatically when you close all open windows.", + "UPDATE_READY_RESTART_TITLE": "Restart App to Update", + "UPDATE_RESTART_INSTALL": "Restart to install updates", + "UPDATE_SUCCESSFUL": "Update successful!", + "UPDATE_UP_TO_DATE": "Your version of {APP_NAME} is the latest!", + "UPDATE_WHATS_NEW": "What's New in {APP_NAME}", + "UPDATING_APP": "Updating {APP_NAME}", + "UPDATING_APP_DIALOG_MESSAGE": "Update in progress. You can continue using {APP_NAME} while we upgrade.", + "UPDATING_APP_MESSAGE": "This may take a while", "URL": "URL", "USERNAME": "Username", "USER_ABORTED": "User aborted!", + "USE_DIFFTOOL": "Use difftool for diffs", "USE_GIT_GUTTER": "Use Git gutter marks", "USE_NOFF": "Create a merge commit even when the merge resolves as a fast-forward (--no-ff)", "USE_REBASE": "Use REBASE", + "USE_THEME_SCROLLBARS": "Use Theme Scrollbars", "USE_VERBOSE_DIFF": "Show verbose output in diffs", - "USE_DIFFTOOL": "Use difftool for diffs", + "VALIDATING_INSTALLER": "Download complete! Validating Installer...", + "VALIDATION_FAILED": "Validation failed!", "VIEW_AUTHORS_FILE": "View authors of file…", "VIEW_AUTHORS_SELECTION": "View authors of selection…", + "VIEW_COMPLETE_DESCRIPTION": "View complete description", + "VIEW_MENU": "View", + "VIEW_MORE": "View More...", "VIEW_THIS_FILE": "View this file", - "TAG_NAME_PLACEHOLDER": "Enter tag name here…", - "TAG_NAME": "Tag", - "CMD_CLOSE_UNMODIFIED": "Close Unmodified Files", - "FILE_ADDED": "New file", - "FILE_COPIED": "Copied", - "FILE_DELETED": "Deleted", - "FILE_IGNORED": "Ignored", - "FILE_MODIFIED": "Modified", - "FILE_RENAMED": "Renamed", - "FILE_STAGED": "Staged", - "FILE_UNMERGED": "Unmerged", - "FILE_UNMODIFIED": "Unmodified", - "FILE_UNTRACKED": "Untracked", - "GIT_PUSH_SUCCESS_MSG": "Successfully pushed fast-forward", - "GIT_PUSH_FORCE_UPDATED_MSG": "Successful forced update", - "GIT_PUSH_DELETED_MSG": "Successfully deleted ref", - "GIT_PUSH_NEW_REF_MSG": "Successfully pushed new ref", - "GIT_PUSH_REJECTED_MSG": "Ref was rejected or failed to push", - "GIT_PUSH_UP_TO_DATE_MSG": "Ref was up to date and did not need pushing", - "GIT_PULL_SUCCESS": "Successfully completed git pull", - "GIT_MERGE_SUCCESS": "Successfully completed git merge", - "GIT_REBASE_SUCCESS": "Successfully completed git rebase", - "GIT_BRANCH_DELETE_SUCCESS": "Successfully deleted git branch", - "INIT_NEW_REPO_FAILED": "Failed to initialize new repository", - "GIT_CLONE_REMOTE_FAILED": "Cloning remote repository failed!", - "GIT_CLONE_ERROR_EXPLAIN": "The selected directory `{0}`\n is not empty. Git clone requires a clean, empty directory.\nIf it appears empty, check for hidden files.", - "FOLDER_NOT_WRITABLE": "The selected directory `{0}`\n is not writable.", - "GIT_NOT_FOUND_MESSAGE": "Git is not installed or cannot be found on your system. Please install Git or provide the correct path to the Git executable in the text field below.", - "ERROR_GETTING_BRANCH_LIST": "Getting branch list failed", - "ERROR_READING_GIT_HEAD": "Reading .git/HEAD file failed", - "ERROR_PARSING_BRANCH_NAME": "Failed parsing branch name from {0}", - "ERROR_READING_GIT_STATE": "Reading .git state failed", - "ERROR_GETTING_DELETED_FILES": "Getting list of deleted files failed", - "ERROR_SWITCHING_BRANCHES": "Switching branches failed", - "ERROR_GETTING_CURRENT_BRANCH": "Getting current branch name failed", - "ERROR_REBASE_FAILED": "Rebase failed", - "ERROR_MERGE_FAILED": "Merge failed", - "ERROR_BRANCH_DELETE_FORCED": "Forced branch deletion failed", - "ERROR_FETCH_REMOTE_INFO": "Fetching remote information failed", - "ERROR_CREATE_BRANCH": "Creating new branch failed", - "ERROR_REFRESH_GUTTER": "Refreshing gutter failed!", - "ERROR_GET_HISTORY": "Failed to get history", - "ERROR_GET_MORE_HISTORY": "Failed to load more history rows", - "ERROR_GET_CURRENT_BRANCH": "Failed to get current branch name", - "ERROR_GET_DIFF_FILE_COMMIT": "Failed to get diff", - "ERROR_GET_DIFF_FILES": "Failed to load list of diff files", - "ERROR_MODIFY_GITIGNORE": "Failed modifying .gitignore", - "ERROR_UNDO_LAST_COMMIT_FAILED": "Impossible to undo last commit", - "ERROR_MODIFY_FILE_STATUS_FAILED": "Failed to modify file status", - "ERROR_CHANGE_USERNAME_FAILED": "Impossible to change user name", - "ERROR_CHANGE_EMAIL_FAILED": "Impossible to change user email", - "ERROR_TOGGLE_GERRIT_PUSH_REF_FAILED": "Impossible to toggle gerrit push ref", - "ERROR_RESET_LOCAL_REPO_FAILED": "Reset of local repository failed", - "ERROR_CREATE_TAG": "Create tag failed", - "ERROR_CODE_INSPECTION_FAILED": "CodeInspection.inspectFile failed to execute for file", - "ERROR_CANT_GET_STAGED_DIFF": "Cant get diff for staged files", - "ERROR_GIT_COMMIT_FAILED": "Git Commit failed", - "ERROR_GIT_BLAME_FAILED": "Git Blame failed", - "ERROR_GIT_DIFF_FAILED": "Git Diff failed", - "ERROR_DISCARD_CHANGES_FAILED": "Discard changes to a file failed", - "ERROR_COULD_NOT_RESOLVE_FILE": "Could not resolve file", - "ERROR_MERGE_ABORT_FAILED": "Merge abort failed", - "ERROR_MODIFIED_DIALOG_FILES": "The files you were going to commit were modified while commit dialog was displayed. Aborting the commit as the result would be different then what was shown in the dialog.", - "ERROR_GETTING_REMOTES": "Getting remotes failed!", - "ERROR_REMOTE_CREATION": "Remote creation failed", - "ERROR_PUSHING_REMOTE": "Pushing to remote failed", - "ERROR_PULLING_REMOTE": "Pulling from remote failed", - "ERROR_PULLING_OPERATION": "Pulling operation failed", - "ERROR_PUSHING_OPERATION": "Pushing operation failed", - "ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!", - "ERROR_BRANCH_LIST": "Getting branch list failed", - "ERROR_FETCH_REMOTE": "Fetching remote information failed" + "VIEW_TRUNCATED_DESCRIPTION": "View truncated description", + "WARNING_TYPE": "Warning!", + "WEBPAGE_BLOG": "Blog Page", + "WEBPAGE_BOOTSTRAP_EXAMPLES": "Bootstrap Examples", + "WEBPAGE_DASHBOARD": "HTML Dashboard", + "WEBPAGE_HOME_PAGE": "Home Page", + "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}?", + "WORKING_FILES": "Working Files", + "ZOOM_WITH_SHORTCUTS": "Use Keyboard Shortcuts to Zoom", + "ZOOM_WITH_SHORTCUTS_DETAILS": "Please use keyboard shortcuts {0} to Zoom In and {1} to Zoom Out.", + "_ANOTHER_BRANCH": "another branch", + "_CURRENT_TRACKING_BRANCH": "current tracking branch", + "_LINES": "lines" } \ No newline at end of file