@theia/core 1.57.0 → 1.58.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -7
- package/i18n/nls.cs.json +23 -11
- package/i18n/nls.de.json +23 -11
- package/i18n/nls.es.json +23 -11
- package/i18n/nls.fr.json +23 -11
- package/i18n/nls.hu.json +23 -11
- package/i18n/nls.it.json +23 -11
- package/i18n/nls.ja.json +23 -11
- package/i18n/nls.json +24 -12
- package/i18n/nls.ko.json +23 -11
- package/i18n/nls.pl.json +23 -11
- package/i18n/nls.pt-br.json +23 -11
- package/i18n/nls.ru.json +23 -11
- package/i18n/nls.tr.json +23 -11
- package/i18n/nls.zh-cn.json +23 -11
- package/i18n/nls.zh-tw.json +23 -11
- package/lib/browser/catalog.json +267 -39
- package/lib/browser/common-frontend-contribution.d.ts +1 -1
- package/lib/browser/common-frontend-contribution.d.ts.map +1 -1
- package/lib/browser/common-frontend-contribution.js +16 -7
- package/lib/browser/common-frontend-contribution.js.map +1 -1
- package/lib/browser/dialogs.d.ts +1 -0
- package/lib/browser/dialogs.d.ts.map +1 -1
- package/lib/browser/dialogs.js +6 -0
- package/lib/browser/dialogs.js.map +1 -1
- package/lib/browser/frontend-application-module.d.ts.map +1 -1
- package/lib/browser/frontend-application-module.js +1 -0
- package/lib/browser/frontend-application-module.js.map +1 -1
- package/lib/browser/json-schema-store.d.ts +12 -1
- package/lib/browser/json-schema-store.d.ts.map +1 -1
- package/lib/browser/json-schema-store.js +31 -1
- package/lib/browser/json-schema-store.js.map +1 -1
- package/lib/browser/keybinding.js +3 -3
- package/lib/browser/keybinding.js.map +1 -1
- package/lib/browser/saveable.d.ts +1 -0
- package/lib/browser/saveable.d.ts.map +1 -1
- package/lib/browser/saveable.js +3 -0
- package/lib/browser/saveable.js.map +1 -1
- package/lib/browser/secondary-window-handler.d.ts.map +1 -1
- package/lib/browser/secondary-window-handler.js +1 -0
- package/lib/browser/secondary-window-handler.js.map +1 -1
- package/lib/browser/shell/application-shell.d.ts +2 -1
- package/lib/browser/shell/application-shell.d.ts.map +1 -1
- package/lib/browser/shell/application-shell.js +24 -10
- package/lib/browser/shell/application-shell.js.map +1 -1
- package/lib/browser/test/jsdom.d.ts.map +1 -1
- package/lib/browser/test/jsdom.js +6 -1
- package/lib/browser/test/jsdom.js.map +1 -1
- package/lib/browser/tree/tree-widget.d.ts +6 -2
- package/lib/browser/tree/tree-widget.d.ts.map +1 -1
- package/lib/browser/tree/tree-widget.js +4 -4
- package/lib/browser/tree/tree-widget.js.map +1 -1
- package/lib/browser/window/browser-window-module.d.ts.map +1 -1
- package/lib/browser/window/browser-window-module.js +3 -0
- package/lib/browser/window/browser-window-module.js.map +1 -1
- package/lib/browser/window/default-secondary-window-service.d.ts +5 -0
- package/lib/browser/window/default-secondary-window-service.d.ts.map +1 -1
- package/lib/browser/window/default-secondary-window-service.js +6 -0
- package/lib/browser/window/default-secondary-window-service.js.map +1 -1
- package/lib/browser/window/secondary-window-service.d.ts +3 -0
- package/lib/browser/window/secondary-window-service.d.ts.map +1 -1
- package/lib/browser/window/secondary-window-service.js.map +1 -1
- package/lib/browser/window/window-title-service.d.ts +6 -0
- package/lib/browser/window/window-title-service.d.ts.map +1 -1
- package/lib/browser/window/window-title-service.js +12 -1
- package/lib/browser/window/window-title-service.js.map +1 -1
- package/lib/common/encoding-service.d.ts +1 -0
- package/lib/common/encoding-service.d.ts.map +1 -1
- package/lib/common/resource.d.ts +2 -0
- package/lib/common/resource.d.ts.map +1 -1
- package/lib/common/resource.js +1 -0
- package/lib/common/resource.js.map +1 -1
- package/lib/electron-browser/window/electron-window-module.d.ts.map +1 -1
- package/lib/electron-browser/window/electron-window-module.js +3 -0
- package/lib/electron-browser/window/electron-window-module.js.map +1 -1
- package/lib/node/messaging/test/test-web-socket-channel.d.ts.map +1 -1
- package/lib/node/messaging/test/test-web-socket-channel.js +7 -1
- package/lib/node/messaging/test/test-web-socket-channel.js.map +1 -1
- package/lib/node/messaging/websocket-endpoint.d.ts +1 -1
- package/lib/node/messaging/websocket-endpoint.d.ts.map +1 -1
- package/package.json +11 -11
- package/src/browser/common-frontend-contribution.ts +16 -7
- package/src/browser/dialogs.ts +7 -0
- package/src/browser/frontend-application-module.ts +2 -1
- package/src/browser/json-schema-store.ts +35 -1
- package/src/browser/keybinding.ts +3 -3
- package/src/browser/saveable.ts +3 -0
- package/src/browser/secondary-window-handler.ts +1 -0
- package/src/browser/shell/application-shell.ts +27 -11
- package/src/browser/style/dockpanel.css +10 -0
- package/src/browser/test/jsdom.ts +6 -1
- package/src/browser/tree/tree-widget.tsx +10 -4
- package/src/browser/window/browser-window-module.ts +3 -0
- package/src/browser/window/default-secondary-window-service.ts +7 -1
- package/src/browser/window/secondary-window-service.ts +3 -0
- package/src/browser/window/window-title-service.ts +14 -1
- package/src/common/resource.ts +4 -0
- package/src/electron-browser/window/electron-window-module.ts +3 -0
- package/src/node/messaging/test/test-web-socket-channel.ts +6 -1
package/README.md
CHANGED
|
@@ -74,7 +74,7 @@ export class SomeClass {
|
|
|
74
74
|
- `native-keymap` (from [`native-keymap@^2.2.1`](https://www.npmjs.com/package/native-keymap))
|
|
75
75
|
- `electron` (from [`electron@30.1.2`](https://www.npmjs.com/package/electron/v/30.1.2))
|
|
76
76
|
- `electron-store` (from [`electron-store@^8.0.0`](https://www.npmjs.com/package/electron-store))
|
|
77
|
-
- `fix-path` (from [`fix-path@^
|
|
77
|
+
- `fix-path` (from [`fix-path@^4.0.0`](https://www.npmjs.com/package/fix-path))
|
|
78
78
|
- `@theia/core/shared/...`
|
|
79
79
|
- `@phosphor/algorithm` (from [`@phosphor/algorithm@1`](https://www.npmjs.com/package/@phosphor/algorithm))
|
|
80
80
|
- `@phosphor/commands` (from [`@phosphor/commands@1`](https://www.npmjs.com/package/@phosphor/commands))
|
|
@@ -86,12 +86,12 @@ export class SomeClass {
|
|
|
86
86
|
- `@phosphor/signaling` (from [`@phosphor/signaling@1`](https://www.npmjs.com/package/@phosphor/signaling))
|
|
87
87
|
- `@phosphor/virtualdom` (from [`@phosphor/virtualdom@1`](https://www.npmjs.com/package/@phosphor/virtualdom))
|
|
88
88
|
- `@phosphor/widgets` (from [`@phosphor/widgets@1`](https://www.npmjs.com/package/@phosphor/widgets))
|
|
89
|
-
- `@theia/application-package` (from [`@theia/application-package@1.
|
|
90
|
-
- `@theia/application-package/lib/api` (from [`@theia/application-package@1.
|
|
91
|
-
- `@theia/application-package/lib/environment` (from [`@theia/application-package@1.
|
|
92
|
-
- `@theia/request` (from [`@theia/request@1.
|
|
93
|
-
- `@theia/request/lib/proxy` (from [`@theia/request@1.
|
|
94
|
-
- `@theia/request/lib/node-request-service` (from [`@theia/request@1.
|
|
89
|
+
- `@theia/application-package` (from [`@theia/application-package@1.58.0`](https://www.npmjs.com/package/@theia/application-package/v/1.58.0))
|
|
90
|
+
- `@theia/application-package/lib/api` (from [`@theia/application-package@1.58.0`](https://www.npmjs.com/package/@theia/application-package/v/1.58.0))
|
|
91
|
+
- `@theia/application-package/lib/environment` (from [`@theia/application-package@1.58.0`](https://www.npmjs.com/package/@theia/application-package/v/1.58.0))
|
|
92
|
+
- `@theia/request` (from [`@theia/request@1.58.0`](https://www.npmjs.com/package/@theia/request/v/1.58.0))
|
|
93
|
+
- `@theia/request/lib/proxy` (from [`@theia/request@1.58.0`](https://www.npmjs.com/package/@theia/request/v/1.58.0))
|
|
94
|
+
- `@theia/request/lib/node-request-service` (from [`@theia/request@1.58.0`](https://www.npmjs.com/package/@theia/request/v/1.58.0))
|
|
95
95
|
- `fs-extra` (from [`fs-extra@^4.0.2`](https://www.npmjs.com/package/fs-extra))
|
|
96
96
|
- `fuzzy` (from [`fuzzy@^0.1.3`](https://www.npmjs.com/package/fuzzy))
|
|
97
97
|
- `inversify` (from [`inversify@^6.1.3`](https://www.npmjs.com/package/inversify))
|
package/i18n/nls.cs.json
CHANGED
|
@@ -137,30 +137,42 @@
|
|
|
137
137
|
"toggleTracing": "Povolení/zakázání sledování komunikace s ladicími adaptéry"
|
|
138
138
|
},
|
|
139
139
|
"editor": {
|
|
140
|
+
"diffEditor.experimental.useTrueInlineView": "Pokud je tato možnost povolena a editor používá inline zobrazení, změny slov se vykreslují inline.",
|
|
140
141
|
"diffEditor.wordWrap2": "Řádky se budou obtékat podle nastavení `#editor.wordWrap#`.",
|
|
141
142
|
"dirtyEncoding": "Soubor je znečištěný. Než jej znovu otevřete v jiném kódování, nejprve jej uložte.",
|
|
142
|
-
"editor.accessibilitySupport0": "Použití rozhraní API platformy ke zjištění, zda je připojena čtečka obrazovky.",
|
|
143
|
-
"editor.accessibilitySupport1": "Optimalizace pro použití se čtečkou obrazovky",
|
|
144
|
-
"editor.accessibilitySupport2": "Předpokládejme, že není připojena čtečka obrazovky",
|
|
145
143
|
"editor.bracketPairColorization.enabled": "Ovládá, zda je obarvení dvojice závorek povoleno, nebo ne. Pro přepsání barev zvýraznění závorek použijte `#workbench.colorCustomizations#`.",
|
|
146
|
-
"editor.
|
|
144
|
+
"editor.codeActions.triggerOnFocusChange": "Povolení spouštění `#editor.codeActionsOnSave#`, když je `#files.autoSave#` nastaveno na `afterDelay`. Code Actions musí být nastaveno na `vždy`, aby se spouštěly při změně okna a fokusu.",
|
|
145
|
+
"editor.cursorStyle": "Ovládá styl kurzoru v režimu vkládání.",
|
|
146
|
+
"editor.defaultColorDecorators": "Řídí, zda se mají barevné dekorace na řádku zobrazovat pomocí výchozího zprostředkovatele barev dokumentu.",
|
|
147
|
+
"editor.defaultColorDecorators0": "Zobrazení výchozích dekorátorů barev pouze v případě, že žádné rozšíření neposkytuje dekorátory barev.",
|
|
148
|
+
"editor.defaultColorDecorators1": "Vždy zobrazit výchozí barevné dekorátory.",
|
|
149
|
+
"editor.defaultColorDecorators2": "Nikdy nezobrazovat výchozí barevné dekorátory.",
|
|
147
150
|
"editor.detectIndentation": "Řídí, zda se při otevření souboru automaticky zjistí `#editor.tabSize#` a `#editor.insertSpaces#` na základě obsahu souboru.",
|
|
148
|
-
"editor.
|
|
149
|
-
"editor.
|
|
151
|
+
"editor.experimental.preferTreeSitter": "Řídí, zda má být pro určité jazyky zapnuto rozebírání stromů. Pro zadané jazyky bude mít přednost před `editor.experimental.treeSitterTelemetry`.",
|
|
152
|
+
"editor.experimental.treeSitterTelemetry": "Řídí, zda má být zapnuto analyzování stromů a shromažďování telemetrie. Přednost má nastavení `editor.experimental.preferTreeSitter` pro konkrétní jazyky.",
|
|
153
|
+
"editor.experimentalEditContextEnabled": "Nastavuje, zda se má místo textové oblasti použít nový experimentální kontext úprav.",
|
|
154
|
+
"editor.find.history": "Řídí způsob ukládání historie widgetu find",
|
|
155
|
+
"editor.find.history0": "Neukládejte historii vyhledávání z widgetu hledání.",
|
|
156
|
+
"editor.find.history1": "Ukládání historie vyhledávání v aktivním pracovním prostoru",
|
|
150
157
|
"editor.inlayHints.enabled1": "Vložené nápovědy se zobrazují ve výchozím nastavení a skrývají se při podržení `Ctrl+Alt`",
|
|
151
158
|
"editor.inlayHints.enabled2": "Vložené nápovědy jsou ve výchozím nastavení skryté a zobrazí se při podržení `Ctrl+Alt`.",
|
|
152
159
|
"editor.inlayHints.fontFamily": "Řídí rodinu písma vložených nápověd v editoru. Je-li nastaveno na prázdnou hodnotu, použije se `#editor.fontFamily#`.",
|
|
153
160
|
"editor.inlayHints.fontSize": "Ovládá velikost písma vložených nápověd v editoru. Ve výchozím nastavení se použije `#editor.fontSize#`, pokud je nastavená hodnota menší než `5` nebo větší než velikost písma editoru.",
|
|
161
|
+
"editor.inlayHints.maximumLength": "Maximální celková délka vložených nápověd pro jeden řádek, než je editor zkrátí. Nastavte na `0`, aby se nikdy nezkracovaly",
|
|
162
|
+
"editor.inlineSuggest.edits.experimental.enabled": "Řídí, zda se mají povolit experimentální úpravy v návrzích inline.",
|
|
163
|
+
"editor.inlineSuggest.edits.experimental.onlyShowWhenCloseToCursor": "Řídí, zda se mají návrhy na řádku zobrazovat pouze tehdy, když se kurzor nachází v blízkosti návrhu.",
|
|
164
|
+
"editor.inlineSuggest.edits.experimental.useInterleavedLinesDiff": "Řídí, zda má být povoleno experimentální prokládání řádků diff v řádkových návrzích.",
|
|
165
|
+
"editor.inlineSuggest.edits.experimental.useMixedLinesDiff": "Řídí, zda se mají povolit experimentální úpravy v návrzích inline.",
|
|
166
|
+
"editor.inlineSuggest.syntaxHighlightingEnabled": "Řídí, zda se má v editoru zobrazit zvýraznění syntaxe pro návrhy na řádkování.",
|
|
154
167
|
"editor.insertSpaces": "Vkládání mezer při stisknutí `Tab`. Toto nastavení je přepsáno na základě obsahu souboru, pokud je zapnuta funkce `#editor.detectIndentation#`.",
|
|
155
|
-
"editor.
|
|
168
|
+
"editor.minimap.sectionHeaderLetterSpacing": "Řídí velikost mezery (v pixelech) mezi znaky záhlaví sekce. To pomáhá čitelnosti záhlaví při malých velikostech písma.",
|
|
169
|
+
"editor.occurrencesHighlightDelay": "Řídí prodlevu v milisekundách, po které jsou výskyty zvýrazněny.",
|
|
170
|
+
"editor.overtypeCursorStyle": "Ovládá styl kurzoru v režimu zadávání overtype.",
|
|
171
|
+
"editor.overtypeOnPaste": "Řídí, zda se má při vkládání přepisovat.",
|
|
156
172
|
"editor.quickSuggestions": "Ovládá, zda se mají při psaní automaticky zobrazovat návrhy. To lze ovládat při psaní komentářů, řetězců a dalšího kódu. Rychlé návrhy lze nakonfigurovat tak, aby se zobrazovaly jako text ducha nebo s widgetem návrhu. Mějte také na paměti nastavení '#editor.suggestOnTriggerCharacters#', které řídí, zda se návrhy spouštějí pomocí speciálních znaků.",
|
|
157
|
-
"editor.stickyScroll.scrollWithEditor": "Povolení posouvání widgetu sticky scroll pomocí horizontálního posuvníku editoru.",
|
|
158
173
|
"editor.suggestFontSize": "Velikost písma widgetu pro návrh. Je-li nastavena hodnota `0`, použije se hodnota `#editor.fontSize#`.",
|
|
159
174
|
"editor.suggestLineHeight": "Výška řádku pro widget návrhu. Je-li nastavena hodnota `0`, použije se hodnota `#editor.lineHeight#`. Minimální hodnota je 8.",
|
|
160
175
|
"editor.tabSize": "Počet mezer, kterým se rovná tabulátor. Toto nastavení je přepsáno na základě obsahu souboru, pokud je zapnuta funkce `#editor.detectIndentation#`.",
|
|
161
|
-
"editor.useTabStops": "Vkládání a odstraňování bílých znaků následuje po zarážkách tabulátoru.",
|
|
162
|
-
"editor.wordBasedSuggestions": "Řídí, zda se doplnění mají vypočítávat na základě slov v dokumentu.",
|
|
163
|
-
"editor.wordBasedSuggestionsMode": "Řídí, z jakých dokumentů se vypočítávají doplnění na základě slov.",
|
|
164
176
|
"formatOnSaveTimeout": "Časový limit v milisekundách, po jehož uplynutí se formátování spuštěné při ukládání souboru zruší.",
|
|
165
177
|
"persistClosedEditors": "Řídí, zda má historie zavřených editorů přetrvávat v pracovním prostoru i po opětovném načtení okna.",
|
|
166
178
|
"showAllEditors": "Zobrazit všechny otevřené editory",
|
package/i18n/nls.de.json
CHANGED
|
@@ -137,30 +137,42 @@
|
|
|
137
137
|
"toggleTracing": "Aktivieren/Deaktivieren der Verfolgung der Kommunikation mit Debug-Adaptern"
|
|
138
138
|
},
|
|
139
139
|
"editor": {
|
|
140
|
+
"diffEditor.experimental.useTrueInlineView": "Wenn diese Option aktiviert ist und der Editor die Inline-Ansicht verwendet, werden Wortänderungen inline gerendert.",
|
|
140
141
|
"diffEditor.wordWrap2": "Der Zeilenumbruch erfolgt entsprechend der Einstellung `#editor.wordWrap#`.",
|
|
141
142
|
"dirtyEncoding": "Die Datei ist verschmutzt. Bitte speichern Sie sie zuerst, bevor Sie sie mit einer anderen Kodierung erneut öffnen.",
|
|
142
|
-
"editor.accessibilitySupport0": "Plattform-APIs verwenden, um zu erkennen, ob ein Screen Reader angeschlossen ist",
|
|
143
|
-
"editor.accessibilitySupport1": "Optimieren für die Nutzung mit einem Screen Reader",
|
|
144
|
-
"editor.accessibilitySupport2": "Angenommen, ein Bildschirmlesegerät ist nicht angeschlossen",
|
|
145
143
|
"editor.bracketPairColorization.enabled": "Steuert, ob die Einfärbung von Klammerpaaren aktiviert ist oder nicht. Verwenden Sie `#workbench.colorCustomizations#`, um die Farben der Klammerhervorhebung zu überschreiben.",
|
|
146
|
-
"editor.
|
|
144
|
+
"editor.codeActions.triggerOnFocusChange": "Aktiviert das Auslösen von `#editor.codeActionsOnSave#`, wenn `#files.autoSave#` auf `afterDelay` gesetzt ist. Code Actions muss auf `always` gesetzt werden, um bei Fenster- und Fokuswechsel ausgelöst zu werden.",
|
|
145
|
+
"editor.cursorStyle": "Steuert den Stil des Cursors im Einfügemodus.",
|
|
146
|
+
"editor.defaultColorDecorators": "Steuert, ob Inline-Farbdekorationen unter Verwendung des Standardfarbanbieters des Dokuments angezeigt werden sollen.",
|
|
147
|
+
"editor.defaultColorDecorators0": "Standard-Farbdekoratoren nur anzeigen, wenn keine Erweiterung Farbdekoratoren bereitstellt.",
|
|
148
|
+
"editor.defaultColorDecorators1": "Standard-Farbdekoratoren immer anzeigen.",
|
|
149
|
+
"editor.defaultColorDecorators2": "Niemals Standard-Farbdekoratoren anzeigen.",
|
|
147
150
|
"editor.detectIndentation": "Steuert, ob `#editor.tabSize#` und `#editor.insertSpaces#` automatisch erkannt werden, wenn eine Datei geöffnet wird, basierend auf dem Inhalt der Datei.",
|
|
148
|
-
"editor.
|
|
149
|
-
"editor.
|
|
151
|
+
"editor.experimental.preferTreeSitter": "Steuert, ob das TreeSitter-Parsing für bestimmte Sprachen eingeschaltet werden soll. Dies hat Vorrang vor `editor.experimental.treeSitterTelemetry` für die angegebenen Sprachen.",
|
|
152
|
+
"editor.experimental.treeSitterTelemetry": "Steuert, ob TreeSitter-Parsing eingeschaltet und Telemetrie gesammelt werden soll. Die Einstellung `editor.experimental.preferTreeSitter` für bestimmte Sprachen hat Vorrang.",
|
|
153
|
+
"editor.experimentalEditContextEnabled": "Legt fest, ob der neue experimentelle Bearbeitungskontext anstelle des Textbereichs verwendet werden soll.",
|
|
154
|
+
"editor.find.history": "Steuert, wie der Verlauf des Such-Widgets gespeichert werden soll",
|
|
155
|
+
"editor.find.history0": "Speichern Sie den Suchverlauf des Such-Widgets nicht.",
|
|
156
|
+
"editor.find.history1": "Speichern des Suchverlaufs im aktiven Arbeitsbereich",
|
|
150
157
|
"editor.inlayHints.enabled1": "Inlay-Hinweise werden standardmäßig angezeigt und bei gedrückter Tastenkombination \"Strg+Alt\" ausgeblendet",
|
|
151
158
|
"editor.inlayHints.enabled2": "Inlay-Hinweise sind standardmäßig ausgeblendet und werden angezeigt, wenn die Tastenkombination \"Strg+Alt\" gedrückt wird.",
|
|
152
159
|
"editor.inlayHints.fontFamily": "Steuert die Schriftfamilie der Inlay-Hinweise im Editor. Wenn leer, wird die `#editor.fontFamily#` verwendet.",
|
|
153
160
|
"editor.inlayHints.fontSize": "Steuert die Schriftgröße der Inlay-Hinweise im Editor. Als Vorgabe wird die `#editor.fontSize#` verwendet, wenn der konfigurierte Wert kleiner als `5` oder größer als die Editor-Schriftgröße ist.",
|
|
161
|
+
"editor.inlayHints.maximumLength": "Maximale Gesamtlänge der Inlay-Hinweise für eine einzelne Zeile, bevor sie vom Editor abgeschnitten werden. Auf `0` gesetzt, um nie abzuschneiden",
|
|
162
|
+
"editor.inlineSuggest.edits.experimental.enabled": "Steuert, ob experimentelle Bearbeitungen in Inline-Vorschlägen aktiviert werden sollen.",
|
|
163
|
+
"editor.inlineSuggest.edits.experimental.onlyShowWhenCloseToCursor": "Legt fest, ob Inline-Vorschläge nur angezeigt werden sollen, wenn sich der Cursor in der Nähe des Vorschlags befindet.",
|
|
164
|
+
"editor.inlineSuggest.edits.experimental.useInterleavedLinesDiff": "Legt fest, ob experimentelle Zwischenzeilendiffs in Inline-Vorschlägen aktiviert werden sollen.",
|
|
165
|
+
"editor.inlineSuggest.edits.experimental.useMixedLinesDiff": "Steuert, ob experimentelle Bearbeitungen in Inline-Vorschlägen aktiviert werden sollen.",
|
|
166
|
+
"editor.inlineSuggest.syntaxHighlightingEnabled": "Steuert, ob die Syntaxhervorhebung für Inline-Vorschläge im Editor angezeigt werden soll.",
|
|
154
167
|
"editor.insertSpaces": "Leerzeichen einfügen, wenn `Tab` gedrückt wird. Diese Einstellung wird auf der Grundlage des Dateiinhalts außer Kraft gesetzt, wenn `#editor.detectIndentation#` eingeschaltet ist.",
|
|
155
|
-
"editor.
|
|
168
|
+
"editor.minimap.sectionHeaderLetterSpacing": "Steuert den Abstand (in Pixeln) zwischen den Zeichen der Abschnittsüberschrift. Dies verbessert die Lesbarkeit der Kopfzeile bei kleinen Schriftgrößen.",
|
|
169
|
+
"editor.occurrencesHighlightDelay": "Steuert die Verzögerung in Millisekunden, nach der Vorkommnisse hervorgehoben werden.",
|
|
170
|
+
"editor.overtypeCursorStyle": "Steuert den Stil des Cursors im Überschreibungs-Eingabemodus.",
|
|
171
|
+
"editor.overtypeOnPaste": "Steuert, ob beim Einfügen überschrieben werden soll.",
|
|
156
172
|
"editor.quickSuggestions": "Legt fest, ob während der Eingabe automatisch Vorschläge angezeigt werden sollen. Dies kann für die Eingabe von Kommentaren, Strings und anderem Code gesteuert werden. Schnellvorschläge können so konfiguriert werden, dass sie als Ghosttext oder mit dem Suggest-Widget angezeigt werden. Beachten Sie auch die '#editor.suggestOnTriggerCharacters#'-Einstellung, die steuert, ob Vorschläge durch Sonderzeichen ausgelöst werden.",
|
|
157
|
-
"editor.stickyScroll.scrollWithEditor": "Aktivieren Sie den Bildlauf des Sticky-Scroll-Widgets mit der horizontalen Bildlaufleiste des Editors.",
|
|
158
173
|
"editor.suggestFontSize": "Schriftgröße für das Vorschlags-Widget. Wenn auf `0` gesetzt, wird der Wert von `#editor.fontSize#` verwendet.",
|
|
159
174
|
"editor.suggestLineHeight": "Zeilenhöhe für das Vorschlags-Widget. Wenn auf `0` gesetzt, wird der Wert von `#editor.lineHeight#` verwendet. Der Mindestwert ist 8.",
|
|
160
175
|
"editor.tabSize": "Die Anzahl der Leerzeichen, die ein Tabulator ausmacht. Diese Einstellung wird basierend auf dem Inhalt der Datei überschrieben, wenn `#editor.detectIndentation#` eingeschaltet ist.",
|
|
161
|
-
"editor.useTabStops": "Das Einfügen und Löschen von Leerzeichen erfolgt nach Tabulatorstopps.",
|
|
162
|
-
"editor.wordBasedSuggestions": "Steuert, ob Vervollständigungen auf der Grundlage von Wörtern im Dokument berechnet werden sollen.",
|
|
163
|
-
"editor.wordBasedSuggestionsMode": "Steuert, aus welchen Dokumenten die wortbasierten Vervollständigungen berechnet werden.",
|
|
164
176
|
"formatOnSaveTimeout": "Zeitüberschreitung in Millisekunden, nach der die Formatierung, die beim Speichern der Datei ausgeführt wird, abgebrochen wird.",
|
|
165
177
|
"persistClosedEditors": "Legt fest, ob der Verlauf des geschlossenen Editors für den Arbeitsbereich beim Neuladen des Fensters erhalten bleiben soll.",
|
|
166
178
|
"showAllEditors": "Alle geöffneten Editoren anzeigen",
|
package/i18n/nls.es.json
CHANGED
|
@@ -137,30 +137,42 @@
|
|
|
137
137
|
"toggleTracing": "Activar/desactivar las comunicaciones de rastreo con los adaptadores de depuración"
|
|
138
138
|
},
|
|
139
139
|
"editor": {
|
|
140
|
+
"diffEditor.experimental.useTrueInlineView": "Si se activa y el editor utiliza la vista en línea, los cambios de palabra se muestran en línea.",
|
|
140
141
|
"diffEditor.wordWrap2": "Las líneas se ajustarán según la configuración de `#editor.wordWrap#`.",
|
|
141
142
|
"dirtyEncoding": "El archivo está sucio. Por favor, guárdelo primero antes de volver a abrirlo con otra codificación.",
|
|
142
|
-
"editor.accessibilitySupport0": "Utilizar las API de la plataforma para detectar si hay un lector de pantalla conectado.",
|
|
143
|
-
"editor.accessibilitySupport1": "Optimizar para el uso con un lector de pantalla",
|
|
144
|
-
"editor.accessibilitySupport2": "Supongamos que no hay un lector de pantalla conectado",
|
|
145
143
|
"editor.bracketPairColorization.enabled": "Controla si la coloración del par de corchetes está activada o no. Utilice `#workbench.colorCustomizations#` para anular los colores de resaltado de los corchetes.",
|
|
146
|
-
"editor.
|
|
144
|
+
"editor.codeActions.triggerOnFocusChange": "Habilitar la activación de `#editor.codeActionsOnSave#` cuando `#files.autoSave#` se establece en `afterDelay`. Las acciones de código deben tener el valor `always` para que se activen con los cambios de ventana y de foco.",
|
|
145
|
+
"editor.cursorStyle": "Controla el estilo del cursor en el modo de entrada de inserción.",
|
|
146
|
+
"editor.defaultColorDecorators": "Controla si las decoraciones de color en línea deben mostrarse utilizando el proveedor de color predeterminado del documento.",
|
|
147
|
+
"editor.defaultColorDecorators0": "Mostrar decoradores de color por defecto sólo cuando ninguna extensión proporciona decoradores de color.",
|
|
148
|
+
"editor.defaultColorDecorators1": "Mostrar siempre los decoradores de color por defecto.",
|
|
149
|
+
"editor.defaultColorDecorators2": "No mostrar nunca los decoradores de color por defecto.",
|
|
147
150
|
"editor.detectIndentation": "Controla si `#editor.tabSize#` y `#editor.insertSpaces#` se detectarán automáticamente al abrir un archivo en función de su contenido.",
|
|
148
|
-
"editor.
|
|
149
|
-
"editor.
|
|
151
|
+
"editor.experimental.preferTreeSitter": "Controla si se debe activar el análisis sintáctico del árbol para determinados idiomas. Tendrá prioridad sobre `editor.experimental.treeSitterTelemetry` para los idiomas especificados.",
|
|
152
|
+
"editor.experimental.treeSitterTelemetry": "Controla si se debe activar el análisis sintáctico y la telemetría. La configuración de `editor.experimental.preferTreeSitter` para idiomas específicos tendrá prioridad.",
|
|
153
|
+
"editor.experimentalEditContextEnabled": "Establece si se debe utilizar el nuevo contexto de edición experimental en lugar del área de texto.",
|
|
154
|
+
"editor.find.history": "Controla cómo debe almacenarse el historial del widget de búsqueda",
|
|
155
|
+
"editor.find.history0": "No almacenar el historial de búsqueda del widget de búsqueda.",
|
|
156
|
+
"editor.find.history1": "Almacenar el historial de búsqueda en todo el espacio de trabajo activo",
|
|
150
157
|
"editor.inlayHints.enabled1": "Los consejos de incrustación se muestran por defecto y se ocultan cuando se mantiene `Ctrl+Alt`.",
|
|
151
158
|
"editor.inlayHints.enabled2": "Los consejos de incrustación están ocultos por defecto y se muestran cuando se mantiene pulsado `Ctrl+Alt`.",
|
|
152
159
|
"editor.inlayHints.fontFamily": "Controla la familia de fuentes de las sugerencias de incrustación en el editor. Si está vacío, se utiliza `#editor.fontFamily#`.",
|
|
153
160
|
"editor.inlayHints.fontSize": "Controla el tamaño de la fuente de las sugerencias de incrustación en el editor. Por defecto se utiliza `#editor.fontSize#` cuando el valor configurado es menor que `5` o mayor que el tamaño de fuente del editor.",
|
|
161
|
+
"editor.inlayHints.maximumLength": "Longitud máxima total de las sugerencias de incrustación, para una sola línea, antes de que sean truncadas por el editor. Establezca `0` para no truncarlas nunca.",
|
|
162
|
+
"editor.inlineSuggest.edits.experimental.enabled": "Controla si se habilitan las ediciones experimentales en las sugerencias en línea.",
|
|
163
|
+
"editor.inlineSuggest.edits.experimental.onlyShowWhenCloseToCursor": "Controla si sólo se muestran sugerencias en línea cuando el cursor está cerca de la sugerencia.",
|
|
164
|
+
"editor.inlineSuggest.edits.experimental.useInterleavedLinesDiff": "Controla si se activa la difusión experimental de líneas intercaladas en las sugerencias en línea.",
|
|
165
|
+
"editor.inlineSuggest.edits.experimental.useMixedLinesDiff": "Controla si se habilitan las ediciones experimentales en las sugerencias en línea.",
|
|
166
|
+
"editor.inlineSuggest.syntaxHighlightingEnabled": "Controla si se muestra el resaltado de sintaxis para las sugerencias en línea en el editor.",
|
|
154
167
|
"editor.insertSpaces": "Insertar espacios al pulsar `Tab`. Este ajuste se anula en función del contenido del archivo cuando `#editor.detectIndentation#` está activado.",
|
|
155
|
-
"editor.
|
|
168
|
+
"editor.minimap.sectionHeaderLetterSpacing": "Controla la cantidad de espacio (en píxeles) entre caracteres del encabezado de sección. Esto ayuda a la legibilidad de la cabecera en tamaños de fuente pequeños.",
|
|
169
|
+
"editor.occurrencesHighlightDelay": "Controla el retardo en milisegundos tras el cual se resaltan las ocurrencias.",
|
|
170
|
+
"editor.overtypeCursorStyle": "Controla el estilo del cursor en el modo de entrada de sobretipos.",
|
|
171
|
+
"editor.overtypeOnPaste": "Controla si al pegar se debe sobreescribir.",
|
|
156
172
|
"editor.quickSuggestions": "Controla si las sugerencias deben aparecer automáticamente mientras se escribe. Esto puede controlarse para escribir comentarios, cadenas y otros códigos. La sugerencia rápida puede ser configurada para mostrarse como texto fantasma o con el widget de sugerencia. También hay que tener en cuenta la configuración '#editor.suggestOnTriggerCharacters#' que controla si las sugerencias son activadas por caracteres especiales.",
|
|
157
|
-
"editor.stickyScroll.scrollWithEditor": "Habilitar el desplazamiento del widget de desplazamiento pegajoso con la barra de desplazamiento horizontal del editor.",
|
|
158
173
|
"editor.suggestFontSize": "Tamaño de fuente para el widget de sugerencia. Cuando se establece en `0`, se utiliza el valor de `#editor.fontSize#`.",
|
|
159
174
|
"editor.suggestLineHeight": "Altura de línea para el widget de sugerencia. Cuando se establece en `0`, se utiliza el valor de `#editor.lineHeight#`. El valor mínimo es 8.",
|
|
160
175
|
"editor.tabSize": "El número de espacios a los que equivale un tabulador. Este ajuste se anula en función del contenido del archivo cuando `#editor.detectIndentation#` está activado.",
|
|
161
|
-
"editor.useTabStops": "Inserción y supresión de espacios en blanco después de los tabuladores.",
|
|
162
|
-
"editor.wordBasedSuggestions": "Controla si las terminaciones deben calcularse en función de las palabras del documento.",
|
|
163
|
-
"editor.wordBasedSuggestionsMode": "Controla a partir de qué documentos se calculan las terminaciones basadas en palabras.",
|
|
164
176
|
"formatOnSaveTimeout": "Tiempo de espera en milisegundos tras el cual se cancela el formato que se ejecuta al guardar el archivo.",
|
|
165
177
|
"persistClosedEditors": "Controla si se mantiene el historial del editor cerrado para el espacio de trabajo a través de las recargas de la ventana.",
|
|
166
178
|
"showAllEditors": "Mostrar todos los editores abiertos",
|
package/i18n/nls.fr.json
CHANGED
|
@@ -137,30 +137,42 @@
|
|
|
137
137
|
"toggleTracing": "Activer/désactiver le traçage des communications avec les adaptateurs de débogage"
|
|
138
138
|
},
|
|
139
139
|
"editor": {
|
|
140
|
+
"diffEditor.experimental.useTrueInlineView": "Si cette option est activée et que l'éditeur utilise l'affichage en ligne, les changements de mots sont affichés en ligne.",
|
|
140
141
|
"diffEditor.wordWrap2": "Les lignes s'enrouleront en fonction du paramètre `#editor.wordWrap#`.",
|
|
141
142
|
"dirtyEncoding": "Le fichier est sale. Veuillez le sauvegarder avant de le rouvrir avec un autre encodage.",
|
|
142
|
-
"editor.accessibilitySupport0": "Utiliser les API de la plate-forme pour détecter la présence d'un lecteur d'écran.",
|
|
143
|
-
"editor.accessibilitySupport1": "Optimiser pour l'utilisation avec un lecteur d'écran",
|
|
144
|
-
"editor.accessibilitySupport2": "Supposons qu'il n'y ait pas de lecteur d'écran",
|
|
145
143
|
"editor.bracketPairColorization.enabled": "Contrôle si la colorisation des paires de crochets est activée ou non. Utilisez `#workbench.colorCustomizations#` pour surcharger les couleurs de mise en évidence des crochets.",
|
|
146
|
-
"editor.
|
|
144
|
+
"editor.codeActions.triggerOnFocusChange": "Permet de déclencher `#editor.codeActionsOnSave#` lorsque `#files.autoSave#` est réglé sur `afterDelay`. Les actions de code doivent être réglées sur `toujours` pour être déclenchées lors des changements de fenêtre et de focus.",
|
|
145
|
+
"editor.cursorStyle": "Contrôle le style du curseur en mode d'insertion.",
|
|
146
|
+
"editor.defaultColorDecorators": "Contrôle si les décorations colorées en ligne doivent être affichées en utilisant le fournisseur de couleurs par défaut du document.",
|
|
147
|
+
"editor.defaultColorDecorators0": "Afficher les décorateurs de couleurs par défaut uniquement si aucune extension ne fournit de décorateurs de couleurs.",
|
|
148
|
+
"editor.defaultColorDecorators1": "Toujours afficher les décorateurs de couleur par défaut.",
|
|
149
|
+
"editor.defaultColorDecorators2": "Ne jamais afficher les décorateurs de couleur par défaut.",
|
|
147
150
|
"editor.detectIndentation": "Contrôle si `#editor.tabSize#` et `#editor.insertSpaces#` seront automatiquement détectés lors de l'ouverture d'un fichier en fonction de son contenu.",
|
|
148
|
-
"editor.
|
|
149
|
-
"editor.
|
|
151
|
+
"editor.experimental.preferTreeSitter": "Contrôle si l'analyse du tree sitter doit être activée pour des langues spécifiques. Ceci aura la priorité sur `editor.experimental.treeSitterTelemetry` pour les langues spécifiées.",
|
|
152
|
+
"editor.experimental.treeSitterTelemetry": "Contrôle si l'analyse de l'arbre doit être activée et si la télémétrie doit être collectée. Le réglage de `editor.experimental.preferTreeSitter` pour des langues spécifiques aura la priorité.",
|
|
153
|
+
"editor.experimentalEditContextEnabled": "Indique si le nouveau contexte d'édition expérimental doit être utilisé à la place de la zone de texte.",
|
|
154
|
+
"editor.find.history": "Contrôle la manière dont l'historique du widget de recherche doit être stocké",
|
|
155
|
+
"editor.find.history0": "Ne pas stocker l'historique des recherches à partir du widget de recherche.",
|
|
156
|
+
"editor.find.history1": "Conserver l'historique des recherches dans l'espace de travail actif",
|
|
150
157
|
"editor.inlayHints.enabled1": "Les conseils d'incrustation sont affichés par défaut et sont masqués lorsque vous maintenez les touches `Ctrl+Alt`.",
|
|
151
158
|
"editor.inlayHints.enabled2": "Les indices d'incrustation sont cachés par défaut et s'affichent en maintenant les touches `Ctrl+Alt`.",
|
|
152
159
|
"editor.inlayHints.fontFamily": "Contrôle la famille de police des indices d'incrustation dans l'éditeur. Si la valeur est vide, c'est la police `#editor.fontFamily#` qui est utilisée.",
|
|
153
160
|
"editor.inlayHints.fontSize": "Contrôle la taille de la police des indices d'incrustation dans l'éditeur. Par défaut, `#editor.fontSize#` est utilisé lorsque la valeur configurée est inférieure à `5` ou supérieure à la taille de la police de l'éditeur.",
|
|
161
|
+
"editor.inlayHints.maximumLength": "Longueur maximale des indices d'incrustation, pour une seule ligne, avant qu'ils ne soient tronqués par l'éditeur. Mettez `0` pour ne jamais les tronquer.",
|
|
162
|
+
"editor.inlineSuggest.edits.experimental.enabled": "Permet d'activer ou non les éditions expérimentales dans les suggestions en ligne.",
|
|
163
|
+
"editor.inlineSuggest.edits.experimental.onlyShowWhenCloseToCursor": "Contrôle l'affichage des suggestions en ligne uniquement lorsque le curseur est proche de la suggestion.",
|
|
164
|
+
"editor.inlineSuggest.edits.experimental.useInterleavedLinesDiff": "Permet d'activer ou non les lignes entrelacées expérimentales dans les suggestions en ligne.",
|
|
165
|
+
"editor.inlineSuggest.edits.experimental.useMixedLinesDiff": "Permet d'activer ou non les éditions expérimentales dans les suggestions en ligne.",
|
|
166
|
+
"editor.inlineSuggest.syntaxHighlightingEnabled": "Contrôle l'affichage de la coloration syntaxique pour les suggestions en ligne dans l'éditeur.",
|
|
154
167
|
"editor.insertSpaces": "Insérer des espaces lorsque l'on appuie sur `Tab`. Ce paramètre est modifié en fonction du contenu du fichier lorsque `#editor.detectIndentation#` est activé.",
|
|
155
|
-
"editor.
|
|
168
|
+
"editor.minimap.sectionHeaderLetterSpacing": "Contrôle l'espace (en pixels) entre les caractères de l'en-tête de la section. Cela permet d'améliorer la lisibilité de l'en-tête dans des polices de petite taille.",
|
|
169
|
+
"editor.occurrencesHighlightDelay": "Contrôle le délai en millisecondes après lequel les occurrences sont mises en évidence.",
|
|
170
|
+
"editor.overtypeCursorStyle": "Contrôle le style du curseur en mode de saisie de surtypes.",
|
|
171
|
+
"editor.overtypeOnPaste": "Contrôle si le collage doit être surchargé.",
|
|
156
172
|
"editor.quickSuggestions": "Contrôle si les suggestions doivent s'afficher automatiquement pendant la saisie. Cela peut être contrôlé pour la saisie de commentaires, de chaînes de caractères et d'autres codes. La suggestion rapide peut être configurée pour s'afficher sous forme de texte fantôme ou avec le widget de suggestion. Tenez également compte du paramètre '#editor.suggestOnTriggerCharacters#' qui contrôle si les suggestions sont déclenchées par des caractères spéciaux.",
|
|
157
|
-
"editor.stickyScroll.scrollWithEditor": "Active le défilement du widget de défilement collant avec la barre de défilement horizontale de l'éditeur.",
|
|
158
173
|
"editor.suggestFontSize": "Taille de la police pour le widget de suggestion. Si elle vaut `0`, la valeur de `#editor.fontSize#` est utilisée.",
|
|
159
174
|
"editor.suggestLineHeight": "Hauteur de ligne pour le widget de suggestion. Lorsqu'il vaut `0`, la valeur de `#editor.lineHeight#` est utilisée. La valeur minimale est de 8.",
|
|
160
175
|
"editor.tabSize": "Le nombre d'espaces que représente une tabulation. Ce paramètre est modifié en fonction du contenu du fichier lorsque `#editor.detectIndentation#` est activé.",
|
|
161
|
-
"editor.useTabStops": "L'insertion et la suppression d'espaces blancs suivent les taquets de tabulation.",
|
|
162
|
-
"editor.wordBasedSuggestions": "Contrôle si les compléments doivent être calculés sur la base des mots du document.",
|
|
163
|
-
"editor.wordBasedSuggestionsMode": "Contrôle les documents à partir desquels les complétions basées sur les mots sont calculées.",
|
|
164
176
|
"formatOnSaveTimeout": "Délai en millisecondes après lequel le formatage qui est exécuté lors de l'enregistrement du fichier est annulé.",
|
|
165
177
|
"persistClosedEditors": "Contrôle la persistance ou non de l'historique de l'éditeur fermé pour l'espace de travail lors des rechargements de la fenêtre.",
|
|
166
178
|
"showAllEditors": "Afficher tous les éditeurs ouverts",
|
package/i18n/nls.hu.json
CHANGED
|
@@ -137,30 +137,42 @@
|
|
|
137
137
|
"toggleTracing": "A hibakeresési adapterekkel folytatott kommunikáció nyomon követésének engedélyezése/letiltása"
|
|
138
138
|
},
|
|
139
139
|
"editor": {
|
|
140
|
+
"diffEditor.experimental.useTrueInlineView": "Ha engedélyezve van, és a szerkesztő az inline nézetet használja, akkor a szóváltozások inline megjelenítésre kerülnek.",
|
|
140
141
|
"diffEditor.wordWrap2": "A sorok a `#editor.wordWrap#` beállításnak megfelelően kerülnek a sorok közé.",
|
|
141
142
|
"dirtyEncoding": "A fájl piszkos. Kérjük, először mentse el, mielőtt más kódolással újra megnyitná.",
|
|
142
|
-
"editor.accessibilitySupport0": "Platform API-k használata a képernyőolvasó csatlakoztatásának észlelésére",
|
|
143
|
-
"editor.accessibilitySupport1": "Optimalizálja a képernyőolvasóval való használatra",
|
|
144
|
-
"editor.accessibilitySupport2": "Feltételezzük, hogy a képernyőolvasó nincs csatlakoztatva",
|
|
145
143
|
"editor.bracketPairColorization.enabled": "Szabályozza, hogy a zárójelpár színezése engedélyezve legyen-e vagy sem. Használja a `#workbench.colorCustomizations#` parancsot a zárójelek kiemelési színeinek felülbírálásához.",
|
|
146
|
-
"editor.
|
|
144
|
+
"editor.codeActions.triggerOnFocusChange": "A `#editor.codeActionsOnSave#` kiváltásának engedélyezése, ha a `#files.autoSave#` értéke `afterDelay`. A kódműveleteknek `always`-re kell állítaniuk, hogy az ablak- és fókuszváltások esetén is aktiválódjanak.",
|
|
145
|
+
"editor.cursorStyle": "A kurzor stílusát vezérli a beillesztési beviteli módban.",
|
|
146
|
+
"editor.defaultColorDecorators": "Szabályozza, hogy a soron belüli színdekorációk az alapértelmezett dokumentumszínszolgáltató használatával jelenjenek-e meg.",
|
|
147
|
+
"editor.defaultColorDecorators0": "Az alapértelmezett színdekorátorok megjelenítése csak akkor, ha a kiterjesztés nem biztosít színdekorátorokat.",
|
|
148
|
+
"editor.defaultColorDecorators1": "Mindig az alapértelmezett színdekorátorok megjelenítése.",
|
|
149
|
+
"editor.defaultColorDecorators2": "Soha ne jelenítsen meg alapértelmezett színdekorátorokat.",
|
|
147
150
|
"editor.detectIndentation": "Szabályozza, hogy a `#editor.tabSize#` és a `#editor.insertSpaces#` automatikusan felismerésre kerüljön-e egy fájl megnyitásakor a fájl tartalma alapján.",
|
|
148
|
-
"editor.
|
|
149
|
-
"editor.
|
|
151
|
+
"editor.experimental.preferTreeSitter": "Szabályozza, hogy a tree sitter elemzése be legyen-e kapcsolva bizonyos nyelvek esetében. Ez elsőbbséget élvez a `editor.experimental.treeSitterTelemetry` beállítással szemben a megadott nyelvek esetében.",
|
|
152
|
+
"editor.experimental.treeSitterTelemetry": "Szabályozza, hogy a tree sitter elemzése be legyen-e kapcsolva, és a telemetria összegyűjtésre kerüljön-e. Az `editor.experimental.preferTreeSitter` beállítása az adott nyelvek esetében elsőbbséget élvez.",
|
|
153
|
+
"editor.experimentalEditContextEnabled": "Beállítja, hogy az új kísérleti szerkesztési környezetet kell-e használni a szövegterület helyett.",
|
|
154
|
+
"editor.find.history": "Szabályozza, hogy a keresési widget előzményei hogyan legyenek tárolva",
|
|
155
|
+
"editor.find.history0": "Ne tárolja a keresési előzményeket a keresési widgetből.",
|
|
156
|
+
"editor.find.history1": "Keresési előzmények tárolása az aktív munkaterületen",
|
|
150
157
|
"editor.inlayHints.enabled1": "Az inlay tippek alapértelmezés szerint megjelennek, és elrejtődnek, ha a \"Ctrl+Alt\" billentyűkombinációt nyomva tartjuk.",
|
|
151
158
|
"editor.inlayHints.enabled2": "Az inlay tippek alapértelmezés szerint el vannak rejtve, és a \"Ctrl+Alt\" billentyűkombináció lenyomásakor jelennek meg.",
|
|
152
159
|
"editor.inlayHints.fontFamily": "A betűcsaládot vezérli a betétfájlok betűtípusát a szerkesztőben. Ha üres, akkor a `#editor.fontFamily#`-t használja.",
|
|
153
160
|
"editor.inlayHints.fontSize": "A betűméretet szabályozza a szerkesztőben megjelenő betűjelzések betűméretét. Alapértelmezés szerint az `#editor.fontSize#` értéket használja, ha a beállított érték kisebb, mint `5` vagy nagyobb, mint a szerkesztő betűmérete.",
|
|
161
|
+
"editor.inlayHints.maximumLength": "A beágyazási tippek maximális teljes hossza egy sorban, mielőtt a szerkesztő lecsonkítja őket. A \"0\"-ra állítva soha nem csonkolódik le.",
|
|
162
|
+
"editor.inlineSuggest.edits.experimental.enabled": "Szabályozza, hogy engedélyezzék-e a kísérleti szerkesztéseket a soron belüli javaslatokban.",
|
|
163
|
+
"editor.inlineSuggest.edits.experimental.onlyShowWhenCloseToCursor": "Azt szabályozza, hogy csak akkor jelenjenek meg a soron belüli javaslatok, ha a kurzor a javaslat közelében van.",
|
|
164
|
+
"editor.inlineSuggest.edits.experimental.useInterleavedLinesDiff": "Szabályozza, hogy engedélyezi-e a kísérleti sorok közötti különbségeket a soron belüli javaslatokban.",
|
|
165
|
+
"editor.inlineSuggest.edits.experimental.useMixedLinesDiff": "Szabályozza, hogy engedélyezzék-e a kísérleti szerkesztéseket a soron belüli javaslatokban.",
|
|
166
|
+
"editor.inlineSuggest.syntaxHighlightingEnabled": "Szabályozza, hogy a szerkesztőben megjelenjen-e a soron belüli javaslatok szintaxis-kiemelése.",
|
|
154
167
|
"editor.insertSpaces": "Szóközök beillesztése a \"Tab\" billentyű lenyomásakor. Ez a beállítás a fájl tartalma alapján felülíródik, ha a `#editor.detectIndentation#` be van kapcsolva.",
|
|
155
|
-
"editor.
|
|
168
|
+
"editor.minimap.sectionHeaderLetterSpacing": "A szakaszfejléc karakterei közötti távolságot (pixelben) szabályozza. Ez segíti a fejléc olvashatóságát kis betűméretekben.",
|
|
169
|
+
"editor.occurrencesHighlightDelay": "Ezredmásodpercben határozza meg azt a késleltetést, amely után az előfordulások kiemelésre kerülnek.",
|
|
170
|
+
"editor.overtypeCursorStyle": "A kurzor stílusát szabályozza az overtype beviteli módban.",
|
|
171
|
+
"editor.overtypeOnPaste": "Szabályozza, hogy a beillesztés felülírja-e a betűtípust.",
|
|
156
172
|
"editor.quickSuggestions": "Szabályozza, hogy a javaslatok automatikusan megjelenjenek-e gépelés közben. Ezt a megjegyzések, karakterláncok és más kódok beírása esetén lehet szabályozni. A gyors javaslatok beállíthatók úgy, hogy szellemszövegként vagy a javaslat widget segítségével jelenjenek meg. Figyeljen a '#editor.suggestOnTriggerCharacters#'-beállításra is, amely azt szabályozza, hogy a javaslatok speciális karakterek hatására aktiválódjanak-e.",
|
|
157
|
-
"editor.stickyScroll.scrollWithEditor": "A ragadós görgető widget görgetésének engedélyezése a szerkesztő vízszintes görgetősávjával.",
|
|
158
173
|
"editor.suggestFontSize": "A javaslat widget betűmérete. Ha `0`-ra van állítva, akkor a `#editor.fontSize#` értékét használja.",
|
|
159
174
|
"editor.suggestLineHeight": "A javaslat widget vonalmagassága. Ha `0`-ra van állítva, akkor a `#editor.lineHeight#` értékét használja. A minimális érték 8.",
|
|
160
175
|
"editor.tabSize": "A tabulátor szóközök száma. Ez a beállítás a fájl tartalma alapján felülíródik, ha a `#editor.detectIndentation#` be van kapcsolva.",
|
|
161
|
-
"editor.useTabStops": "A szóközök beillesztése és törlése a tabulátormegállókat követi.",
|
|
162
|
-
"editor.wordBasedSuggestions": "Szabályozza, hogy a kiegészítések a dokumentumban található szavak alapján kerüljenek-e kiszámításra.",
|
|
163
|
-
"editor.wordBasedSuggestionsMode": "Azt vezérli, hogy mely dokumentumokból számolja ki a szóalapú kiegészítéseket.",
|
|
164
176
|
"formatOnSaveTimeout": "A milliszekundumban megadott időkorlát, amely után a fájl mentésekor lefutó formázás törlődik.",
|
|
165
177
|
"persistClosedEditors": "Azt szabályozza, hogy a munkaterület lezárt szerkesztési előzményei az ablak újratöltése során megmaradjanak-e.",
|
|
166
178
|
"showAllEditors": "Minden megnyitott szerkesztő megjelenítése",
|
package/i18n/nls.it.json
CHANGED
|
@@ -137,30 +137,42 @@
|
|
|
137
137
|
"toggleTracing": "Abilita/disabilita il tracciamento delle comunicazioni con gli adattatori di debug"
|
|
138
138
|
},
|
|
139
139
|
"editor": {
|
|
140
|
+
"diffEditor.experimental.useTrueInlineView": "Se è abilitato e l'editor utilizza la vista in linea, le modifiche alle parole vengono rese in linea.",
|
|
140
141
|
"diffEditor.wordWrap2": "Le righe andranno a capo secondo l'impostazione `#editor.wordWrap#`.",
|
|
141
142
|
"dirtyEncoding": "Il file è sporco. Salvarlo prima di riaprirlo con un'altra codifica.",
|
|
142
|
-
"editor.accessibilitySupport0": "Utilizzare le API della piattaforma per rilevare la presenza di uno Screen Reader.",
|
|
143
|
-
"editor.accessibilitySupport1": "Ottimizzazione per l'utilizzo con uno screen reader",
|
|
144
|
-
"editor.accessibilitySupport2": "Supponiamo che un lettore di schermo non sia collegato",
|
|
145
143
|
"editor.bracketPairColorization.enabled": "Controlla se la colorazione delle coppie di parentesi è abilitata o meno. Usare `#workbench.colorCustomizations#` per sovrascrivere i colori di evidenziazione delle parentesi.",
|
|
146
|
-
"editor.
|
|
144
|
+
"editor.codeActions.triggerOnFocusChange": "Abilita l'attivazione di `#editor.codeActionsOnSave#` quando `#files.autoSave#` è impostato su `afterDelay`. Le azioni del codice devono essere impostate su `sempre` per essere attivate al cambio di finestra e di focus.",
|
|
145
|
+
"editor.cursorStyle": "Controlla lo stile del cursore in modalità di inserimento.",
|
|
146
|
+
"editor.defaultColorDecorators": "Controlla se le decorazioni a colori in linea devono essere mostrate usando il fornitore di colori predefinito del documento.",
|
|
147
|
+
"editor.defaultColorDecorators0": "Mostra i decoratori di colore predefiniti solo quando nessuna estensione fornisce decoratori di colore.",
|
|
148
|
+
"editor.defaultColorDecorators1": "Mostra sempre i decoratori di colore predefiniti.",
|
|
149
|
+
"editor.defaultColorDecorators2": "Non mostrare mai i decoratori di colore predefiniti.",
|
|
147
150
|
"editor.detectIndentation": "Controlla se `#editor.tabSize#` e `#editor.insertSpaces#` saranno rilevati automaticamente all'apertura di un file, in base al suo contenuto.",
|
|
148
|
-
"editor.
|
|
149
|
-
"editor.
|
|
151
|
+
"editor.experimental.preferTreeSitter": "Controlla se il parsing dei tree sitter deve essere attivato per lingue specifiche. Avrà la precedenza su `editor.experimental.treeSitterTelemetry` per le lingue specificate.",
|
|
152
|
+
"editor.experimental.treeSitterTelemetry": "Controlla se il parsing del tree sitter deve essere attivato e la telemetria raccolta. L'impostazione di `editor.experimental.preferTreeSitter` per lingue specifiche avrà la precedenza.",
|
|
153
|
+
"editor.experimentalEditContextEnabled": "Imposta se il nuovo contesto di modifica sperimentale deve essere usato al posto dell'area di testo.",
|
|
154
|
+
"editor.find.history": "Controlla il modo in cui la cronologia dei widget di ricerca deve essere memorizzata.",
|
|
155
|
+
"editor.find.history0": "Non memorizzare la cronologia delle ricerche dal widget Trova.",
|
|
156
|
+
"editor.find.history1": "Memorizzare la cronologia delle ricerche nell'area di lavoro attiva",
|
|
150
157
|
"editor.inlayHints.enabled1": "I suggerimenti per l'intarsio sono visualizzati per impostazione predefinita e si nascondono quando si tiene premuto `Ctrl+Alt`.",
|
|
151
158
|
"editor.inlayHints.enabled2": "I suggerimenti per l'intarsio sono nascosti per impostazione predefinita e vengono visualizzati quando si tiene premuto `Ctrl+Alt`.",
|
|
152
159
|
"editor.inlayHints.fontFamily": "Controlla la famiglia di caratteri dei suggerimenti di inlay nell'editor. Se impostato a vuoto, viene utilizzata la `#editor.fontFamily#`.",
|
|
153
160
|
"editor.inlayHints.fontSize": "Controlla la dimensione dei caratteri dei suggerimenti inlay nell'editor. Come impostazione predefinita, viene utilizzato `#editor.fontSize#` quando il valore configurato è inferiore a `5` o superiore alla dimensione dei caratteri dell'editor.",
|
|
161
|
+
"editor.inlayHints.maximumLength": "Lunghezza massima complessiva dei suggerimenti di intarsio, per una singola riga, prima che vengano troncati dall'editor. Impostare a `0` per non troncare mai",
|
|
162
|
+
"editor.inlineSuggest.edits.experimental.enabled": "Controlla se abilitare le modifiche sperimentali nei suggerimenti in linea.",
|
|
163
|
+
"editor.inlineSuggest.edits.experimental.onlyShowWhenCloseToCursor": "Controlla se mostrare i suggerimenti in linea solo quando il cursore è vicino al suggerimento.",
|
|
164
|
+
"editor.inlineSuggest.edits.experimental.useInterleavedLinesDiff": "Controlla se abilitare la diffusione sperimentale delle righe interlacciate nei suggerimenti in linea.",
|
|
165
|
+
"editor.inlineSuggest.edits.experimental.useMixedLinesDiff": "Controlla se abilitare le modifiche sperimentali nei suggerimenti in linea.",
|
|
166
|
+
"editor.inlineSuggest.syntaxHighlightingEnabled": "Controlla se mostrare l'evidenziazione della sintassi per i suggerimenti in linea nell'editor.",
|
|
154
167
|
"editor.insertSpaces": "Inserisce spazi quando si preme `Tab`. Questa impostazione viene sovrascritta in base al contenuto del file quando `#editor.detectIndentation#` è attivo.",
|
|
155
|
-
"editor.
|
|
168
|
+
"editor.minimap.sectionHeaderLetterSpacing": "Controlla la quantità di spazio (in pixel) tra i caratteri dell'intestazione di sezione. Questo aiuta la leggibilità dell'intestazione con caratteri di piccole dimensioni.",
|
|
169
|
+
"editor.occurrencesHighlightDelay": "Controlla il ritardo in millisecondi dopo il quale le occorrenze vengono evidenziate.",
|
|
170
|
+
"editor.overtypeCursorStyle": "Controlla lo stile del cursore in modalità di inserimento di sovrascrittura.",
|
|
171
|
+
"editor.overtypeOnPaste": "Controlla se l'incollaggio deve essere sovrascritto.",
|
|
156
172
|
"editor.quickSuggestions": "Controlla se i suggerimenti devono essere visualizzati automaticamente durante la digitazione. Questo può essere controllato per la digitazione di commenti, stringhe e altro codice. Il suggerimento rapido può essere configurato per essere visualizzato come testo fantasma o con il widget Suggerimento. Si tenga presente anche l'impostazione '#editor.suggestOnTriggerCharacters#', che controlla se i suggerimenti vengono attivati da caratteri speciali.",
|
|
157
|
-
"editor.stickyScroll.scrollWithEditor": "Abilita lo scorrimento del widget di scorrimento appiccicoso con la barra di scorrimento orizzontale dell'editor.",
|
|
158
173
|
"editor.suggestFontSize": "Dimensione del carattere per il widget Suggerimento. Se impostato a `0`, viene utilizzato il valore di `#editor.fontSize#`.",
|
|
159
174
|
"editor.suggestLineHeight": "Altezza della riga per il widget di suggerimento. Se impostato a `0`, viene utilizzato il valore di `#editor.lineHeight#`. Il valore minimo è 8.",
|
|
160
175
|
"editor.tabSize": "Il numero di spazi a cui corrisponde una tabulazione. Questa impostazione viene sovrascritta in base al contenuto del file quando `#editor.detectIndentation#` è attivo.",
|
|
161
|
-
"editor.useTabStops": "L'inserimento e l'eliminazione di spazi bianchi segue gli stop di tabulazione.",
|
|
162
|
-
"editor.wordBasedSuggestions": "Controlla se i completamenti devono essere calcolati in base alle parole del documento.",
|
|
163
|
-
"editor.wordBasedSuggestionsMode": "Controlla da quali documenti vengono calcolati i completamenti basati sulle parole.",
|
|
164
176
|
"formatOnSaveTimeout": "Timeout in millisecondi dopo il quale la formattazione che viene eseguita al salvataggio del file viene annullata.",
|
|
165
177
|
"persistClosedEditors": "Controlla se persistere la cronologia dell'editor chiuso per l'area di lavoro attraverso i ricarichi della finestra.",
|
|
166
178
|
"showAllEditors": "Mostra tutti gli editor aperti",
|
package/i18n/nls.ja.json
CHANGED
|
@@ -137,30 +137,42 @@
|
|
|
137
137
|
"toggleTracing": "デバッグアダプタとの通信のトレースの有効化/無効化"
|
|
138
138
|
},
|
|
139
139
|
"editor": {
|
|
140
|
+
"diffEditor.experimental.useTrueInlineView": "有効でエディターがインラインビューを使用している場合、単語の変更はインラインでレンダリングされます。",
|
|
140
141
|
"diffEditor.wordWrap2": "行は `#editor.wordWrap#` の設定に従って折り返されます。",
|
|
141
142
|
"dirtyEncoding": "ファイルが汚れています。別のエンコーディングで開き直す前に、まず保存してください。",
|
|
142
|
-
"editor.accessibilitySupport0": "プラットフォームAPIを使用して、スクリーンリーダーが接続されていることを検出する。",
|
|
143
|
-
"editor.accessibilitySupport1": "スクリーンリーダーでの使用に最適化する",
|
|
144
|
-
"editor.accessibilitySupport2": "スクリーンリーダーが添付されていないと仮定する",
|
|
145
143
|
"editor.bracketPairColorization.enabled": "ブラケットペアのカラー化を有効にするかどうかを制御する。ブラケットのハイライト色を上書きするには `#workbench.colorCustomizations#` を使用してください。",
|
|
146
|
-
"editor.
|
|
144
|
+
"editor.codeActions.triggerOnFocusChange": "files.autoSave#`が`afterDelay`に設定されているときに、`#editor.codeActionsOnSave#`をトリガーできるようにした。ウィンドウやフォーカスが変わったときにコードアクションがトリガーされるようにするには、`always`に設定する必要があります。",
|
|
145
|
+
"editor.cursorStyle": "挿入入力モードでのカーソルスタイルを制御する。",
|
|
146
|
+
"editor.defaultColorDecorators": "インライン色装飾をデフォルトのドキュメント色プロバイダを使って表示するかどうかを制御します。",
|
|
147
|
+
"editor.defaultColorDecorators0": "拡張モジュールが色デコレータを提供していない場合にのみ、 デフォルトの色デコレータを表示する。",
|
|
148
|
+
"editor.defaultColorDecorators1": "常にデフォルトの色デコレータを表示する。",
|
|
149
|
+
"editor.defaultColorDecorators2": "デフォルトの色デコレータを表示しない。",
|
|
147
150
|
"editor.detectIndentation": "ファイルを開いたときに、ファイルの内容に基づいて `#editor.tabSize#` と `#editor.insertSpaces#` を自動的に検出するかどうかを制御する。",
|
|
148
|
-
"editor.
|
|
149
|
-
"editor.
|
|
151
|
+
"editor.experimental.preferTreeSitter": "特定の言語に対してツリーシッターの解析をオンにするかどうかを制御します。指定した言語では `editor.experimental.treeSitterTelemetry` よりも優先されます。",
|
|
152
|
+
"editor.experimental.treeSitterTelemetry": "ツリーシッターの解析をオンにしてテレメトリを収集するかどうかを制御する。特定の言語では、`editor.experimental.preferTreeSitter`の設定が優先されます。",
|
|
153
|
+
"editor.experimentalEditContextEnabled": "テキストエリアの代わりに新しい実験的編集コンテキストを使用するかどうかを設定します。",
|
|
154
|
+
"editor.find.history": "検索ウィジェットの履歴の保存方法を制御します。",
|
|
155
|
+
"editor.find.history0": "検索ウィジェットからの検索履歴を保存しません。",
|
|
156
|
+
"editor.find.history1": "アクティブなワークスペース全体の検索履歴を保存",
|
|
150
157
|
"editor.inlayHints.enabled1": "インレイのヒントはデフォルトで表示され、`Ctrl+Alt`を押すと隠れます。",
|
|
151
158
|
"editor.inlayHints.enabled2": "インレイのヒントはデフォルトでは非表示で、`Ctrl+Alt`を押したときに表示されます。",
|
|
152
159
|
"editor.inlayHints.fontFamily": "エディタのインレイヒントのフォントファミリーを制御する。空に設定すると、`#editor.fontFamily#`が使用されます。",
|
|
153
160
|
"editor.inlayHints.fontSize": "エディタのインレイヒントのフォントサイズを制御する。デフォルトでは`#editor.fontSize#`が使用され、設定値が`5`未満またはエディタのフォントサイズより大きい場合に使用されます。",
|
|
161
|
+
"editor.inlayHints.maximumLength": "インレイヒントの全体の長さの最大値。0`に設定すると切り捨てられない。",
|
|
162
|
+
"editor.inlineSuggest.edits.experimental.enabled": "インラインサジェストで実験的な編集を有効にするかどうかを制御します。",
|
|
163
|
+
"editor.inlineSuggest.edits.experimental.onlyShowWhenCloseToCursor": "カーソルがサジェストの近くにあるときだけインライン・サジェストを表示するかどうかをコントロールする。",
|
|
164
|
+
"editor.inlineSuggest.edits.experimental.useInterleavedLinesDiff": "インライン提案で実験的インターリーブ行の差分を有効にするかどうかを制御する。",
|
|
165
|
+
"editor.inlineSuggest.edits.experimental.useMixedLinesDiff": "インラインサジェストで実験的な編集を有効にするかどうかを制御します。",
|
|
166
|
+
"editor.inlineSuggest.syntaxHighlightingEnabled": "エディターでインライン候補のシンタックスハイライトを表示するかどうかを制御する。",
|
|
154
167
|
"editor.insertSpaces": "Tab`を押したときにスペースを挿入する。この設定は、`#editor.detectIndentation#`がオンの場合、ファイルの内容によって上書きされる。",
|
|
155
|
-
"editor.
|
|
168
|
+
"editor.minimap.sectionHeaderLetterSpacing": "セクションヘッダの文字間のスペース(ピクセル単位)を制御します。これは小さなフォントサイズでのヘッダーの読みやすさを助けます。",
|
|
169
|
+
"editor.occurrencesHighlightDelay": "発生がハイライトされるまでの遅延をミリ秒単位で制御する。",
|
|
170
|
+
"editor.overtypeCursorStyle": "オーバータイプ入力モードのカーソルスタイルを制御する。",
|
|
171
|
+
"editor.overtypeOnPaste": "ペーストのオーバータイプを制御する。",
|
|
156
172
|
"editor.quickSuggestions": "入力中に自動的にサジェストを表示するかどうかを制御します。コメント、文字列、その他のコードを入力する際に制御できます。クイックサジェストは、ゴーストテキストとして表示するか、サジェストウィジェットで表示するかを設定できます。また、'#editor.suggestOnTriggerCharacters#'設定は、特殊な文字でサジェストが発生するかどうかを制御します。",
|
|
157
|
-
"editor.stickyScroll.scrollWithEditor": "エディターの水平スクロールバーでスティッキースクロールウィジェットのスクロールを有効にする。",
|
|
158
173
|
"editor.suggestFontSize": "サジェストウィジェットのフォントサイズ。0`に設定すると、`#editor.fontSize#`の値が使用される。",
|
|
159
174
|
"editor.suggestLineHeight": "提案ウィジェットの行の高さ。0`に設定すると、`#editor.lineHeight#`の値が使用される。最小値は8。",
|
|
160
175
|
"editor.tabSize": "タブのスペース数。この設定は、`#editor.detectIndentation#`がオンの場合、ファイルの内容によって上書きされる。",
|
|
161
|
-
"editor.useTabStops": "空白の挿入と削除はタブストップに従う。",
|
|
162
|
-
"editor.wordBasedSuggestions": "文書内の単語に基づいて補完を計算するかどうかを制御する。",
|
|
163
|
-
"editor.wordBasedSuggestionsMode": "どの文書から単語ベースの補完を計算するかを制御する。",
|
|
164
176
|
"formatOnSaveTimeout": "ファイル保存時に実行されるフォーマットがキャンセルされるまでのタイムアウト(ミリ秒)。",
|
|
165
177
|
"persistClosedEditors": "ウィンドウの再読み込み時に、ワークスペースの閉じたエディタの履歴を保持するかどうかを制御します。",
|
|
166
178
|
"showAllEditors": "開いているエディタをすべて表示",
|
package/i18n/nls.json
CHANGED
|
@@ -137,30 +137,42 @@
|
|
|
137
137
|
"toggleTracing": "Enable/disable tracing communications with debug adapters"
|
|
138
138
|
},
|
|
139
139
|
"editor": {
|
|
140
|
+
"diffEditor.experimental.useTrueInlineView": "If enabled and the editor uses the inline view, word changes are rendered inline.",
|
|
140
141
|
"diffEditor.wordWrap2": "Lines will wrap according to the `#editor.wordWrap#` setting.",
|
|
141
142
|
"dirtyEncoding": "The file is dirty. Please save it first before reopening it with another encoding.",
|
|
142
|
-
"editor.accessibilitySupport0": "Use platform APIs to detect when a Screen Reader is attached",
|
|
143
|
-
"editor.accessibilitySupport1": "Optimize for usage with a Screen Reader",
|
|
144
|
-
"editor.accessibilitySupport2": "Assume a screen reader is not attached",
|
|
145
143
|
"editor.bracketPairColorization.enabled": "Controls whether bracket pair colorization is enabled or not. Use `#workbench.colorCustomizations#` to override the bracket highlight colors.",
|
|
146
|
-
"editor.
|
|
144
|
+
"editor.codeActions.triggerOnFocusChange": "Enable triggering `#editor.codeActionsOnSave#` when `#files.autoSave#` is set to `afterDelay`. Code Actions must be set to `always` to be triggered for window and focus changes.",
|
|
145
|
+
"editor.cursorStyle": "Controls the cursor style in insert input mode.",
|
|
146
|
+
"editor.defaultColorDecorators": "Controls whether inline color decorations should be shown using the default document color provider.",
|
|
147
|
+
"editor.defaultColorDecorators0": "Show default color decorators only when no extension provides colors decorators.",
|
|
148
|
+
"editor.defaultColorDecorators1": "Always show default color decorators.",
|
|
149
|
+
"editor.defaultColorDecorators2": "Never show default color decorators.",
|
|
147
150
|
"editor.detectIndentation": "Controls whether `#editor.tabSize#` and `#editor.insertSpaces#` will be automatically detected when a file is opened based on the file contents.",
|
|
148
|
-
"editor.
|
|
149
|
-
"editor.
|
|
151
|
+
"editor.experimental.preferTreeSitter": "Controls whether tree sitter parsing should be turned on for specific languages. This will take precedence over `editor.experimental.treeSitterTelemetry` for the specified languages.",
|
|
152
|
+
"editor.experimental.treeSitterTelemetry": "Controls whether tree sitter parsing should be turned on and telemetry collected. Setting `editor.experimental.preferTreeSitter` for specific languages will take precedence.",
|
|
153
|
+
"editor.experimentalEditContextEnabled": "Sets whether the new experimental edit context should be used instead of the text area.",
|
|
154
|
+
"editor.find.history": "Controls how the find widget history should be stored",
|
|
155
|
+
"editor.find.history0": "Do not store search history from the find widget.",
|
|
156
|
+
"editor.find.history1": "Store search history across the active workspace",
|
|
150
157
|
"editor.inlayHints.enabled1": "Inlay hints are showing by default and hide when holding Ctrl+Alt",
|
|
151
158
|
"editor.inlayHints.enabled2": "Inlay hints are hidden by default and show when holding Ctrl+Alt",
|
|
152
159
|
"editor.inlayHints.fontFamily": "Controls font family of inlay hints in the editor. When set to empty, the `#editor.fontFamily#` is used.",
|
|
153
160
|
"editor.inlayHints.fontSize": "Controls font size of inlay hints in the editor. As default the `#editor.fontSize#` is used when the configured value is less than `5` or greater than the editor font size.",
|
|
161
|
+
"editor.inlayHints.maximumLength": "Maximum overall length of inlay hints, for a single line, before they get truncated by the editor. Set to `0` to never truncate",
|
|
162
|
+
"editor.inlineSuggest.edits.experimental.enabled": "Controls whether to enable experimental edits in inline suggestions.",
|
|
163
|
+
"editor.inlineSuggest.edits.experimental.onlyShowWhenCloseToCursor": "Controls whether to only show inline suggestions when the cursor is close to the suggestion.",
|
|
164
|
+
"editor.inlineSuggest.edits.experimental.useInterleavedLinesDiff": "Controls whether to enable experimental interleaved lines diff in inline suggestions.",
|
|
165
|
+
"editor.inlineSuggest.edits.experimental.useMixedLinesDiff": "Controls whether to enable experimental edits in inline suggestions.",
|
|
166
|
+
"editor.inlineSuggest.syntaxHighlightingEnabled": "Controls whether to show syntax highlighting for inline suggestions in the editor.",
|
|
154
167
|
"editor.insertSpaces": "Insert spaces when pressing `Tab`. This setting is overridden based on the file contents when `#editor.detectIndentation#` is on.",
|
|
155
|
-
"editor.
|
|
156
|
-
"editor.
|
|
157
|
-
"editor.
|
|
168
|
+
"editor.minimap.sectionHeaderLetterSpacing": "Controls the amount of space (in pixels) between characters of section header. This helps the readability of the header in small font sizes.",
|
|
169
|
+
"editor.occurrencesHighlightDelay": "Controls the delay in milliseconds after which occurrences are highlighted.",
|
|
170
|
+
"editor.overtypeCursorStyle": "Controls the cursor style in overtype input mode.",
|
|
171
|
+
"editor.overtypeOnPaste": "Controls whether pasting should overtype.",
|
|
172
|
+
"editor.quickSuggestions": "Controls whether suggestions should automatically show up while typing. This can be controlled for typing in comments, strings, and other code. Quick suggestion can be configured to show as ghost text or with the suggest widget. Also be aware of the `#editor.suggestOnTriggerCharacters#`-setting which controls if suggestions are triggered by special characters.",
|
|
158
173
|
"editor.suggestFontSize": "Font size for the suggest widget. When set to `0`, the value of `#editor.fontSize#` is used.",
|
|
159
174
|
"editor.suggestLineHeight": "Line height for the suggest widget. When set to `0`, the value of `#editor.lineHeight#` is used. The minimum value is 8.",
|
|
160
175
|
"editor.tabSize": "The number of spaces a tab is equal to. This setting is overridden based on the file contents when `#editor.detectIndentation#` is on.",
|
|
161
|
-
"editor.useTabStops": "Inserting and deleting whitespace follows tab stops.",
|
|
162
|
-
"editor.wordBasedSuggestions": "Controls whether completions should be computed based on words in the document.",
|
|
163
|
-
"editor.wordBasedSuggestionsMode": "Controls from which documents word based completions are computed.",
|
|
164
176
|
"formatOnSaveTimeout": "Timeout in milliseconds after which the formatting that is run on file save is cancelled.",
|
|
165
177
|
"persistClosedEditors": "Controls whether to persist closed editor history for the workspace across window reloads.",
|
|
166
178
|
"showAllEditors": "Show All Opened Editors",
|