|
31 | 31 | "upload.verbose": "True for verbose upload output. False by default.",
|
32 | 32 | "window.autoScale": "True if the user interface automatically scales with the font size.",
|
33 | 33 | "window.zoomLevel": "Adjust the zoom level of the window. The original size is 0 and each increment above (e.g. 1) or below (e.g. -1) represents zooming 20% larger or smaller. You can also enter decimals to adjust the zoom level with a finer granularity.",
|
34 |
| - "ide.updateChannel": "Release channel to get updated from. Latest is the stable release, nightly is the latest development build.", |
| 34 | + "ide.updateChannel": "Release channel to get updated from. 'stable' is the stable release, 'nightly' is the latest development build.", |
35 | 35 | "board.certificates": "List of certificates that can be uploaded to boards",
|
36 | 36 | "sketchbook.showAllFiles": "True to show all sketch files inside the sketch. It is false by default.",
|
37 | 37 | "cloud.enabled": "True if the sketch sync functions are enabled. Defaults to true.",
|
|
318 | 318 | "offline": "Offline",
|
319 | 319 | "daemonOffline": "CLI Daemon Offline",
|
320 | 320 | "cannotConnectBackend": "Cannot connect to the backend.",
|
321 |
| - "cannotConnectDaemon": "Cannot connect to the CLI daemon." |
| 321 | + "cannotConnectDaemon": "Cannot connect to the CLI daemon.", |
| 322 | + "highlightModifiedTabs": "Controls whether a top border is drawn on modified (dirty) editor tabs or not.", |
| 323 | + "silentNotifications": "Controls whether to suppress notification popups.", |
| 324 | + "quitTitle": "Are you sure you want to quit?", |
| 325 | + "quitMessage": "Any unsaved changes will not be saved.", |
| 326 | + "keyboard": { |
| 327 | + "current": "(current: {0})", |
| 328 | + "tryDetect": "Try to detect the keyboard layout from browser information and pressed keys.", |
| 329 | + "mac": "Mac Keyboards", |
| 330 | + "pc": "PC Keyboards", |
| 331 | + "chooseLayout": "Choose a keyboard layout", |
| 332 | + "currentLayout": " - current layout" |
| 333 | + } |
322 | 334 | },
|
323 | 335 | "debug": {
|
324 | 336 | "start": "Start...",
|
325 | 337 | "typeNotSupported": "The debug session type \"{0}\" is not supported.",
|
326 |
| - "startError": "There was an error starting the debug session, check the logs for more details." |
| 338 | + "startError": "There was an error starting the debug session, check the logs for more details.", |
| 339 | + "reveal": "Reveal", |
| 340 | + "openLeft": "Open Left", |
| 341 | + "openRight": "Open Right", |
| 342 | + "openBottom": "Open Bottom", |
| 343 | + "toggleTracing": "Enable/disable tracing communications with debug adapters", |
| 344 | + "debugViewLocation": "Controls the location of the debug view.", |
| 345 | + "threads": "Threads" |
327 | 346 | },
|
328 | 347 | "editor": {
|
329 |
| - "unsavedTitle": "Unsaved – {0}" |
| 348 | + "unsavedTitle": "Unsaved – {0}", |
| 349 | + "reopenDirty": "The file is dirty. Please save it first before reopening it with another encoding.", |
| 350 | + "splitHorizontal": "Split Editor Horizontal", |
| 351 | + "splitVertical": "Split Editor Vertical", |
| 352 | + "ariaLabel": "The aria label for the editor's textarea when focused.", |
| 353 | + "automaticLayout": "Enable that the editor will install an interval to check if its container dom node size has changed. Enabling this might have a severe performance impact.", |
| 354 | + "contextmenu": "Controls whether to enable the custom contextmenu.", |
| 355 | + "disableLayerHinting": "Disable the use of `transform: translate3d(0px, 0px, 0px)` for the editor margin and lines layers. The usage of `transform: translate3d(0px, 0px, 0px)` acts as a hint for browsers to create an extra layer.", |
| 356 | + "disableMonospaceOptimizations": "Controls whether to enable optimizations for monospace fonts.", |
| 357 | + "extraEditorClassName": "Additional class name to be added to the editor.", |
| 358 | + "fixedOverflowWidgets": "Controls whether to display overflow widgets as `fixed`.", |
| 359 | + "highlightActiveIndentGuide": "Controls whether the editor should highlight the active indent guide.", |
| 360 | + "lineNumbersMinChars": "Controls the line height. Use 0 to compute the line height from the font size.", |
| 361 | + "mouseStyle": "Controls the mouse pointer style.", |
| 362 | + "overviewRulerLanes": "The number of vertical lanes the overview ruler should render.", |
| 363 | + "readOnly": "Controls whether the editor is readonly.", |
| 364 | + "renderValidationDecorations": "Controls whether the editor renders validation decorations.", |
| 365 | + "revealHorizontalRightPadding": "When revealing the cursor, a virtual padding (px) is added to the cursor, turning it into a rectangle. This virtual padding ensures that the cursor gets revealed before hitting the edge of the viewport.", |
| 366 | + "selectOnLineNumbers": "Controls whether to select the corresponding line when clicking on the line number", |
| 367 | + "stopRenderingLineAfter": "Performance guard: Stop rendering a line after x characters.", |
| 368 | + "suggest.insertHighlight": "Controls whether unexpected text modifications while accepting completions should be highlighted, e.g `insertMode` is `replace` but the completion only supports `insert`.", |
| 369 | + "tabIndex": "Controls the wrapping column of the editor when `#editor.wordWrap#` is `wordWrapColumn` or `bounded`.", |
| 370 | + "wordWrapBreakAfterCharacters": "Configure word wrapping characters. A break will be introduced after these characters.", |
| 371 | + "wordWrapBreakBeforeCharacters": "Configure word wrapping characters. A break will be introduced before these characters.", |
| 372 | + "wordWrapOverride1": "Override the `wordWrap` setting.", |
| 373 | + "wordWrapOverride2": "Override the `wordWrapOverride1` setting.", |
| 374 | + "autoSaveSetting": "Controls auto save of dirty files.", |
| 375 | + "autoSaveDelay": "Configure the auto save delay in milliseconds.", |
| 376 | + "formatOnSaveTimeout": "Timeout in milliseconds after which the formatting that is run on file save is cancelled.", |
| 377 | + "persistClosedEditors": "Controls whether to persist closed editor history for the workspace across window reloads." |
330 | 378 | },
|
331 | 379 | "messages": {
|
332 | 380 | "expand": "Expand",
|
333 |
| - "collapse": "Collapse" |
| 381 | + "collapse": "Collapse", |
| 382 | + "notificationTimeout": "Informative notifications will be hidden after this timeout." |
334 | 383 | },
|
335 | 384 | "workspace": {
|
336 | 385 | "fileNewName": "Name for new file",
|
337 | 386 | "invalidFilename": "Invalid filename.",
|
338 | 387 | "invalidExtension": ".{0} is not a valid extension",
|
339 | 388 | "newFileName": "New name for file",
|
340 | 389 | "deleteCurrentSketch": "Do you want to delete the current sketch?",
|
341 |
| - "sketchDirectoryError": "There was an error creating the sketch directory. See the log for more details. The application will probably not work as expected." |
| 390 | + "sketchDirectoryError": "There was an error creating the sketch directory. See the log for more details. The application will probably not work as expected.", |
| 391 | + "openRecentPlaceholder": "Type the name of the workspace you want to open", |
| 392 | + "noErasure": "Note: Nothing will be erased from disk", |
| 393 | + "workspaceFolderAddedTitle": "Folder added to Workspace", |
| 394 | + "workspaceFolderAdded": "A workspace with multiple roots was created. Do you want to save your workspace configuration as a file?", |
| 395 | + "confirmDeletePermanently.title": "Error deleting file", |
| 396 | + "confirmDeletePermanently.description": "Failed to delete \"{0}\" using the Trash. Do you want to permanently delete instead?", |
| 397 | + "confirmDeletePermanently.solution": "You can disable the use of Trash in the preferences.", |
| 398 | + "failSaveAs": "Cannot run \"{0}\" for the current widget.", |
| 399 | + "closeWorkspace": "Do you really want to close the workspace?", |
| 400 | + "failApply": "Could not apply changes to new file", |
| 401 | + "preserveWindow": "Enable opening workspaces in current window.", |
| 402 | + "supportMultiRootWorkspace": "Controls whether multi-root workspace support is enabled." |
| 403 | + }, |
| 404 | + "scm": { |
| 405 | + "amendHeadCommit": "HEAD Commit", |
| 406 | + "amendLastCommit": "Amend last commit", |
| 407 | + "amend": "Amend", |
| 408 | + "unamendCommit": "Unamend commit", |
| 409 | + "unamend": "Unamend", |
| 410 | + "noRepositoryFound": "No repository found", |
| 411 | + "changeRepository": "Change Repository..." |
| 412 | + }, |
| 413 | + "searchResultsView": { |
| 414 | + "searchFolderMatch.other.label": "Other files" |
| 415 | + }, |
| 416 | + "search-in-workspace": { |
| 417 | + "includeIgnoredFiles": "Include Ignored Files", |
| 418 | + "noFolderSpecified": "You have not opened or specified a folder. Only open files are currently searched.", |
| 419 | + "resultSubset": "This is only a subset of all results. Use a more specific search term to narrow down the result list.", |
| 420 | + "searchOnEditorModification": "Search the active editor when modified." |
| 421 | + }, |
| 422 | + "callhierarchy": { |
| 423 | + "open": "Open Call Hierarchy" |
| 424 | + }, |
| 425 | + "filesystem": { |
| 426 | + "processedOutOf": "Processed {0} out of {1}", |
| 427 | + "uploadedOutOf": "Uploaded {0} out of {1}", |
| 428 | + "uploadFiles": "Uploading Files", |
| 429 | + "filesExclude": "Configure glob patterns for excluding files and folders. For example, the file Explorer decides which files and folders to show or hide based on this setting.", |
| 430 | + "maxFileSizeMB": "Controls the max file size in MB which is possible to open.", |
| 431 | + "maxConcurrentUploads": "Maximum number of concurrent files to upload when uploading multiple files. 0 means all files will be uploaded concurrently." |
| 432 | + }, |
| 433 | + "git": { |
| 434 | + "toggleBlameAnnotations": "Toggle Blame Annotations", |
| 435 | + "compareWith": "Compare With...", |
| 436 | + "noPreviousCommit": "No previous commit to amend", |
| 437 | + "addSignedOff": "Add Signed-off-by", |
| 438 | + "gitDecorationsColors": "Use color decoration in the navigator.", |
| 439 | + "editorDecorationsEnabled": "Show git decorations in the editor.", |
| 440 | + "dirtyDiffLinesLimit": "Do not show dirty diff decorations, if editor's line count exceeds this limit.", |
| 441 | + "added": "Added", |
| 442 | + "unstaged": "Unstaged", |
| 443 | + "renamed": "Renamed", |
| 444 | + "copied": "Copied", |
| 445 | + "conflicted": "Conflicted" |
| 446 | + }, |
| 447 | + "keybinding-schema-updater": { |
| 448 | + "deprecation": "Use `when` clause instead." |
| 449 | + }, |
| 450 | + "markers": { |
| 451 | + "tabbarDecorationsEnabled": "Show problem decorators (diagnostic markers) in the tab bars." |
| 452 | + }, |
| 453 | + "monaco": { |
| 454 | + "typeToSearchForSymbols": "Type to search for symbols", |
| 455 | + "noSymbolsMatching": "No symbols matching" |
| 456 | + }, |
| 457 | + "navigator": { |
| 458 | + "reveal": "Reveal in Explorer", |
| 459 | + "toggleHiddenFiles": "Toggle Hidden Files" |
| 460 | + }, |
| 461 | + "output": { |
| 462 | + "outputChannels": "Output Channels", |
| 463 | + "hiddenChannels": "Hidden Channels", |
| 464 | + "maxChannelHistory": "The maximum number of entries in an output channel." |
| 465 | + }, |
| 466 | + "webview": { |
| 467 | + "goToReadme": "Go To README", |
| 468 | + "messageWarning": " The {0} endpoint's host pattern has been changed to `{1}`; changing the pattern can lead to security vulnerabilities. See `{2}` for more information." |
| 469 | + }, |
| 470 | + "plugin-ext": { |
| 471 | + "webviewTrace": "Controls communication tracing with webviews.", |
| 472 | + "webviewWarnIfUnsecure": "Warns users that webviews are currently deployed unsecurely." |
| 473 | + }, |
| 474 | + "terminal": { |
| 475 | + "terminateActive": "Do you want to terminate the active terminal session?", |
| 476 | + "terminateActiveMultiple": "Do you want to terminate the {0} active terminal sessions?", |
| 477 | + "terminate": "Terminate", |
| 478 | + "enableCopy": "Enable ctrl-c (cmd-c on macOS) to copy selected text", |
| 479 | + "enablePaste": "Enable ctrl-v (cmd-v on macOS) to paste from clipboard", |
| 480 | + "shellWindows": "The path of the shell that the terminal uses on Windows. (default: '{0}').", |
| 481 | + "shellOsx": "The path of the shell that the terminal uses on macOS (default: '{0}'}).", |
| 482 | + "shellLinux": "The path of the shell that the terminal uses on Linux (default: '{0}'}).", |
| 483 | + "shellArgsWindows": "The command line arguments to use when on the Windows terminal.", |
| 484 | + "shellArgsOsx": "The command line arguments to use when on the macOS terminal.", |
| 485 | + "shellArgsLinux": "The command line arguments to use when on the Linux terminal." |
| 486 | + }, |
| 487 | + "workspace-service": { |
| 488 | + "untitled-cleanup": "There appear to be many untitled workspace files. Please check {0} and remove any unused files." |
342 | 489 | }
|
343 | 490 | },
|
344 | 491 | "cloud": {
|
345 | 492 | "GoToCloud": "GO TO CLOUD"
|
346 |
| - } |
| 493 | + }, |
| 494 | + "internalConsoleOptions": "Controls when the internal debug console should open.", |
| 495 | + "debugType": "Type of configuration.", |
| 496 | + "debugTypeNotRecognised": "The debug type is not recognized. Make sure that you have a corresponding debug extension installed and that it is enabled.", |
| 497 | + "node2NotSupported": "\"node2\" is no longer supported, use \"node\" instead and set the \"protocol\" attribute to \"inspector\".", |
| 498 | + "debugName": "Name of configuration; appears in the launch configuration drop down menu.", |
| 499 | + "debugRequest": "Request type of configuration. Can be \"launch\" or \"attach\".", |
| 500 | + "debugServer": "For debug extension development only: if a port is specified VS Code tries to connect to a debug adapter running in server mode", |
| 501 | + "debugPrelaunchTask": "Task to run before debug session starts.", |
| 502 | + "debugPostDebugTask": "Task to run after debug session ends.", |
| 503 | + "debugWindowsConfiguration": "Windows specific launch configuration attributes.", |
| 504 | + "debugOSXConfiguration": "OS X specific launch configuration attributes.", |
| 505 | + "debugLinuxConfiguration": "Linux specific launch configuration attributes.", |
| 506 | + "deprecatedVariables": "'env.', 'config.' and 'command.' are deprecated, use 'env:', 'config:' and 'command:' instead.", |
| 507 | + "unusualLineTerminators.auto": "Unusual line terminators are automatically removed.", |
| 508 | + "unusualLineTerminators.off": "Unusual line terminators are ignored.", |
| 509 | + "unusualLineTerminators.prompt": "Unusual line terminators prompt to be removed.", |
| 510 | + "search-in-workspace.in-folder": "Find in Folder" |
347 | 511 | }
|
0 commit comments