Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3eb50568e9 | ||
|
|
e65e602bab | ||
|
|
866b145645 | ||
|
|
65ec5abb72 | ||
|
|
fc909f88ba | ||
|
|
c22d13af30 | ||
|
|
290a53e934 | ||
|
|
4b20f32c39 | ||
|
|
5ce976f322 | ||
|
|
352e0bf2ff | ||
|
|
684404f29c | ||
|
|
478fb3c245 | ||
|
|
c3cfd55762 | ||
|
|
b2d989f85f | ||
|
|
bb3d290d6b | ||
|
|
33bdb7f425 | ||
|
|
94c12812e0 | ||
|
|
3144d82fb4 | ||
|
|
5a56dfc749 | ||
|
|
bddb1ba342 | ||
|
|
cafce7c050 | ||
|
|
324cd1bd59 | ||
|
|
ad5fe867c5 | ||
|
|
cc862b039e | ||
|
|
446eb16e7a | ||
|
|
e09702e5dc | ||
|
|
48000bdbda | ||
|
|
f8b8e094f9 | ||
|
|
9762fe5397 | ||
|
|
5780e18487 | ||
|
|
3c6f603aea | ||
|
|
35ab3eb26d | ||
|
|
302f4226cf | ||
|
|
377896c30a | ||
|
|
13893fbfb2 | ||
|
|
d603786a13 | ||
|
|
407342f482 | ||
|
|
5c8b812075 | ||
|
|
2a2d928075 | ||
|
|
e160229500 | ||
|
|
60cfb9998d | ||
|
|
6ec8c14a98 |
@@ -19,6 +19,7 @@ module.exports = {
|
||||
"rules": {
|
||||
"@typescript-eslint/adjacent-overload-signatures": "error",
|
||||
"@typescript-eslint/array-type": "error",
|
||||
"@typescript-eslint/await-thenable": "error",
|
||||
"camelcase": "off",
|
||||
"@typescript-eslint/naming-convention": [
|
||||
"error",
|
||||
@@ -27,7 +28,6 @@ module.exports = {
|
||||
"format": ["PascalCase"]
|
||||
}
|
||||
],
|
||||
"@typescript-eslint/indent": "error",
|
||||
"@typescript-eslint/member-delimiter-style": [
|
||||
"error",
|
||||
{
|
||||
@@ -43,6 +43,7 @@ module.exports = {
|
||||
],
|
||||
"@typescript-eslint/no-for-in-array": "error",
|
||||
"@typescript-eslint/no-misused-new": "error",
|
||||
"@typescript-eslint/no-misused-promises": "error",
|
||||
"@typescript-eslint/no-namespace": "error",
|
||||
"@typescript-eslint/no-non-null-assertion": "error",
|
||||
"@typescript-eslint/no-extra-non-null-assertion": "error",
|
||||
|
||||
+69
-44
@@ -1,16 +1,65 @@
|
||||
# C/C++ for Visual Studio Code Changelog
|
||||
|
||||
## Version 1.15.2: March 12, 2023
|
||||
## Version 1.16.0: May 22, 2023
|
||||
### New Features
|
||||
* Add Call Hierarchy. [#16](https://github.com/microsoft/vscode-cpptools/issues/16)
|
||||
* Add "Copy Definition" and "Copy Declaration" code actions (for when the default Create placement isn't desired). [#10238](https://github.com/microsoft/vscode-cpptools/issues/10238), [#10942](https://github.com/microsoft/vscode-cpptools/issues/10942)
|
||||
|
||||
### Enhancements
|
||||
* Add a "Configure IntelliSense" status bar warning. [#10685](https://github.com/microsoft/vscode-cpptools/issues/10685)
|
||||
* Add support for other glob pattern syntax, such as `[]` and `^`. [#8960](https://github.com/microsoft/vscode-cpptools/issues/8960)
|
||||
* Add support for C++23 z/Z and zu/ZU suffixes in clang/gcc modes. [#10190](https://github.com/microsoft/vscode-cpptools/issues/10190)
|
||||
|
||||
### Bug Fixes
|
||||
* Fix an IntelliSense parsing bug with C++20 ranges. [#8039](https://github.com/microsoft/vscode-cpptools/issues/8039)
|
||||
* Fix an IntelliSense bug with user-defined floating-point literals. [#10837](https://github.com/microsoft/vscode-cpptools/issues/10837)
|
||||
* Fix deadlock with Find All References. [#10855](https://github.com/microsoft/vscode-cpptools/issues/10855)
|
||||
* Fix performance issues on machines with > 32 threads. [#10874](https://github.com/microsoft/vscode-cpptools/issues/10874)
|
||||
* Fix localization of "C/C++ Configurations". [#10907](https://github.com/microsoft/vscode-cpptools/issues/10907)
|
||||
* Fix the workspace folder not getting added to the browse.path in some cases. [#10914](https://github.com/microsoft/vscode-cpptools/issues/10914)
|
||||
* Fix incorrect Apple clang to LLVM clang version mappings. [#10920](https://github.com/microsoft/vscode-cpptools/issues/10920)
|
||||
* Revert -fms-extensions being added for mingw compilers by default (due to bugs). [#10940](https://github.com/microsoft/vscode-cpptools/issues/10940)
|
||||
* Fix the "known compilers" list not getting updated with "user compilers". [#10943](https://github.com/microsoft/vscode-cpptools/issues/10943)
|
||||
* Fix cancelation of Find All References while confirming references. [#10947](https://github.com/microsoft/vscode-cpptools/issues/10947)
|
||||
* Fix a bug with workspace parsing status. [PR #10974](https://github.com/microsoft/vscode-cpptools/pull/10974)
|
||||
* Fix a bug that could cause incomplete reading of stdout/stderr of child processes on Windows.
|
||||
* Fix incorrect "declaration is incompatible" IntelliSense errors.
|
||||
* Fix some potential crashes.
|
||||
|
||||
## Version 1.15.4: May 1, 2023
|
||||
### Enhancements
|
||||
* Support multiple natvis files in `visualizerFile`. [#925](https://github.com/microsoft/vscode-cpptools/issues/925)
|
||||
* Enable error squiggles for single file mode if includes resolve. [#10062](https://github.com/microsoft/vscode-cpptools/issues/10062)
|
||||
* Improve the description of the `C_Cpp.codeAnalysis.clangTidy.enabled` setting. [#10454](https://github.com/microsoft/vscode-cpptools/issues/10454)
|
||||
* Add a 'Select an IntelliSense configuration' code action and error message for standard headers which can't be found. [#10531](https://github.com/microsoft/vscode-cpptools/issues/10531)
|
||||
* Change the 'Edit "includePath" setting' code action to reference "compilerPath" for missing system includes. [#10675](https://github.com/microsoft/vscode-cpptools/issues/10675)
|
||||
* Add a "Configure IntelliSense" status bar warning (currently controlled by an experiment). [#10685](https://github.com/microsoft/vscode-cpptools/issues/10685)
|
||||
* Re-enable an updated C/C++ walkthrough (currently only available for some users). [PR #10707](https://github.com/microsoft/vscode-cpptools/pull/10707)
|
||||
* Update to clang-format/tidy 16. [#10725](https://github.com/microsoft/vscode-cpptools/issues/10725)
|
||||
* Move the configuration status bar item out of the language status UI. [#10755](https://github.com/microsoft/vscode-cpptools/issues/10755)
|
||||
* Change `Select Default Compiler` to `Select IntelliSense Configuration` with configuration providers and compile commands added. [#10756](https://github.com/microsoft/vscode-cpptools/issues/10756)
|
||||
|
||||
### Bug Fixes
|
||||
* Support use of `ccache` in `compilerPath` and `compile_commands.json` command lines. [#7616](https://github.com/microsoft/vscode-cpptools/issues/7616)
|
||||
* Support use of `ccache`, 'sccache', and 'clcache' in `compilerPath` and `compile_commands.json` command lines. [#7616](https://github.com/microsoft/vscode-cpptools/issues/7616)
|
||||
* Enable `-fms-extensions` by default for Cygwin and MinGW. [#8353](https://github.com/microsoft/vscode-cpptools/issues/8353)
|
||||
* Fix incorrect, excessive logging with compile commands. [#9865](https://github.com/microsoft/vscode-cpptools/issues/9865)
|
||||
* Fix IntelliSense errors with C++ 20 range and span. [#10024](https://github.com/microsoft/vscode-cpptools/issues/10024), [#10252](https://github.com/microsoft/vscode-cpptools/issues/10252)
|
||||
* Fix two vcFormat settings being inverted. [#10262](https://github.com/microsoft/vscode-cpptools/issues/10262), [#10263](https://github.com/microsoft/vscode-cpptools/issues/10263)
|
||||
* Fix the browse configuration provider cache not getting cleared. [#10692](https://github.com/microsoft/vscode-cpptools/issues/10692)
|
||||
* Fix 'Create Declaration / Definition' making modifications to files outside the workspace folder. [#10402](https://github.com/microsoft/vscode-cpptools/issues/10402)
|
||||
* Fix code analysis when `--use-color=true` is used. [#10407](https://github.com/microsoft/vscode-cpptools/issues/10407)
|
||||
* Fix IntelliSense errors with CUDA. [#10455](https://github.com/microsoft/vscode-cpptools/issues/10455)
|
||||
* Fix random save failures while code analysis is running on the saved file. [#10482](https://github.com/microsoft/vscode-cpptools/issues/10482)
|
||||
* Fix the compile commands prompt setting `compileCommands` to a `compile_commands.json` in a different workspace folder. [#10588](https://github.com/microsoft/vscode-cpptools/issues/10588)
|
||||
* Fix code analysis with `_Float16`. [#10610](https://github.com/microsoft/vscode-cpptools/issues/10610)
|
||||
* Fix code analysis with c23/gnu23. [#10615](https://github.com/microsoft/vscode-cpptools/issues/10615)
|
||||
* Fix 'Reset IntelliSense Database' being delayed until parsing is finished. [#10616](https://github.com/microsoft/vscode-cpptools/issues/10616)
|
||||
* Fix uncaught exception with some configuration providers. [#10634](https://github.com/microsoft/vscode-cpptools/issues/10634)
|
||||
* Fix crashes with a multi-root workspace. [#10636](https://github.com/microsoft/vscode-cpptools/issues/10636)
|
||||
* Fix bugs with the "You do not have IntelliSense configured" prompt. [#10658](https://github.com/microsoft/vscode-cpptools/issues/10658), [#10659](https://github.com/microsoft/vscode-cpptools/issues/10659)
|
||||
* Fix random failures when adding or removing workspace folders. [PR #10665](https://github.com/microsoft/vscode-cpptools/pull/10665)
|
||||
* Fix missing clang-tidy checks setting values. [#10667](https://github.com/microsoft/vscode-cpptools/issues/10667)
|
||||
* Fix 'Select IntelliSense configuration' so that it works if it's already set in the workspace or workspace folder settings. [#10674](https://github.com/microsoft/vscode-cpptools/issues/10674)
|
||||
* Fix clang-tidy 'clang-analyzer-' documentation links not working. [#10678](https://github.com/microsoft/vscode-cpptools/issues/10678)
|
||||
* Fix the browse configuration provider cache not getting cleared. [#10692](https://github.com/microsoft/vscode-cpptools/issues/10692), [#10877](https://github.com/microsoft/vscode-cpptools/issues/10877)
|
||||
* Fix a crash with recursive environment variables on Windows. [#10704](https://github.com/microsoft/vscode-cpptools/issues/10704)
|
||||
* Fix `#import` of `.tlb` files failing due to `/Fo` arguments to `cl.exe` not being processed. [#10710](https://github.com/microsoft/vscode-cpptools/issues/10710)
|
||||
* Fix `cppbuild` tasks not using the workspace folder as the `cwd` by default. [#10742](https://github.com/microsoft/vscode-cpptools/issues/10742)
|
||||
@@ -20,43 +69,19 @@
|
||||
* Fix the first registered configuration provider still being automatically used after a second registers. [PR #10772](https://github.com/microsoft/vscode-cpptools/pull/10772)
|
||||
* Fix `C_Cpp.default.compilerPath` in the settings UI showing a string editor when it shouldn't. [#10795](https://github.com/microsoft/vscode-cpptools/issues/10795)
|
||||
* Fix some issues due to usage of the spread operator not doing a deep copy. [PR #10803](https://github.com/microsoft/vscode-cpptools/pull/10803)
|
||||
|
||||
## Version 1.15.1: March 22, 2023
|
||||
### Bug Fixes
|
||||
* Fix crashes with a multiroot workspace. [#10636](https://github.com/microsoft/vscode-cpptools/issues/10636)
|
||||
* Fix a deadlock with a multiroot workspace. [#10719](https://github.com/microsoft/vscode-cpptools/issues/10719)
|
||||
|
||||
## Version 1.15.0: March 15, 2023
|
||||
### Enhancements
|
||||
* Support multiple natvis files in `visualizerFile`. [#925](https://github.com/microsoft/vscode-cpptools/issues/925)
|
||||
* Enable error squiggles for single file mode if includes resolve. [#10062](https://github.com/microsoft/vscode-cpptools/issues/10062)
|
||||
* Improve the description of the `C_Cpp.codeAnalysis.clangTidy.enabled` setting. [#10454](https://github.com/microsoft/vscode-cpptools/issues/10454)
|
||||
* Add a 'Select Default Compiler' code action and error message for standard headers which can't be found. [#10531](https://github.com/microsoft/vscode-cpptools/issues/10531)
|
||||
* Change the 'Edit "includePath" setting' code action to reference "compilerPath" for missing system includes. [#10675](https://github.com/microsoft/vscode-cpptools/issues/10675)
|
||||
|
||||
### Bug Fixes
|
||||
* Enable `-fms-extensions` by default for Cygwin and MinGW. [#8353](https://github.com/microsoft/vscode-cpptools/issues/8353)
|
||||
* Fix incorrect, excessive logging with compile commands. [#9865](https://github.com/microsoft/vscode-cpptools/issues/9865)
|
||||
* Fix IntelliSense errors with C++ 20 range and span. [#10024](https://github.com/microsoft/vscode-cpptools/issues/10024)
|
||||
* Fix 'Create Declaration / Definition' making modifications to files outside the workspace folder. [#10402](https://github.com/microsoft/vscode-cpptools/issues/10402)
|
||||
* Fix code analysis when `--use-color=true` is used. [#10407](https://github.com/microsoft/vscode-cpptools/issues/10407)
|
||||
* Fix IntelliSense errors with CUDA. [#10455](https://github.com/microsoft/vscode-cpptools/issues/10455)
|
||||
* Fix random save failures while code analysis is running on the saved file. [#10482](https://github.com/microsoft/vscode-cpptools/issues/10482)
|
||||
* Fix the compile commands prompt setting `compileCommands` to a `compile_commands.json` in a different workspace folder. [#10588](https://github.com/microsoft/vscode-cpptools/issues/10588)
|
||||
* Fix code analysis with `_Float16`. [#10610](https://github.com/microsoft/vscode-cpptools/issues/10610)
|
||||
* Fix code analysis with c23/gnu23. [#10615](https://github.com/microsoft/vscode-cpptools/issues/10615)
|
||||
* Fix 'Reset IntelliSense Database' being delayed until parsing is finished. [#10616](https://github.com/microsoft/vscode-cpptools/issues/10616)
|
||||
* Fix uncaught exception with some configuration providers. [PR #10629](https://github.com/microsoft/vscode-cpptools/pull/10629)
|
||||
* Fix bugs with the "You do not have IntelliSense configured" prompt. [#10658](https://github.com/microsoft/vscode-cpptools/issues/10658), [#10659](https://github.com/microsoft/vscode-cpptools/issues/10659)
|
||||
* Fix random failures when adding or removing workspace folders. [PR #10665](https://github.com/microsoft/vscode-cpptools/pull/10665)
|
||||
* Fix missing clang-tidy checks setting values. [#10667](https://github.com/microsoft/vscode-cpptools/issues/10667)
|
||||
* Fix 'Select Default Compiler' so that it works if it's already set in the workspace or workspace folder settings. [#10674](https://github.com/microsoft/vscode-cpptools/issues/10674)
|
||||
* Fix clang-tidy 'clang-analyzer-' documentation links not working. [#10678](https://github.com/microsoft/vscode-cpptools/issues/10678)
|
||||
* Fix a deadlock with Find All References. [#10855](https://github.com/microsoft/vscode-cpptools/issues/10855)
|
||||
* Fix the Code Analysis Options dropdown showing 'Resume' instead of 'Pause' after a cancel is done in a paused state. [#10879](https://github.com/microsoft/vscode-cpptools/issues/10879)
|
||||
* Fix "Code Analysis Mode" not being localized when initially shown. [#10881](https://github.com/microsoft/vscode-cpptools/issues/10881)
|
||||
* Fix the C/C++-related status bar items flickering off/on when switching documents. [PR #10888](https://github.com/microsoft/vscode-cpptools/pull/10888)
|
||||
* Fix `__GXX_RTTI` incorrectly being defined by IntelliSense with clang and `-fms-compatibility`.
|
||||
* Reduce the likelihood of an `onWillSaveWaitUntil` timeout.
|
||||
* Fix an IntelliSense crash with C++20 concepts.
|
||||
* Stop querying clang-cl.exe as C.
|
||||
|
||||
## Version 1.14.5: March 22, 2023
|
||||
### Bug Fix
|
||||
* Fix a deadlock with a multi-root workspace. [#10719](https://github.com/microsoft/vscode-cpptools/issues/10719)
|
||||
|
||||
## Version 1.14.4: February 28, 2023
|
||||
### Enhancements
|
||||
* Add `c23` and `c2x` support for clang and gcc modes. [#7471](https://github.com/microsoft/vscode-cpptools/issues/7471)
|
||||
@@ -114,7 +139,7 @@
|
||||
* Fix the process id picker only showing part of the process on a remote machine. [#10379](https://github.com/microsoft/vscode-cpptools/issues/10379)
|
||||
* Fix temp files generating at the incorrect path. [#10386](https://github.com/microsoft/vscode-cpptools/issues/10386)
|
||||
* Fix a crash in extractArgs. [PR #10394](https://github.com/microsoft/vscode-cpptools/pull/10394)
|
||||
* Fix a bug with settings changes not being handled correctly for multiroot. [PR #10458](https://github.com/microsoft/vscode-cpptools/pull/10458)
|
||||
* Fix a bug with settings changes not being handled correctly for multi-root. [PR #10458](https://github.com/microsoft/vscode-cpptools/pull/10458)
|
||||
|
||||
## Version 1.13.9: January 4, 2023
|
||||
### Bug Fix
|
||||
@@ -331,7 +356,7 @@
|
||||
* Fix Go to Definition with C for identifiers that are C++ keywords. [#9081](https://github.com/microsoft/vscode-cpptools/issues/9081)
|
||||
* Fix the new Run/Debug Code button not working with a modified program location. [#9082](https://github.com/microsoft/vscode-cpptools/issues/9082)
|
||||
* Fix `__GNUC__` system defines causing clang-tidy to undefine `_Float32`. [#9091](https://github.com/microsoft/vscode-cpptools/issues/9091)
|
||||
* Fix 'breakpoints set before launch in shared objects cannot be disabled/deleted' [#9095]([https://github.com/microsoft/vscode-cpptools/issues/9095)
|
||||
* Fix 'breakpoints set before launch in shared objects cannot be disabled/deleted' [#9095](https://github.com/microsoft/vscode-cpptools/issues/9095)
|
||||
* Fix compiler querying failing for compilers that don't output system includes. [#9099](https://github.com/microsoft/vscode-cpptools/issues/9099)
|
||||
* Fix completion occurring (when it shouldn't) after the comma in a definition list. [#9101](https://github.com/microsoft/vscode-cpptools/issues/9101)
|
||||
* Fix `;` incorrectly matching for `break;` and `continue;` completion. [#9115](https://github.com/microsoft/vscode-cpptools/issues/9115)
|
||||
@@ -384,7 +409,7 @@
|
||||
* Fix a crash when visualizing local variables for Microsoft Edge (msedge.exe) [#8738](https://github.com/microsoft/vscode-cpptools/issues/8738)
|
||||
* Fix some system defines being incorrectly removed when running code analysis. [#8740](https://github.com/microsoft/vscode-cpptools/issues/8740)
|
||||
* Prevent an error from being logged due to custom configuration processing prior to the provider being ready. [#8752](https://github.com/microsoft/vscode-cpptools/issues/8752)
|
||||
* Fix incorrect crash recovery with multiroot. [#8762](https://github.com/microsoft/vscode-cpptools/issues/8762)
|
||||
* Fix incorrect crash recovery with multi-root. [#8762](https://github.com/microsoft/vscode-cpptools/issues/8762)
|
||||
* Fix random compiler query, clang-tidy, or clang-format failure on Windows. [#8764](https://github.com/microsoft/vscode-cpptools/issues/8764)
|
||||
* Fix invoking commands before cpptools is activated. [#8785](https://github.com/microsoft/vscode-cpptools/issues/8785)
|
||||
* Fix a bug on Windows with semantic tokens updating. [#8799](https://github.com/microsoft/vscode-cpptools/issues/8799)
|
||||
@@ -699,7 +724,7 @@
|
||||
* Fix integrity hash checking of downloaded packages for the extension. [PR #7300](https://github.com/microsoft/vscode-cpptools/pull/7300)
|
||||
* Fix a bug preventing successful validation and receipt of browse configurations from custom configuration providers. [PR# 7131](https://github.com/microsoft/vscode-cpptools/pull/7313)
|
||||
* Fix a potential crash when editing at the end of a document.
|
||||
* Fix "Configure Task" selection to show root folder names for multiroot workspace [PR #7315](https://github.com/microsoft/vscode-cpptools/pull/7315)
|
||||
* Fix "Configure Task" selection to show root folder names for multi-root workspace [PR #7315](https://github.com/microsoft/vscode-cpptools/pull/7315)
|
||||
|
||||
## Version 1.2.2: February 25, 2021
|
||||
### Bug Fixes
|
||||
@@ -869,7 +894,7 @@
|
||||
* Fix `Build and Debug Active File` race condition with EngineLogs. [#6304](https://github.com/microsoft/vscode-cpptools/pull/6304)
|
||||
* Fix changes to some `c_cpp_properties.json` properties not taking effect (until a reload) if `compileCommands` is set. [#6332](https://github.com/microsoft/vscode-cpptools/issues/6332)
|
||||
* Fix issue with compiler querying not handling various clang command line options correctly. [#6356](https://github.com/microsoft/vscode-cpptools/issues/6356), [#6359](https://github.com/microsoft/vscode-cpptools/issues/6359)
|
||||
* Fix multiroot workspace tag parsing when `compileCommands` is set. [#6383](https://github.com/microsoft/vscode-cpptools/issues/6383)
|
||||
* Fix multi-root workspace tag parsing when `compileCommands` is set. [#6383](https://github.com/microsoft/vscode-cpptools/issues/6383)
|
||||
* Fix mingw32 compilers not being detected. [#6394](https://github.com/microsoft/vscode-cpptools/issues/6394)
|
||||
* Various bug fixes for vcFormat. [PR #6408](https://github.com/microsoft/vscode-cpptools/pull/6408)
|
||||
* Fix issue causing zh-cn and zh-tw language files not to be used. [PR #6418](https://github.com/microsoft/vscode-cpptools/pull/6418)
|
||||
@@ -924,7 +949,7 @@
|
||||
* Get the default target of the compiler. If the default target is ARM/ARM64, do not use the generic "--target" option to determine bitness. [#5772](https://github.com/microsoft/vscode-cpptools/issues/5772)
|
||||
* Fix `compilerArgs` not being used if no `compilerPath` is set. [#5776](https://github.com/microsoft/vscode-cpptools/issues/5776)
|
||||
* Fix an incorrect IntelliSense error squiggle. [#5783](https://github.com/microsoft/vscode-cpptools/issues/5783)
|
||||
* Fix semantic colorization and inactive regions for multiroot workspaces. [#5812](https://github.com/microsoft/vscode-cpptools/issues/5812), [#5828](https://github.com/microsoft/vscode-cpptools/issues/5828)
|
||||
* Fix semantic colorization and inactive regions for multi-root workspaces. [#5812](https://github.com/microsoft/vscode-cpptools/issues/5812), [#5828](https://github.com/microsoft/vscode-cpptools/issues/5828)
|
||||
* Fix bug with cl.exe flags /FU and /FI not being processed. [#5819](https://github.com/microsoft/vscode-cpptools/issues/5819)
|
||||
* Fix `cStandard` being set to `c11` instead of `gnu18` with gcc. [#5834](https://github.com/microsoft/vscode-cpptools/issues/5834)
|
||||
* Fix Doxygen parameterHint comment to display for a parameter name that is followed by colon. [#5836](https://github.com/microsoft/vscode-cpptools/issues/5836)
|
||||
@@ -1045,7 +1070,7 @@
|
||||
* Fix the "Unable to load schema" error for `c_cpp_properties.json`. [#4841](https://github.com/microsoft/vscode-cpptools/issues/4841)
|
||||
* Change "Visual Studio" `clang_format_fallback_style` setting to use NamespaceIndentation All. [#5124](https://github.com/microsoft/vscode-cpptools/issues/5124)
|
||||
* Fix "C++98" and "C++0x" modes. [#5157](https://github.com/microsoft/vscode-cpptools/issues/5157), [#5225](https://github.com/microsoft/vscode-cpptools/issues/5225)
|
||||
* Improve the error message for multiroot projects using `compile_commands.json`. [#5160](https://github.com/microsoft/vscode-cpptools/issues/5160)
|
||||
* Improve the error message for multi-root projects using `compile_commands.json`. [#5160](https://github.com/microsoft/vscode-cpptools/issues/5160)
|
||||
* Fix some cpptools process crashes. [#5280](https://github.com/microsoft/vscode-cpptools/issues/5280)
|
||||
* Avoid `<…>` truncation on hover. [#5291](https://github.com/microsoft/vscode-cpptools/issues/5291)
|
||||
* Fix incorrect translations. [PR #5300](https://github.com/microsoft/vscode-cpptools/pull/5300)
|
||||
@@ -1063,7 +1088,7 @@
|
||||
|
||||
## Version 0.27.0: March 30, 2020
|
||||
### Enhancements
|
||||
* Improved multi-root implementation with a single language server process and database for the entire workspace (shared between workspace folders). Fixes most [multi-root bugs](https://github.com/microsoft/vscode-cpptools/issues?q=is%3Aopen+is%3Aissue+label%3A%22Feature%3A+Multiroot%22+label%3A%22fixed+%28release+pending%29%22+milestone%3A0.27.0).
|
||||
* Improved multi-root implementation with a single language server process and database for the entire workspace (shared between workspace folders). Fixes most [multi-root bugs](https://github.com/microsoft/vscode-cpptools/issues?q=is%3Aopen+is%3Aissue+label%3A%22Feature%3A+Multi-root%22+label%3A%22fixed+%28release+pending%29%22+milestone%3A0.27.0).
|
||||
* Update to clang-format 9.0.1 (and without shared library dependencies). [#2887](https://github.com/microsoft/vscode-cpptools/issues/2887), [#3174](https://github.com/microsoft/vscode-cpptools/issues/3174)
|
||||
* Add new setting `C_Cpp.debugger.useBacktickCommandSubstitution` to fix debugging when CShell is the remote default shell. [#4015](https://github.com/microsoft/vscode-cpptools/issues/4015)
|
||||
* @Helloimbob [PR #5053](https://github.com/microsoft/vscode-cpptools/pull/5053)
|
||||
|
||||
+962
-307
File diff suppressed because it is too large
Load Diff
@@ -3343,14 +3343,14 @@
|
||||
"mapování souborů modulu pro %s bylo zadané více než jednou",
|
||||
"mapování jednotek záhlaví pro %s bylo zadané více než jednou",
|
||||
"není zadané žádné mapování pro %s",
|
||||
"mapování souborů modulu pro %s je neplatné",
|
||||
null,
|
||||
"nejde najít záhlaví %s, které se má importovat",
|
||||
"více než jeden soubor v seznamu souborů modulu odpovídá %s",
|
||||
"soubor modulu, který se našel pro %s, je pro jiný modul",
|
||||
"libovolný druh souboru modulu",
|
||||
"nejde přečíst soubor modulu",
|
||||
"předdefinovaná funkce není k dispozici, protože typ char8_t se nepodporuje s aktuálními možnostmi",
|
||||
"možnost příkazového řádku --ms_await nejde zadat, pokud jsou povolené korutiny C++20",
|
||||
null,
|
||||
"nestandardní použití explicitního konstruktoru %nod pro inicializaci výchozího agregačního elementu",
|
||||
"zdroj nebo cíl vnitřní funkce memcpy-like neukazuje na objekt",
|
||||
"vnitřní funkce memcpy-like se pokouší o kopírování reprezentačně odlišných typů %t1 a %t2",
|
||||
@@ -3483,5 +3483,19 @@
|
||||
"Explicitní deklarace specializace nemůže být deklarací typu friend.",
|
||||
"typ std::float128_t se nepodporuje. místo toho se použije std::float64_t",
|
||||
"typ std::bfloat16_t se nepodporuje. místo toho se použije std::float32_t",
|
||||
"vodítko pro dedukce se nedá deklarovat pro šablonu aliasu %no"
|
||||
"vodítko pro dedukce se nedá deklarovat pro šablonu aliasu %no",
|
||||
"%n bylo deklarováno jako nedostupné.",
|
||||
"%n bylo deklarováno jako nedostupné (%sq).",
|
||||
"kvůli atributu deprecated",
|
||||
"explicitní parametry šablony lambda jsou funkcí C++20",
|
||||
"použití _Noreturn je od C23 zastaralé. Místo toho použijte [[noreturn]].",
|
||||
"použití _Alignof je od C23 zastaralé. Místo toho použijte alignof.",
|
||||
"použití _Alignas je od C23 zastaralé. Místo toho použijte alignas.",
|
||||
"použití _Bool je od C23 zastaralé. Místo toho použijte bool.",
|
||||
"použití _Static_assert je od C23 zastaralé. Místo toho použijte static_assert.",
|
||||
"použití _Thread_local je od C23 zastaralé. Místo toho použijte thread_local.",
|
||||
"Aby bylo možné používat soubor modulu %sq (modul Microsoft Visual Studio IFC), musí být povolený režim Microsoftu.",
|
||||
"soubor modulu %sq se nepovedlo otevřít",
|
||||
"nalezeno v mapě modulu %sq.",
|
||||
"nalezeno v mapě jednotek hlaviček pro %sq"
|
||||
]
|
||||
@@ -3343,14 +3343,14 @@
|
||||
"Die Moduldateizuordnung für \"%s\" wurde mehrmals angegeben.",
|
||||
"Die Zuordnung der Headereinheit für \"%s\" wurde mehrmals angegeben.",
|
||||
"Für \"%s\" wurde keine Zuordnung angegeben.",
|
||||
"Die Moduldateizuordnung für \"%s\" ist ungültig.",
|
||||
null,
|
||||
"Der zu importierende Header \"%s\" wurde nicht gefunden.",
|
||||
"Mehrere Dateien in der Moduldateiliste stimmen mit \"%s\" überein.",
|
||||
"Die für \"%s\" gefundene Moduldatei ist für ein anderes Modul bestimmt.",
|
||||
"Beliebige Art von Moduldatei",
|
||||
"Die Moduldatei kann nicht gelesen werden.",
|
||||
"Die integrierte Funktion ist nicht verfügbar, weil der char8_t-Typ mit den aktuellen Optionen nicht unterstützt wird.",
|
||||
"Die Befehlszeilenoption \"--ms_await\" kann nicht angegeben werden, wenn C++20-Coroutinen aktiviert sind.",
|
||||
null,
|
||||
"Nicht standardmäßige Verwendung des expliziten Konstruktors \"%nod\" für die standardmäßige Aggregatelementinitialisierung",
|
||||
"Die Quelle oder das Ziel des memcpy-ähnlichen systeminternen Objekts verweist nicht auf ein Objekt.",
|
||||
"Ein memcpy-ähnliches systeminternes Objekt versucht, die darstellerisch unterschiedlichen Typen %t1 und %t2 zu kopieren.",
|
||||
@@ -3483,5 +3483,19 @@
|
||||
"Eine explizite Spezialisierungsdeklaration darf keine Frienddeklaration sein",
|
||||
"der Typ „std::float128_t“ wird nicht unterstützt. Stattdessen wird „std::float64_t“ verwendet",
|
||||
"der Typ „std::bfloat16_t“ wird nicht unterstützt. Stattdessen wird „std::float32_t“ verwendet",
|
||||
"Für die Aliasvorlage %no darf keine Deduktionsanleitung deklariert werden."
|
||||
"Für die Aliasvorlage %no darf keine Deduktionsanleitung deklariert werden.",
|
||||
"%n wurde als nicht verfügbar deklariert.",
|
||||
"%n wurde als nicht verfügbar deklariert (%sq).",
|
||||
"aufgrund eines „veralteten“ Attributs",
|
||||
"Explizite Lambdavorlagenparameter sind ein C++20-Feature.",
|
||||
"Die Verwendung von „_Noreturn“ in C23 ist veraltet. Verwenden Sie stattdessen „[[noreturn]]“.",
|
||||
"Die Verwendung von „_Alignof“ in C23 ist veraltet. Verwenden Sie stattdessen „alignof“.",
|
||||
"Die Verwendung von „_Alignas“ in C23 ist veraltet. Verwenden Sie stattdessen „alignas“.",
|
||||
"Die Verwendung von „_Bool“ in C23 ist veraltet. Verwenden Sie stattdessen „bool“.",
|
||||
"Die Verwendung von „_Static_assert“ in C23 ist veraltet. Verwenden Sie stattdessen „static_assert“.",
|
||||
"Die Verwendung von „_Thread_local“ in C23 ist veraltet. Verwenden Sie stattdessen „thread_local“.",
|
||||
"Der Microsoft-Modus muss aktiviert sein, um die Moduldatei %sq (ein Microsoft Visual Studio IFC-Modul) zu verwenden.",
|
||||
"Die Moduldatei \"%sq\" konnte nicht importiert werden.",
|
||||
"wurde in der Modulzuordnung für das Modul %sq gefunden",
|
||||
"wurde in der Headereinheitszuordnung für %sq gefunden"
|
||||
]
|
||||
@@ -2935,7 +2935,7 @@
|
||||
"tipo %t no válido en puntero this para la función miembro %nfd con restricción amp",
|
||||
"Tipo de valor devuelto %t no válido para la función %nfd con restricción amp",
|
||||
"Tipo de parámetro %t no válido para la función %nfd con restricción amp",
|
||||
null,
|
||||
"construcción no válida en la función %nfd con restricción amp",
|
||||
"Clase de almacenamiento %s no válida en la función %nfd con restricción amp",
|
||||
"%s no se permite en la función %nfd con restricción amp",
|
||||
"conversión no válida en la función con restricción amp",
|
||||
@@ -3343,14 +3343,14 @@
|
||||
"la asignación de archivos de módulo para \"%s\" se especificó más de una vez",
|
||||
"la asignación de unidades de encabezado para \"%s\" se especificó más de una vez",
|
||||
"no se especificó ninguna asignación para \"%s\"",
|
||||
"la asignación del archivo de módulo para \"%s\" no es válida",
|
||||
null,
|
||||
"no se encuentra el encabezado \"%s\" para importar",
|
||||
"hay más de un archivo de la lista de archivos de módulo que coincide con \"%s\"",
|
||||
"el archivo de módulo que se encontró para \"%s\" es para otro módulo",
|
||||
"cualquier tipo de archivo de módulo",
|
||||
"no se puede leer el archivo de módulo",
|
||||
"la función integrada no está disponible porque no se admite el tipo char8_t con las opciones actuales",
|
||||
"no se puede especificar la opción de línea de comandos --ms_await si están habilitadas las corrutinas de C++ 20",
|
||||
null,
|
||||
"uso no estándar de %nod de constructor explícito para la inicialización predeterminada del elemento de agregado",
|
||||
"el origen o el destino del intento intrínseco de tipo memcpy no apunta a un objeto",
|
||||
"intentos intrínsecos de tipo memcpy para copiar los tipos %t1 y %t2 diferentes de forma representativa",
|
||||
@@ -3465,7 +3465,7 @@
|
||||
"debido a un atributo “no disponible”",
|
||||
"calificador 'asm' duplicado",
|
||||
"un campo de bits con un tipo de enumeración incompleto o una enumeración opaca con un tipo base no válido",
|
||||
"intentó construir un elemento a partir de la partición IFC %sq mediante un índice en la partición IFC %sq",
|
||||
"intentó construir un elemento a partir de la partición IFC %sq mediante un índice en la partición IFC %sq2",
|
||||
"la partición %sq especificó su tamaño de entrada como %d1 cuando se esperaba %d2",
|
||||
"se encontró un requisito IFC inesperado al procesar el módulo %sq1",
|
||||
"error de condición en la línea %d en %s1: %sq2",
|
||||
@@ -3478,9 +3478,24 @@
|
||||
"el módulo %sq es un valor de ordenación no válido",
|
||||
"una plantilla de función cargada desde un módulo IFC se analizó incorrectamente como %nd",
|
||||
"no se pudo cargar una referencia de entidad IFC en el módulo %sq",
|
||||
"Ordenación de índice IFC = %d1, valor = %d2",
|
||||
"de la partición %sq elemento %d1 (posición de archivo %d2, posición relativa %d3)",
|
||||
"no se permiten designadores encadenados para un tipo de clase con un destructor no trivial",
|
||||
"una declaración de especialización explícita no puede ser una declaración \"friend\"",
|
||||
"no se admite el tipo std::float128_t; se usará std::float64_t en su lugar",
|
||||
"no se admite el tipo std::bfloat16_t; se usará std::float32_t en su lugar"
|
||||
"no se admite el tipo std::bfloat16_t; se usará std::float32_t en su lugar",
|
||||
"no se puede declarar una guía de deducción para la plantilla de alias %no",
|
||||
"%n se declaró no disponible",
|
||||
"%n se declaró no disponible (%sq)",
|
||||
"debido a un atributo \"en desuso\"",
|
||||
"los parámetros de plantilla lambda explícitos son una característica de C++20",
|
||||
"el uso de \"_Noreturn\" ha quedado obsoleto en C23; usar '[[noreturn]]' en su lugar",
|
||||
"el uso de \"_Alignof\" ha quedado obsoleto en C23; usar \"alignof\" en su lugar",
|
||||
"el uso de \"_Alignas\" ha quedado obsoleto en C23; usar \"alignas\" en su lugar",
|
||||
"el uso de \"_Bool\" ha quedado obsoleto en C23; usar 'bool' en su lugar",
|
||||
"el uso de \"_Static_assert\" ha quedado obsoleto en C23; usar \"static_assert\" en su lugar",
|
||||
"el uso de \"_Thread_local\" ha quedado obsoleto en C23; usar \"thread_local\" en su lugar",
|
||||
"El modo Microsoft debe estar habilitado para usar el archivo de módulo %sq (un módulo IFC de Microsoft Visual Studio).",
|
||||
"no se pudo abrir el archivo de módulo %sq",
|
||||
"se encuentra en la asignación de módulo para el módulo %sq",
|
||||
"se encuentra en el mapa de unidad de encabezado para %sq"
|
||||
]
|
||||
@@ -3343,14 +3343,14 @@
|
||||
"mappage de fichier de module pour '%s' spécifié plusieurs fois",
|
||||
"mappage d'unité d'en-tête pour '%s' spécifié plusieurs fois",
|
||||
"aucun mappage spécifié pour '%s'",
|
||||
"le mappage de fichier de module pour '%s' est non valide",
|
||||
null,
|
||||
"l'en-tête '%s' à importer est introuvable",
|
||||
"plusieurs fichiers dans la liste de fichiers de module correspondent à '%s'",
|
||||
"le fichier de module trouvé pour '%s' est destiné à un autre module",
|
||||
"n'importe quel genre de fichier de module",
|
||||
"impossible de lire le fichier de module",
|
||||
"la fonction intégrée n'est pas disponible, car le type char8_t n'est pas pris en charge avec les options actuelles",
|
||||
"l'option de ligne de commande --ms_await ne peut pas être spécifiée si les coroutines C++20 sont activées",
|
||||
null,
|
||||
"utilisation non standard du constructeur explicite %nod pour l'initialisation de l'élément d'agrégation par défaut",
|
||||
"la source ou la destination de l'intrinsèque de type memcpy ne pointe pas vers un objet",
|
||||
"l'intrinsèque de type memcpy tente de copier les types représentatifs distincts %t1 et %t2",
|
||||
@@ -3483,5 +3483,19 @@
|
||||
"une déclaration de spécialisation explicite ne peut pas être une déclaration friend",
|
||||
"le type std::float128_t n’est pas pris en charge ; std::float64_t sera utilisé à la place",
|
||||
"le type std::bfloat16_t n’est pas pris en charge ; std::float32_t sera utilisé à la place",
|
||||
"un guide de déduction ne peut pas être déclaré pour le modèle d’alias %no"
|
||||
"un guide de déduction ne peut pas être déclaré pour le modèle d’alias %no",
|
||||
"%n a été déclaré non disponible",
|
||||
"%n a été déclaré indisponible (%sq)",
|
||||
"en raison d’un attribut 'deprecated'",
|
||||
"les paramètres de modèle lambda explicites sont une fonctionnalité C++20",
|
||||
"l’utilisation de '_Noreturn' a été obsolète en C23; utiliser '[[noreturn]]' à la place",
|
||||
"l’utilisation de '_Alignof' a été obsolète en C23; utiliser 'alignof' à la place",
|
||||
"l’utilisation de '_Alignas' a été obsolète en C23; utiliser 'alignas' à la place",
|
||||
"l’utilisation de '_Bool' a été obsolète en C23; utiliser 'bool' à la place",
|
||||
"l’utilisation de '_Static_assert' a été obsolète en C23; utiliser 'static_assert' à la place",
|
||||
"l’utilisation de '_Thread_local' a été obsolète en C23; utiliser 'thread_local' à la place",
|
||||
"Le mode Microsoft doit être activé pour utiliser le fichier de module %sq (module IFC Microsoft Visual Studio)",
|
||||
"impossible d’ouvrir le fichier de module %sq",
|
||||
"trouvé dans le mappage de module pour le module %sq",
|
||||
"trouvé dans le mappage d’unité d’en-tête pour %sq"
|
||||
]
|
||||
@@ -3343,14 +3343,14 @@
|
||||
"il mapping del file del modulo per '%s' è stato specificato più di una volta",
|
||||
"il mapping dell'unità intestazione per '%s' è stato specificato più di una volta",
|
||||
"non è stato specificato alcun mapping per '%s'",
|
||||
"Il mapping del file del modulo per '%s' non è valido",
|
||||
null,
|
||||
"non è possibile trovare l'intestazione '%s' da importare",
|
||||
"più di un file nell'elenco file di modulo corrisponde a '%s'",
|
||||
"il file di modulo trovato per '%s' è riferito a un modulo diverso",
|
||||
"qualsiasi tipo di modulo",
|
||||
"non è possibile leggere il file del modulo",
|
||||
"la funzione predefinita non è disponibile perché il tipo char8_t non è supportato con le opzioni correnti",
|
||||
"non è possibile specificare l'opzione della riga di comando --ms_await se le coroutine di C++20 sono abilitate",
|
||||
null,
|
||||
"uso non standard del costruttore esplicito %nod per l'inizializzazione dell'elemento di aggregazione predefinito",
|
||||
"l'origine o la destinazione dell'intrinseco simile a memcpy non punta a un oggetto",
|
||||
"l'intrinseco simile a memcpy prova a copiare i tipi distinti dal punto di vista della rappresentazione %t1 e %t2",
|
||||
@@ -3483,5 +3483,19 @@
|
||||
"una dichiarazione di specializzazione esplicita non può essere una dichiarazione Friend",
|
||||
"il tipo std::float128_t non è supportato; verrà invece usato std::float64_t",
|
||||
"il tipo std::bfloat16_t non è supportato; verrà utilizzato std::float32_t",
|
||||
"non è possibile dichiarare una guida alla deduzione per il modello di alias %no"
|
||||
"non è possibile dichiarare una guida alla deduzione per il modello di alias %no",
|
||||
"%n dichiarato non disponibile",
|
||||
"%n dichiarato non disponibile (%sq)",
|
||||
"a causa di un attributo 'deprecato'",
|
||||
"i parametri espliciti del modello lambda sono una funzionalità di C++20",
|
||||
"l'uso di '_Noreturn' è obsoleto in C23; usare '[[noreturn]]'",
|
||||
"l'uso di '_Alignof' è obsoleto in C23; usare 'alignof'",
|
||||
"l'uso di '_Alignas' è obsoleto in C23; usare 'alignas'",
|
||||
"l'uso di '_Bool' è obsoleto in C23; usare 'bool'",
|
||||
"l'uso di '_Static_assert' è obsoleto in C23; usare 'static_assert'",
|
||||
"l'uso di '_Thread_local' è obsoleto in C23; usare 'thread_local'",
|
||||
"È necessario abilitare la modalità Microsoft per usare il file del modulo %sq (un modulo IFC Microsoft Visual Studio)",
|
||||
"non è stato possibile aprire il file del modulo %sq",
|
||||
"trovato nella mappa dei moduli per il modulo %sq",
|
||||
"trovato nella mappa delle unità intestazione per %sq"
|
||||
]
|
||||
@@ -2935,7 +2935,7 @@
|
||||
"amp 制限メンバー関数 %nfd の this-pointer に無効な型 %t",
|
||||
"amp 制限関数 %nfd に無効な戻り値の型 %t",
|
||||
"amp 制限関数 %nfd に無効なパラメーター型 %t",
|
||||
null,
|
||||
"amp 制限関数 %nfd に無効なコンストラクト",
|
||||
"無効なストレージ クラス %s (amp 制限関数 %nfd)",
|
||||
"%s は amp 制限関数 %nfd では許可されていません",
|
||||
"amp 制限関数に無効なキャスト",
|
||||
@@ -3343,14 +3343,14 @@
|
||||
"'%s' のモジュール ファイル マッピングが 2 回以上指定されました",
|
||||
"'%s' のヘッダー単位のマッピングが 2 回以上指定されました",
|
||||
"'%s' にマッピングが指定されていません",
|
||||
"'%s' のモジュール ファイル マッピングが無効です",
|
||||
null,
|
||||
"インポートするヘッダー '%s' が見つかりません",
|
||||
"モジュール ファイル リスト内の複数のファイルが '%s' と一致しています",
|
||||
"'%s' に対して見つかったモジュール ファイルは別のモジュール用です",
|
||||
"あらゆる種類のモジュール ファイル",
|
||||
"モジュール ファイルを読み取れません",
|
||||
"現在のオプションで char8_t 型がサポートされていないので、ビルトイン関数を使用できません",
|
||||
"--ms_await コマンド ライン オプションは、C++20 コルーチンが有効になっている場合は指定できません",
|
||||
null,
|
||||
"既定の集約要素の初期化における明示的なコンストラクター %nod の非標準的な使用",
|
||||
"memcpy に似た組み込み関数のソースやターゲットでオブジェクトが指定されていません",
|
||||
"memcpy に似た組み込み関数により、表現上個別の型である %t1 と %t2 のコピーが試行されます",
|
||||
@@ -3465,7 +3465,7 @@
|
||||
"'unavailable' 属性が原因です",
|
||||
"'asm' 修飾子の複製",
|
||||
"不完全な列挙型を持つビット フィールド、または無効な基本型を持つ不透明な列挙のいずれかです",
|
||||
"IFC パーティション %sq へのインデックスを使用して、IFC パーティション %sq から要素を構築しようとしました",
|
||||
"IFC パーティション %sq2 へのインデックスを使用して、IFC パーティション %sq から要素を構築しようとしました",
|
||||
"パーティション %sq は、%d2 が予期されたときにエントリ サイズを %d1 として指定しました",
|
||||
"モジュール %sq1 の処理中に予期しない IFC 要件が発生しました",
|
||||
"条件が行 %d で失敗しました (%s1: %sq2)",
|
||||
@@ -3478,9 +3478,24 @@
|
||||
"モジュール %sq は無効な並べ替え値です",
|
||||
"IFC モジュールから読み込まれた関数テンプレートが誤って %nd として解析されました",
|
||||
"モジュール %sq で IFC エンティティ参照を読み込めませんでした",
|
||||
"IFC インデックスの並べ替え = %d1、値 = %d2",
|
||||
"パーティション元 %sq 要素 %d1 (ファイル位置 %d2、相対位置 %d3)",
|
||||
"非単純デストラクターを持つクラス型では、チェーンされた指定子は許可されていません",
|
||||
"明示的特殊化宣言はフレンド宣言にできない場合があります",
|
||||
"std::float128_t 型はサポートされていません。代わりに std::float64_t が使用されます",
|
||||
"std::bfloat16_t 型はサポートされていません。代わりに std::float32_t が使用されます"
|
||||
"std::bfloat16_t 型はサポートされていません。代わりに std::float32_t が使用されます",
|
||||
"エイリアス テンプレート %no に対して演繹ガイドを宣言することはできません",
|
||||
"%n は使用できないと宣言されました",
|
||||
"%n は使用できないと宣言されました (%sq)",
|
||||
"'deprecated' 属性が原因です",
|
||||
"明示的なラムダ テンプレート パラメーターは C++20 機能です",
|
||||
"'_Noreturn' の使用は C23 で廃止されました。代わりに '[[noreturn]]' を使用してください",
|
||||
"'_Alignof' の使用は C23 で廃止されました。代わりに 'alignof' を使用してください",
|
||||
"'_Alignas' の使用は C23 で廃止されました。代わりに 'alignas' を使用してください",
|
||||
"'_Bool' の使用は C23 で廃止されました。代わりに 'bool' を使用してください",
|
||||
"'_Static_assert' の使用は C23 で廃止されました。代わりに 'static_assert' を使用してください",
|
||||
"'_Thread_local' の使用は C23 で廃止されました。代わりに 'thread_local' を使用してください",
|
||||
"モジュール ファイル %sq (Microsoft Visual Studio IFC モジュール) を使用するには、Microsoft モードを有効にする必要があります",
|
||||
"モジュール ファイル %sq を開くことができませんでした",
|
||||
"モジュール %sq のモジュール マップで見つかりました",
|
||||
"%sq のヘッダー ユニット マップで見つかりました"
|
||||
]
|
||||
@@ -3343,14 +3343,14 @@
|
||||
"'%s'에 대한 모듈 파일 매핑이 두 번 이상 지정되었습니다.",
|
||||
"'%s'에 대한 헤더 단위 매핑이 두 번 이상 지정되었습니다.",
|
||||
"'%s'에 대한 매핑이 지정되지 않았습니다.",
|
||||
"'%s'에 대한 모듈 파일 매핑이 잘못되었습니다.",
|
||||
null,
|
||||
"가져올 '%s' 헤더를 찾을 수 없습니다.",
|
||||
"모듈 파일 목록에 있는 두 개 이상의 파일이 '%s'과(와) 일치합니다.",
|
||||
"'%s'에 대해 찾은 모듈 파일이 다른 모듈에 대한 것입니다.",
|
||||
"모든 종류의 모듈 파일",
|
||||
"모듈 파일을 읽을 수 없음",
|
||||
"char8_t 형식이 현재 옵션에서 지원되지 않기 때문에 기본 제공 함수를 사용할 수 없습니다.",
|
||||
"C++20 코루틴을 사용하도록 설정한 경우 --ms_await 명령줄 옵션을 지정할 수 없습니다.",
|
||||
null,
|
||||
"기본 집계 요소 초기화에 명시적 생성자 %nod의 비표준 사용",
|
||||
"memcpy 유사 내장의 소스 또는 대상이 개체를 가리키지 않음",
|
||||
"memcpy 유사 내장이 대표적으로 차별화된 형식 %t1 및 %t2을(를) 복사하려고 시도함",
|
||||
@@ -3483,5 +3483,19 @@
|
||||
"명시적 전문화 선언은 friend 선언이 아닐 수 있습니다.",
|
||||
"std::float128_t 형식은 지원되지 않습니다. std::float64_t이(가) 대신 사용됩니다.",
|
||||
"std::bfloat16_t 형식은 지원되지 않습니다. std::float32_t이(가) 대신 사용됩니다.",
|
||||
"별칭 템플릿 %no에 대해 추론 가이드를 선언할 수 없습니다."
|
||||
"별칭 템플릿 %no에 대해 추론 가이드를 선언할 수 없습니다.",
|
||||
"%n이(가) 사용할 수 없음으로 선언되었습니다.",
|
||||
"%n이(가) 사용할 수 없음으로 선언되었습니다 (%sq).",
|
||||
"'deprecated' 특성 때문에",
|
||||
"명시적 람다 템플릿 매개 변수는 C++20 기능입니다.",
|
||||
"'_Noreturn'은 C23에서 더 이상 사용되지 않습니다. 대신 '[[noreturn]]'을 사용하세요.",
|
||||
"'_Alignof'는 C23에서 더 이상 사용되지 않습니다. 대신 'alignof'를 사용하세요.",
|
||||
"'_Alignas'는 C23에서 더 이상 사용되지 않습니다. 대신 'alignas'를 사용하세요.",
|
||||
"'_Bool'은 C23에서 더 이상 사용되지 않습니다. 대신 'bool'을 사용하세요.",
|
||||
"'_Static_assert'는 C23에서 더 이상 사용되지 않습니다. 대신 'static_assert'을 사용하세요.",
|
||||
"'_Thread_local'은 C23에서 더 이상 사용되지 않습니다. 대신 'thread_local'을 사용하세요.",
|
||||
"모듈 파일 %sq(Microsoft Visual Studio IFC 모듈)을 사용하려면 Microsoft 모드를 활성화해야 합니다.",
|
||||
"모듈 파일 %sq을(를) 열 수 없습니다.",
|
||||
"모듈 %sq에 대한 모듈 맵에서 찾았습니다.",
|
||||
"%sq의 헤더 단위 맵에서 찾았습니다."
|
||||
]
|
||||
@@ -3343,14 +3343,14 @@
|
||||
"mapowanie pliku modułu dla elementu „%s” zostało określone więcej niż raz",
|
||||
"mapowanie jednostki nagłówka dla elementu „%s” zostało określone więcej niż raz",
|
||||
"nie określono mapowania dla elementu „%s”",
|
||||
"mapowanie pliku modułu dla elementu „%s” jest nieprawidłowe",
|
||||
null,
|
||||
"nie można odnaleźć nagłówka „%s” do zaimportowania",
|
||||
"więcej niż jeden plik na liście plików modułu pasuje do elementu „%s”",
|
||||
"plik modułu znaleziony dla elementu „%s” jest dla innego modułu",
|
||||
"dowolny rodzaj pliku modułu",
|
||||
"nie można odczytać pliku modułu",
|
||||
"wbudowana funkcja jest niedostępna, ponieważ typ char8_t nie jest obsługiwany z bieżącymi opcjami",
|
||||
"nie można określić opcji wiersza polecenia --ms_await, jeśli włączono koprocedury języka C++20",
|
||||
null,
|
||||
"niestandardowe użycie konstruktora jawnego %nod dla domyślnej inicjalizacji elementu agregacji",
|
||||
"element źródłowy lub docelowy funkcji wewnętrznej podobnej do memcpy nie wskazuje obiektu",
|
||||
"Funkcja wewnętrzna podobna do memcpy próbuje skopiować reprezentacyjnie odrębne typy %t1 i %t2",
|
||||
@@ -3483,5 +3483,19 @@
|
||||
"jawna deklaracja specjalizacji nie może być deklaracją zaprzyjaźnioną",
|
||||
"typ std::float128_t nie jest obsługiwany; zamiast tego zostanie użyty std::float64_t",
|
||||
"Typ std::bfloat16_t nie jest obsługiwany; zamiast tego zostanie użyty std::float32_t",
|
||||
"nie można zadeklarować przewodnika wnioskowania dla szablonu aliasu %no"
|
||||
"nie można zadeklarować przewodnika wnioskowania dla szablonu aliasu %no",
|
||||
"Element %n został zadeklarowany jako niedostępny",
|
||||
"Element %n został zadeklarowany jako niedostępny (%sq)",
|
||||
"z powodu atrybutu „deprecated”",
|
||||
"jawne parametry szablonu lambda są funkcją języka C++20",
|
||||
"użycie elementu „_Noreturn” jest przestarzałe w języku C23; użyj zamiast tego „[[noreturn]]”",
|
||||
"użycie elementu „_Alignof” jest przestarzałe w C23; użyj zamiast tego elementu „alignof”",
|
||||
"użycie elementu „_Alignas” zostało uznane za przestarzałe w C23; użyj zamiast tego elementu „alignas”",
|
||||
"użycie elementu „_Bool” jest przestarzałe w języku C23; użyj zamiast tego opcji „bool”",
|
||||
"użycie elementu „_Static_assert” jest przestarzałe w języku C23; użyj zamiast tego elementu \"static_assert\"",
|
||||
"użycie elementu „_Thread_local” jest przestarzałe w języku C23; użyj zamiast tego elementu \"thread_local\"",
|
||||
"Aby można było używać pliku modułu %sq (modułu MICROSOFT Visual Studio IFC) musi być włączony tryb firmy Microsoft.",
|
||||
"nie można otworzyć pliku modułu %sq",
|
||||
"znaleziono w mapie modułu dla modułu %sq",
|
||||
"znaleziono na mapie jednostki nagłówka dla %sq"
|
||||
]
|
||||
@@ -3343,14 +3343,14 @@
|
||||
"o mapeamento de arquivo de módulo de '%s' foi especificado mais de uma vez",
|
||||
"o mapeamento de unidade de cabeçalho de '%s' foi especificado mais de uma vez",
|
||||
"não foi especificado nenhum mapeamento para '%s'",
|
||||
"o mapeamento de arquivo de módulo de '%s' é inválido",
|
||||
null,
|
||||
"não é possível localizar o cabeçalho '%s' a ser importado",
|
||||
"mais de um arquivo na lista de arquivos de módulo corresponde a '%s'",
|
||||
"o arquivo de módulo encontrado para '%s' é de um módulo diferente",
|
||||
"qualquer tipo de arquivo de módulo",
|
||||
"não é possível ler o arquivo de módulo",
|
||||
"a função interna não está disponível porque não há suporte para o tipo char8_t com as opções atuais",
|
||||
"a opção da linha de comando --ms_await não poderá ser especificada se as corrotinas do C++20 estiverem habilitadas",
|
||||
null,
|
||||
"o uso não padrão do construtor explícito %nod para inicialização do elemento de agregação padrão",
|
||||
"a origem ou o destino do intrínseco similar a memcpy não aponta para um objeto",
|
||||
"tentativas intrínsecas similares a memcpy de copiar tipos representacionalmente distintos %t1 e %t2",
|
||||
@@ -3483,5 +3483,19 @@
|
||||
"uma declaração de especialização explícita não pode ser uma declaração de friend",
|
||||
"o tipo std::float128_t não tem suporte; em vez disso, std::float64_t será usado",
|
||||
"o tipo std::bfloat16_t não tem suporte; em vez disso, std::float32_t será usado",
|
||||
"um guia de dedução não pode ser declarado para o modelo de alias %no"
|
||||
"um guia de dedução não pode ser declarado para o modelo de alias %no",
|
||||
"%n foi declarado indisponível",
|
||||
"%n foi declarado indisponível (%sq)",
|
||||
"por causa de um atributo 'obsoleto'",
|
||||
"parâmetros de modelo lambda explícitos são um recurso do C++20",
|
||||
"o uso de '_Noreturn' foi obsoleto em C23; use '[[noreturn]]' em vez disso",
|
||||
"o uso de '_Alignof' foi obsoleto em C23; use 'alignof' em vez disso",
|
||||
"o uso de '_Alignas' foi obsoleto em C23; use 'alignas' em vez disso",
|
||||
"o uso de '_Bool' foi obsoleto em C23; use 'bool' em vez disso",
|
||||
"o uso de '_Static_assert' foi obsoleto em C23; use 'static_assert' em vez disso",
|
||||
"o uso de '_Thread_local' foi obsoleto em C23; use 'thread_local' em vez disso",
|
||||
"O modo Microsoft deve estar ativado para usar o arquivo de módulo %sq (um módulo IFC do Microsoft Visual Studio)",
|
||||
"não foi possível abrir o arquivo de módulo %sq",
|
||||
"encontrado no mapa de módulo para o módulo %sq",
|
||||
"encontrado no mapa de unidade de cabeçalho para %sq"
|
||||
]
|
||||
@@ -3343,14 +3343,14 @@
|
||||
"сопоставление файла модуля для \"%s\" указано несколько раз",
|
||||
"сопоставление блока заголовка для \"%s\" указано несколько раз",
|
||||
"сопоставление для \"%s\" не указано",
|
||||
"сопоставление файла модуля для \"%s\" является недопустимым",
|
||||
null,
|
||||
"не удается найти заголовок \"%s\" для импорта",
|
||||
"несколько файлов в списке файлов модулей соответствуют \"%s\"",
|
||||
"файл модуля, обнаруженный для \"%s\", относится к другому модулю",
|
||||
"любой тип файла модуля",
|
||||
"не удалось прочитать файл модуля",
|
||||
"встроенная функция недоступна, так как тип char8_t не поддерживается с текущими параметрами.",
|
||||
"невозможно указать параметр командной строки --ms_await, если включены сопрограммы C++20.",
|
||||
null,
|
||||
"нестандартное использование явного конструктора %nod для агрегатной инициализации элементов по умолчанию.",
|
||||
"источник или назначение встроенной функции, похожей на memcpy, не указывает на объект",
|
||||
"Встроенная функция, похожая на memcpy, пытается скопировать различные с точки зрения представления типы %t1 и %t2",
|
||||
@@ -3483,5 +3483,19 @@
|
||||
"явное объявление специализации не может быть объявлением дружественной функции",
|
||||
"тип std::float128_t не поддерживается; вместо этого будет использоваться std::float64_t",
|
||||
"тип std::bfloat16_t не поддерживается; вместо этого будет использоваться std::float32_t",
|
||||
"руководство по дедукции не может быть объявлено для шаблона псевдонима %no"
|
||||
"руководство по дедукции не может быть объявлено для шаблона псевдонима %no",
|
||||
"%n объявлено недоступным",
|
||||
"%n объявлено недоступным (%sq)",
|
||||
"из-за атрибута \"deprecated\"",
|
||||
"явные параметры шаблона лямбда-выражения — это функция C++20",
|
||||
"использование \"_Noreturn\" устарело в C23; используйте вместо этого \"[[noreturn]]\"",
|
||||
"использование \"_Alignof\" устарело в C23; используйте вместо этого \"alignof\"",
|
||||
"использование \"_Alignas\" устарело в C23; используйте вместо этого \"alignas\"",
|
||||
"использование \"_Bool\" устарело в C23; используйте вместо этого \"bool\"",
|
||||
"использование \"_Static_assert\" устарело в C23; используйте вместо этого \"static_assert\"",
|
||||
"использование \"_Thread_local\" устарело в C23; используйте вместо этого \"thread_local\"",
|
||||
"Для использования файла модуля %sq должен быть включен режим Майкрософт (модуль IFC Microsoft Visual Studio)",
|
||||
"не удалось открыть файл модуля %sq",
|
||||
"найдено в сопоставлении модулей для модуля %sq",
|
||||
"найдено в сопоставлении единиц заголовка для %sq"
|
||||
]
|
||||
@@ -2935,7 +2935,7 @@
|
||||
"this işaretçisinde amp kısıtlamalı %nfd üye işlevi için %t türü geçersiz",
|
||||
"AMP ile sınırlı %nfd işlevi için %t dönüş türü geçersiz",
|
||||
"AMP ile sınırlı %nfd işlevi için %t parametre türü geçersiz",
|
||||
null,
|
||||
"AMP ile sınırlı %nfd işlevinde geçersiz yapı",
|
||||
"%s depolama sınıfı AMP ile sınırlı %nfd işlevi için geçersiz",
|
||||
"%s kullanımına AMP ile sınırlı %nfd işlevinde izin verilmiyor",
|
||||
"AMP ile sınırlı işlevde geçersiz tür dönüştürme",
|
||||
@@ -3343,14 +3343,14 @@
|
||||
"'%s' için modül dosyası eşlemesi birden çok kez belirtildi",
|
||||
"'%s' için üst bilgi birimi eşlemesi birden çok kez belirtildi",
|
||||
"'%s' için eşleme belirtilmedi",
|
||||
"'%s' için modül dosyası eşlemesi geçersiz",
|
||||
null,
|
||||
"içeri aktarılacak '%s' üst bilgisi bulunamıyor",
|
||||
"modül dosyası listesinde birden fazla dosya '%s' ile eşleşiyor",
|
||||
"'%s' için bulunan modül dosyası farklı bir modüle yönelik",
|
||||
"herhangi bir türde modül dosyası",
|
||||
"modül dosyası okunamıyor",
|
||||
"char8_t türü geçerli seçeneklerle desteklenmediği için yerleşik işlev kullanılamıyor",
|
||||
"C++20 eş yordamları etkinleştirilirse --ms_await komut satırı seçeneği belirtilemez",
|
||||
null,
|
||||
"varsayılan toplama öğesi başlatma için açık oluşturucu %nod için standart olmayan kullanım",
|
||||
"memcpy benzeri iç öğenin kaynağı veya hedefi bir nesneye işaret etmiyor",
|
||||
"memcpy benzeri iç öğe, temsili olarak farklı %t1 ve %t2 türlerini kopyalamaya çalışıyor",
|
||||
@@ -3465,7 +3465,7 @@
|
||||
"'kullanılamayan' bir öznitelik nedeniyle",
|
||||
"yinelenen 'asm' niteleyicisi",
|
||||
"tamamlanmamış sabit listesi türüne sahip bir bit alanı veya geçersiz temel türe sahip opak bir sabit listesi",
|
||||
"%sq IFC bölümü içinde bir dizin kullanılarak %sq IFC bölümündeki bir öğe oluşturulmaya çalışıldı",
|
||||
"%sq2 IFC bölümü içinde bir dizin kullanılarak %sq IFC bölümündeki bir öğe oluşturulmaya çalışıldı",
|
||||
"%sq bölümü, %d2 beklenirken girdi boyutunu %d1 olarak belirtti",
|
||||
"%sq1 modülü işlenirken beklenmeyen bir IFC gereksinimiyle karşılaşıldı",
|
||||
"koşul, %d numaralı satırda (%s1 içinde) başarısız oldu: %sq2",
|
||||
@@ -3478,9 +3478,24 @@
|
||||
"%sq modülü geçersiz sıralama değeri",
|
||||
"bir IFC modülünden yüklenen bir fonksiyon şablonu hatalı bir şekilde %nd olarak ayrıştırıldı",
|
||||
"%sq modülünde bir IFC varlık referansı yüklenemedi",
|
||||
"IFC dizin sıralaması = %d1, değer = %d2",
|
||||
"%sq bölümündeki %d1 öğesinden (%d2 dosya konumu, %d3 göreli konumu)",
|
||||
"zincirli belirleyicilere, önemsiz yıkıcıya sahip bir sınıf türü için izin verilmez",
|
||||
"açık bir özelleştirme bildirimi, arkadaş bildirimi olamaz",
|
||||
"std::float128_t türü desteklenmiyor; bunun yerine std::float64_t kullanılacak",
|
||||
"std::bfloat16_t türü desteklenmiyor; bunun yerine std::float32_t kullanılacak"
|
||||
"std::bfloat16_t türü desteklenmiyor; bunun yerine std::float32_t kullanılacak",
|
||||
"%no diğer ad şablonu için çıkarsama kılavuzu bildirilmemiş olabilir",
|
||||
"%n, kullanılamaz olarak bildirildi",
|
||||
"%n, kullanılamaz olarak bildirildi (%sq)",
|
||||
"'deprecated' özniteliği nedeniyle",
|
||||
"açık lambda şablon parametreleri bir C++20 özelliğidir",
|
||||
"'_Noreturn' kullanımı C23'te kullanımdan kaldırıldı. Bunun yerine '[[noreturn]]' kullanın",
|
||||
"'_Alignof' kullanımı C23'te kullanımdan kaldırıldı. Bunun yerine 'alignof' kullanın",
|
||||
"'_Alignas' kullanımı C23'te kullanımdan kaldırıldı. Bunun yerine 'alignas' kullanın",
|
||||
"'_Bool' kullanımı C23'te kullanımdan kaldırıldı. Bunun yerine 'bool' kullanın",
|
||||
"'_Static_assert' kullanımı C23'te kullanımdan kaldırıldı. Bunun yerine 'static_assert' kullanın",
|
||||
"'_Thread_local' kullanımı C23'te kullanımdan kaldırıldı. Bunun yerine 'thread_local' kullanın",
|
||||
"Microsoft modu, %sq modül dosyasını (Microsoft Visual Studio IFC modülü) kullanmak için etkinleştirilmelidir",
|
||||
"%sq modül dosyası açılamadı",
|
||||
"%sq modülü için modül eşlemesinde bulundu",
|
||||
"%sq için üst bilgi birimi eşlemesinde bulundu"
|
||||
]
|
||||
@@ -3343,14 +3343,14 @@
|
||||
"多次为“%s”指定了模块文件映射",
|
||||
"多次为“%s”指定了标头单元映射",
|
||||
"未为“%s”指定映射",
|
||||
"“%s”的模块文件映射无效",
|
||||
null,
|
||||
"找不到要导入的标头“%s”",
|
||||
"模块文件列表中有多个文件与“%s”匹配",
|
||||
"为“%s”找到的模块文件用于其他模块",
|
||||
"任何类型的模块文件",
|
||||
"无法读取模块文件",
|
||||
"内置函数不可用,因为当前选项不支持 char8_t 类型",
|
||||
"如果启用了 C++20 协同程序,则无法指定 --ms_await 命令行选项",
|
||||
null,
|
||||
"对默认聚合元素初始化使用显式构造函数 %nod 不是标准做法",
|
||||
"与 memcpy 类似的固有项的源或目标不指向对象",
|
||||
"与 memcpy 类似的固有项尝试复制在表达上不同的类型 %t1 和 %t2",
|
||||
@@ -3483,5 +3483,19 @@
|
||||
"显式专用化声明不能是友元声明",
|
||||
"不支持 std::float128_t 类型; 将改用 std::float64_t",
|
||||
"不支持 std::bfloat16_t 类型; 将改用 std::float32_t",
|
||||
"不能为别名模板 %no 声明推导指南"
|
||||
"不能为别名模板 %no 声明推导指南",
|
||||
"%n 已声明为不可用",
|
||||
"%n 已声明为不可用 (%sq)",
|
||||
"因为 'deprecated' 属性",
|
||||
"显式 Lambda 模板参数是 C++20 功能",
|
||||
"在 C23 中,已淘汰使用 '_Noreturn';请改用 '[[noreturn]]'",
|
||||
"在 C23 中,已淘汰使用 '_Alignof';请改用 'alignof'",
|
||||
"在 C23 中,已淘汰使用 '_Alignas';请改用 'alignas'",
|
||||
"在 C23 中,已淘汰使用 '_Bool';请改用 'bool'",
|
||||
"在 C23 中,已淘汰使用 '_Static_assert';请改用 'static_assert'",
|
||||
"在 C23 中,已淘汰使用 '_Thread_local';请改用 'thread_local'",
|
||||
"必须启用 Microsoft 模式才能使用模块文件 %sq (Microsoft Visual Studio IFC 模块)",
|
||||
"无法打开模块文件 %sq",
|
||||
"在模块 %sq 的模块映射中找到",
|
||||
"在 %sq 的标头单元映射中找到"
|
||||
]
|
||||
@@ -3343,14 +3343,14 @@
|
||||
"指定了多次 '%s' 的模組檔案對應",
|
||||
"指定了多次 '%s' 的標頭單位對應",
|
||||
"未指定 '%s' 的對應",
|
||||
"'%s' 的模組檔案對應無效",
|
||||
null,
|
||||
"找不到要匯入的標頭 '%s'",
|
||||
"模組檔案清單中有多個檔案與 '%s' 相符",
|
||||
"為 '%s' 找到的模組檔案會用於其他模組",
|
||||
"任何類型的模組檔案",
|
||||
"無法讀取模組檔案",
|
||||
"因為目前的選項不支援 char8_t 類型,所以無法使用內建函式",
|
||||
"如果啟用 C++ 20 協同程式,就不能指定 --ms_await 命令列選項",
|
||||
null,
|
||||
"非標準地使用明確的建構函式 %nod 進行預設彙總元素初始化",
|
||||
"內建類 memcpy 的來源或目的地未指向物件",
|
||||
"內建類 memcpy 嘗試複製具象相異類型 %t1 與 %t2",
|
||||
@@ -3483,5 +3483,19 @@
|
||||
"明確的特殊化宣告不能是 friend 宣告",
|
||||
"不支援 std::float128_t 類型,將改用 std::float64_t",
|
||||
"不支援 std::bfloat16_t 類型,將改用 std::float32_t",
|
||||
"別名範本不可宣告扣除指南 %no"
|
||||
"別名範本不可宣告扣除指南 %no",
|
||||
"已宣告 %n 無法使用",
|
||||
"已宣告 %n 無法使用 (%sq)",
|
||||
"因為 'deprecated' 屬性",
|
||||
"明確的 lambda 範本參數是 C++20 功能",
|
||||
"'_Noreturn' 的使用已在 C23 中過時; 請改用 '[[noreturn]]'",
|
||||
"'_Alignof' 的使用已在 C23 中過時; 請改用 'alignof'",
|
||||
"'_Alignas' 的使用已在 C23 中過時; 請改用 'alignas'",
|
||||
"'_Bool' 的使用已在 C23 中過時; 請改用 'bool'",
|
||||
"'_Static_assert' 的使用已在 C23 中過時; 請改用 'static_assert'",
|
||||
"'_Thread_local' 的使用已在 C23 中過時; 請改用 'thread_local'",
|
||||
"必須啟用 Microsoft 模式,才能使用模組檔案 %sq (Microsoft Visual Studio IFC 模組)",
|
||||
"無法開啟模組檔案 %sq",
|
||||
"在模組對應中找到模組 %sq",
|
||||
"在標頭單元對應中找到 %sq"
|
||||
]
|
||||
@@ -4,11 +4,11 @@
|
||||
"--microsoft",
|
||||
"--microsoft_bugs",
|
||||
"--microsoft_version",
|
||||
"1934",
|
||||
"1935",
|
||||
"--pack_alignment",
|
||||
"8",
|
||||
"-D_MSC_VER=1934",
|
||||
"-D_MSC_FULL_VER=193431933",
|
||||
"-D_MSC_VER=1935",
|
||||
"-D_MSC_FULL_VER=193532215",
|
||||
"-D_MSC_BUILD=0",
|
||||
"-D_M_ARM=7"
|
||||
],
|
||||
|
||||
@@ -4,12 +4,12 @@
|
||||
"--microsoft",
|
||||
"--microsoft_bugs",
|
||||
"--microsoft_version",
|
||||
"1934",
|
||||
"1935",
|
||||
"--pack_alignment",
|
||||
"8",
|
||||
"-D_CPPUNWIND=1",
|
||||
"-D_MSC_VER=1934",
|
||||
"-D_MSC_FULL_VER=193431933",
|
||||
"-D_MSC_VER=1935",
|
||||
"-D_MSC_FULL_VER=193532215",
|
||||
"-D_MSC_BUILD=0",
|
||||
"-D_M_ARM64=1"
|
||||
],
|
||||
|
||||
@@ -4,12 +4,12 @@
|
||||
"--microsoft",
|
||||
"--microsoft_bugs",
|
||||
"--microsoft_version",
|
||||
"1934",
|
||||
"1935",
|
||||
"--pack_alignment",
|
||||
"8",
|
||||
"-D_CPPUNWIND=1",
|
||||
"-D_MSC_VER=1934",
|
||||
"-D_MSC_FULL_VER=193431933",
|
||||
"-D_MSC_VER=1935",
|
||||
"-D_MSC_FULL_VER=193532215",
|
||||
"-D_MSC_BUILD=0",
|
||||
"-D_M_X64=100",
|
||||
"-D_M_AMD64=100"
|
||||
|
||||
@@ -4,11 +4,11 @@
|
||||
"--microsoft",
|
||||
"--microsoft_bugs",
|
||||
"--microsoft_version",
|
||||
"1934",
|
||||
"1935",
|
||||
"--pack_alignment",
|
||||
"8",
|
||||
"-D_MSC_VER=1934",
|
||||
"-D_MSC_FULL_VER=193431933",
|
||||
"-D_MSC_VER=1935",
|
||||
"-D_MSC_FULL_VER=193532215",
|
||||
"-D_MSC_BUILD=0",
|
||||
"-D_M_IX86=600",
|
||||
"-D_M_IX86_FP=2"
|
||||
|
||||
@@ -16,6 +16,6 @@
|
||||
"reinstall.extension.text5": "在 Windows 上:",
|
||||
"reinstall.extension.text6": "在 Linux 上:",
|
||||
"reinstall.extension.text7": "然后通过 VS Code 中的市场 UI 重新安装。",
|
||||
"reinstall.extension.text8": "如果 VS Code 无法部署扩展的正确版本,则可以 {0} 并使用 VS Code 中市场 UI 内 “...” 菜单下的 '从 VSIX... 安装' 选项安装系统的正确 VSIX。",
|
||||
"reinstall.extension.text8": "如果 VS Code 无法部署扩展的正确版本,则可以 {0} 并使用 VS Code 中市场 UI 内 \"...\" 菜单下的 \"从 VSIX... 安装\" 选项安装系统的正确 VSIX。",
|
||||
"download.vsix.link.title": "已从 VS Code 市场网站下载"
|
||||
}
|
||||
@@ -16,7 +16,9 @@
|
||||
"c_cpp.command.configurationProviderSelect.title": "更改配置提供程序...",
|
||||
"c_cpp.command.configurationEditJSON.title": "编辑配置(JSON)",
|
||||
"c_cpp.command.configurationEditUI.title": "编辑配置(UI)",
|
||||
"c_cpp.command.selectDefaultCompiler.title": "选择默认编译器",
|
||||
"c_cpp.command.selectDefaultCompiler.title": "选择默认编译器...",
|
||||
"c_cpp.command.selectIntelliSenseConfiguration.title": "选择 IntelliSense 配置...",
|
||||
"c_cpp.command.rescanCompilers.title": "重新扫描编译器",
|
||||
"c_cpp.command.switchHeaderSource.title": "切换标头/源",
|
||||
"c_cpp.command.enableErrorSquiggles.title": "启用错误波形曲线",
|
||||
"c_cpp.command.disableErrorSquiggles.title": "禁用错误波形曲线",
|
||||
@@ -405,5 +407,27 @@
|
||||
"c_cpp.debuggers.logging.category.verbose.description": "开发期间用于交互式调查的日志。这些日志应主要包含可用于调试的信息,并且不具有长期价值。",
|
||||
"c_cpp.debuggers.logging.category.warning.description": "突出显示应用程序流中的异常或意外事件,但不会导致应用程序执行停止的日志。",
|
||||
"c_cpp.debuggers.logging.category.error.description": "在当前执行流因失败而停止时突出显示的日志。这些应指示当前活动中的失败,而不是应用程序范围的失败。",
|
||||
"c_cpp.debuggers.logging.category.none.description": "不用于写入日志消息。指定事件日志类别不应写入任何消息。"
|
||||
"c_cpp.debuggers.logging.category.none.description": "不用于写入日志消息。指定事件日志类别不应写入任何消息。",
|
||||
"c_cpp.walkthrough.title": "C++ 开发入门",
|
||||
"c_cpp.walkthrough.description": "深入了解 VS Code 丰富的 C++ 开发体验。",
|
||||
"c_cpp.walkthrough.set.up.title": "设置 C++ 环境",
|
||||
"c_cpp.walkthrough.activating.description": "激活 C++ 扩展以确定是否已设置 C++ 环境。\n正在激活扩展...",
|
||||
"c_cpp.walkthrough.no.compilers.description": "无法在计算机上找到 C++ 编译器,这是使用 C++ 扩展所必需的。请按照右侧的说明安装一个编译器,然后单击下面的“查找我的新编译器”。\n[查找我的新编译器](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)",
|
||||
"c_cpp.walkthrough.compilers.found.description": "C++ 扩展需要与 C++ 编译器一起使用。通过单击下面的按钮从计算机上已有的编译器中选择一个。\n[选择我的默认编译器](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)",
|
||||
"c_cpp.walkthrough.compilers.found.altText": "显示在用户计算机上找到的选定默认编译器快捷检查和编译器列表的图像,其中一个已选定。",
|
||||
"c_cpp.walkthrough.create.cpp.file.title": "创建 C++ 文件",
|
||||
"c_cpp.walkthrough.create.cpp.file.description": "[打开](command:toSide:workbench.action.files.openFile)或[创建](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)一个 C++ 文件。请确保将其保存为 \".cpp\" 扩展名,例如 \"helloworld.cpp\"。\n[创建 C++ 文件](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)",
|
||||
"c_cpp.walkthrough.create.cpp.file.altText": "使用 C++ 项目打开 C++ 文件或文件夹。",
|
||||
"c_cpp.walkthrough.command.prompt.title": "从开发人员命令提示启动",
|
||||
"c_cpp.walkthrough.command.prompt.description": "使用 Microsoft Visual Studio C++ 编译器时,C++ 扩展需要从开发人员命令提示符中启动 VS Code。请按照右侧的说明重新启动。\n[重新加载窗口](command:workbench.action.reloadWindow)",
|
||||
"c_cpp.walkthrough.run.debug.title": "运行并调试 C++ 文件",
|
||||
"c_cpp.walkthrough.run.debug.mac.description": "打开你的 C++ 文件,在编辑器右上角点击播放按钮,或者在文件上按 F5。选择“clang++ - 构建和调试活动文件”以使用调试器运行。",
|
||||
"c_cpp.walkthrough.run.debug.linux.description": "打开 C++ 文件,在编辑器右上角点击播放按钮,或者在文件上按 F5。选择“g++ - 构建和调试活动文件”以使用调试器运行。",
|
||||
"c_cpp.walkthrough.run.debug.windows.description": "打开你的 C++ 文件,然后在编辑器右上角点击播放按钮,或者当你在该文件上时按下 F5。选择“cl.exe - 构建和调试活动文件”以使用调试器运行。",
|
||||
"c_cpp.walkthrough.run.debug.windows.altText": "显示 C++ 文件中的断点、f5 按钮和右上角的运行符号的图像",
|
||||
"c_cpp.walkthrough.customize.debugging.title": "自定义调试",
|
||||
"c_cpp.walkthrough.customize.debugging.mac.description": "可以通过在播放按钮右侧选择“添加调试配置”来自定义调试配置(例如,在运行时传递参数给程序)。自定义调试配置将保存在项目的 launch.json 文件中。\n[了解更多](https://code.visualstudio.com/docs/cpp/config-linux#_debug-helloworldcpp)",
|
||||
"c_cpp.walkthrough.customize.debugging.linux.description": "可以通过在播放按钮右侧选择“添加调试配置”来自定义调试配置(例如,在运行时传递参数给程序)。自定义调试配置将保存在项目的 launch.json 文件中。\n[了解更多](https://code.visualstudio.com/docs/cpp/config-msvc#_debug-helloworldcpp)",
|
||||
"c_cpp.walkthrough.customize.debugging.windows.description": "可以通过在播放按钮右侧选择“添加调试配置”来自定义调试配置(例如,在运行时传递参数给程序)。自定义的调试配置将保存在项目的 launch.json 文件中。\n[了解更多](https://code.visualstudio.com/docs/cpp/config-clang-mac#_debug-helloworldcpp)",
|
||||
"c_cpp.walkthrough.customize.debugging.altText": "显示下拉列表中“添加调试配置”的图像"
|
||||
}
|
||||
@@ -6,23 +6,26 @@
|
||||
{
|
||||
"unable.to.start": "无法启动 C/C++ 语言服务器。IntelliSense 功能将被禁用。错误: {0}",
|
||||
"check.permissions": "EPERM: 检查“{0}”的权限",
|
||||
"select.compile.commands": "选择要为 IntelliSense 配置的编译器",
|
||||
"select.compiler": "选择要为 IntelliSense 配置的编译器",
|
||||
"configure.intelliSense.forFolder": "你希望如何为“{0}”文件夹配置 IntelliSense?",
|
||||
"configure.intelliSense.thisFolder": "你希望如何为此文件夹配置 IntelliSense?",
|
||||
"found.string": "在 {0} 找到",
|
||||
"use.compiler": "使用 {0}",
|
||||
"configuration.providers": "配置提供程序",
|
||||
"compilers": "编译器",
|
||||
"setCompiler.message": "未配置编译器。除非设置自己的配置,否则 IntelliSense 可能无法正常工作。",
|
||||
"selectCompiler.string": "选择编译器",
|
||||
"selectAnotherCompiler.string": "在我的计算机上选择另一个编译器",
|
||||
"selectIntelliSenseConfiguration.string": "选择 IntelliSense 配置...",
|
||||
"use.provider": "使用 {0}",
|
||||
"use.compileCommands": "使用 {0}",
|
||||
"selectAnotherCompiler.string": "在我的计算机上选择另一个编译器...",
|
||||
"installCompiler.string": "帮助我安装编译器",
|
||||
"noConfig.string": "请勿配置编译器(不推荐)",
|
||||
"noConfig.string": "请勿适用编译器进行配置(不推荐)",
|
||||
"selectCompiler.string": "选择编译器",
|
||||
"confirmCompiler.string": "是",
|
||||
"selectCompiler.message": "已找到编译器 {0}。是否要使用此编译器配置 IntelliSense?",
|
||||
"server.crashed.restart": "语言服务器崩溃。正在重新启动...",
|
||||
"server.crashed2": "在过去 3 分钟内,语言服务器崩溃了 5 次。它不会重新启动。",
|
||||
"loggingLevel.changed": "{0} 已更改为: {1}",
|
||||
"provider.configure.folder": "{0} 想要为“{1}”文件夹配置 IntelliSense。",
|
||||
"provider.configure.this.folder": "{0} 想要为此文件夹配置 IntelliSense。",
|
||||
"allow.button": "允许",
|
||||
"dont.allow.button": "不允许",
|
||||
"ask.me.later.button": "稍后询问我",
|
||||
"dismiss.button": "消除",
|
||||
"diable.warnings.button": "禁用警告",
|
||||
"unable.to.provide.configuration": "{0} 无法为“{1}”提供 IntelliSense 配置信息。将改为使用“{2}”配置中的设置。",
|
||||
@@ -35,6 +38,11 @@
|
||||
"dont.show.again": "不再显示",
|
||||
"update.your.intellisense.settings": "更新 IntelliSense 设置或使用 Vcpkg 来安装用于帮助查找缺少的标头的库。",
|
||||
"configure.your.intellisense.settings": "配置 IntelliSense 设置以帮助查找缺少的标头。",
|
||||
"provider.configure.folder": "{0} 想要为“{1}”文件夹配置 IntelliSense。",
|
||||
"provider.configure.this.folder": "{0} 想要为此文件夹配置 IntelliSense。",
|
||||
"allow.button": "允许",
|
||||
"dont.allow.button": "不允许",
|
||||
"ask.me.later.button": "稍后询问我",
|
||||
"a.compile.commands.file": "compile_commands.json 文件",
|
||||
"auto-configure.intellisense.folder": "是否要使用 {0} 为“{1}”文件夹自动配置 IntelliSense?",
|
||||
"auto-configure.intellisense.this.folder": "是否要使用 {0} 为此文件夹自动配置 IntelliSense?",
|
||||
@@ -42,6 +50,5 @@
|
||||
"no.button": "否",
|
||||
"configurations.received": "已收到自定义配置:",
|
||||
"browse.configuration.received": "已收到自定义浏览配置: {0}",
|
||||
"no.compilers.found": "系统上未找到任何 C++ 编译器。对于你的平台,建议使用编辑器中的说明安装 {0}。",
|
||||
"compilers.found": "在你的系统上找到了以下 C++ 编译器。请在项目的 IntelliSense 配置中选择编译器。"
|
||||
"fallback.clipboard": "已复制声明/定义。"
|
||||
}
|
||||
@@ -7,6 +7,7 @@
|
||||
"find.all.references": "查找所有引用",
|
||||
"peek.references": "速览引用",
|
||||
"rename": "重命名",
|
||||
"call.hierarchy": "调用层次结构",
|
||||
"confirmed.reference.upper": "已确认引用",
|
||||
"confirmation.in.progress.upper": "正在进行确认",
|
||||
"comment.reference.upper": "注释引用",
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"c.cpp.configurations": "C/C++ 配置"
|
||||
}
|
||||
@@ -7,10 +7,12 @@
|
||||
"c.cpp.parsing.open.files.tooltip": "正在分析打开的文件",
|
||||
"click.to.preview": "单击以预览结果",
|
||||
"updating.intellisense.tooltip": "正在更新 IntelliSense",
|
||||
"c.cpp.configureIntelliSenseStatus.text": "配置 IntelliSense",
|
||||
"c.cpp.configureIntelliSenseStatus.cppText": "C/C++ 配置 IntelliSense",
|
||||
"select.command": "选择命令...",
|
||||
"select.code.analysis.command": "选择代码分析命令...",
|
||||
"c.cpp.configuration.tooltip": "C/C++ 配置",
|
||||
"c.cpp.references.statusbar": "C/C++ 引用状态",
|
||||
"c.cpp.compilerStatus.statusbar": "配置 IntelliSense",
|
||||
"c.cpp.intellisense.statusbar": "C/C++ IntelliSense 状态",
|
||||
"c.cpp.tagparser.statusbar": "C/C++ 标记分析器状态",
|
||||
"discovering.files.tooltip": "正在发现文件",
|
||||
@@ -28,7 +30,8 @@
|
||||
"select.workspace": "选择工作区文件夹…",
|
||||
"resume.parsing": "恢复工作区分析",
|
||||
"pause.parsing": "暂停工作区分析",
|
||||
"cancel.analysis": "取消 {0}",
|
||||
"resume.analysis": "恢复 {0}",
|
||||
"pause.analysis": "暂停 {0}"
|
||||
"cancel.analysis": "取消",
|
||||
"resume.analysis": "继续",
|
||||
"pause.analysis": "暂停",
|
||||
"another.analysis": "启动另一个..."
|
||||
}
|
||||
@@ -18,27 +18,28 @@
|
||||
"running.analysis.text": "Code Analysis: 正在运行",
|
||||
"paused.analysis.text": "Code Analysis: 已暂停",
|
||||
"mode.analysis.prefix": "Code Analysis 模式:",
|
||||
"c.cpp.configureIntelliSenseStatus.text": "配置 IntelliSense",
|
||||
"c.cpp.configureIntelliSenseStatus.cppText": "C/C++ 配置 IntelliSense",
|
||||
"select.command": "选择命令...",
|
||||
"cpptools.status.configuration": "选择配置",
|
||||
"select.code.analysis.command": "选择代码分析命令...",
|
||||
"c.cpp.configuration.tooltip": "C/C++ 配置",
|
||||
"c.cpp.references.statusbar": "C/C++ 引用状态",
|
||||
"c.cpp.compilerStatus.statusbar": "配置 IntelliSense",
|
||||
"cpptools.status.intellisense": "C/C++ IntelliSense 状态",
|
||||
"cpptools.status.tagparser": "C/C++ 标记分析器状态",
|
||||
"cpptools.detail.tagparser": "正在初始化...",
|
||||
"cpptools.status.codeanalysis": "C/C++ Code Analysis 状态",
|
||||
"c.cpp.codeanalysis.statusbar.runNow": "立即运行",
|
||||
"configuration.notselected.text": "配置: 未选择",
|
||||
"configuration.selected.text": "选择配置",
|
||||
"tagparser.pause.text": "暂停",
|
||||
"tagparser.resume.text": "继续",
|
||||
"intellisense.select.text": "选择编译器",
|
||||
"rescan.intellisense.text": "重新扫描",
|
||||
"rescan.intellisense.tooltip": "重新扫描 IntelliSense",
|
||||
"mode.codeanalysis.status": "自动",
|
||||
"mode.codeanalysis.status.automatic": "自动",
|
||||
"mode.codeanalysis.status.manual": "手动",
|
||||
"c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "选项",
|
||||
"startup.codeanalysis.status": "正在启动...",
|
||||
"c.cpp.codeanalysis.statusbar.showRunNowOptions": "立即运行",
|
||||
"running.analysis.processed.tooltip": "正在运行 {0}: {1} / {2} ({3}%)",
|
||||
"running.analysis.processed.tooltip": "正在运行: {0}/{1} ({2}%)",
|
||||
"select.a.configuration": "选择配置...",
|
||||
"edit.configuration.ui": "编辑配置(UI)",
|
||||
"edit.configuration.json": "编辑配置(JSON)",
|
||||
@@ -50,10 +51,10 @@
|
||||
"select.workspace": "选择工作区文件夹…",
|
||||
"resume.parsing": "恢复工作区分析",
|
||||
"pause.parsing": "暂停工作区分析",
|
||||
"cancel.analysis": "取消 {0}",
|
||||
"resume.analysis": "恢复 {0}",
|
||||
"pause.analysis": "暂停 {0}",
|
||||
"another.analysis": "启动另一个 {0}...",
|
||||
"cancel.analysis": "取消",
|
||||
"resume.analysis": "继续",
|
||||
"pause.analysis": "暂停",
|
||||
"another.analysis": "启动另一个...",
|
||||
"active.analysis": "在活动文件上运行 Code Analysis",
|
||||
"all.analysis": "在所有文件上运行 Code Analysis",
|
||||
"open.analysis": "在打开的文件上运行 Code Analysis"
|
||||
|
||||
@@ -167,8 +167,8 @@
|
||||
"overloads": "还有 %d 个重载",
|
||||
"specialization": "还有 1 个专业化",
|
||||
"specializations": "还有 %d 个专业化",
|
||||
"compiler": "注意: 未完全配置 IntelliSense。使用“选择默认编译器”命令完成配置。",
|
||||
"select_compiler": "选择编译器以定位系统标头",
|
||||
"intellisense_configuration": "注意: 未完全配置 IntelliSense。使用“选择 IntelliSense 配置”命令完成配置。",
|
||||
"select_intellisense_configuration": "选择 IntelliSense 配置以查找系统标头",
|
||||
"expands_to": "扩展到:",
|
||||
"attention_label": "注意:",
|
||||
"author_label": "作者:",
|
||||
@@ -287,12 +287,14 @@
|
||||
"e_cm_file_not_in_project": "找不到文件“%s”。",
|
||||
"refactor_create_declaration_definition_failed": "创建声明/定义失败: %s",
|
||||
"refactor_create_default_delete": "无法创建函数 \"%s\" 。不支持创建默认函数或已删除的函数。",
|
||||
"refactor_function_copied_to_clipboard": "函数签名已复制到剪贴板。",
|
||||
"refactor_function_not_created": "无法创建函数'%s'。",
|
||||
"refactor_ambiguous_locations": "无法找到函数“%s”的明确位置。",
|
||||
"refactor_file_not_in_project": "找不到文件“%s”。",
|
||||
"refactor_not_class_namespace": "找不到类或命名空间'%s'。",
|
||||
"refactor_operation_unsupported": "此操作不支持“%s”。",
|
||||
"unknown_error": "未知错误。",
|
||||
"run_select_compiler": "请运行“选择默认编译器”命令以定位系统标头。"
|
||||
"run_select_intellisense_configuration": "请运行“选择 IntelliSense 配置...”命令以定位系统标头。",
|
||||
"offer_copy_declaration": "\"{0}\" 的复制声明",
|
||||
"offer_copy_definition": "\"{0}\" 的复制定义",
|
||||
"refactor_copy_declaration_definition_failed": "将声明/定义复制到剪贴板失败: %s"
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"walkthrough.windows.title.open.dev.command.prompt": "使用开发人员命令提示符重新启动",
|
||||
"walkthrough.windows.background.dev.command.prompt": "正在使用带有 MSVC 编译器的 Windows 机器,因此需要从开发人员命令提示符中启动 VS Code,以便所有环境变量都能正确设置。要使用开发人员命令提示符重新启动:",
|
||||
"walkthrough.open.command.prompt": "通过在 Windows 开始菜单中键入 \"developer\" 来打开 VS 的开发人员命令提示提示。选择 VS 的开发人员命令提示提示,它将自动导航到当前打开的文件夹。",
|
||||
"walkthrough.windows.press.f5": "在命令提示符中键入 \"code\",然后按 Enter。这应该重新启动 VS Code 并将你带回此演练。"
|
||||
}
|
||||
@@ -5,6 +5,6 @@
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"walkthough.mac.install.compiler": "在 macOS 上安装 C++ 编译器",
|
||||
"walkthough.mac.text1": "如果要为 macOS 进行 C++ 开发,建议安装 Clang 编译器。只需在“终端”窗口中运行以下命令即可安装命令行开发人员工具:",
|
||||
"walkthough.mac.text1": "如果要为 macOS 进行 C++ 开发,建议安装 Clang 编译器。只需在“终端”窗口(Ctrl+Shift+ `)中运行以下命令即可安装命令行开发人员工具:",
|
||||
"walkthough.mac.text2": "然后,要验证已安装 clang,请在“终端”窗口中运行以下命令。你应该会看到一条消息,其中包含有关所使用的 Clang 版本的信息。"
|
||||
}
|
||||
+1
-1
@@ -9,7 +9,7 @@
|
||||
"walkthrough.windows.link.title1": "在 VS Code 中使用 C++ 和 适用于 Linux 的 Windows 子系统(WSL)",
|
||||
"walkthrough.windows.link.title2": "在带 MinGW 的 Windows 上安装 GCC",
|
||||
"walkthrough.windows.text2": "要安装 MSVC,请从 Visual Studio {1} 页面下载 {0}。",
|
||||
"walkthrough.windows.build.tools1": "Visual Studio 2019 生成工具",
|
||||
"walkthrough.windows.build.tools1": "Visual Studio 2022 生成工具",
|
||||
"walkthrough.windows.link.downloads": "下载",
|
||||
"walkthrough.windows.text3": "在 Visual Studio 安装程序中,检查 {0} 工作负载并选择 {1}。",
|
||||
"walkthrough.windows.build.tools2": "C++ 生成工具",
|
||||
|
||||
@@ -16,6 +16,6 @@
|
||||
"reinstall.extension.text5": "在 Windows 上:",
|
||||
"reinstall.extension.text6": "在 Linux 上:",
|
||||
"reinstall.extension.text7": "然後藉由 VS Code 中的市集 UI 重新安裝。",
|
||||
"reinstall.extension.text8": "如果 VS Code 未能部署正確版本的延伸模組,則您系統的正確 VSIX 可能是 {0},它是使用 VS Code 中市集 UI '...' 功能表下的 '從 VSIX 安裝...' 選項來進行安裝的。",
|
||||
"reinstall.extension.text8": "如果 VS Code 未能部署正確版本的延伸模組,則您系統的正確 VSIX 可能是 {0},並且是使用 VS Code 中市集 UI '...' 功能表下的 `從 VSIX 安裝...` 選項進行安裝的。",
|
||||
"download.vsix.link.title": "從 VS Code 市集網站下載"
|
||||
}
|
||||
@@ -16,7 +16,9 @@
|
||||
"c_cpp.command.configurationProviderSelect.title": "變更組態提供者...",
|
||||
"c_cpp.command.configurationEditJSON.title": "編輯組態 (JSON)",
|
||||
"c_cpp.command.configurationEditUI.title": "編輯組態 (UI)",
|
||||
"c_cpp.command.selectDefaultCompiler.title": "選取預設編譯器",
|
||||
"c_cpp.command.selectDefaultCompiler.title": "選取預設編譯器...",
|
||||
"c_cpp.command.selectIntelliSenseConfiguration.title": "選取 IntelliSense 設定...",
|
||||
"c_cpp.command.rescanCompilers.title": "掃描編譯器",
|
||||
"c_cpp.command.switchHeaderSource.title": "切換標頭/來源",
|
||||
"c_cpp.command.enableErrorSquiggles.title": "啟用錯誤波浪線",
|
||||
"c_cpp.command.disableErrorSquiggles.title": "停用錯誤波浪線",
|
||||
@@ -405,5 +407,27 @@
|
||||
"c_cpp.debuggers.logging.category.verbose.description": "開發期間用於互動式調查的記錄。這些記錄應該主要包含有助於偵錯的資訊,而且沒有長期價值。",
|
||||
"c_cpp.debuggers.logging.category.warning.description": "在應用程式流程中醒目提示或非預期事件,但不會導致應用程式停止執行停止的記錄。",
|
||||
"c_cpp.debuggers.logging.category.error.description": "當目前的執行流程因失敗而停止時,會醒目提示記錄。這些應該表示目前活動失敗,而不是整個應用程式的失敗。",
|
||||
"c_cpp.debuggers.logging.category.none.description": "非用於寫入記錄訊息。指定記錄類別不應寫入任何訊息。"
|
||||
"c_cpp.debuggers.logging.category.none.description": "非用於寫入記錄訊息。指定記錄類別不應寫入任何訊息。",
|
||||
"c_cpp.walkthrough.title": "開始使用 C++ 開發",
|
||||
"c_cpp.walkthrough.description": "深入了解 VS Code 豐富的 C++ 開發體驗。",
|
||||
"c_cpp.walkthrough.set.up.title": "設定您的 C++ 環境",
|
||||
"c_cpp.walkthrough.activating.description": "啟用 C++ 延伸模組,以判斷是否已設定您的 C++ 環境。\n正在啟用延伸模組...",
|
||||
"c_cpp.walkthrough.no.compilers.description": "我們在您的電腦上找不到 C++ 編譯器,這是使用 C++ 延伸模組所需項目。請遵循右側的指示來安裝,然後按一下下方的 [尋找我的新編譯器]。\n[尋找我的新編譯器](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)",
|
||||
"c_cpp.walkthrough.compilers.found.description": "C++ 延伸模組可與 C++ 編譯器搭配運作。按一下下方的按鈕,從電腦上已存在的編譯器選取一個。\n[選取我的預設編譯器](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)",
|
||||
"c_cpp.walkthrough.compilers.found.altText": "影像顯示選取預設編譯器快速選取,以及在使用者電腦上找到的編譯器清單 (已選取其中一個)。",
|
||||
"c_cpp.walkthrough.create.cpp.file.title": "建立 C++ 檔案",
|
||||
"c_cpp.walkthrough.create.cpp.file.description": "[開啟](command:toSide:workbench.action.files.openFile) 或 [建立](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) C++ 檔案。務必使用 \".cpp\" 副檔名來儲存它,例如 \"helloworld.cpp\"。\n[建立 C++ 檔案](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)",
|
||||
"c_cpp.walkthrough.create.cpp.file.altText": "使用 C++ 專案開啟 C++ 檔案或資料夾。",
|
||||
"c_cpp.walkthrough.command.prompt.title": "從開發人員命令提示字元啟動",
|
||||
"c_cpp.walkthrough.command.prompt.description": "使用 Microsoft Visual Studio C++ 編譯器時,C++ 延伸模組會要求您從開發人員命令提示字元啟動 VS Code。請遵循右側的指示來重新啟動。\n[重新載入視窗](command:workbench.action.reloadWindow)",
|
||||
"c_cpp.walkthrough.run.debug.title": "執行和偵錯您的 C++ 檔案",
|
||||
"c_cpp.walkthrough.run.debug.mac.description": "開啟您的 C++ 檔案,然後按一下編輯器右上角的執行按鈕,或在開啟檔案上時按 F5。選取 [clang++ - 建置及偵錯使用中的檔案] 以使用偵錯工具執行。",
|
||||
"c_cpp.walkthrough.run.debug.linux.description": "開啟您的 C++ 檔案,然後按一下編輯器右上角的執行按鈕,或在開啟檔案上時按 F5。選取 [g++ - 建置及偵錯使用中的檔案] 以使用偵錯工具執行。",
|
||||
"c_cpp.walkthrough.run.debug.windows.description": "開啟您的 C++ 檔案,然後按一下編輯器右上角的播放按鈕,或在開啟檔案上時按 F5。選取 [cl.exe - 建置及偵錯使用中的檔案] 以使用偵錯工具執行。",
|
||||
"c_cpp.walkthrough.run.debug.windows.altText": "影像顯示 C++ 檔案中的中斷點、F5 按鈕,以及右上方的執行符號",
|
||||
"c_cpp.walkthrough.customize.debugging.title": "自訂偵錯",
|
||||
"c_cpp.walkthrough.customize.debugging.mac.description": "您可以選取播放按鈕右側的 [新增偵錯設定],以自訂您的偵錯設定 (例如,在執行階段將引數傳遞至程式)。自訂偵錯設定會儲存於專案的 launch.json 檔案中。\n[深入了解](https://code.visualstudio.com/docs/cpp/config-linux#_debug-helloworldcpp)",
|
||||
"c_cpp.walkthrough.customize.debugging.linux.description": "您可以選取播放按鈕右側的 [新增偵錯設定],以自訂您的偵錯設定 (例如,在執行階段將引數傳遞至程式)。自訂偵錯設定會儲存於專案的 launch.json 檔案中。\n[深入了解](https://code.visualstudio.com/docs/cpp/config-msvc#_debug-helloworldcpp)",
|
||||
"c_cpp.walkthrough.customize.debugging.windows.description": "您可以選取播放按鈕右邊的 [新增偵錯設定],以自訂您的偵錯設定 (例如,在執行階段將引數傳遞至程式)。自訂偵錯設定會儲存於專案的 launch.json 檔案中。\n[深入了解](https://code.visualstudio.com/docs/cpp/config-clang-mac#_debug-helloworldcpp)",
|
||||
"c_cpp.walkthrough.customize.debugging.altText": "影像顯示下拉式清單中 [新增偵錯設定]"
|
||||
}
|
||||
@@ -6,23 +6,26 @@
|
||||
{
|
||||
"unable.to.start": "無法啟動 C/C + + 語言伺服器。將停用 IntelliSense 功能。錯誤: {0}",
|
||||
"check.permissions": "EPERM: 檢查 '{0}' 的權限",
|
||||
"select.compile.commands": "選取要設定 IntelliSense 的編譯器",
|
||||
"select.compiler": "選取要設定 IntelliSense 的編譯器",
|
||||
"configure.intelliSense.forFolder": "想如何為 '{0}' 資料夾設定 IntelliSense。",
|
||||
"configure.intelliSense.thisFolder": "想如何為此資料夾設定 IntelliSense。",
|
||||
"found.string": "在 {0} 找到",
|
||||
"use.compiler": "使用 {0}",
|
||||
"configuration.providers": "設定提供者",
|
||||
"compilers": "編譯器",
|
||||
"setCompiler.message": "您尚未設定 IntelliSense。除非您自行加以設定,否則 IntelliSense 可能無法運作。",
|
||||
"selectCompiler.string": "選取編譯器",
|
||||
"selectAnotherCompiler.string": "在我的機器上選取另一個編譯器",
|
||||
"selectIntelliSenseConfiguration.string": "選取 IntelliSense 設定...",
|
||||
"use.provider": "使用 {0}",
|
||||
"use.compileCommands": "使用 {0}",
|
||||
"selectAnotherCompiler.string": "在我的機器上選取另一個編譯器...",
|
||||
"installCompiler.string": "協助我安裝編譯器",
|
||||
"noConfig.string": "不要設定編譯器 (不建議)",
|
||||
"selectCompiler.string": "選取編譯器",
|
||||
"confirmCompiler.string": "是",
|
||||
"selectCompiler.message": "找到編譯器 {0}。您要使用此編譯器來設定 IntelliSense 嗎?",
|
||||
"server.crashed.restart": "語言伺服器當機。正在重新啟動...",
|
||||
"server.crashed2": "語言伺服器在過去 3 分鐘內發生 5 次故障。將不會重新啟動。",
|
||||
"loggingLevel.changed": "{0} 已變更為: {1}",
|
||||
"provider.configure.folder": "{0} 想要為 '{1}' 資料夾設定 IntelliSense。",
|
||||
"provider.configure.this.folder": "{0} 想要為此資料夾設定 IntelliSense。",
|
||||
"allow.button": "允許",
|
||||
"dont.allow.button": "不允許",
|
||||
"ask.me.later.button": "稍後詢問我",
|
||||
"dismiss.button": "關閉",
|
||||
"diable.warnings.button": "停用警告",
|
||||
"unable.to.provide.configuration": "{0} 無法提供 '{1}' 的 IntelliSense 組態資訊。將改用來自 '{2}' 組態的設定。",
|
||||
@@ -35,6 +38,11 @@
|
||||
"dont.show.again": "不要再顯示",
|
||||
"update.your.intellisense.settings": "更新您的 IntelliSense 設定或使用 Vcpkg 安裝程式庫,以協助找出缺少的標頭。",
|
||||
"configure.your.intellisense.settings": "設定您的 IntelliSense 設定,以協助找出缺少的標頭。",
|
||||
"provider.configure.folder": "{0} 想要為 '{1}' 資料夾設定 IntelliSense。",
|
||||
"provider.configure.this.folder": "{0} 想要為此資料夾設定 IntelliSense。",
|
||||
"allow.button": "允許",
|
||||
"dont.allow.button": "不允許",
|
||||
"ask.me.later.button": "稍後詢問我",
|
||||
"a.compile.commands.file": "compile_commands.json 檔案",
|
||||
"auto-configure.intellisense.folder": "是否要使用 {0} 自動設定 '{1}' 資料夾的 IntelliSense?",
|
||||
"auto-configure.intellisense.this.folder": "是否要使用 {0} 自動設定此資料夾的 IntelliSense?",
|
||||
@@ -42,6 +50,5 @@
|
||||
"no.button": "否",
|
||||
"configurations.received": "收到的自訂組態:",
|
||||
"browse.configuration.received": "收到的自訂瀏覽組態: {0}",
|
||||
"no.compilers.found": "在您的系統 C++ 上找不到編譯器。針對您的平台,建議您使用編輯器中的指示來安裝 {0}。",
|
||||
"compilers.found": "我們在您的系統上找到下列 C++ 編譯器。在專案的 IntelliSense 設定中選擇編譯器。"
|
||||
"fallback.clipboard": "已複製宣告/定義。"
|
||||
}
|
||||
@@ -7,6 +7,7 @@
|
||||
"find.all.references": "尋找所有參考",
|
||||
"peek.references": "瞄核參考",
|
||||
"rename": "重新命名",
|
||||
"call.hierarchy": "呼叫階層圖",
|
||||
"confirmed.reference.upper": "已確認參考",
|
||||
"confirmation.in.progress.upper": "正在確認",
|
||||
"comment.reference.upper": "註解參考",
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"c.cpp.configurations": "C/C++ 設定"
|
||||
}
|
||||
@@ -7,10 +7,12 @@
|
||||
"c.cpp.parsing.open.files.tooltip": "正在剖析開啟的檔案",
|
||||
"click.to.preview": "按一下以預覽結果",
|
||||
"updating.intellisense.tooltip": "正在更新 IntelliSense...",
|
||||
"c.cpp.configureIntelliSenseStatus.text": "設定 IntelliSense",
|
||||
"c.cpp.configureIntelliSenseStatus.cppText": "C/C++ 設定 IntelliSense",
|
||||
"select.command": "選取命令...",
|
||||
"select.code.analysis.command": "選取程式碼分析命令...",
|
||||
"c.cpp.configuration.tooltip": "C/C++ 組態",
|
||||
"c.cpp.references.statusbar": "C/C++ 參考狀態",
|
||||
"c.cpp.compilerStatus.statusbar": "設定 IntelliSense",
|
||||
"c.cpp.intellisense.statusbar": "C/C++ IntelliSense 狀態",
|
||||
"c.cpp.tagparser.statusbar": "C/C++ 標記剖析器狀態",
|
||||
"discovering.files.tooltip": "正在探索檔案",
|
||||
@@ -28,7 +30,8 @@
|
||||
"select.workspace": "選取工作區資料夾...",
|
||||
"resume.parsing": "繼續工作區剖析",
|
||||
"pause.parsing": "暫停工作區剖析",
|
||||
"cancel.analysis": "取消 {0}",
|
||||
"resume.analysis": "繼續 {0}",
|
||||
"pause.analysis": "暫停 {0}"
|
||||
"cancel.analysis": "取消",
|
||||
"resume.analysis": "繼續",
|
||||
"pause.analysis": "暫停",
|
||||
"another.analysis": "啟動另一個..."
|
||||
}
|
||||
@@ -18,27 +18,28 @@
|
||||
"running.analysis.text": "Code Analysis: 執行中",
|
||||
"paused.analysis.text": "Code Analysis: 已暫停",
|
||||
"mode.analysis.prefix": "Code Analysis 模式: ",
|
||||
"c.cpp.configureIntelliSenseStatus.text": "設定 IntelliSense",
|
||||
"c.cpp.configureIntelliSenseStatus.cppText": "C/C++ 設定 IntelliSense",
|
||||
"select.command": "選取命令...",
|
||||
"cpptools.status.configuration": "選取設定",
|
||||
"select.code.analysis.command": "選取程式碼分析命令...",
|
||||
"c.cpp.configuration.tooltip": "C/C++ 組態",
|
||||
"c.cpp.references.statusbar": "C/C++ 參考狀態",
|
||||
"c.cpp.compilerStatus.statusbar": "設定 IntelliSense",
|
||||
"cpptools.status.intellisense": "C/C++ IntelliSense 狀態",
|
||||
"cpptools.status.tagparser": "C/C++ 標記剖析器狀態",
|
||||
"cpptools.detail.tagparser": "正在初始化...",
|
||||
"cpptools.status.codeanalysis": "C/C++ Code Analysis 狀態",
|
||||
"c.cpp.codeanalysis.statusbar.runNow": "立即執行",
|
||||
"configuration.notselected.text": "設定: 未選取",
|
||||
"configuration.selected.text": "選取設定",
|
||||
"tagparser.pause.text": "暫停",
|
||||
"tagparser.resume.text": "繼續",
|
||||
"intellisense.select.text": "選取編譯器",
|
||||
"rescan.intellisense.text": "重新掃描",
|
||||
"rescan.intellisense.tooltip": "重新掃描 IntelliSense",
|
||||
"mode.codeanalysis.status": "自動",
|
||||
"mode.codeanalysis.status.automatic": "自動",
|
||||
"mode.codeanalysis.status.manual": "手動",
|
||||
"c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "選項",
|
||||
"startup.codeanalysis.status": "正在啟動...",
|
||||
"c.cpp.codeanalysis.statusbar.showRunNowOptions": "立即執行",
|
||||
"running.analysis.processed.tooltip": "正在執行 {0}: {1} / {2} ({3}%)",
|
||||
"running.analysis.processed.tooltip": "正在執行: {0} / {1} ({2}%)",
|
||||
"select.a.configuration": "選取設定...",
|
||||
"edit.configuration.ui": "編輯設定 (UI)",
|
||||
"edit.configuration.json": "編輯設定 (JSON)",
|
||||
@@ -50,10 +51,10 @@
|
||||
"select.workspace": "選取工作區資料夾...",
|
||||
"resume.parsing": "繼續工作區剖析",
|
||||
"pause.parsing": "暫停工作區剖析",
|
||||
"cancel.analysis": "取消 {0}",
|
||||
"resume.analysis": "繼續 {0}",
|
||||
"pause.analysis": "暫停 {0}",
|
||||
"another.analysis": "啟動另一個 {0}...",
|
||||
"cancel.analysis": "取消",
|
||||
"resume.analysis": "繼續",
|
||||
"pause.analysis": "暫停",
|
||||
"another.analysis": "啟動另一個...",
|
||||
"active.analysis": "在使用中檔案上執行程式碼分析",
|
||||
"all.analysis": "在所有檔案上執行程式碼分析",
|
||||
"open.analysis": "在開啟檔案上執行程式碼分析"
|
||||
|
||||
@@ -167,8 +167,8 @@
|
||||
"overloads": "還有 %d 次多載",
|
||||
"specialization": "還有 1 次特殊化",
|
||||
"specializations": "還有 %d 次特殊化",
|
||||
"compiler": "注意: 未完全設定 IntelliSense。使用 [選取預設編譯器] 命令來完成設定。",
|
||||
"select_compiler": "選取編譯器以尋找系統標頭",
|
||||
"intellisense_configuration": "注意: 未完全設定 IntelliSense。使用 'Select IntelliSense Configuration...' 命令來完成設定。",
|
||||
"select_intellisense_configuration": "選取 IntelliSense 設定以尋找系統標頭",
|
||||
"expands_to": "展開至:",
|
||||
"attention_label": "注意:",
|
||||
"author_label": "作者:",
|
||||
@@ -287,12 +287,14 @@
|
||||
"e_cm_file_not_in_project": "找不到檔案 '%s'。",
|
||||
"refactor_create_declaration_definition_failed": "宣告/定義建立失敗: %s",
|
||||
"refactor_create_default_delete": "無法建立函數 '%s'。不支援建立已預設或已刪除的函數。",
|
||||
"refactor_function_copied_to_clipboard": "已將函數簽章複製到剪貼簿。",
|
||||
"refactor_function_not_created": "無法建立函式 '%s'。",
|
||||
"refactor_ambiguous_locations": "找不到函式 '%s' 的明確位置。",
|
||||
"refactor_file_not_in_project": "找不到檔案 '%s'。",
|
||||
"refactor_not_class_namespace": "找不到類別或命名空間 '%s'。",
|
||||
"refactor_operation_unsupported": "'%s' 不支援此作業。",
|
||||
"unknown_error": "未知的錯誤。",
|
||||
"run_select_compiler": "請執行 '选择默认编译器' 命令以尋找您的系統標頭。"
|
||||
"run_select_intellisense_configuration": "請執行 'Select IntelliSense Configuration...' 命令以尋找您的系統標頭。",
|
||||
"offer_copy_declaration": "複製 '{0}' 的宣告",
|
||||
"offer_copy_definition": "複製 '{0}' 的定義",
|
||||
"refactor_copy_declaration_definition_failed": "將宣告/定義複製到剪貼簿已失敗: %s"
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"walkthrough.windows.title.open.dev.command.prompt": "使用開發人員命令提示字元重新啟動",
|
||||
"walkthrough.windows.background.dev.command.prompt": "您正使用 Windows 電腦搭配 MSVC 編譯器,因此您必須從開發人員命令提示字元啟動 VS Code,以便正確設定所有環境變數。若要使用開發人員命令提示字元重新啟動:",
|
||||
"walkthrough.open.command.prompt": "在 Windows 開始功能表中輸入「開發人員」,開啟 [VS 的開發人員命令提示字元]。選取 [VS 的開發人員命令提示字元],這會自動瀏覽至您目前開啟的資料夾。",
|
||||
"walkthrough.windows.press.f5": "在命令提示字元中輸入 \"code\",然後按 Enter。這應該會重新啟動 VS Code,並帶您回到此逐步解說。"
|
||||
}
|
||||
@@ -5,6 +5,6 @@
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"walkthough.mac.install.compiler": "在 macOS 上安裝 C++ 編譯器",
|
||||
"walkthough.mac.text1": "如果您執行 macOS 的 C++ 開發,建議您安裝 Clang 編譯器。您只需要在終端機視窗中執行下列命令,以安裝命令列開發人員工具:",
|
||||
"walkthough.mac.text1": "如果您執行 macOS 的 C++ 開發,建議您安裝 Clang 編譯器。您只需要在終端機視窗 (Ctrl+Shift+`) 中執行下列命令,以安裝命令列開發人員工具:",
|
||||
"walkthough.mac.text2": "然後,若要確認是否已安裝 Clang,請在終端視窗中執行下列命令。您應該會看到一個訊息,其中包含您目前使用之 Clang 版本的資訊。"
|
||||
}
|
||||
+1
-1
@@ -9,7 +9,7 @@
|
||||
"walkthrough.windows.link.title1": "在 VS Code 中使用 C++ 與 Windows 子系統 Linux 版 (WSL) ",
|
||||
"walkthrough.windows.link.title2": "使用 MinGW 在 Windows 安裝 GCC",
|
||||
"walkthrough.windows.text2": "若要安裝 MSVC,請 {0}從 Visual Studio{1} 頁面下載。",
|
||||
"walkthrough.windows.build.tools1": "Build Tools for Visual Studio 2019",
|
||||
"walkthrough.windows.build.tools1": "Build Tools for Visual Studio 2022",
|
||||
"walkthrough.windows.link.downloads": "下載",
|
||||
"walkthrough.windows.text3": "在 Visual Studio 安裝程式中,檢查 {0} 工作負載,然後選取 {1}。",
|
||||
"walkthrough.windows.build.tools2": "C++ 組建工具",
|
||||
|
||||
@@ -16,6 +16,6 @@
|
||||
"reinstall.extension.text5": "Ve Windows:",
|
||||
"reinstall.extension.text6": "V Linuxu:",
|
||||
"reinstall.extension.text7": "Pak ji znovu nainstalujte přes uživatelské rozhraní Marketplace ve VS Code.",
|
||||
"reinstall.extension.text8": "Pokud VS Code nenasadí správnou verzi rozšíření, můžete správný soubor VSIX pro váš systém {0} a nainstalovat pomocí možnosti 'Instalovat z VSIX...'. v uživatelském rozhraní Marketplace ve VS Code.",
|
||||
"reinstall.extension.text8": "Pokud VS Code nenasadí správnou verzi rozšíření, můžete správný soubor VSIX pro váš systém {0} a nainstalovat pomocí možnosti Instalovat z VSIX.... v uživatelském rozhraní Marketplace ve VS Code.",
|
||||
"download.vsix.link.title": "staženo z webu VS Code Marketplace"
|
||||
}
|
||||
@@ -16,7 +16,9 @@
|
||||
"c_cpp.command.configurationProviderSelect.title": "Změnit poskytovatele konfigurací...",
|
||||
"c_cpp.command.configurationEditJSON.title": "Upravit konfigurace (JSON)",
|
||||
"c_cpp.command.configurationEditUI.title": "Upravit konfigurace (uživatelské rozhraní)",
|
||||
"c_cpp.command.selectDefaultCompiler.title": "Vybrat výchozí kompilátor",
|
||||
"c_cpp.command.selectDefaultCompiler.title": "Vybrat výchozí kompilátor...",
|
||||
"c_cpp.command.selectIntelliSenseConfiguration.title": "Vybrat konfiguraci IntelliSense...",
|
||||
"c_cpp.command.rescanCompilers.title": "Znovu prohledat kompilátory",
|
||||
"c_cpp.command.switchHeaderSource.title": "Přepnout hlavičku/zdroj",
|
||||
"c_cpp.command.enableErrorSquiggles.title": "Povolit podtrhávání chyb vlnovkou",
|
||||
"c_cpp.command.disableErrorSquiggles.title": "Zakázat podtrhávání chyb vlnovkou",
|
||||
@@ -405,5 +407,27 @@
|
||||
"c_cpp.debuggers.logging.category.verbose.description": "Protokoly, které se používají k interaktivnímu prověřování během vývoje. Tyto protokoly by měly primárně obsahovat informace užitečné pro ladění a neměly by mít dlouhodobou hodnotu.",
|
||||
"c_cpp.debuggers.logging.category.warning.description": "Protokoly, které zvýrazňují neobvyklou nebo neočekávanou událost v toku aplikace, ale jinak nezpůsobí zastavení spuštění aplikace.",
|
||||
"c_cpp.debuggers.logging.category.error.description": "Protokoly, které zvýrazňují, když se aktuální tok provádění zastaví kvůli selhání. Ty by měly značit selhání v aktuální aktivitě, nikoli selhání v celé aplikaci.",
|
||||
"c_cpp.debuggers.logging.category.none.description": "Nepoužívá se k zápisu zpráv protokolu. Určuje, že kategorie protokolování by neměla zapisovat žádné zprávy."
|
||||
"c_cpp.debuggers.logging.category.none.description": "Nepoužívá se k zápisu zpráv protokolu. Určuje, že kategorie protokolování by neměla zapisovat žádné zprávy.",
|
||||
"c_cpp.walkthrough.title": "Začínáme s vývojem v jazyce C++",
|
||||
"c_cpp.walkthrough.description": "Ponořte se do bohatého vývojového prostředí jazyka C++ VS Code.",
|
||||
"c_cpp.walkthrough.set.up.title": "Nastavení vašeho prostředí C++",
|
||||
"c_cpp.walkthrough.activating.description": "Aktivuje se rozšíření C++, aby se zjistilo, jestli je vaše prostředí C++ nastavené.\nRozšíření se aktivuje...",
|
||||
"c_cpp.walkthrough.no.compilers.description": "Na vašem počítači jsme nenašli kompilátor C++, který je nutný k použití rozšíření C++. Nainstalujte si ho podle pokynů na pravé straně a potom klikněte níže na Najít můj nový kompilátor.\n[Najít můj nový kompilátor](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)",
|
||||
"c_cpp.walkthrough.compilers.found.description": "Rozšíření C++ funguje s kompilátorem C++. Vyberte jednu z těch, které už máte na počítači, kliknutím na tlačítko níže.\n [Vybrat můj Výchozí kompilátor](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)",
|
||||
"c_cpp.walkthrough.compilers.found.altText": "Obrázek znázorňující výběr výchozího rychlého výběru kompilátoru a seznam kompilátorů nalezených na počítači uživatelů, z nichž jeden je vybraný.",
|
||||
"c_cpp.walkthrough.create.cpp.file.title": "Vytvoření souboru C++",
|
||||
"c_cpp.walkthrough.create.cpp.file.description": "[Otevřete](command:toSide:workbench.action.files.openFile) nebo [vytvořte](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) soubor C++. Nezapomeňte ho uložit s příponou .cpp, například „helloworld.cpp“. \n[Vytvořte soubor C++](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)",
|
||||
"c_cpp.walkthrough.create.cpp.file.altText": "Otevřete soubor C++ nebo složku s projektem C++.",
|
||||
"c_cpp.walkthrough.command.prompt.title": "Spustit z příkazového řádku vývojáře",
|
||||
"c_cpp.walkthrough.command.prompt.description": "Při použití kompilátoru Microsoft Visual Studio C++ vyžaduje rozšíření C++ spuštění VS Code z příkazového řádku vývojáře. Postupujte podle pokynů na pravé straně a spusťte ho znovu.\n [Znovu načíst okno](command:workbench.action.reloadWindow)",
|
||||
"c_cpp.walkthrough.run.debug.title": "Spuštění a ladění souboru C++",
|
||||
"c_cpp.walkthrough.run.debug.mac.description": "Otevřete soubor C++ a klikněte na tlačítko přehrát v pravém horním rohu editoru nebo stiskněte klávesu F5, když jste na souboru. Pokud chcete spustit s ladicím programem, vyberte clang++ – Sestavit a ladit aktivní soubor.",
|
||||
"c_cpp.walkthrough.run.debug.linux.description": "Otevřete soubor C++ a klikněte na tlačítko přehrát v pravém horním rohu editoru nebo stiskněte klávesu F5, když jste na souboru. Pokud chcete spustit s ladicím programem, vyberte g++ – Sestavit a ladit aktivní soubor.",
|
||||
"c_cpp.walkthrough.run.debug.windows.description": "Otevřete svůj soubor C++ a klikněte na tlačítko přehrát v pravém horním rohu editoru nebo stiskněte klávesu F5, když jste na souboru. Vyberte cl.exe – Sestavit a ladit aktivní soubor, který se spustí s ladicím programem.",
|
||||
"c_cpp.walkthrough.run.debug.windows.altText": "Obrázek znázorňující zarážku v souboru C++, tlačítko f5 a symbol spuštění v pravém horním rohu",
|
||||
"c_cpp.walkthrough.customize.debugging.title": "Přizpůsobení ladění",
|
||||
"c_cpp.walkthrough.customize.debugging.mac.description": "Konfiguraci ladění (např. za účelem předání argumentů do programu za běhu) můžete přizpůsobit výběrem možnosti Přidat konfiguraci ladění napravo od tlačítka Přehrát. Vlastní konfigurace ladění se uloží do souboru launch.json vašeho projektu. \n[Další informace](https://code.visualstudio.com/docs/cpp/config-linux#_debug-helloworldcpp)",
|
||||
"c_cpp.walkthrough.customize.debugging.linux.description": "Konfiguraci ladění (např. za účelem předání argumentů do vašeho programu za běhu) můžete přizpůsobit výběrem možnosti Přidat konfiguraci ladění napravo od tlačítka Přehrát. Vlastní konfigurace ladění se uloží do souboru launch.json vašeho projektu. \n[Další informace](https://code.visualstudio.com/docs/cpp/config-msvc#_debug-helloworldcpp)",
|
||||
"c_cpp.walkthrough.customize.debugging.windows.description": "Konfiguraci ladění (např. za účelem předání argumentů do vašeho programu za běhu) můžete přizpůsobit výběrem možnosti Přidat konfiguraci ladění napravo od tlačítka Přehrát. Vlastní konfigurace ladění se uloží do souboru launch.json vašeho projektu. \n[Další informace](https://code.visualstudio.com/docs/cpp/config-clang-mac#_debug-helloworldcpp)",
|
||||
"c_cpp.walkthrough.customize.debugging.altText": "Obrázek znázorňující přidání konfigurace ladění v rozevíracím seznamu"
|
||||
}
|
||||
@@ -6,23 +6,26 @@
|
||||
{
|
||||
"unable.to.start": "Nepovedlo se spustit jazykový server C/C++. Funkce IntelliSense se zakážou. Chyba: {0}",
|
||||
"check.permissions": "EPERM: Zkontrolujte oprávnění pro {0}.",
|
||||
"select.compile.commands": "Vyberte kompilátor, který se má nakonfigurovat pro IntelliSense.",
|
||||
"select.compiler": "Vyberte kompilátor, který se má nakonfigurovat pro IntelliSense.",
|
||||
"configure.intelliSense.forFolder": "Jak chcete nakonfigurovat IntelliSense pro složku {0}?",
|
||||
"configure.intelliSense.thisFolder": "Jak chcete nakonfigurovat IntelliSense pro tuto složku?",
|
||||
"found.string": "Nalezeno v: {0}",
|
||||
"use.compiler": "Použít {0}",
|
||||
"configuration.providers": "poskytovatelé konfigurace",
|
||||
"compilers": "kompilátory",
|
||||
"setCompiler.message": "Nemáte nakonfigurovaný technologii IntelliSense. Pokud nenastavíte vlastní konfigurace, IntelliSense nemusí být funkční.",
|
||||
"selectCompiler.string": "Vybrat kompilátor",
|
||||
"selectAnotherCompiler.string": "Vybrat jiný kompilátor na mém počítači",
|
||||
"selectIntelliSenseConfiguration.string": "Vybrat konfiguraci IntelliSense...",
|
||||
"use.provider": "Použít {0}",
|
||||
"use.compileCommands": "Použít {0}",
|
||||
"selectAnotherCompiler.string": "Vybrat jiný kompilátor na mém počítači...",
|
||||
"installCompiler.string": "Pomoc s instalací kompilátoru",
|
||||
"noConfig.string": "Nekonfigurovat kompilátor (nedoporučuje se)",
|
||||
"noConfig.string": "Nekonfigurovat pomocí kompilátoru (nedoporučuje se)",
|
||||
"selectCompiler.string": "Vybrat kompilátor",
|
||||
"confirmCompiler.string": "Ano",
|
||||
"selectCompiler.message": "Byl nalezen {0} kompilátoru. Chcete nakonfigurovat IntelliSense s tímto kompilátorem?",
|
||||
"server.crashed.restart": "Došlo k chybovému ukončení jazykového serveru. Restartuje se…",
|
||||
"server.crashed2": "Jazykový server se 5krát za poslední 3 minuty chybově ukončil. Nebude se restartovat.",
|
||||
"loggingLevel.changed": "{0} se změnila na: {1}",
|
||||
"provider.configure.folder": "{0} chce nakonfigurovat IntelliSense pro složku {1}.",
|
||||
"provider.configure.this.folder": "{0} chce nakonfigurovat IntelliSense pro tuto složku.",
|
||||
"allow.button": "Povolit",
|
||||
"dont.allow.button": "Nepovolit",
|
||||
"ask.me.later.button": "Požádat později",
|
||||
"dismiss.button": "Zrušit",
|
||||
"diable.warnings.button": "Zakázat upozornění",
|
||||
"unable.to.provide.configuration": "{0} nemůže poskytnout informace pro konfiguraci IntelliSense pro {1}. Místo nich se použijí nastavení z konfigurace {2}.",
|
||||
@@ -35,6 +38,11 @@
|
||||
"dont.show.again": "Příště už nezobrazovat",
|
||||
"update.your.intellisense.settings": "Pokud chcete snadněji najít chybějící hlavičky, aktualizujte nastavení IntelliSense nebo pomocí Vcpkg nainstalujte knihovny.",
|
||||
"configure.your.intellisense.settings": "Pokud chcete snadněji najít chybějící hlavičky, nakonfigurujte nastavení IntelliSense.",
|
||||
"provider.configure.folder": "{0} chce nakonfigurovat IntelliSense pro složku {1}.",
|
||||
"provider.configure.this.folder": "{0} chce nakonfigurovat IntelliSense pro tuto složku.",
|
||||
"allow.button": "Povolit",
|
||||
"dont.allow.button": "Nepovolit",
|
||||
"ask.me.later.button": "Požádat později",
|
||||
"a.compile.commands.file": "soubor compile_commands.json",
|
||||
"auto-configure.intellisense.folder": "Chcete použít {0} k automatické konfiguraci IntelliSense pro složku {1}?",
|
||||
"auto-configure.intellisense.this.folder": "Chcete použít {0} k automatické konfiguraci IntelliSense pro tuto složku?",
|
||||
@@ -42,6 +50,5 @@
|
||||
"no.button": "Ne",
|
||||
"configurations.received": "Přijaly se vlastní konfigurace:",
|
||||
"browse.configuration.received": "Přijala se vlastní konfigurace procházení: {0}",
|
||||
"no.compilers.found": "V systému se nenašly žádné kompilátory jazyka C++. Pro vaši platformu doporučujeme podle instrukcí v editoru nainstalovat {0}.",
|
||||
"compilers.found": "Ve vašem systému jsme našli následující kompilátory jazyka C++. Zvolte kompilátor v konfiguraci technologie IntelliSense vašeho projektu."
|
||||
"fallback.clipboard": " Deklarace nebo definice se zkopírovala."
|
||||
}
|
||||
@@ -7,6 +7,7 @@
|
||||
"find.all.references": "Najít všechny odkazy",
|
||||
"peek.references": "Náhled na odkazy",
|
||||
"rename": "Přejmenovat",
|
||||
"call.hierarchy": "Hierarchie volání",
|
||||
"confirmed.reference.upper": "POTVRZENÝ ODKAZ",
|
||||
"confirmation.in.progress.upper": "PROBÍHÁ POTVRZOVÁNÍ",
|
||||
"comment.reference.upper": "ODKAZ NA KOMENTÁŘ",
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"c.cpp.configurations": "Konfigurace C/C++"
|
||||
}
|
||||
@@ -7,10 +7,12 @@
|
||||
"c.cpp.parsing.open.files.tooltip": "Analýza otevřených souborů.",
|
||||
"click.to.preview": "kliknutím si můžete zobrazit náhled výsledků",
|
||||
"updating.intellisense.tooltip": "Aktualizuje se IntelliSense.",
|
||||
"c.cpp.configureIntelliSenseStatus.text": "Konfigurovat IntelliSense",
|
||||
"c.cpp.configureIntelliSenseStatus.cppText": "Konfigurovat IntelliSense v C/C++",
|
||||
"select.command": "Vyberte příkaz…",
|
||||
"select.code.analysis.command": "Vyberte příkaz pro analýzu kódu…",
|
||||
"c.cpp.configuration.tooltip": "Konfigurace C/C++",
|
||||
"c.cpp.references.statusbar": "Stav odkazů jazyka C/C++",
|
||||
"c.cpp.compilerStatus.statusbar": "Konfigurovat IntelliSense",
|
||||
"c.cpp.intellisense.statusbar": "C/C++ IntelliSense Status",
|
||||
"c.cpp.tagparser.statusbar": "Stav analyzátoru značky jazyka C/C++",
|
||||
"discovering.files.tooltip": "Zjišťují se soubory.",
|
||||
@@ -28,7 +30,8 @@
|
||||
"select.workspace": "Vyberte složku pracovního prostoru...",
|
||||
"resume.parsing": "Pokračovat v analýze pracovního prostoru",
|
||||
"pause.parsing": "Pozastavit analýzu pracovního prostoru",
|
||||
"cancel.analysis": "Zrušit {0}",
|
||||
"resume.analysis": "Obnovit {0}",
|
||||
"pause.analysis": "Pozastavit {0}"
|
||||
"cancel.analysis": "Zrušit",
|
||||
"resume.analysis": "Pokračovat",
|
||||
"pause.analysis": "Pozastavit",
|
||||
"another.analysis": "Spustit další…"
|
||||
}
|
||||
@@ -18,27 +18,28 @@
|
||||
"running.analysis.text": "Code Analysis: Spuštěno",
|
||||
"paused.analysis.text": "Code Analysis: Pozastaveno",
|
||||
"mode.analysis.prefix": "Režim Code Analysis: ",
|
||||
"c.cpp.configureIntelliSenseStatus.text": "Konfigurovat IntelliSense",
|
||||
"c.cpp.configureIntelliSenseStatus.cppText": "Konfigurovat IntelliSense v C/C++",
|
||||
"select.command": "Vyberte příkaz...",
|
||||
"cpptools.status.configuration": "Vyberte konfiguraci",
|
||||
"select.code.analysis.command": "Vyberte příkaz pro analýzu kódu…",
|
||||
"c.cpp.configuration.tooltip": "Konfigurace C/C++",
|
||||
"c.cpp.references.statusbar": "Stav odkazů jazyka C/C++",
|
||||
"c.cpp.compilerStatus.statusbar": "Konfigurovat IntelliSense",
|
||||
"cpptools.status.intellisense": "C/C++ IntelliSense Status",
|
||||
"cpptools.status.tagparser": "Stav analyzátoru značky jazyka C/C++",
|
||||
"cpptools.detail.tagparser": "Probíhá inicializace...",
|
||||
"cpptools.status.codeanalysis": "Stav Code Analysis C/C++",
|
||||
"c.cpp.codeanalysis.statusbar.runNow": "Spustit",
|
||||
"configuration.notselected.text": "Konfigurace: Nevybráno",
|
||||
"configuration.selected.text": "Vyberte konfiguraci",
|
||||
"tagparser.pause.text": "Pozastavit",
|
||||
"tagparser.resume.text": "Pokračovat",
|
||||
"intellisense.select.text": "Vyberte kompilátor.",
|
||||
"rescan.intellisense.text": "Prohledat znovu",
|
||||
"rescan.intellisense.tooltip": "Znovu prohledat IntelliSense",
|
||||
"mode.codeanalysis.status": "Automaticky",
|
||||
"mode.codeanalysis.status.automatic": "Automaticky",
|
||||
"mode.codeanalysis.status.manual": "Ručně",
|
||||
"c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "Možnosti",
|
||||
"startup.codeanalysis.status": "Spouštění...",
|
||||
"c.cpp.codeanalysis.statusbar.showRunNowOptions": "Spustit",
|
||||
"running.analysis.processed.tooltip": "Spuštěno {0}: {1} / {2} ({3}%)",
|
||||
"running.analysis.processed.tooltip": "Spuštěno: {0} / {1} ({2} %)",
|
||||
"select.a.configuration": "Vybrat konfiguraci...",
|
||||
"edit.configuration.ui": "Upravit konfigurace (uživatelské rozhraní)",
|
||||
"edit.configuration.json": "Upravit konfigurace (JSON)",
|
||||
@@ -50,10 +51,10 @@
|
||||
"select.workspace": "Vyberte složku pracovního prostoru...",
|
||||
"resume.parsing": "Pokračovat v analýze pracovního prostoru",
|
||||
"pause.parsing": "Pozastavit analýzu pracovního prostoru",
|
||||
"cancel.analysis": "Zrušit {0}",
|
||||
"resume.analysis": "Obnovit {0}",
|
||||
"pause.analysis": "Pozastavit {0}",
|
||||
"another.analysis": "Spustit další {0}...",
|
||||
"cancel.analysis": "Zrušit",
|
||||
"resume.analysis": "Pokračovat",
|
||||
"pause.analysis": "Pozastavit",
|
||||
"another.analysis": "Spustit další…",
|
||||
"active.analysis": "Spustit Code Analysis u aktivního souboru",
|
||||
"all.analysis": "Spustit Code Analysis u všech souborů",
|
||||
"open.analysis": "Spustit Code Analysis při otevírání souborů"
|
||||
|
||||
@@ -167,8 +167,8 @@
|
||||
"overloads": "+%d přetížení",
|
||||
"specialization": "+1 specializace",
|
||||
"specializations": "+tento počet specializací: %d",
|
||||
"compiler": "Poznámka: IntelliSense není plně nakonfigurováno. Konfiguraci dokončete pomocí příkazu Vybrat výchozí kompilátor.",
|
||||
"select_compiler": "Výběrem kompilátoru vyhledejte systémové hlavičky.",
|
||||
"intellisense_configuration": "Poznámka: IntelliSense není plně nakonfigurované. K dokončení konfigurace použijte možnost Vybrat konfiguraci IntelliSense.",
|
||||
"select_intellisense_configuration": "Vyberte konfiguraci IntelliSense pro vyhledání systémových hlaviček.",
|
||||
"expands_to": "Rozšiřuje se na:",
|
||||
"attention_label": "Upozornění:",
|
||||
"author_label": "Autor:",
|
||||
@@ -287,12 +287,14 @@
|
||||
"e_cm_file_not_in_project": "Soubor '%s' nebyl nalezen.",
|
||||
"refactor_create_declaration_definition_failed": "Vytvoření deklarace nebo definice se nepovedlo: %s",
|
||||
"refactor_create_default_delete": "Funkci %s nejde vytvořit. Vytváření výchozích nebo odstraněných funkcí se nepodporuje.",
|
||||
"refactor_function_copied_to_clipboard": "Signatura funkce se zkopírovala do schránky.",
|
||||
"refactor_function_not_created": "Funkce %s se nedá vytvořit.",
|
||||
"refactor_ambiguous_locations": "Jednoznačné umístění funkce %s se nedá najít.",
|
||||
"refactor_file_not_in_project": "Soubor '%s' nebyl nalezen.",
|
||||
"refactor_not_class_namespace": "Nenašla se třída nebo obor názvů %s.",
|
||||
"refactor_operation_unsupported": "Operace není pro: %s podporovaná.",
|
||||
"unknown_error": "Neznámá chyba.",
|
||||
"run_select_compiler": "Spuštěním příkazu Vybrat výchozí kompilátor vyhledejte systémové hlavičky."
|
||||
"run_select_intellisense_configuration": "Spusťte prosím příkaz Vybrat konfiguraci IntelliSense, abyste vyhledali systémové hlavičky.",
|
||||
"offer_copy_declaration": "Kopírovat deklaraci {0}",
|
||||
"offer_copy_definition": "Kopírovat definici {0}",
|
||||
"refactor_copy_declaration_definition_failed": "Kopírování deklarace nebo definice do schránky se nezdařilo: %s"
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"walkthrough.windows.title.open.dev.command.prompt": "Opětovné spuštění pomocí příkazového řádku pro vývojáře",
|
||||
"walkthrough.windows.background.dev.command.prompt": " Používáte počítač s Windows s kompilátorem MVSC, takže musíte spustit VS Code z příkazového řádku vývojáře, aby se všechny proměnné prostředí správně nastavily. Opětovné spuštění pomocí příkazového řádku vývojáře:",
|
||||
"walkthrough.open.command.prompt": "Otevřete Developer Command Prompt pro VS zadáním \"developer\" v nabídka Start Windows. Vyberte Developer Command Prompt pro VS, který automaticky přejde do aktuální otevřené složky.",
|
||||
"walkthrough.windows.press.f5": "Do příkazového řádku zadejte „code“ a stiskněte Enter. Mělo by se znovu spustit VS Code a vrátit se k tomuto názorném postupu. "
|
||||
}
|
||||
@@ -5,6 +5,6 @@
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"walkthough.mac.install.compiler": "Instalace kompilátoru jazyka C++ na macOS",
|
||||
"walkthough.mac.text1": "Pokud provádíte vývoj C++ pro macOS, doporučujeme nainstalovat kompilátor Clang. Aby bylo možné nainstalovat nástroje příkazového řádku pro vývojáře, stačí v okně terminálu spustit následující příkaz:",
|
||||
"walkthough.mac.text1": "Pokud vyvíjíte v jazyce C++ pro macOS, doporučujeme nainstalovat kompilátor Clang. V okně terminálu (Ctrl+Shift+`) stačí spustit následující příkaz, který nainstaluje vývojářské nástroje příkazového řádku:",
|
||||
"walkthough.mac.text2": "Pokud chcete ověřit, zda je Clang nainstalován, spusťte v okně terminálu následující příkaz. Měla by se zobrazit zpráva s informacemi o verzi Clang, kterou používáte."
|
||||
}
|
||||
+1
-1
@@ -9,7 +9,7 @@
|
||||
"walkthrough.windows.link.title1": "Použití C++ a subsystému Windows pro Linux (WSL) ve VS Code",
|
||||
"walkthrough.windows.link.title2": "instalovat GCC na Windows pomocí MinGW",
|
||||
"walkthrough.windows.text2": "Pokud chcete nainstalovat MSVC, stáhněte {0} ze stránky Visual Studio {1}.",
|
||||
"walkthrough.windows.build.tools1": "Build Tools for Visual Studio 2019",
|
||||
"walkthrough.windows.build.tools1": "Build Tools for Visual Studio 2022",
|
||||
"walkthrough.windows.link.downloads": "Položky ke stažení",
|
||||
"walkthrough.windows.text3": "V Instalační program pro Visual Studio zkontrolujte {0} úlohy a vyberte {1}.",
|
||||
"walkthrough.windows.build.tools2": "C++ Build Tools",
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"c_cpp.command.configurationProviderSelect.title": "Konfigurationsanbieter ändern...",
|
||||
"c_cpp.command.configurationEditJSON.title": "Konfigurationen bearbeiten (JSON)",
|
||||
"c_cpp.command.configurationEditUI.title": "Konfigurationen bearbeiten (Benutzeroberfläche)",
|
||||
"c_cpp.command.selectDefaultCompiler.title": "Standardcompiler auswählen",
|
||||
"c_cpp.command.selectDefaultCompiler.title": "Standardcompiler auswählen...",
|
||||
"c_cpp.command.selectIntelliSenseConfiguration.title": "IntelliSense-Konfiguration auswählen...",
|
||||
"c_cpp.command.rescanCompilers.title": "Erneut nach Compilern suchen",
|
||||
"c_cpp.command.switchHeaderSource.title": "Header/Quelle umschalten",
|
||||
"c_cpp.command.enableErrorSquiggles.title": "Fehlerwellenlinien aktivieren",
|
||||
"c_cpp.command.disableErrorSquiggles.title": "Fehlerwellenlinien deaktivieren",
|
||||
@@ -405,5 +407,27 @@
|
||||
"c_cpp.debuggers.logging.category.verbose.description": "Protokolle, die während der Entwicklung zur interaktiven Untersuchung verwendet werden. Diese Protokolle sollten in erster Linie Informationen enthalten, die für das Debuggen nützlich sind, und keinen langfristigen Wert aufweisen.",
|
||||
"c_cpp.debuggers.logging.category.warning.description": "Protokolle, die ein ungewöhnliches oder unerwartetes Ereignis im Anwendungsfluss hervorheben, aber ansonsten nicht dazu führen, dass die Ausführung der Anwendung beendet wird.",
|
||||
"c_cpp.debuggers.logging.category.error.description": "Protokolle, die hervorheben, wenn der aktuelle Ausführungsfluss aufgrund eines Fehlers beendet wird. Diese sollten auf einen Fehler in der aktuellen Aktivität und nicht auf einen anwendungsweiten Fehler hinweisen.",
|
||||
"c_cpp.debuggers.logging.category.none.description": "Wird nicht zum Schreiben von Protokollmeldungen verwendet. Gibt an, dass eine Protokollierungskategorie keine Meldungen schreiben soll."
|
||||
"c_cpp.debuggers.logging.category.none.description": "Wird nicht zum Schreiben von Protokollmeldungen verwendet. Gibt an, dass eine Protokollierungskategorie keine Meldungen schreiben soll.",
|
||||
"c_cpp.walkthrough.title": "Los geht's mit C++-Entwicklung",
|
||||
"c_cpp.walkthrough.description": "Tauchen Sie ein in die umfassende C++-Entwicklungserfahrung VS Code.",
|
||||
"c_cpp.walkthrough.set.up.title": "C++-Umgebung einrichten",
|
||||
"c_cpp.walkthrough.activating.description": "Die C++-Erweiterung wird aktiviert, um zu bestimmen, ob Ihre C++-Umgebung eingerichtet wurde.\nErweiterung wird aktiviert...",
|
||||
"c_cpp.walkthrough.no.compilers.description": "Auf Ihrem Computer wurde kein C++-Compiler gefunden, der für die Verwendung der C++-Erweiterung erforderlich ist. Befolgen Sie die Anweisungen auf der rechten Seite, um einen zu installieren, und klicken Sie unten auf \"Meinen neuen Compiler suchen\".\n[Meinen neuen Compiler suchen](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)",
|
||||
"c_cpp.walkthrough.compilers.found.description": "Die C++-Erweiterung funktioniert mit einem C++-Compiler. Wählen Sie eines der Elemente aus, die bereits auf Ihrem Computer vorhanden sind, indem Sie unten auf die Schaltfläche klicken.\n[Meinen Standard-Compiler auswählen](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)",
|
||||
"c_cpp.walkthrough.compilers.found.altText": "Abbildung, das die Auswahl eines standardmäßigen Compilerschnellauswahl und die Liste der Compiler auf dem Benutzercomputer anzeigt, von denen einer ausgewählt ist.",
|
||||
"c_cpp.walkthrough.create.cpp.file.title": "C++-Datei erstellen",
|
||||
"c_cpp.walkthrough.create.cpp.file.description": "[Open](command:toSide:workbench.action.files.openFile) oder [create](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) eine C++-Datei. Speichern Sie die Datei unbedingt mit der Erweiterung \".cpp\", z. B. \"helloworld.cpp\". \n[C++-Datei erstellen](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)",
|
||||
"c_cpp.walkthrough.create.cpp.file.altText": "Öffnen Sie eine C++-Datei oder einen Ordner mit einem C++-Projekt.",
|
||||
"c_cpp.walkthrough.command.prompt.title": "Starten über die Developer-Eingabeaufforderung",
|
||||
"c_cpp.walkthrough.command.prompt.description": "Wenn Sie den Microsoft Visual Studio C++-Compiler verwenden, erfordert die C++-Erweiterung, dass Sie VS Code über die Entwicklereingabeaufforderung starten. Befolgen Sie die Anweisungen auf der rechten Seite, um den Neustart zu starten.\n[Reload Window](command:workbench.action.reloadWindow)",
|
||||
"c_cpp.walkthrough.run.debug.title": "Ausführen und Debuggen Ihrer C++-Datei",
|
||||
"c_cpp.walkthrough.run.debug.mac.description": "Öffnen Sie Ihre C++-Datei, und klicken Sie in der oberen rechten Ecke des Editors auf die Wiedergabeschaltfläche, oder drücken Sie F5, wenn Sie die Datei verwenden. Wählen Sie \"clang++ – Aktive Datei erstellen und debuggen\" aus, die mit dem Debugger ausgeführt werden soll.",
|
||||
"c_cpp.walkthrough.run.debug.linux.description": "Öffnen Sie Ihre C++-Datei, und klicken Sie in der oberen rechten Ecke des Editors auf die Wiedergabeschaltfläche, oder drücken Sie F5, wenn Sie die Datei verwenden. Wählen Sie \"g++ – Aktive Datei erstellen und debuggen\" aus, die mit dem Debugger ausgeführt werden soll.",
|
||||
"c_cpp.walkthrough.run.debug.windows.description": "Öffnen Sie Ihre C++-Datei, und klicken Sie in der oberen rechten Ecke des Editors auf die Wiedergabeschaltfläche, oder drücken Sie F5, wenn Sie die Datei verwenden. Wählen Sie \"cl.exe – Aktive Datei erstellen und debuggen\" aus, die mit dem Debugger ausgeführt werden soll.",
|
||||
"c_cpp.walkthrough.run.debug.windows.altText": "Bild, das einen Haltepunkt in einer C++-Datei, die f5-Buttobn und das Ausführungssymbol oben rechts anzeigt",
|
||||
"c_cpp.walkthrough.customize.debugging.title": "Debuggen anpassen",
|
||||
"c_cpp.walkthrough.customize.debugging.mac.description": "Sie können Ihre Debugkonfiguration anpassen (z. B. um Argumente zur Laufzeit an Ihr Programm zu übergeben), indem Sie rechts neben der Wiedergabeschaltfläche \"Debugkonfiguration hinzufügen\" auswählen. Die benutzerdefinierte Debugkonfiguration wird in der Datei \"launch.json\" Ihres Projekts gespeichert. \n[Weitere Informationen](https://code.visualstudio.com/docs/cpp/config-linux#_debug-helloworldcpp)",
|
||||
"c_cpp.walkthrough.customize.debugging.linux.description": "Sie können Ihre Debugkonfiguration anpassen (z. B. um Argumente zur Laufzeit an Ihr Programm zu übergeben), indem Sie rechts neben der Wiedergabeschaltfläche \"Debugkonfiguration hinzufügen\" auswählen. Die benutzerdefinierte Debugkonfiguration wird in der Datei \"launch.json\" Ihres Projekts gespeichert. \n[Weitere Informationen](https://code.visualstudio.com/docs/cpp/config-msvc#_debug-helloworldcpp)",
|
||||
"c_cpp.walkthrough.customize.debugging.windows.description": "Sie können Ihre Debugkonfiguration anpassen (z. B. um Argumente zur Laufzeit an Ihr Programm zu übergeben), indem Sie rechts neben der Wiedergabeschaltfläche \"Debugkonfiguration hinzufügen\" auswählen. Die benutzerdefinierte Debugkonfiguration wird in der Datei \"launch.json\" Ihres Projekts gespeichert. \n[Weitere Informationen](https://code.visualstudio.com/docs/cpp/config-clang-mac#_debug-helloworldcpp)",
|
||||
"c_cpp.walkthrough.customize.debugging.altText": "Bild, das \"Debugkonfiguration hinzufügen\" in der Dropdownliste anzeigt"
|
||||
}
|
||||
@@ -6,23 +6,26 @@
|
||||
{
|
||||
"unable.to.start": "Der C/C++-Sprachserver kann nicht gestartet werden. IntelliSense-Features werden deaktiviert. Fehler: {0}",
|
||||
"check.permissions": "EPERM: Berechtigungen für \"{0}\" überprüfen",
|
||||
"select.compile.commands": "Wählen Sie einen Compiler aus, der für IntelliSense konfiguriert werden soll.",
|
||||
"select.compiler": "Wählen Sie einen Compiler aus, der für IntelliSense konfiguriert werden soll.",
|
||||
"configure.intelliSense.forFolder": "Wie möchten Sie IntelliSense für den Ordner \"{0}\" konfigurieren?",
|
||||
"configure.intelliSense.thisFolder": "Wie möchten Sie IntelliSense für diesen Ordner konfigurieren?",
|
||||
"found.string": "Gefunden unter {0}",
|
||||
"use.compiler": "{0} verwenden",
|
||||
"configuration.providers": "Konfigurationsanbieter",
|
||||
"compilers": "Compiler",
|
||||
"setCompiler.message": "IntelliSense ist nicht konfiguriert. Wenn Sie keine eigenen Konfigurationen festlegen, ist IntelliSense möglicherweise nicht funktionsfähig.",
|
||||
"selectCompiler.string": "Compiler auswählen",
|
||||
"selectAnotherCompiler.string": "Anderen Compiler auf meinem Computer auswählen",
|
||||
"selectIntelliSenseConfiguration.string": "IntelliSense-Konfiguration auswählen...",
|
||||
"use.provider": "{0} verwenden",
|
||||
"use.compileCommands": "{0} verwenden",
|
||||
"selectAnotherCompiler.string": "Anderen Compiler auf meinem Computer auswählen...",
|
||||
"installCompiler.string": "Hilfe bei der Installation eines Compilers",
|
||||
"noConfig.string": "Keinen Compiler konfigurieren (nicht empfohlen)",
|
||||
"noConfig.string": "Nicht mit einem Compiler konfigurieren (nicht empfohlen)",
|
||||
"selectCompiler.string": "Compiler auswählen",
|
||||
"confirmCompiler.string": "Ja",
|
||||
"selectCompiler.message": "Der Compiler {0} wurde gefunden. Möchten Sie IntelliSense mit diesem Compiler konfigurieren?",
|
||||
"server.crashed.restart": "Der Sprach-Server ist abgestürzt. Neustart wird ausgeführt ...",
|
||||
"server.crashed2": "Der Sprachserver ist in den letzten 3 Minuten 5-mal abgestürzt. Er wird nicht neu gestartet.",
|
||||
"loggingLevel.changed": "{0} wurde geändert in {1}",
|
||||
"provider.configure.folder": "{0} möchte IntelliSense für den Ordner \"{1}\" konfigurieren.",
|
||||
"provider.configure.this.folder": "{0} möchte IntelliSense für diesen Ordner konfigurieren.",
|
||||
"allow.button": "Zulassen",
|
||||
"dont.allow.button": "Nicht zulassen",
|
||||
"ask.me.later.button": "Später nachfragen",
|
||||
"dismiss.button": "Schließen",
|
||||
"diable.warnings.button": "Warnungen deaktivieren",
|
||||
"unable.to.provide.configuration": "{0} kann keine IntelliSense-Konfigurationsinformationen für \"{1}\" bereitstellen. Stattdessen werden Einstellungen aus der Konfiguration \"{2}\" verwendet.",
|
||||
@@ -35,6 +38,11 @@
|
||||
"dont.show.again": "Nicht mehr anzeigen",
|
||||
"update.your.intellisense.settings": "Aktualisieren Sie Ihre IntelliSense-Einstellungen, oder verwenden Sie vcpkg, um Bibliotheken zur Suche nach fehlenden Headern zu installieren.",
|
||||
"configure.your.intellisense.settings": "Konfigurieren Sie Ihre IntelliSense-Einstellungen, um fehlende Header zu suchen.",
|
||||
"provider.configure.folder": "{0} möchte IntelliSense für den Ordner \"{1}\" konfigurieren.",
|
||||
"provider.configure.this.folder": "{0} möchte IntelliSense für diesen Ordner konfigurieren.",
|
||||
"allow.button": "Zulassen",
|
||||
"dont.allow.button": "Nicht zulassen",
|
||||
"ask.me.later.button": "Später nachfragen",
|
||||
"a.compile.commands.file": "eine compile_commands.json-Datei",
|
||||
"auto-configure.intellisense.folder": "Möchten Sie {0} zum automatischen Konfigurieren von IntelliSense für den Ordner \"{1}\" verwenden?",
|
||||
"auto-configure.intellisense.this.folder": "Möchten Sie {0} zum automatischen Konfigurieren von IntelliSense für diesen Ordner verwenden?",
|
||||
@@ -42,6 +50,5 @@
|
||||
"no.button": "Nein",
|
||||
"configurations.received": "Benutzerdefinierte Konfigurationen empfangen:",
|
||||
"browse.configuration.received": "Benutzerdefinierte Suchkonfiguration empfangen: {0}",
|
||||
"no.compilers.found": "Es wurden keine C++ Compiler auf dem System gefunden. Für Ihre Plattform empfehlen wir Ihnen die Installation von {0} mithilfe der Anweisungen im Editor.",
|
||||
"compilers.found": "Wir haben die folgenden C++-Compiler auf Ihrem System gefunden. Wählen Sie einen Compiler in der IntelliSense-Konfiguration Ihres Projekts aus."
|
||||
"fallback.clipboard": " Die Deklaration/Definition wurde kopiert."
|
||||
}
|
||||
@@ -7,6 +7,7 @@
|
||||
"find.all.references": "Alle Verweise suchen",
|
||||
"peek.references": "Verweisvorschau",
|
||||
"rename": "Umbenennen",
|
||||
"call.hierarchy": "Aufrufhierarchie",
|
||||
"confirmed.reference.upper": "BESTÄTIGTER VERWEIS",
|
||||
"confirmation.in.progress.upper": "BESTÄTIGUNG WIRD AUSGEFÜHRT",
|
||||
"comment.reference.upper": "KOMMENTARVERWEIS",
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"c.cpp.configurations": "C/C++-Konfigurationen"
|
||||
}
|
||||
@@ -7,10 +7,12 @@
|
||||
"c.cpp.parsing.open.files.tooltip": "Offene Dateien werden analysiert",
|
||||
"click.to.preview": "Klicken Sie, um eine Vorschau der Ergebnisse anzuzeigen.",
|
||||
"updating.intellisense.tooltip": "IntelliSense wird aktualisiert",
|
||||
"c.cpp.configureIntelliSenseStatus.text": "IntelliSense konfigurieren",
|
||||
"c.cpp.configureIntelliSenseStatus.cppText": "IntelliSense in C/C++ konfigurieren",
|
||||
"select.command": "Befehl auswählen...",
|
||||
"select.code.analysis.command": "Codeanalysebefehl auswählen...",
|
||||
"c.cpp.configuration.tooltip": "C/C++-Konfiguration",
|
||||
"c.cpp.references.statusbar": "C/C++-Verweisstatus",
|
||||
"c.cpp.compilerStatus.statusbar": "IntelliSense konfigurieren",
|
||||
"c.cpp.intellisense.statusbar": "Status von C/C++-IntelliSense",
|
||||
"c.cpp.tagparser.statusbar": "Status des C/C++-Tagparsers",
|
||||
"discovering.files.tooltip": "Dateien werden ermittelt",
|
||||
@@ -28,7 +30,8 @@
|
||||
"select.workspace": "Arbeitsbereichsordner auswählen...",
|
||||
"resume.parsing": "Arbeitsbereichsanalyse fortsetzen",
|
||||
"pause.parsing": "Arbeitsbereichsanalyse anhalten",
|
||||
"cancel.analysis": "\"{0}\" abbrechen",
|
||||
"resume.analysis": "\"{0}\" fortsetzen",
|
||||
"pause.analysis": "\"{0}\" anhalten"
|
||||
"cancel.analysis": "Abbrechen",
|
||||
"resume.analysis": "Fortsetzen",
|
||||
"pause.analysis": "Anhalten",
|
||||
"another.analysis": "Starten Sie eine weitere..."
|
||||
}
|
||||
@@ -18,27 +18,28 @@
|
||||
"running.analysis.text": "Code Analysis: Wird ausgeführt",
|
||||
"paused.analysis.text": "Code Analysis: Angehalten",
|
||||
"mode.analysis.prefix": "Code Analysis-Modus: ",
|
||||
"c.cpp.configureIntelliSenseStatus.text": "IntelliSense konfigurieren",
|
||||
"c.cpp.configureIntelliSenseStatus.cppText": "IntelliSense in C/C++ konfigurieren",
|
||||
"select.command": "Befehl auswählen...",
|
||||
"cpptools.status.configuration": "Konfiguration auswählen",
|
||||
"select.code.analysis.command": "Codeanalysebefehl auswählen...",
|
||||
"c.cpp.configuration.tooltip": "C/C++-Konfiguration",
|
||||
"c.cpp.references.statusbar": "C/C++-Referenzenstatus",
|
||||
"c.cpp.compilerStatus.statusbar": "IntelliSense konfigurieren",
|
||||
"cpptools.status.intellisense": "C/C++-IntelliSense-Status",
|
||||
"cpptools.status.tagparser": "Status des C/C++-Tagparsers",
|
||||
"cpptools.detail.tagparser": "Wird initialisiert...",
|
||||
"cpptools.status.codeanalysis": "C/C++-Code Analysis-Status",
|
||||
"c.cpp.codeanalysis.statusbar.runNow": "Jetzt ausführen",
|
||||
"configuration.notselected.text": "Konfiguration: Nicht ausgewählt",
|
||||
"configuration.selected.text": "Konfiguration auswählen",
|
||||
"tagparser.pause.text": "Anhalten",
|
||||
"tagparser.resume.text": "Fortsetzen",
|
||||
"intellisense.select.text": "Compiler auswählen",
|
||||
"rescan.intellisense.text": "Neu einlesen",
|
||||
"rescan.intellisense.tooltip": "IntelliSense neu einlesen",
|
||||
"mode.codeanalysis.status": "Automatisch",
|
||||
"mode.codeanalysis.status.automatic": "Automatisch",
|
||||
"mode.codeanalysis.status.manual": "Manuell",
|
||||
"c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "Optionen",
|
||||
"startup.codeanalysis.status": "Wird gestartet...",
|
||||
"c.cpp.codeanalysis.statusbar.showRunNowOptions": "Jetzt ausführen",
|
||||
"running.analysis.processed.tooltip": "Ausführen von {0}: {1} / {2} ({3}%)",
|
||||
"running.analysis.processed.tooltip": "Wird ausgeführt: {0} / {1} ({2}%)",
|
||||
"select.a.configuration": "Konfiguration auswählen...",
|
||||
"edit.configuration.ui": "Konfigurationen bearbeiten (Benutzeroberfläche)",
|
||||
"edit.configuration.json": "Konfigurationen bearbeiten (JSON)",
|
||||
@@ -50,10 +51,10 @@
|
||||
"select.workspace": "Arbeitsbereichsordner auswählen...",
|
||||
"resume.parsing": "Parsing des Arbeitsbereichs fortsetzen",
|
||||
"pause.parsing": "Parsing des Arbeitsbereichs anhalten",
|
||||
"cancel.analysis": "{0} abbrechen",
|
||||
"resume.analysis": "{0} fortsetzen",
|
||||
"pause.analysis": "{0} anhalten",
|
||||
"another.analysis": "Starten Sie eine weitere {0}...",
|
||||
"cancel.analysis": "Abbrechen",
|
||||
"resume.analysis": "Fortsetzen",
|
||||
"pause.analysis": "Anhalten",
|
||||
"another.analysis": "Starten Sie eine weitere...",
|
||||
"active.analysis": "Code Analysis auf \"Aktive Dateien\" ausführen",
|
||||
"all.analysis": "Code Analysis auf \"Alle Dateien\" ausführen",
|
||||
"open.analysis": "Code Analysis auf \"Dateien öffnen\" ausführen"
|
||||
|
||||
@@ -167,8 +167,8 @@
|
||||
"overloads": "+%d Überladungen",
|
||||
"specialization": "+1 Spezialisierung",
|
||||
"specializations": "+%d Spezialisierungen",
|
||||
"compiler": "Hinweis: IntelliSense ist nicht vollständig konfiguriert. Verwenden Sie den Befehl \"Standardcompiler auswählen\", um die Konfiguration abzuschließen.",
|
||||
"select_compiler": "Wählen Sie einen Compiler aus, um System-Header zu suchen",
|
||||
"intellisense_configuration": "Hinweis: IntelliSense ist nicht vollständig konfiguriert. Verwenden Sie den Befehl \"IntelliSense-Konfiguration auswählen...\", um die Konfiguration abzuschließen.",
|
||||
"select_intellisense_configuration": "Wählen Sie eine IntelliSense-Konfiguration aus, um nach Systemheadern zu suchen.",
|
||||
"expands_to": "Wird erweitert auf:",
|
||||
"attention_label": "Achtung:",
|
||||
"author_label": "Autor:",
|
||||
@@ -287,12 +287,14 @@
|
||||
"e_cm_file_not_in_project": "Datei '%s' nicht gefunden",
|
||||
"refactor_create_declaration_definition_failed": "Fehler beim Erstellen der Deklaration/Definition: %s",
|
||||
"refactor_create_default_delete": "Die Funktion \"%s\" kann nicht erstellt werden. Das Erstellen standardmäßiger oder gelöschter Funktionen wird nicht unterstützt.",
|
||||
"refactor_function_copied_to_clipboard": "Die Funktionssignatur wurde in die Zwischenablage kopiert.",
|
||||
"refactor_function_not_created": "Erstellen der Funktion '%s' nicht möglich.",
|
||||
"refactor_ambiguous_locations": "Es wurde kein eindeutiger Speicherort für Funktion '%s' gefunden.",
|
||||
"refactor_file_not_in_project": "Datei '%s' nicht gefunden",
|
||||
"refactor_not_class_namespace": "Klasse oder Namespace '%s' wurde nicht gefunden.",
|
||||
"refactor_operation_unsupported": "Der Vorgang wird für '%s' nicht unterstützt.",
|
||||
"unknown_error": "Unbekannter Fehler.",
|
||||
"run_select_compiler": "Führen Sie den Befehl „Standardcompiler auswählen“ aus, um Ihre System-Header zu suchen."
|
||||
"run_select_intellisense_configuration": "Führen Sie den Befehl „IntelliSense-Konfiguration auswählen...“ aus, um nach Ihren Systemheadern zu suchen.",
|
||||
"offer_copy_declaration": "Deklaration von \"{0}\" kopieren",
|
||||
"offer_copy_definition": "Definition von \"{0}\" kopieren",
|
||||
"refactor_copy_declaration_definition_failed": "Fehler beim Kopieren der Deklaration/Definition in die Zwischenablage: %s"
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"walkthrough.windows.title.open.dev.command.prompt": "Neustart mithilfe der Developer-Eingabeaufforderung",
|
||||
"walkthrough.windows.background.dev.command.prompt": " Sie verwenden einen Windows-Computer mit dem MSVC-Compiler. Sie müssen daher VS Code über die Entwicklereingabeaufforderung starten, damit alle Umgebungsvariablen ordnungsgemäß festgelegt werden. So starten Sie mithilfe der Entwicklereingabeaufforderung neu:",
|
||||
"walkthrough.open.command.prompt": "Öffnen Sie die Developer-Eingabeaufforderung für VS, indem Sie im Windows Startmenü \"developer\" eingeben. Wählen Sie die Developer-Eingabeaufforderung für VS aus, die automatisch zu Ihrem aktuellen geöffneten Ordner navigiert.",
|
||||
"walkthrough.windows.press.f5": "Geben Sie \"code\" in die Eingabeaufforderung ein, und drücken Sie die EINGABETASTE. Dies sollte VS Code neu starten und Sie zu dieser exemplarischen Vorgehensweise zurückkehren. "
|
||||
}
|
||||
@@ -5,6 +5,6 @@
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"walkthough.mac.install.compiler": "C++-Compiler unter macOS installieren",
|
||||
"walkthough.mac.text1": "Wenn Sie mithilfe von C++ unter macOS entwickeln, empfehlen wir die Installation des Clang-Compilers. Sie müssen nur den folgenden Befehl in einem Terminalfenster ausführen, um die Befehlszeilen-Entwicklertools zu installieren:",
|
||||
"walkthough.mac.text1": "Wenn Sie mithilfe von C++ unter macOS entwickeln, empfehlen wir die Installation des Clang-Compilers. Sie müssen nur den folgenden Befehl in einem Terminalfenster(STRG+UMSCHALT+ `) ausführen, um die Befehlszeilen-Entwicklertools zu installieren:",
|
||||
"walkthough.mac.text2": "Führen Sie den folgenden Befehl in einem Terminalfenster aus, um zu überprüfen, ob Clang installiert ist. Es sollte eine Meldung mit Informationen zur verwendeten Clang-Version angezeigt werden."
|
||||
}
|
||||
+1
-1
@@ -9,7 +9,7 @@
|
||||
"walkthrough.windows.link.title1": "Verwenden von C++ und Windows-Subsystem für Linux (WSL) in VS Code",
|
||||
"walkthrough.windows.link.title2": "Installieren Sie GCC unter Windows mit MinGW.",
|
||||
"walkthrough.windows.text2": "Um MSVC zu installieren, laden Sie {0} von der Visual Studio {1}-Seite herunter. ",
|
||||
"walkthrough.windows.build.tools1": "Buildtools für Visual Studio 2019",
|
||||
"walkthrough.windows.build.tools1": "Buildtools für Visual Studio 2022",
|
||||
"walkthrough.windows.link.downloads": "Downloads",
|
||||
"walkthrough.windows.text3": "Überprüfen Sie im Visual Studio-Installer den {0} Workload, und wählen Sie {1} aus.",
|
||||
"walkthrough.windows.build.tools2": "C++-Buildtools",
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"c_cpp.command.configurationProviderSelect.title": "Cambiar el proveedor de configuración...",
|
||||
"c_cpp.command.configurationEditJSON.title": "Editar configuraciones (JSON)",
|
||||
"c_cpp.command.configurationEditUI.title": "Editar configuraciones (interfaz de usuario)",
|
||||
"c_cpp.command.selectDefaultCompiler.title": "Selecciona el Compilador predeterminado",
|
||||
"c_cpp.command.selectDefaultCompiler.title": "Seleccionar compilador predeterminado...",
|
||||
"c_cpp.command.selectIntelliSenseConfiguration.title": "Seleccionar configuración de IntelliSense...",
|
||||
"c_cpp.command.rescanCompilers.title": "Volver a examinar los compiladores",
|
||||
"c_cpp.command.switchHeaderSource.title": "Cambiar el encabezado o el origen",
|
||||
"c_cpp.command.enableErrorSquiggles.title": "Habilitar el subrayado ondulado de errores",
|
||||
"c_cpp.command.disableErrorSquiggles.title": "Deshabilitar el subrayado ondulado de errores",
|
||||
@@ -405,5 +407,27 @@
|
||||
"c_cpp.debuggers.logging.category.verbose.description": "Registros que se usan para la investigación interactiva durante el desarrollo. Estos registros deben contener principalmente información útil para la depuración y no tener ningún valor a largo plazo.",
|
||||
"c_cpp.debuggers.logging.category.warning.description": "Registros que resaltan un evento anómalo o inesperado en el flujo de la aplicación, pero que no hacen que se detenga la ejecución de la aplicación de otro modo.",
|
||||
"c_cpp.debuggers.logging.category.error.description": "Registros que resaltan cuándo se detiene el flujo de ejecución actual debido a un error. Esto debe indicar un error en la actividad actual, no un error en toda la aplicación.",
|
||||
"c_cpp.debuggers.logging.category.none.description": "No se usa para escribir mensajes de registro. Especifica que una categoría de registro no debe escribir ningún mensaje."
|
||||
"c_cpp.debuggers.logging.category.none.description": "No se usa para escribir mensajes de registro. Especifica que una categoría de registro no debe escribir ningún mensaje.",
|
||||
"c_cpp.walkthrough.title": "Introducción al desarrollo de C++",
|
||||
"c_cpp.walkthrough.description": "Sumérgete en la enriquecida experiencia de desarrollo de C++ de VS Code.",
|
||||
"c_cpp.walkthrough.set.up.title": "Configurar el entorno de C++",
|
||||
"c_cpp.walkthrough.activating.description": "Activando la extensión de C++ para determinar si se ha configurado el entorno de C++.\nActivando extensión...",
|
||||
"c_cpp.walkthrough.no.compilers.description": "No se encontró ningún compilador de C++ en la máquina, pero es necesario para usar la extensión de C++. Siga las instrucciones de la derecha para instalar uno y, a continuación, haga clic en \"Buscar mi nuevo compilador\".\n[Buscar mi nuevo compilador](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)",
|
||||
"c_cpp.walkthrough.compilers.found.description": "La extensión de C++ funciona con un compilador de C++. Haga clic en el botón siguiente para seleccionar uno de los que ya estén en su equipo.\n[Seleccionar mi compilador predeterminado](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)",
|
||||
"c_cpp.walkthrough.compilers.found.altText": "Imagen que muestra la selección de una selección rápida predeterminada del compilador y la lista de compiladores encontrados en el equipo de los usuarios, uno de los cuales está seleccionado.",
|
||||
"c_cpp.walkthrough.create.cpp.file.title": "Crear un archivo de C++",
|
||||
"c_cpp.walkthrough.create.cpp.file.description": "[Abrir](command:toSide:workbench.action.files.openFile) o [crear](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) un archivo de C++. Asegúrese de guardarlo con la extensión \".cpp\", como \"helloworld.cpp\". \n[Crear un archivo de C++](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)",
|
||||
"c_cpp.walkthrough.create.cpp.file.altText": "Abre un archivo de C++ o una carpeta con un proyecto de C++.",
|
||||
"c_cpp.walkthrough.command.prompt.title": "Volver a iniciar desde el símbolo del sistema del desarrollador",
|
||||
"c_cpp.walkthrough.command.prompt.description": "Al usar el compilador de Microsoft Visual Studio C++, la extensión de C++ requiere que inicies VS Code desde el símbolo del sistema del desarrollador. Sigue las instrucciones de la derecha para volver a iniciar.\n[Volver a cargar ventana](command:workbench.action.reloadWindow)",
|
||||
"c_cpp.walkthrough.run.debug.title": "Ejecución y depuración del archivo de C++",
|
||||
"c_cpp.walkthrough.run.debug.mac.description": "Abre el archivo de C++ y haz clic en el botón reproducir de la esquina superior derecha del editor o presiona F5 cuando estés en el archivo. Selecciona \"clang++ - Compilar y depurar archivo activo\" para ejecutarlo con el depurador.",
|
||||
"c_cpp.walkthrough.run.debug.linux.description": "Abre el archivo de C++ y haz clic en el botón reproducir de la esquina superior derecha del editor o presiona F5 cuando estés en el archivo. Selecciona \"g++ - Compilar y depurar archivo activo\" para ejecutarlo con el depurador.",
|
||||
"c_cpp.walkthrough.run.debug.windows.description": "Abre el archivo de C++ y haz clic en el botón reproducir de la esquina superior derecha del editor o presiona F5 cuando estés en el archivo. Selecciona \"cl.exe - Compilar y depurar archivo activo\" para ejecutarlo con el depurador.",
|
||||
"c_cpp.walkthrough.run.debug.windows.altText": "Imagen que muestra un punto de interrupción en un archivo de C++, el botón f5 y el símbolo de ejecución en la parte superior derecha",
|
||||
"c_cpp.walkthrough.customize.debugging.title": "Personalizar depuración",
|
||||
"c_cpp.walkthrough.customize.debugging.mac.description": "Puede personalizar la configuración de depuración (por ejemplo, para pasar argumentos al programa en tiempo de ejecución) seleccionando \"Agregar configuración de depuración\" a la derecha del botón de reproducir. La configuración de depuración personalizada se guarda en el archivo launch.json del proyecto. \n[Más información](https://code.visualstudio.com/docs/cpp/config-linux#_debug-helloworldcpp)",
|
||||
"c_cpp.walkthrough.customize.debugging.linux.description": "Puede personalizar la configuración de depuración (por ejemplo, para pasar argumentos al programa en tiempo de ejecución) seleccionando \"Agregar configuración de depuración\" a la derecha del botón de reproducir. La configuración de depuración personalizada se guarda en el archivo launch.json del proyecto. \n[Más información](https://code.visualstudio.com/docs/cpp/config-msvc#_debug-helloworldcpp)",
|
||||
"c_cpp.walkthrough.customize.debugging.windows.description": "Puede personalizar la configuración de depuración (por ejemplo, para pasar argumentos al programa en tiempo de ejecución) seleccionando \"Agregar configuración de depuración\" a la derecha del botón de reproducir. La configuración de depuración personalizada se guarda en el archivo launch.json del proyecto. \n[Más información](https://code.visualstudio.com/docs/cpp/config-clang-mac#_debug-helloworldcpp)",
|
||||
"c_cpp.walkthrough.customize.debugging.altText": "Imagen que muestra Agregar configuración de depuración en la lista desplegable"
|
||||
}
|
||||
@@ -6,23 +6,26 @@
|
||||
{
|
||||
"unable.to.start": "No se puede iniciar el servidor de lenguaje de C/C++. Las características de IntelliSense se deshabilitarán. Error: {0}",
|
||||
"check.permissions": "EPERM: Compruebe los permisos de \"{0}\"",
|
||||
"select.compile.commands": "Selecciona un compilador para configurarlo para IntelliSense",
|
||||
"select.compiler": "Selecciona un compilador para configurarlo para IntelliSense",
|
||||
"configure.intelliSense.forFolder": "¿Cómo deseas configurar IntelliSense para la carpeta \"{0}\"?",
|
||||
"configure.intelliSense.thisFolder": "¿Cómo deseas configurar IntelliSense para esta carpeta?",
|
||||
"found.string": "Encontrado en {0}",
|
||||
"use.compiler": "Uso {0}",
|
||||
"configuration.providers": "proveedores de configuración",
|
||||
"compilers": "Compiladores",
|
||||
"setCompiler.message": "No tiene configurado IntelliSense. A menos que establezca sus propias configuraciones, puede que IntelliSense no funcione.",
|
||||
"selectCompiler.string": "Selecciona un compilador",
|
||||
"selectAnotherCompiler.string": "Seleccionar otro compilador en mi máquina",
|
||||
"selectIntelliSenseConfiguration.string": "Seleccionar configuración de IntelliSense...",
|
||||
"use.provider": "Uso {0}",
|
||||
"use.compileCommands": "Uso {0}",
|
||||
"selectAnotherCompiler.string": "Seleccionar otro compilador en mi máquina...",
|
||||
"installCompiler.string": "Ayuda para instalar un compilador",
|
||||
"noConfig.string": "No configurar ningún compilador (no recomendado)",
|
||||
"noConfig.string": "No configurar con un compilador (no recomendado)",
|
||||
"selectCompiler.string": "Selecciona un compilador",
|
||||
"confirmCompiler.string": "Sí",
|
||||
"selectCompiler.message": "Se encontró el compilador {0}. ¿Desea configurar IntelliSense con este compilador?",
|
||||
"server.crashed.restart": "El servidor de lenguaje se bloqueó. Se está reiniciando...",
|
||||
"server.crashed2": "El servidor de lenguaje se ha bloqueado cinco veces en los tres últimos minutos. No se reiniciará.",
|
||||
"loggingLevel.changed": "{0} se cambió a: {1}",
|
||||
"provider.configure.folder": "{0} desea configurar IntelliSense para la carpeta \"{1}\".",
|
||||
"provider.configure.this.folder": "{0} desea configurar IntelliSense para esta carpeta.",
|
||||
"allow.button": "Permitir",
|
||||
"dont.allow.button": "No permitir",
|
||||
"ask.me.later.button": "Preguntarme más tarde",
|
||||
"dismiss.button": "Descartar",
|
||||
"diable.warnings.button": "Deshabilitar advertencias",
|
||||
"unable.to.provide.configuration": "{0} no puede proporcionar información de configuración de IntelliSense para \"{1}\". Se utilizará la configuración de \"{2}\" en su lugar.",
|
||||
@@ -35,6 +38,11 @@
|
||||
"dont.show.again": "No volver a mostrar",
|
||||
"update.your.intellisense.settings": "Actualice la configuración de IntelliSense o use Vcpkg para instalar las bibliotecas y buscar los encabezados que faltan.",
|
||||
"configure.your.intellisense.settings": "Configure las opciones de IntelliSense para buscar los encabezados que faltan.",
|
||||
"provider.configure.folder": "{0} desea configurar IntelliSense para la carpeta \"{1}\".",
|
||||
"provider.configure.this.folder": "{0} desea configurar IntelliSense para esta carpeta.",
|
||||
"allow.button": "Permitir",
|
||||
"dont.allow.button": "No permitir",
|
||||
"ask.me.later.button": "Preguntarme más tarde",
|
||||
"a.compile.commands.file": "un archivo compile_commands.json",
|
||||
"auto-configure.intellisense.folder": "¿Desea usar {0} para configurar automáticamente IntelliSense para la carpeta \"{1}\"?",
|
||||
"auto-configure.intellisense.this.folder": "¿Desea usar {0} para configurar automáticamente IntelliSense para esta carpeta?",
|
||||
@@ -42,6 +50,5 @@
|
||||
"no.button": "No",
|
||||
"configurations.received": "Configuraciones personalizadas recibidas:",
|
||||
"browse.configuration.received": "Configuración de exploración personalizada recibida: {0}",
|
||||
"no.compilers.found": "No se encontró ningún compilador de C++ en el sistema. Para la plataforma, se recomienda instalar {0} mediante las instrucciones del editor.",
|
||||
"compilers.found": "Hemos encontrado los siguientes compiladores de C++ en el sistema. Elija un compilador en la configuración de IntelliSense del proyecto."
|
||||
"fallback.clipboard": " Se copió la declaración o definición."
|
||||
}
|
||||
@@ -7,6 +7,7 @@
|
||||
"find.all.references": "Buscar todas las referencias",
|
||||
"peek.references": "Inspeccionar referencias",
|
||||
"rename": "Cambiar nombre",
|
||||
"call.hierarchy": "Jerarquía de llamadas",
|
||||
"confirmed.reference.upper": "REFERENCIA CONFIRMADA",
|
||||
"confirmation.in.progress.upper": "CONFIRMACIÓN EN CURSO",
|
||||
"comment.reference.upper": "REFERENCIA DE COMENTARIO",
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"c.cpp.configurations": "Configuración de C/C++"
|
||||
}
|
||||
@@ -7,10 +7,12 @@
|
||||
"c.cpp.parsing.open.files.tooltip": "Analizando archivos abiertos",
|
||||
"click.to.preview": "hacer clic para obtener una vista previa de los resultados",
|
||||
"updating.intellisense.tooltip": "Actualizando IntelliSense...",
|
||||
"c.cpp.configureIntelliSenseStatus.text": "Configurar IntelliSense",
|
||||
"c.cpp.configureIntelliSenseStatus.cppText": "Configuración de IntelliSense en C/C++",
|
||||
"select.command": "Seleccione un comando...",
|
||||
"select.code.analysis.command": "Seleccione un comando de análisis de código...",
|
||||
"c.cpp.configuration.tooltip": "Configuración de C/C++",
|
||||
"c.cpp.references.statusbar": "Estado de referencias de C/C++",
|
||||
"c.cpp.compilerStatus.statusbar": "Configurar IntelliSense",
|
||||
"c.cpp.intellisense.statusbar": "Estado de IntelliSense de C/C++",
|
||||
"c.cpp.tagparser.statusbar": "Estado del analizador de etiquetas de C/C++",
|
||||
"discovering.files.tooltip": "Detectando archivos",
|
||||
@@ -28,7 +30,8 @@
|
||||
"select.workspace": "Seleccione una carpeta del área de trabajo...",
|
||||
"resume.parsing": "Reanudar el análisis de área de trabajo",
|
||||
"pause.parsing": "Pausar el análisis de área de trabajo",
|
||||
"cancel.analysis": "Cancelar {0}",
|
||||
"resume.analysis": "Reanudación de {0}",
|
||||
"pause.analysis": "Pausa de {0}"
|
||||
"cancel.analysis": "Cancelar",
|
||||
"resume.analysis": "Reanudar",
|
||||
"pause.analysis": "Pausa",
|
||||
"another.analysis": "Iniciar otro..."
|
||||
}
|
||||
@@ -18,27 +18,28 @@
|
||||
"running.analysis.text": "Code Analysis: en ejecución",
|
||||
"paused.analysis.text": "Code Analysis: en pausa",
|
||||
"mode.analysis.prefix": "Modo de Code Analysis: ",
|
||||
"c.cpp.configureIntelliSenseStatus.text": "Configurar IntelliSense",
|
||||
"c.cpp.configureIntelliSenseStatus.cppText": "Configuración de IntelliSense en C/C++",
|
||||
"select.command": "Seleccione un comando...",
|
||||
"cpptools.status.configuration": "Seleccionar configuración",
|
||||
"select.code.analysis.command": "Seleccione un comando de análisis de código...",
|
||||
"c.cpp.configuration.tooltip": "Configuración de C/C++",
|
||||
"c.cpp.references.statusbar": "Estado de referencias de C/C++",
|
||||
"c.cpp.compilerStatus.statusbar": "Configurar IntelliSense",
|
||||
"cpptools.status.intellisense": "Estado de IntelliSense de C/C++",
|
||||
"cpptools.status.tagparser": "Estado del analizador de etiquetas de C/C++",
|
||||
"cpptools.detail.tagparser": "Inicializando...",
|
||||
"cpptools.status.codeanalysis": "Estado de Code Analysis de C/C++",
|
||||
"c.cpp.codeanalysis.statusbar.runNow": "Ejecutar ahora",
|
||||
"configuration.notselected.text": "Configuración: no seleccionada",
|
||||
"configuration.selected.text": "Seleccionar configuración",
|
||||
"tagparser.pause.text": "Pausa",
|
||||
"tagparser.resume.text": "Reanudar",
|
||||
"intellisense.select.text": "Seleccione un compilador",
|
||||
"rescan.intellisense.text": "Volver a examinar",
|
||||
"rescan.intellisense.tooltip": "Volver a examinar IntelliSense",
|
||||
"mode.codeanalysis.status": "Automático",
|
||||
"mode.codeanalysis.status.automatic": "Automático",
|
||||
"mode.codeanalysis.status.manual": "Manual",
|
||||
"c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "Opciones",
|
||||
"startup.codeanalysis.status": "Iniciando...",
|
||||
"c.cpp.codeanalysis.statusbar.showRunNowOptions": "Ejecutar ahora",
|
||||
"running.analysis.processed.tooltip": "{0} en ejecución: {1} / {2} ({3}%)",
|
||||
"running.analysis.processed.tooltip": "En ejecución: {0} / {1} ({2}%)",
|
||||
"select.a.configuration": "Seleccione una configuración...",
|
||||
"edit.configuration.ui": "Editar configuraciones (interfaz de usuario)",
|
||||
"edit.configuration.json": "Editar configuraciones (JSON)",
|
||||
@@ -50,10 +51,10 @@
|
||||
"select.workspace": "Seleccione una carpeta del área de trabajo...",
|
||||
"resume.parsing": "Reanudar el análisis de área de trabajo",
|
||||
"pause.parsing": "Pausar el análisis de área de trabajo",
|
||||
"cancel.analysis": "Cancelar {0}",
|
||||
"resume.analysis": "Reanudación de {0}",
|
||||
"pause.analysis": "Pausa de {0}",
|
||||
"another.analysis": "Iniciar otro {0}...",
|
||||
"cancel.analysis": "Cancelar",
|
||||
"resume.analysis": "Reanudar",
|
||||
"pause.analysis": "Pausa",
|
||||
"another.analysis": "Iniciar otro...",
|
||||
"active.analysis": "Ejecutar Code Analysis en el archivo activo",
|
||||
"all.analysis": "Ejecutar análisis de código en todos los archivos",
|
||||
"open.analysis": "Ejecutar análisis de código en archivos abiertos"
|
||||
|
||||
@@ -167,8 +167,8 @@
|
||||
"overloads": "%d sobrecargas más",
|
||||
"specialization": "1 especialización más",
|
||||
"specializations": "%d especializaciones más",
|
||||
"compiler": "Nota: IntelliSense no está configurado del todo. Usa el comando \"Seleccionar compilador predeterminado\" para terminar la configuración.",
|
||||
"select_compiler": "Seleccione un compilador para buscar encabezados del sistema",
|
||||
"intellisense_configuration": "Nota: IntelliSense no está completamente configurado. Use la opción \"Seleccionar configuración de IntelliSense...\" para finalizar la configuración.",
|
||||
"select_intellisense_configuration": "Seleccionar una configuración de IntelliSense para buscar encabezados del sistema",
|
||||
"expands_to": "Se expande a:",
|
||||
"attention_label": "Atención:",
|
||||
"author_label": "Autor:",
|
||||
@@ -287,12 +287,14 @@
|
||||
"e_cm_file_not_in_project": "No se encontró el archivo '%s'.",
|
||||
"refactor_create_declaration_definition_failed": "Error al crear la declaración o definición: %s",
|
||||
"refactor_create_default_delete": "No se puede crear la función \"%s\". No se admite la creación de funciones predeterminadas o eliminadas.",
|
||||
"refactor_function_copied_to_clipboard": "La signatura de función se copió en el Portapapeles.",
|
||||
"refactor_function_not_created": "No se pudo crear la función '%s'.",
|
||||
"refactor_ambiguous_locations": "No se encuentra una ubicación ambigua para la función '%s'.",
|
||||
"refactor_file_not_in_project": "No se encontró el archivo '%s'.",
|
||||
"refactor_not_class_namespace": "No se encuentra la clase o el espacio de nombres '%s'.",
|
||||
"refactor_operation_unsupported": "La operación no se admite para '%s'.",
|
||||
"unknown_error": "Error desconocido.",
|
||||
"run_select_compiler": "Ejecute el comando \"Seleccionar compilador predeterminado\" para buscar los encabezados del sistema."
|
||||
"run_select_intellisense_configuration": "Ejecute la opción \"Seleccionar configuración de IntelliSense...\". para buscar los encabezados del sistema.",
|
||||
"offer_copy_declaration": "Copiar la declaración de “{0}”",
|
||||
"offer_copy_definition": "Copiar la definición de “{0}”",
|
||||
"refactor_copy_declaration_definition_failed": "Error al copiar la declaración o definición en el Portapapeles: %s"
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"walkthrough.windows.title.open.dev.command.prompt": "Volver a iniciar con el símbolo del sistema del desarrollador",
|
||||
"walkthrough.windows.background.dev.command.prompt": " Estás usando una máquina Windows con el compilador de MSVC, por lo que debes iniciar VS Code desde el símbolo del sistema del desarrollador para que todas las variables de entorno se establezcan correctamente. Para reiniciar con el símbolo del sistema del desarrollador:",
|
||||
"walkthrough.open.command.prompt": "Para abrir el Símbolo del sistema para desarrolladores para VS, escribe \"desarrollador\" en el menú Inicio de Windows. Selecciona el Símbolo del sistema para desarrolladores para VS, que irá automáticamente a la carpeta abierta actual.",
|
||||
"walkthrough.windows.press.f5": "Escribe \"code\" en el símbolo del sistema y presiona Entrar. Esto debería reiniciar VS Code y hacerte volver a este tutorial. "
|
||||
}
|
||||
@@ -5,6 +5,6 @@
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"walkthough.mac.install.compiler": "Instalación de un compilador de C++ en macOS",
|
||||
"walkthough.mac.text1": "Si está realizando el desarrollo de C++ para macOS, se recomienda instalar el compilador de Clang. Todo lo que debe hacer es ejecutar el siguiente comando en una ventana del terminal para instalar las herramientas de desarrollo de la línea de comandos:",
|
||||
"walkthough.mac.text1": "Si está realizando el desarrollo de C++ para macOS, se recomienda instalar el compilador de Clang. Todo lo que debe hacer es ejecutar el siguiente comando en una ventana del terminal (Ctrl+Shift+ `) para instalar las herramientas de desarrollo de la línea de comandos:",
|
||||
"walkthough.mac.text2": "A continuación, para comprobar que Clang está instalado, ejecute el siguiente comando en una ventana de Terminal. Debería ver un mensaje con información sobre la versión de Clang que está usando."
|
||||
}
|
||||
+1
-1
@@ -9,7 +9,7 @@
|
||||
"walkthrough.windows.link.title1": "Uso de C++ y Subsistema de Windows para Linux (WSL) en VS Code",
|
||||
"walkthrough.windows.link.title2": "instalar GCC en Windows con MinGW",
|
||||
"walkthrough.windows.text2": "Para instalar MSVC, descargue {0} de la página de Visual Studio {1}. ",
|
||||
"walkthrough.windows.build.tools1": "Build Tools para Visual Studio 2019",
|
||||
"walkthrough.windows.build.tools1": "Build Tools para Visual Studio 2022",
|
||||
"walkthrough.windows.link.downloads": "Descargas",
|
||||
"walkthrough.windows.text3": "En el Instalador de Visual Studio, compruebe la {0} carga de trabajo y seleccione {1}.",
|
||||
"walkthrough.windows.build.tools2": "Herramientas de compilación de C++",
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"c_cpp.command.configurationProviderSelect.title": "Changer le fournisseur de configuration...",
|
||||
"c_cpp.command.configurationEditJSON.title": "Modifier les configurations (JSON)",
|
||||
"c_cpp.command.configurationEditUI.title": "Modifier les configurations (IU)",
|
||||
"c_cpp.command.selectDefaultCompiler.title": "Sélectionner un compilateur par défaut",
|
||||
"c_cpp.command.selectDefaultCompiler.title": "Sélectionner un compilateur par défaut…",
|
||||
"c_cpp.command.selectIntelliSenseConfiguration.title": "Sélectionner la configuration IntelliSense…",
|
||||
"c_cpp.command.rescanCompilers.title": "Relancer l’analyse des compilateurs",
|
||||
"c_cpp.command.switchHeaderSource.title": "Basculer l'en-tête/la source",
|
||||
"c_cpp.command.enableErrorSquiggles.title": "Activer les tildes d'erreur",
|
||||
"c_cpp.command.disableErrorSquiggles.title": "Désactiver les tildes d'erreur",
|
||||
@@ -405,5 +407,27 @@
|
||||
"c_cpp.debuggers.logging.category.verbose.description": "Journaux utilisés pour effectuer une enquête interactive pendant le développement. Ces journaux d’activité doivent contenir principalement des informations utiles au débogage et n’ont aucune valeur sur le long terme.",
|
||||
"c_cpp.debuggers.logging.category.warning.description": "Journaux qui mettent en évidence un événement anormal ou inattendu dans le flux d’application, mais qui ne provoquent pas l’arrêt de l’exécution de l’application.",
|
||||
"c_cpp.debuggers.logging.category.error.description": "Journaux qui mettent en évidence le moment où le flux d’exécution actuel est arrêté en raison d’une défaillance. Ceux-ci indiquent un échec dans l’activité actuelle, et non un échec à l’échelle de l’application.",
|
||||
"c_cpp.debuggers.logging.category.none.description": "Non utilisé pour écrire des messages de journaux. Spécifie qu’une catégorie de journalisation ne doit pas écrire de messages."
|
||||
"c_cpp.debuggers.logging.category.none.description": "Non utilisé pour écrire des messages de journaux. Spécifie qu’une catégorie de journalisation ne doit pas écrire de messages.",
|
||||
"c_cpp.walkthrough.title": "Démarrer avec développement C++",
|
||||
"c_cpp.walkthrough.description": "Permet de découvrir la riche expérience de développement C++ de VS Code.",
|
||||
"c_cpp.walkthrough.set.up.title": "Configurer votre environnement C++",
|
||||
"c_cpp.walkthrough.activating.description": "Activation de l’extension C++ pour déterminer si votre environnement C++ a été configuré.\nActivation de l’extension...",
|
||||
"c_cpp.walkthrough.no.compilers.description": "Nous n’avons pas trouvé de compilateur C++ sur votre machine, qui est nécessaire pour utiliser l’extension C++. Suivez les instructions à droite pour en installer une, puis cliquez sur « Rechercher mon nouveau compilateur » ci-dessous.\n[Trouver mon nouveau compilateur](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)",
|
||||
"c_cpp.walkthrough.compilers.found.description": "L’extension C++ fonctionne avec un compilateur C++. Vous pouvez en sélectionner un parmi ceux déjà présents sur votre ordinateur en cliquant sur le bouton ci-dessous.\n[Sélectionner mon compilateur par défaut](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)",
|
||||
"c_cpp.walkthrough.compilers.found.altText": "Image montrant la sélection d’une sélection rapide de compilateur par défaut et la liste des compilateurs trouvés sur l’ordinateur des utilisateurs, dont l’un est sélectionné.",
|
||||
"c_cpp.walkthrough.create.cpp.file.title": "Créer un fichier C++",
|
||||
"c_cpp.walkthrough.create.cpp.file.description": "[Ouvrir](command:toSide:workbench.action.files.openFile) ou [créer](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) un fichier C++. Veillez à l’enregistrer avec l’extension « .cpp », telle que « helloworld.cpp ». \n[Créer un fichier C++](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)",
|
||||
"c_cpp.walkthrough.create.cpp.file.altText": "Ouvrez un fichier C++ ou un dossier avec un projet C++.",
|
||||
"c_cpp.walkthrough.command.prompt.title": "Lancer à partir de l’invite de commandes développeur",
|
||||
"c_cpp.walkthrough.command.prompt.description": "Quand vous utilisez le compilateur Microsoft Visual Studio C++, l’extension C++ vous demande de lancer VS Code à partir de l’invite de commandes du développeur. Suivez les instructions à droite pour relancer.\n[Recharger la fenêtre](command:workbench.action.reloadWindow)",
|
||||
"c_cpp.walkthrough.run.debug.title": "Exécuter et déboguer votre fichier C++",
|
||||
"c_cpp.walkthrough.run.debug.mac.description": "Permet d’ouvrir votre fichier C++ et de cliquer sur le bouton lecture dans le coin supérieur droit de l’éditeur, ou d’appuyer sur F5 lorsque vous êtes sur le fichier. Vous pouvez sélectionner « clang++ – Générer et déboguer le fichier actif » pour l’exécuter avec le débogueur.",
|
||||
"c_cpp.walkthrough.run.debug.linux.description": "Permet d’ouvrir votre fichier C++ et de cliquer sur le bouton lecture dans le coin supérieur droit de l’éditeur, ou d’appuyer sur F5 lorsque vous êtes sur le fichier. Vous pouvez sélectionner « g++ – Générer et déboguer le fichier actif » pour l’exécuter avec le débogueur.",
|
||||
"c_cpp.walkthrough.run.debug.windows.description": "Permet d’ouvrir votre fichier C++ et de cliquer sur le bouton lecture dans le coin supérieur droit de l’éditeur, ou d’appuyer sur F5 lorsque vous êtes sur le fichier. Vous pouvez sélectionner « cl.exe – Générer et déboguer le fichier actif » pour l’exécuter avec le débogueur.",
|
||||
"c_cpp.walkthrough.run.debug.windows.altText": "Image montrant un point d’arrêt dans un fichier C++, le bouton f5 et le symbole d’exécution en haut à droite",
|
||||
"c_cpp.walkthrough.customize.debugging.title": "Personnaliser le débogage",
|
||||
"c_cpp.walkthrough.customize.debugging.mac.description": "Vous pouvez personnaliser votre configuration de débogage (par exemple, pour passer des arguments à votre programme au moment de l’exécution) en sélectionnant « Ajouter une configuration de débogage » à droite du bouton de lecture. La configuration de débogage personnalisée est enregistrée dans le fichier launch.json de votre projet. \n[En savoir plus](https://code.visualstudio.com/docs/cpp/config-linux#_debug-helloworldcpp)",
|
||||
"c_cpp.walkthrough.customize.debugging.linux.description": "Vous pouvez personnaliser votre configuration de débogage (par exemple, pour passer des arguments à votre programme au moment de l’exécution) en sélectionnant « Ajouter une configuration de débogage » à droite du bouton de lecture. La configuration de débogage personnalisée est enregistrée dans le fichier launch.json de votre projet. \n[En savoir plus](https://code.visualstudio.com/docs/cpp/config-msvc#_debug-helloworldcpp)",
|
||||
"c_cpp.walkthrough.customize.debugging.windows.description": "Vous pouvez personnaliser votre configuration de débogage (par exemple, pour passer des arguments à votre programme au moment de l’exécution) en sélectionnant « Ajouter une configuration de débogage » à droite du bouton de lecture. La configuration de débogage personnalisée est enregistrée dans le fichier launch.json de votre projet. \n[En savoir plus](https://code.visualstudio.com/docs/cpp/config-clang-mac#_debug-helloworldcpp)",
|
||||
"c_cpp.walkthrough.customize.debugging.altText": "Image qui montre Ajouter une configuration de débogage dans la liste déroulante"
|
||||
}
|
||||
@@ -6,23 +6,26 @@
|
||||
{
|
||||
"unable.to.start": "Impossible de démarrer le serveur de langage C/C++. Les fonctionnalités IntelliSense sont désactivées. Erreur : {0}",
|
||||
"check.permissions": "EPERM : Vérifier les autorisations de '{0}'",
|
||||
"select.compile.commands": "Sélectionner un compilateur à configurer pour IntelliSense",
|
||||
"select.compiler": "Sélectionner un compilateur à configurer pour IntelliSense",
|
||||
"configure.intelliSense.forFolder": "Comment voulez-vous configurer IntelliSense pour le dossier «{0}» ?",
|
||||
"configure.intelliSense.thisFolder": "Comment voulez-vous configurer IntelliSense pour ce dossier ?",
|
||||
"found.string": "Trouvé sur {0}",
|
||||
"use.compiler": "Utiliser {0}",
|
||||
"configuration.providers": "fournisseurs de configuration",
|
||||
"compilers": "compilateurs",
|
||||
"setCompiler.message": "Vous n’avez aucun IntelliSense configuré. À moins que vous ne définissiez vos propres configurations, IntelliSense risque de ne pas être fonctionnel.",
|
||||
"selectCompiler.string": "Sélectionner un compilateur",
|
||||
"selectAnotherCompiler.string": "Sélectionner un autre compilateur sur ma machine",
|
||||
"selectIntelliSenseConfiguration.string": "Sélectionner la configuration IntelliSense…",
|
||||
"use.provider": "Utiliser {0}",
|
||||
"use.compileCommands": "Utiliser {0}",
|
||||
"selectAnotherCompiler.string": "Sélectionner un autre compilateur sur ma machine…",
|
||||
"installCompiler.string": "M’aider à installer un compilateur",
|
||||
"noConfig.string": "Ne pas configurer de compilateur (non recommandé)",
|
||||
"noConfig.string": "Ne pas configurer avec un compilateur (non recommandé)",
|
||||
"selectCompiler.string": "Sélectionner un compilateur",
|
||||
"confirmCompiler.string": "Oui",
|
||||
"selectCompiler.message": "Le compilateur {0} a été trouvé. Voulez-vous configurer IntelliSense avec ce compilateur ?",
|
||||
"server.crashed.restart": "Le serveur de langue s’est arrêté. Redémarrage...",
|
||||
"server.crashed2": "Le serveur de langage s'est bloqué 5 fois au cours des 3 dernières minutes. Il n'est pas redémarré.",
|
||||
"loggingLevel.changed": "{0} a été changé en : {1}",
|
||||
"provider.configure.folder": "{0} veut configurer IntelliSense pour le dossier '{1}'.",
|
||||
"provider.configure.this.folder": "{0} veut configurer IntelliSense pour ce dossier.",
|
||||
"allow.button": "Autoriser",
|
||||
"dont.allow.button": "Ne pas autoriser",
|
||||
"ask.me.later.button": "Me demander plus tard",
|
||||
"dismiss.button": "Ignorer",
|
||||
"diable.warnings.button": "Désactiver les avertissements",
|
||||
"unable.to.provide.configuration": "{0} ne peut pas fournir les informations de configuration IntelliSense de '{1}'. Les paramètres de la configuration de '{2}' sont utilisés à la place.",
|
||||
@@ -35,6 +38,11 @@
|
||||
"dont.show.again": "Ne plus afficher",
|
||||
"update.your.intellisense.settings": "Mettez à jour vos paramètres IntelliSense ou utilisez Vcpkg pour installer des bibliothèques afin de vous aider à trouver les en-têtes manquants.",
|
||||
"configure.your.intellisense.settings": "Configurez vos paramètres IntelliSense pour vous aider à trouver les en-têtes manquants.",
|
||||
"provider.configure.folder": "{0} veut configurer IntelliSense pour le dossier '{1}'.",
|
||||
"provider.configure.this.folder": "{0} veut configurer IntelliSense pour ce dossier.",
|
||||
"allow.button": "Autoriser",
|
||||
"dont.allow.button": "Ne pas autoriser",
|
||||
"ask.me.later.button": "Me demander plus tard",
|
||||
"a.compile.commands.file": "fichier compile_commands.json",
|
||||
"auto-configure.intellisense.folder": "Voulez-vous utiliser {0} pour configurer automatiquement IntelliSense pour le dossier '{1}' ?",
|
||||
"auto-configure.intellisense.this.folder": "Voulez-vous utiliser {0} pour configurer automatiquement IntelliSense pour ce dossier ?",
|
||||
@@ -42,6 +50,5 @@
|
||||
"no.button": "Non",
|
||||
"configurations.received": "Configurations personnalisées reçues :",
|
||||
"browse.configuration.received": "Configuration de navigation personnalisée reçue : {0}",
|
||||
"no.compilers.found": "Aucun C++ compilateur n’a été trouvé sur votre système. Pour votre plateforme, nous vous recommandons d’installer {0} à l’aide des instructions de l’éditeur.",
|
||||
"compilers.found": "Nous avons trouvé les compilateurs C++ suivants sur votre système. Choisissez un compilateur dans la configuration IntelliSense de votre projet."
|
||||
"fallback.clipboard": " La déclaration/définition a été copiée."
|
||||
}
|
||||
@@ -7,6 +7,7 @@
|
||||
"find.all.references": "Rechercher toutes les références",
|
||||
"peek.references": "Références d'aperçu",
|
||||
"rename": "Renommer",
|
||||
"call.hierarchy": "Hiérarchie des appels",
|
||||
"confirmed.reference.upper": "RÉFÉRENCE CONFIRMÉE",
|
||||
"confirmation.in.progress.upper": "CONFIRMATION EN COURS",
|
||||
"comment.reference.upper": "RÉFÉRENCE DE COMMENTAIRE",
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"c.cpp.configurations": "Configurations C/C++"
|
||||
}
|
||||
@@ -7,10 +7,12 @@
|
||||
"c.cpp.parsing.open.files.tooltip": "Analyse des fichiers ouverts",
|
||||
"click.to.preview": "cliquez pour voir un aperçu des résultats",
|
||||
"updating.intellisense.tooltip": "Mise à jour d'IntelliSense",
|
||||
"c.cpp.configureIntelliSenseStatus.text": "Configurer IntelliSense",
|
||||
"c.cpp.configureIntelliSenseStatus.cppText": "Configuration d’IntelliSense en C/C++",
|
||||
"select.command": "Sélectionner une commande...",
|
||||
"select.code.analysis.command": "Sélectionner une commande d’analyse du code...",
|
||||
"c.cpp.configuration.tooltip": "Configuration C/C++",
|
||||
"c.cpp.references.statusbar": "État des références C/C++",
|
||||
"c.cpp.compilerStatus.statusbar": "Configurer IntelliSense",
|
||||
"c.cpp.intellisense.statusbar": "État IntelliSense C/C++",
|
||||
"c.cpp.tagparser.statusbar": "État de l’analyseur de balises C/C++",
|
||||
"discovering.files.tooltip": "Détection de fichiers",
|
||||
@@ -28,7 +30,8 @@
|
||||
"select.workspace": "Sélectionner un dossier d'espace de travail...",
|
||||
"resume.parsing": "Reprendre l’analyse de l’espace de travail",
|
||||
"pause.parsing": "Suspendre l’analyse de l’espace de travail",
|
||||
"cancel.analysis": "Annuler {0}",
|
||||
"resume.analysis": "Reprendre {0}",
|
||||
"pause.analysis": "Mettre en pause {0}"
|
||||
"cancel.analysis": "Annuler",
|
||||
"resume.analysis": "Reprendre",
|
||||
"pause.analysis": "Suspendre",
|
||||
"another.analysis": "Démarrer une autre..."
|
||||
}
|
||||
@@ -18,27 +18,28 @@
|
||||
"running.analysis.text": "Code Analysis : en cours d’exécution",
|
||||
"paused.analysis.text": "Code Analysis : suspendu",
|
||||
"mode.analysis.prefix": "Mode Code Analysis : ",
|
||||
"c.cpp.configureIntelliSenseStatus.text": "Configurer IntelliSense",
|
||||
"c.cpp.configureIntelliSenseStatus.cppText": "Configuration d’IntelliSense en C/C++",
|
||||
"select.command": "Sélectionner une commande...",
|
||||
"cpptools.status.configuration": "Sélectionner une configuration",
|
||||
"select.code.analysis.command": "Sélectionner une commande d’analyse du code...",
|
||||
"c.cpp.configuration.tooltip": "Configuration C/C++",
|
||||
"c.cpp.references.statusbar": "État des références C/C++",
|
||||
"c.cpp.compilerStatus.statusbar": "Configurer IntelliSense",
|
||||
"cpptools.status.intellisense": "État IntelliSense C/C++",
|
||||
"cpptools.status.tagparser": "État de l’analyseur de balises C/C++",
|
||||
"cpptools.detail.tagparser": "Initialisation en cours...",
|
||||
"cpptools.status.codeanalysis": "État du Code Analysis C/C++",
|
||||
"c.cpp.codeanalysis.statusbar.runNow": "Exécuter maintenant",
|
||||
"configuration.notselected.text": "Configuration : non sélectionnée",
|
||||
"configuration.selected.text": "Sélectionner une configuration",
|
||||
"tagparser.pause.text": "Pause",
|
||||
"tagparser.resume.text": "Reprendre",
|
||||
"intellisense.select.text": "Sélectionnez un compilateur",
|
||||
"rescan.intellisense.text": "Relancer l'analyse",
|
||||
"rescan.intellisense.tooltip": "Relancer l'analyse IntelliSense",
|
||||
"mode.codeanalysis.status": "Automatique",
|
||||
"mode.codeanalysis.status.automatic": "Automatique",
|
||||
"mode.codeanalysis.status.manual": "Manuel",
|
||||
"c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "Options",
|
||||
"startup.codeanalysis.status": "Démarrage en cours...",
|
||||
"c.cpp.codeanalysis.statusbar.showRunNowOptions": "Exécuter maintenant",
|
||||
"running.analysis.processed.tooltip": "En cours d'exécution {0}: {1} / {2} ({3}%)",
|
||||
"running.analysis.processed.tooltip": "En cours d’exécution : {0}/{1} ({2} %)",
|
||||
"select.a.configuration": "Sélectionner une configuration...",
|
||||
"edit.configuration.ui": "Modifier les configurations (IU)",
|
||||
"edit.configuration.json": "Modifier les configurations (JSON)",
|
||||
@@ -50,10 +51,10 @@
|
||||
"select.workspace": "Sélectionner un dossier d'espace de travail...",
|
||||
"resume.parsing": "Reprendre l’analyse de l’espace de travail",
|
||||
"pause.parsing": "Suspendre l’analyse de l’espace de travail",
|
||||
"cancel.analysis": "Annuler {0}",
|
||||
"resume.analysis": "Reprendre {0}",
|
||||
"pause.analysis": "Mettre en pause {0}",
|
||||
"another.analysis": "Démarrer une autre {0}...",
|
||||
"cancel.analysis": "Annuler",
|
||||
"resume.analysis": "Reprendre",
|
||||
"pause.analysis": "Suspendre",
|
||||
"another.analysis": "Démarrer une autre...",
|
||||
"active.analysis": "Exécuter Code Analysis sur le fichier actif",
|
||||
"all.analysis": "Exécuter une analyse de code sur Tous les fichiers",
|
||||
"open.analysis": "Exécuter une analyse de code sur Ouvrir les fichiers"
|
||||
|
||||
@@ -167,8 +167,8 @@
|
||||
"overloads": "+%d surcharges",
|
||||
"specialization": "+1 spécialisation",
|
||||
"specializations": "+%d spécialisations",
|
||||
"compiler": "Note : IntelliSense n’est pas entièrement configuré. Utilisez la commande « Sélectionner le compilateur par défaut » pour terminer la configuration.",
|
||||
"select_compiler": "Sélectionner un compilateur pour localiser les en-têtes système",
|
||||
"intellisense_configuration": "Note : IntelliSense n’est pas entièrement configuré. Utilisez la commande « Sélectionner la configuration IntelliSense… » pour terminer la configuration.",
|
||||
"select_intellisense_configuration": "Sélectionner une configuration IntelliSense pour localiser les en-têtes système",
|
||||
"expands_to": "Se développe sur :",
|
||||
"attention_label": "Attention :",
|
||||
"author_label": "Auteur :",
|
||||
@@ -287,12 +287,14 @@
|
||||
"e_cm_file_not_in_project": "Le fichier '%s' est introuvable.",
|
||||
"refactor_create_declaration_definition_failed": "Échec de la création de la déclaration/définition : %s",
|
||||
"refactor_create_default_delete": "Impossible de créer la fonction '%s'. La création de fonctions par défaut ou supprimées n’est pas prise en charge.",
|
||||
"refactor_function_copied_to_clipboard": "La signature de fonction a été copiée dans le Presse-papiers.",
|
||||
"refactor_function_not_created": "Impossible de créer la fonction '%s'.",
|
||||
"refactor_ambiguous_locations": "Impossible de trouver un emplacement non ambigu pour la fonction '%s'.",
|
||||
"refactor_file_not_in_project": "Le fichier '%s' est introuvable.",
|
||||
"refactor_not_class_namespace": "La classe ou l'espace de noms '%s' est introuvable.",
|
||||
"refactor_operation_unsupported": "L'opération n'est pas prise en charge pour '%s'.",
|
||||
"unknown_error": "Erreur inconnue.",
|
||||
"run_select_compiler": "Veuillez exécutez la commande « Sélectionner le compilateur par défaut » pour localiser vos en-têtes système."
|
||||
"run_select_intellisense_configuration": "Veuillez exécuter la commande « Sélectionner la configuration IntelliSense… » pour localiser vos en-têtes système.",
|
||||
"offer_copy_declaration": "Copier la déclaration de '{0}'",
|
||||
"offer_copy_definition": "Copier la définition de '{0}'",
|
||||
"refactor_copy_declaration_definition_failed": "Échec de la copie de la déclaration/définition dans le presse-papiers : %s"
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"walkthrough.windows.title.open.dev.command.prompt": "Relancer à l’aide de l’invite de commandes développeur",
|
||||
"walkthrough.windows.background.dev.command.prompt": " Vous utilisez une machine Windows avec le compilateur MSVC. Vous devez donc démarrer VS Code à partir de l’invite de commandes développeur pour que toutes les variables d’environnement soient correctement définies. Pour relancer à l’aide de l’invite de commandes développeur :",
|
||||
"walkthrough.open.command.prompt": "Ouvrez l’Invite de commandes développeur pour VS en tapant « développeur » dans le menu Démarrer Windows. Sélectionnez l’Invite de commandes développeur pour VS, qui naviguera automatiquement vers votre dossier ouvert actuel.",
|
||||
"walkthrough.windows.press.f5": "Tapez « code » dans l’invite de commandes et appuyez sur Entrée. Vous devriez relancer VS Code et revenir à cette procédure pas à pas. "
|
||||
}
|
||||
@@ -5,6 +5,6 @@
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"walkthough.mac.install.compiler": "Installer un compilateur C++ sur macOS",
|
||||
"walkthough.mac.text1": "Si vous effectuez du développement C++ pour macOS, nous vous recommandons d'installer le compilateur Clang. Il vous suffit d'exécuter la commande suivante dans une fenêtre de Terminal pour installer les outils de développement en ligne de commande :",
|
||||
"walkthough.mac.text1": "Si vous effectuez du développement en C++ pour macOS, nous vous recommandons d’installer le compilateur Clang. Il vous suffit d’exécuter la commande suivante dans une fenêtre de Terminal (Ctrl+Shift+ `) pour installer les outils de développement en ligne de commande :",
|
||||
"walkthough.mac.text2": "Ensuite, pour vérifier que Clang est installé, exécutez la commande suivante dans une fenêtre de terminal. Vous devez voir un message contenant des informations sur la version de Clang que vous utilisez."
|
||||
}
|
||||
+1
-1
@@ -9,7 +9,7 @@
|
||||
"walkthrough.windows.link.title1": "Utilisation de C++ et du Sous-système Windows pour Linux (WSL) dans VS Code",
|
||||
"walkthrough.windows.link.title2": "installer GCC sur Windows avec MinGW",
|
||||
"walkthrough.windows.text2": "Pour installer MSVC, téléchargez {0} à partir de la page Visual Studio {1}. ",
|
||||
"walkthrough.windows.build.tools1": "Build Tools pour Visual Studio 2019",
|
||||
"walkthrough.windows.build.tools1": "Build Tools pour Visual Studio 2022",
|
||||
"walkthrough.windows.link.downloads": "Téléchargements",
|
||||
"walkthrough.windows.text3": "Dans le Visual Studio Installer, vérifiez la charge de travail {0} et sélectionnez {1}.",
|
||||
"walkthrough.windows.build.tools2": "C++ Build Tools",
|
||||
|
||||
@@ -16,6 +16,6 @@
|
||||
"reinstall.extension.text5": "In Windows:",
|
||||
"reinstall.extension.text6": "In Linux:",
|
||||
"reinstall.extension.text7": "Reinstallare quindi tramite l'interfaccia utente del marketplace in VS Code.",
|
||||
"reinstall.extension.text8": "Se la versione corretta dell'estensione non viene distribuita da VS Code, è possibile {0} e installare il file VSIX corretto per il sistema usando l'opzione 'Installa da VSIX...' nel menu '...' nell'interfaccia utente del marketplace in VS Code.",
|
||||
"reinstall.extension.text8": "Se la versione corretta dell'estensione non viene distribuita da VS Code, è possibile {0} e installare il VSIX corretto per il sistema usando l’opzione 'Installa da VSIX...' nel menu '...' nell'interfaccia utente del marketplace in VS Code.",
|
||||
"download.vsix.link.title": "scaricato dal sito Web del marketplace VS Code"
|
||||
}
|
||||
@@ -16,7 +16,9 @@
|
||||
"c_cpp.command.configurationProviderSelect.title": "Cambia provider di configurazione...",
|
||||
"c_cpp.command.configurationEditJSON.title": "Modifica configurazioni (JSON)",
|
||||
"c_cpp.command.configurationEditUI.title": "Modifica configurazioni (interfaccia utente)",
|
||||
"c_cpp.command.selectDefaultCompiler.title": "Seleziona compilatore predefinito",
|
||||
"c_cpp.command.selectDefaultCompiler.title": "Seleziona compilatore predefinito...",
|
||||
"c_cpp.command.selectIntelliSenseConfiguration.title": "Seleziona configurazione IntelliSense...",
|
||||
"c_cpp.command.rescanCompilers.title": "Ripeti analisi dei compilatori",
|
||||
"c_cpp.command.switchHeaderSource.title": "Scambia intestazione/origine",
|
||||
"c_cpp.command.enableErrorSquiggles.title": "Abilita i segni di revisione per gli errori",
|
||||
"c_cpp.command.disableErrorSquiggles.title": "Disabilita i segni di revisione per gli errori",
|
||||
@@ -405,5 +407,27 @@
|
||||
"c_cpp.debuggers.logging.category.verbose.description": "Log usati per l'indagine interattiva durante lo sviluppo. Questi log devono contenere principalmente informazioni utili per il debug e non devono contenere valori a lungo termine.",
|
||||
"c_cpp.debuggers.logging.category.warning.description": "Log che evidenziano un evento anomalo o imprevisto nel flusso dell'applicazione, ma non causano altrimenti l'arresto dell'esecuzione dell'applicazione.",
|
||||
"c_cpp.debuggers.logging.category.error.description": "Log che evidenziano quando il flusso corrente di esecuzione viene arrestato a causa di un errore. Devono indicare un errore nell'attività corrente, non un errore a livello di applicazione.",
|
||||
"c_cpp.debuggers.logging.category.none.description": "Non utilizzato per la scrittura di messaggi di log. Specifica che una categoria di registrazione non deve scrivere messaggi."
|
||||
"c_cpp.debuggers.logging.category.none.description": "Non utilizzato per la scrittura di messaggi di log. Specifica che una categoria di registrazione non deve scrivere messaggi.",
|
||||
"c_cpp.walkthrough.title": "Introduzione allo sviluppo C++",
|
||||
"c_cpp.walkthrough.description": "Scoprire l'esperienza di sviluppo C++ avanzata di VS Code.",
|
||||
"c_cpp.walkthrough.set.up.title": "Configurare l'ambiente C++",
|
||||
"c_cpp.walkthrough.activating.description": "Attivazione dell'estensione C++ per determinare se l'ambiente C++ è stato configurato.\nAttivazione dell'estensione...",
|
||||
"c_cpp.walkthrough.no.compilers.description": "Non è stato possibile trovare un compilatore C++ nel computer, necessario per usare l'estensione C++. Seguire le istruzioni a destra per installarne uno, quindi fare clic su “Trova il nuovo compilatore” di seguito.\n [Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)",
|
||||
"c_cpp.walkthrough.compilers.found.description": "L'estensione C++ funziona con un compilatore C++. Selezionare una delle opzioni già presenti nel computer facendo clic sul pulsante seguente.\n [Selezionare il compilatore predefinito](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)",
|
||||
"c_cpp.walkthrough.compilers.found.altText": "Immagine che mostra la selezione di un quickpick del compilatore predefinito e l'elenco dei compilatori trovati nel computer degli utenti, uno dei quali è selezionato.",
|
||||
"c_cpp.walkthrough.create.cpp.file.title": "Creare un file C++",
|
||||
"c_cpp.walkthrough.create.cpp.file.description": "[Open](command:toSide:workbench.action.files.openFile) o [creare](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) un file C++. Assicurasi di salvarlo con l'estensione \".cpp\", ad esempio \"helloworld.cpp\". \n[Creare un file C++](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)",
|
||||
"c_cpp.walkthrough.create.cpp.file.altText": "Apre un file C++ o una cartella con un progetto C++.",
|
||||
"c_cpp.walkthrough.command.prompt.title": "Prompt dei comandi per gli sviluppatori",
|
||||
"c_cpp.walkthrough.command.prompt.description": "Quando si usa il compilatore C++ Microsoft Visual Studio, l'estensione C++ richiede di avviare VS Code dal prompt dei comandi per sviluppatori. Seguire le istruzioni a destra per riavviare.\n[Reload Window](command:workbench.action.reloadWindow)",
|
||||
"c_cpp.walkthrough.run.debug.title": "Esegui con debug il file C++",
|
||||
"c_cpp.walkthrough.run.debug.mac.description": "Aprire il file C++ e fare clic sul pulsante Riproduci nell'angolo in alto a destra dell'editor oppure premere F5 quando è presente sul file. Selezionare \"clang++ - Compila ed esegui il debug del file attivo\" da eseguire con il debugger.",
|
||||
"c_cpp.walkthrough.run.debug.linux.description": "Aprire il file C++ e fare clic sul pulsante Riproduci nell'angolo in alto a destra dell'editor oppure premere F5 quando è presente sul file. Selezionare \"g++ - Compila ed esegue il debug del file attivo\" da eseguire con il debugger.",
|
||||
"c_cpp.walkthrough.run.debug.windows.description": "Aprire il file C++ e fare clic sul pulsante Riproduci nell'angolo in alto a destra dell'editor oppure premere F5 quando è presente sul file. Selezionare \"cl.exe - Compila ed esegue il debug del file attivo\" da eseguire con il debugger.",
|
||||
"c_cpp.walkthrough.run.debug.windows.altText": "Immagine che mostra un punto di interruzione in un file C++, il tasto f5 e il simbolo di esecuzione in alto a destra",
|
||||
"c_cpp.walkthrough.customize.debugging.title": "Personalizzare debug",
|
||||
"c_cpp.walkthrough.customize.debugging.mac.description": "È possibile personalizzare la configurazione di debug, ad esempio per passare argomenti al programma in fase di esecuzione, selezionando \"Aggiungi configurazione di debug\" a destra del pulsante Riproduci. La configurazione di debug personalizzata viene salvata nel file launch.json del progetto. \n[Altre informazioni](https://code.visualstudio.com/docs/cpp/config-linux#_debug-helloworldcpp)",
|
||||
"c_cpp.walkthrough.customize.debugging.linux.description": "È possibile personalizzare la configurazione di debug, ad esempio per passare argomenti al programma in fase di esecuzione, selezionando \"Aggiungi configurazione di debug\" a destra del pulsante Riproduci. La configurazione di debug personalizzata viene salvata nel file launch.json del progetto. \n[Altre informazioni](https://code.visualstudio.com/docs/cpp/config-msvc#_debug-helloworldcpp)",
|
||||
"c_cpp.walkthrough.customize.debugging.windows.description": "È possibile personalizzare la configurazione di debug, ad esempio per passare argomenti al programma in fase di esecuzione, selezionando \"Aggiungi configurazione di debug\" a destra del pulsante Riproduci. La configurazione di debug personalizzata viene salvata nel file launch.json del progetto. \n[Altre informazioni](https://code.visualstudio.com/docs/cpp/config-clang-mac#_debug-helloworldcpp)",
|
||||
"c_cpp.walkthrough.customize.debugging.altText": "Immagine che mostra l'aggiunta della configurazione di debug nell'elenco a discesa"
|
||||
}
|
||||
@@ -6,23 +6,26 @@
|
||||
{
|
||||
"unable.to.start": "Non è possibile avviare il server di linguaggio C/C++. Le funzionalità IntelliSense verranno disabilitate. Errore: {0}",
|
||||
"check.permissions": "EPERM: verificare le autorizzazioni per '{0}'",
|
||||
"select.compile.commands": "Seleziona un compilatore da configurare per IntelliSense",
|
||||
"select.compiler": "Seleziona un compilatore da configurare per IntelliSense",
|
||||
"configure.intelliSense.forFolder": "Come si desidera configurare IntelliSense per la cartella '{0}'?",
|
||||
"configure.intelliSense.thisFolder": "Come si desidera configurare IntelliSense per questa cartella?",
|
||||
"found.string": "Trovato in {0}",
|
||||
"use.compiler": "Usa {0}",
|
||||
"configuration.providers": "Provider di configurazione",
|
||||
"compilers": "compilatori",
|
||||
"setCompiler.message": "Compilatore IntelliSense non configurato. A meno che non si impostino configurazioni personalizzate, IntelliSense potrebbe non funzionare.",
|
||||
"selectCompiler.string": "Seleziona compilatore",
|
||||
"selectAnotherCompiler.string": "Seleziona un altro compilatore nel computer",
|
||||
"selectIntelliSenseConfiguration.string": "Seleziona configurazione IntelliSense...",
|
||||
"use.provider": "Usa {0}",
|
||||
"use.compileCommands": "Usa {0}",
|
||||
"selectAnotherCompiler.string": "Seleziona un altro compilatore nel computer...",
|
||||
"installCompiler.string": "Aiutami a installare un compilatore",
|
||||
"noConfig.string": "Non configurare un compilatore (scelta non consigliata)",
|
||||
"selectCompiler.string": "Seleziona compilatore",
|
||||
"confirmCompiler.string": "Sì",
|
||||
"selectCompiler.message": "È stato trovato il {0} del compilatore. Configurare IntelliSense con questo compilatore?",
|
||||
"server.crashed.restart": "Si è verificato un arresto anomalo del server di linguaggio. Riavvio...",
|
||||
"server.crashed2": "Si sono verificati cinque arresti anomali del server di linguaggio negli ultimi tre minuti. Non verrà riavviato.",
|
||||
"loggingLevel.changed": "{0} è stato modificato in: {1}",
|
||||
"provider.configure.folder": "{0} vuole configurare IntelliSense per la cartella '{1}'.",
|
||||
"provider.configure.this.folder": "{0} vuole configurare IntelliSense per questa cartella.",
|
||||
"allow.button": "Consenti",
|
||||
"dont.allow.button": "Non consentire",
|
||||
"ask.me.later.button": "Chiedi in seguito",
|
||||
"dismiss.button": "Ignora",
|
||||
"diable.warnings.button": "Disabilita avvisi",
|
||||
"unable.to.provide.configuration": "{0} non riesce a fornire le informazioni di configurazione IntelliSense per '{1}'. Verranno usate le impostazioni della configurazione di '{2}'.",
|
||||
@@ -35,6 +38,11 @@
|
||||
"dont.show.again": "Non visualizzare più questo messaggio",
|
||||
"update.your.intellisense.settings": "Aggiornare le impostazioni di IntelliSense oppure usare vcpkg per installare le librerie per facilitare la ricerca delle intestazioni mancanti.",
|
||||
"configure.your.intellisense.settings": "Configurare le impostazioni di IntelliSense per facilitare la ricerca delle intestazioni mancanti.",
|
||||
"provider.configure.folder": "{0} vuole configurare IntelliSense per la cartella '{1}'.",
|
||||
"provider.configure.this.folder": "{0} vuole configurare IntelliSense per questa cartella.",
|
||||
"allow.button": "Consenti",
|
||||
"dont.allow.button": "Non consentire",
|
||||
"ask.me.later.button": "Chiedi in seguito",
|
||||
"a.compile.commands.file": "un file compile_commands.json",
|
||||
"auto-configure.intellisense.folder": "Usare {0} per configurare automaticamente IntelliSense per la cartella '{1}'?",
|
||||
"auto-configure.intellisense.this.folder": "Usare {0} per configurare automaticamente IntelliSense per questa cartella?",
|
||||
@@ -42,6 +50,5 @@
|
||||
"no.button": "No",
|
||||
"configurations.received": "Configurazioni personalizzate ricevute:",
|
||||
"browse.configuration.received": "La configurazione di esplorazione personalizzata è stata ricevuta: {0}",
|
||||
"no.compilers.found": "Nel sistema non sono stati trovati compilatori C++. Per la piattaforma, è consigliabile installare {0} usando le istruzioni nell'editor.",
|
||||
"compilers.found": "Nel sistema sono stati trovati i compilatori C++ seguenti. Scegliere un compilatore nella configurazione IntelliSense del progetto."
|
||||
"fallback.clipboard": " Dichiarazione/definizione copiata."
|
||||
}
|
||||
@@ -7,6 +7,7 @@
|
||||
"find.all.references": "Trova tutti i riferimenti",
|
||||
"peek.references": "Visualizza in anteprima riferimenti",
|
||||
"rename": "Rinomina",
|
||||
"call.hierarchy": "Gerarchia delle chiamate",
|
||||
"confirmed.reference.upper": "RIFERIMENTO CONFERMATO",
|
||||
"confirmation.in.progress.upper": "CONFERMA IN CORSO",
|
||||
"comment.reference.upper": "RIFERIMENTO A COMMENTO",
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"c.cpp.configurations": "Configurazioni C/C++"
|
||||
}
|
||||
@@ -7,10 +7,12 @@
|
||||
"c.cpp.parsing.open.files.tooltip": "Analisi dei file aperti",
|
||||
"click.to.preview": "fare clic per visualizzare l'anteprima dei risultati",
|
||||
"updating.intellisense.tooltip": "Aggiornamento di IntelliSense",
|
||||
"c.cpp.configureIntelliSenseStatus.text": "Configura IntelliSense",
|
||||
"c.cpp.configureIntelliSenseStatus.cppText": "C/C++ - Configura IntelliSense",
|
||||
"select.command": "Seleziona un comando...",
|
||||
"select.code.analysis.command": "Selezionare un comando di Code Analysis...",
|
||||
"c.cpp.configuration.tooltip": "Configurazione C/C++",
|
||||
"c.cpp.references.statusbar": "Stato riferimenti C/C++",
|
||||
"c.cpp.compilerStatus.statusbar": "Configura IntelliSense",
|
||||
"c.cpp.intellisense.statusbar": "Stato IntelliSense C/C++",
|
||||
"c.cpp.tagparser.statusbar": "Stato del parser del tag C/C++",
|
||||
"discovering.files.tooltip": "Individuazione dei file",
|
||||
@@ -28,7 +30,8 @@
|
||||
"select.workspace": "Seleziona una cartella dell'area di lavoro...",
|
||||
"resume.parsing": "Riprendi analisi area di lavoro",
|
||||
"pause.parsing": "Sospendi analisi area di lavoro",
|
||||
"cancel.analysis": "Annulla {0}",
|
||||
"resume.analysis": "Riprendi {0}",
|
||||
"pause.analysis": "Sospendi {0}"
|
||||
"cancel.analysis": "Annulla",
|
||||
"resume.analysis": "Riprendi",
|
||||
"pause.analysis": "Sospendi",
|
||||
"another.analysis": "Avvia un'altra..."
|
||||
}
|
||||
@@ -18,27 +18,28 @@
|
||||
"running.analysis.text": "Code Analysis: In esecuzione",
|
||||
"paused.analysis.text": "Code Analysis: Sospeso",
|
||||
"mode.analysis.prefix": "Modalità Code Analysis: ",
|
||||
"c.cpp.configureIntelliSenseStatus.text": "Configura IntelliSense",
|
||||
"c.cpp.configureIntelliSenseStatus.cppText": "C/C++ - Configura IntelliSense",
|
||||
"select.command": "Seleziona un comando...",
|
||||
"cpptools.status.configuration": "Seleziona configurazione",
|
||||
"select.code.analysis.command": "Selezionare un comando di Code Analysis...",
|
||||
"c.cpp.configuration.tooltip": "Configurazione di C/C++",
|
||||
"c.cpp.references.statusbar": "Stato riferimenti C/C++",
|
||||
"c.cpp.compilerStatus.statusbar": "Configura IntelliSense",
|
||||
"cpptools.status.intellisense": "Stato IntelliSense C/C++",
|
||||
"cpptools.status.tagparser": "Stato del parser del tag C/C++",
|
||||
"cpptools.detail.tagparser": "Inizializzazione...",
|
||||
"cpptools.status.codeanalysis": "Stato Code Analysis C/C++",
|
||||
"c.cpp.codeanalysis.statusbar.runNow": "Esegui",
|
||||
"configuration.notselected.text": "Configurazione: Non selezionata",
|
||||
"configuration.selected.text": "Seleziona configurazione",
|
||||
"tagparser.pause.text": "Sospendi",
|
||||
"tagparser.resume.text": "Riprendi",
|
||||
"intellisense.select.text": "Seleziona un compilatore",
|
||||
"rescan.intellisense.text": "Ripeti analisi",
|
||||
"rescan.intellisense.tooltip": "Ripeti analisi di IntelliSense",
|
||||
"mode.codeanalysis.status": "Automatico",
|
||||
"mode.codeanalysis.status.automatic": "Automatico",
|
||||
"mode.codeanalysis.status.manual": "Manuale",
|
||||
"c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "Opzioni",
|
||||
"startup.codeanalysis.status": "Avvio...",
|
||||
"c.cpp.codeanalysis.statusbar.showRunNowOptions": "Esegui",
|
||||
"running.analysis.processed.tooltip": "In esecuzione {0}: {1} / {2} ({3}%)",
|
||||
"running.analysis.processed.tooltip": "In esecuzione: {0} / {1} ({2}%)",
|
||||
"select.a.configuration": "Seleziona una configurazione...",
|
||||
"edit.configuration.ui": "Modifica configurazioni (interfaccia utente)",
|
||||
"edit.configuration.json": "Modifica configurazioni (JSON)",
|
||||
@@ -50,10 +51,10 @@
|
||||
"select.workspace": "Seleziona una cartella dell'area di lavoro...",
|
||||
"resume.parsing": "Riprendi analisi area di lavoro",
|
||||
"pause.parsing": "Sospendi analisi area di lavoro",
|
||||
"cancel.analysis": "Annulla {0}",
|
||||
"resume.analysis": "Riprendi {0}",
|
||||
"pause.analysis": "Sospendi {0}",
|
||||
"another.analysis": "Avvia un'altra {0}...",
|
||||
"cancel.analysis": "Annulla",
|
||||
"resume.analysis": "Riprendi",
|
||||
"pause.analysis": "Sospendi",
|
||||
"another.analysis": "Avvia un'altra...",
|
||||
"active.analysis": "Esegui analisi del codice su File attivo",
|
||||
"all.analysis": "Esegui analisi del codice su Tutti i file",
|
||||
"open.analysis": "Esegui analisi del codice su Apri file"
|
||||
|
||||
@@ -167,8 +167,8 @@
|
||||
"overloads": "+ %d overload",
|
||||
"specialization": "+ 1 specializzazione",
|
||||
"specializations": "+ %d specializzazioni",
|
||||
"compiler": "Nota: IntelliSense non è completamente configurato. Usa il comando 'Seleziona compilatore predefinito' per completare la configurazione.",
|
||||
"select_compiler": "Selezionare un compilatore per individuare le intestazioni di sistema",
|
||||
"intellisense_configuration": "Nota: IntelliSense non è completamente configurato. Usare il comando 'Seleziona configurazione IntelliSense' per completare la configurazione.",
|
||||
"select_intellisense_configuration": "Selezionare una configurazione IntelliSense per individuare le intestazioni di sistema",
|
||||
"expands_to": "Si espande in:",
|
||||
"attention_label": "Attenzione:",
|
||||
"author_label": "Autore:",
|
||||
@@ -287,12 +287,14 @@
|
||||
"e_cm_file_not_in_project": "Impossibile trovare il file \"%s\".",
|
||||
"refactor_create_declaration_definition_failed": "La creazione della dichiarazione/definizione non è stata completata: %",
|
||||
"refactor_create_default_delete": "Impossibile creare la funzione '%s'. La creazione di funzioni eliminate o predefinite non è supportata.",
|
||||
"refactor_function_copied_to_clipboard": "La firma della funzione è stata copiata negli Appunti.",
|
||||
"refactor_function_not_created": "Non è possibile creare la funzione '%s'.",
|
||||
"refactor_ambiguous_locations": "Non è possibile trovare una posizione non ambigua per la funzione '%s'.",
|
||||
"refactor_file_not_in_project": "Impossibile trovare il file \"%s\".",
|
||||
"refactor_not_class_namespace": "Non è stato possibile trovare la classe o lo spazio dei nomi '%s'.",
|
||||
"refactor_operation_unsupported": "L'operazione non è supportata per '%s'.",
|
||||
"unknown_error": "Errore sconosciuto.",
|
||||
"run_select_compiler": "Eseguire il comando 'Seleziona compilatore predefinito' per individuare le intestazioni di sistema."
|
||||
"run_select_intellisense_configuration": "Eseguire il comando 'Seleziona configurazione IntelliSense' per individuare le intestazioni di sistema.",
|
||||
"offer_copy_declaration": "Copia dichiarazione di '{0}'",
|
||||
"offer_copy_definition": "Copia definizione di '{0}'",
|
||||
"refactor_copy_declaration_definition_failed": "Copia della dichiarazione/definizione negli Appunti non riuscita: %s"
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"walkthrough.windows.title.open.dev.command.prompt": "Riavviare utilizzando il prompt dei comandi per sviluppatori",
|
||||
"walkthrough.windows.background.dev.command.prompt": " Si sta usando un computer Windows con il compilatore MSVC, quindi è necessario avviare VS Code dal prompt dei comandi per sviluppatori per impostare correttamente tutte le variabili di ambiente. Per riavviare utilizzando il prompt dei comandi per sviluppatori:",
|
||||
"walkthrough.open.command.prompt": "Per aprire il Prompt dei comandi per gli sviluppatori per Visual Studio, digitare \"developer\" nel menu Start di Windows. Selezionare il Prompt dei comandi per gli sviluppatori per Visual Studio, che passerà automaticamente alla cartella aperta corrente.",
|
||||
"walkthrough.windows.press.f5": "Digitare \"code\" nel prompt dei comandi e premere INVIO. È consigliabile riavviare VS Code e tornare a questa procedura dettagliata. "
|
||||
}
|
||||
@@ -5,6 +5,6 @@
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"walkthough.mac.install.compiler": "Installa un compilatore C++ in macOS",
|
||||
"walkthough.mac.text1": "Se si sviluppa con C++ per macOS, è consigliabile installare il compilatore Clang. A questo scopo, è sufficiente eseguire il comando seguente in una finestra di terminale per installare gli strumenti di sviluppo da riga di comando:",
|
||||
"walkthough.mac.text1": "Se si sviluppa con C++ per macOS, è consigliabile installare il compilatore Clang. A questo scopo, è sufficiente eseguire il comando seguente in una finestra di terminale (CTRL+MAIUSC+`) per installare gli strumenti di sviluppo da riga di comando:",
|
||||
"walkthough.mac.text2": "Quindi, per verificare che Clang sia installato, eseguire il comando seguente in una finestra di terminale. Verrà visualizzato un messaggio contenente informazioni sulla versione di Clang in uso."
|
||||
}
|
||||
+1
-1
@@ -9,7 +9,7 @@
|
||||
"walkthrough.windows.link.title1": "Uso di C++ e del sottosistema Windows per Linux (WSL) in VS Code",
|
||||
"walkthrough.windows.link.title2": "Installa GCC in Windows con MinGW",
|
||||
"walkthrough.windows.text2": "Per installare MSVC, scaricare {0} dalla pagina {1} di Visual Studio. ",
|
||||
"walkthrough.windows.build.tools1": "Build Tools per Visual Studio 2019",
|
||||
"walkthrough.windows.build.tools1": "Build Tools per Visual Studio 2022",
|
||||
"walkthrough.windows.link.downloads": "Download",
|
||||
"walkthrough.windows.text3": "Nel Programma di installazione di Visual Studio controllare il carico di lavoro {0} e selezionare {1}.",
|
||||
"walkthrough.windows.build.tools2": "Strumenti di compilazione C++",
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"c_cpp.command.configurationProviderSelect.title": "構成プロバイダーを変更する...",
|
||||
"c_cpp.command.configurationEditJSON.title": "構成の編集 (JSON)",
|
||||
"c_cpp.command.configurationEditUI.title": "構成の編集 (UI)",
|
||||
"c_cpp.command.selectDefaultCompiler.title": "既定のコンパイラの選択",
|
||||
"c_cpp.command.selectDefaultCompiler.title": "既定のコンパイラを選択...",
|
||||
"c_cpp.command.selectIntelliSenseConfiguration.title": "IntelliSense 構成を選択...",
|
||||
"c_cpp.command.rescanCompilers.title": "コンパイラの再スキャン",
|
||||
"c_cpp.command.switchHeaderSource.title": "ヘッダー/ソースの切り替え",
|
||||
"c_cpp.command.enableErrorSquiggles.title": "エラーの波線を有効にする",
|
||||
"c_cpp.command.disableErrorSquiggles.title": "エラーの波線を無効にする",
|
||||
@@ -405,5 +407,27 @@
|
||||
"c_cpp.debuggers.logging.category.verbose.description": "開発中の対話型調査に使用されるログ。これらのログには、主にデバッグに役立つ情報が含まれている必要があり、長期的な値は含めません。",
|
||||
"c_cpp.debuggers.logging.category.warning.description": "アプリケーション フローで異常または予期しないイベントを強調表示するログですが、それ以外の場合はアプリケーションの実行が停止することはありません。",
|
||||
"c_cpp.debuggers.logging.category.error.description": "エラーが原因で現在の実行フローが停止したときに強調表示されるログ。これは、アプリケーション全体のエラーではなく、現在のアクティビティのエラーを示している必要があります。",
|
||||
"c_cpp.debuggers.logging.category.none.description": "ログ メッセージの書き込みには使用されません。ログ カテゴリがメッセージを書き込まないことを指定します。"
|
||||
"c_cpp.debuggers.logging.category.none.description": "ログ メッセージの書き込みには使用されません。ログ カテゴリがメッセージを書き込まないことを指定します。",
|
||||
"c_cpp.walkthrough.title": "C++ 開発を開始する",
|
||||
"c_cpp.walkthrough.description": "VS Code の豊富な C++ 開発エクスペリエンスをご確認ください。",
|
||||
"c_cpp.walkthrough.set.up.title": "C++ 環境のセットアップ",
|
||||
"c_cpp.walkthrough.activating.description": "C++ 環境が設定されているかどうかを判断するために C++ 拡張機能をアクティブ化しています。\n拡張機能をアクティブ化しています...",
|
||||
"c_cpp.walkthrough.no.compilers.description": "C++ 拡張機能を使用するために必要な C++ コンパイラがマシンに見つかりませんでした。右側の指示に従ってインストールし、下の [新しいコンパイラを検索] をクリックします。\n[新しいコンパイラを検索](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)",
|
||||
"c_cpp.walkthrough.compilers.found.description": "C++ 拡張機能は C++ コンパイラで動作します。下のボタンをクリックして、マシンに既にあるものから 1 つ選択してください。\n[既定の値コンパイラの使用](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)",
|
||||
"c_cpp.walkthrough.compilers.found.altText": "既定のコンパイラのクイックピックと、ユーザー コンピューターで見つかったコンパイラのリストを示す画像。そのうちの 1 つが選択されています。",
|
||||
"c_cpp.walkthrough.create.cpp.file.title": "C++ ファイルの作成",
|
||||
"c_cpp.walkthrough.create.cpp.file.description": "[開く](command:toSide:workbench.action.files.openFile) または [作成](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) C++ ファイル。\"helloworld.cpp\" などの \".cpp\" 拡張子を使用して保存してください。\n[C++ ファイルの作成](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)",
|
||||
"c_cpp.walkthrough.create.cpp.file.altText": "C++ ファイル または C++ プロジェクトを含むフォルダーを開きます。",
|
||||
"c_cpp.walkthrough.command.prompt.title": "開発者コマンド プロンプトから再起動する",
|
||||
"c_cpp.walkthrough.command.prompt.description": "Microsoft Visual Studio C++ コンパイラを使用する場合、C++ 拡張機能では、開発者コマンド プロンプトから VS Code を起動する必要があります。右側の指示に従って再起動してください。\n[ウィンドウの再読み込み](command:workbench.action.reloadWindow)",
|
||||
"c_cpp.walkthrough.run.debug.title": "お使いの C++ ファイルを実行してデバッグする",
|
||||
"c_cpp.walkthrough.run.debug.mac.description": "C++ ファイルを開いてエディターの右上隅にある [再生] ボタンをクリックするか、ファイル上で F5 キーを押します。デバッガーで実行するには、[clang++ - アクティブ ファイルのビルドとデバッグ] を選択します。",
|
||||
"c_cpp.walkthrough.run.debug.linux.description": "C++ ファイルを開いてエディターの右上隅にある [再生] ボタンをクリックするか、ファイル上で F5 キーを押します。デバッガーで実行するには、[g++ - アクティブ ファイルのビルドとデバッグ] を選択します。",
|
||||
"c_cpp.walkthrough.run.debug.windows.description": "C++ ファイルを開いてエディターの右上隅にある [再生] ボタンをクリックするか、ファイル上で F5 キーを押します。デバッガーで実行するには、[cl.exe - アクティブ ファイルのビルドとデバッグ] を選択します。",
|
||||
"c_cpp.walkthrough.run.debug.windows.altText": "C++ ファイルのブレークポイント、f5 ボタン、右上の実行シンボルを示す画像",
|
||||
"c_cpp.walkthrough.customize.debugging.title": "デバッグのカスタマイズ",
|
||||
"c_cpp.walkthrough.customize.debugging.mac.description": "再生ボタンの右側にある [デバッグ構成の追加] を選択すると、デバッグ構成をカスタマイズできます (たとえば、実行時にプログラムに引数を渡す)。カスタム デバッグ構成は、プロジェクトの launch.json ファイルに保存されます。\n[詳細情報](https://code.visualstudio.com/docs/cpp/config-linux#_debug-helloworldcpp)",
|
||||
"c_cpp.walkthrough.customize.debugging.linux.description": "再生ボタンの右側にある [デバッグ構成の追加] を選択すると、デバッグ構成をカスタマイズできます (たとえば、実行時にプログラムに引数を渡す)。カスタム デバッグ構成は、プロジェクトの launch.json ファイルに保存されます。\n[詳細情報](https://code.visualstudio.com/docs/cpp/config-msvc#_debug-helloworldcpp)",
|
||||
"c_cpp.walkthrough.customize.debugging.windows.description": "再生ボタンの右側にある [デバッグ構成の追加] を選択すると、デバッグ構成をカスタマイズできます (たとえば、実行時にプログラムに引数を渡す)。カスタム デバッグ構成は、プロジェクトの launch.json ファイルに保存されます。\n[詳細情報](https://code.visualstudio.com/docs/cpp/config-clang-mac#_debug-helloworldcpp)",
|
||||
"c_cpp.walkthrough.customize.debugging.altText": "ドロップダウンの [デバッグ構成の追加] を表示するイメージ"
|
||||
}
|
||||
@@ -6,23 +6,26 @@
|
||||
{
|
||||
"unable.to.start": "C/C++ 言語サーバーを起動できません。IntelliSense 機能は無効になります。エラー: {0}",
|
||||
"check.permissions": "EPERM: '{0}' のアクセス許可を確認してください",
|
||||
"select.compile.commands": "IntelliSense 用に構成するコンパイラを選択する",
|
||||
"select.compiler": "IntelliSense 用に構成するコンパイラを選択する",
|
||||
"configure.intelliSense.forFolder": "'{0}' フォルダーの IntelliSense をどのように構成しますか?",
|
||||
"configure.intelliSense.thisFolder": "このフォルダーの IntelliSense をどのように構成しますか?",
|
||||
"found.string": "{0} で見つかりました",
|
||||
"use.compiler": "{0}を使用する",
|
||||
"configuration.providers": "構成プロバイダー",
|
||||
"compilers": "コンパイラ",
|
||||
"setCompiler.message": "IntelliSense が構成されていません。独自の構成を設定しない限り、IntelliSense は機能しない可能性があります。",
|
||||
"selectCompiler.string": "コンパイラを選択する",
|
||||
"selectAnotherCompiler.string": "コンピューター上の別のコンパイラを選択する",
|
||||
"selectIntelliSenseConfiguration.string": "IntelliSense 構成を選択...",
|
||||
"use.provider": "{0}を使用する",
|
||||
"use.compileCommands": "{0}を使用する",
|
||||
"selectAnotherCompiler.string": "コンピューター上の別のコンパイラを選択...",
|
||||
"installCompiler.string": "コンパイラのインストールに関するヘルプ",
|
||||
"noConfig.string": "コンパイラを構成しない (非推奨)",
|
||||
"noConfig.string": "コンパイラで構成しない (推奨されません)",
|
||||
"selectCompiler.string": "コンパイラを選択する",
|
||||
"confirmCompiler.string": "はい",
|
||||
"selectCompiler.message": "コンパイラ {0} が見つかりました。このコンパイラで IntelliSense を構成しますか?",
|
||||
"server.crashed.restart": "言語サーバーがクラッシュしました。再起動しています...",
|
||||
"server.crashed2": "言語サーバーが過去 3 分間に 5 回クラッシュしました。再起動されません。",
|
||||
"loggingLevel.changed": "{0} が次に変更されました: {1}",
|
||||
"provider.configure.folder": "{0} が '{1}' フォルダーに対して IntelliSense を構成しようとしています。",
|
||||
"provider.configure.this.folder": "{0} がこのフォルダーに対して IntelliSense を構成しようとしています。",
|
||||
"allow.button": "許可する",
|
||||
"dont.allow.button": "許可しない",
|
||||
"ask.me.later.button": "後で尋ねる",
|
||||
"dismiss.button": "消去",
|
||||
"diable.warnings.button": "警告を無効にする",
|
||||
"unable.to.provide.configuration": "{0} が '{1}' の IntelliSense 構成情報を指定できません。'{2}' 構成からの設定が代わりに使用されます。",
|
||||
@@ -35,6 +38,11 @@
|
||||
"dont.show.again": "今後は表示しない",
|
||||
"update.your.intellisense.settings": "IntelliSense の設定を更新するか、または Vcpkg を使用してライブラリをインストールし、欠落しているヘッダーを見つけやすくします。",
|
||||
"configure.your.intellisense.settings": "IntelliSense の設定を構成して、不足しているヘッダーを見つけられるようにします。",
|
||||
"provider.configure.folder": "{0} が '{1}' フォルダーに対して IntelliSense を構成しようとしています。",
|
||||
"provider.configure.this.folder": "{0} がこのフォルダーに対して IntelliSense を構成しようとしています。",
|
||||
"allow.button": "許可する",
|
||||
"dont.allow.button": "許可しない",
|
||||
"ask.me.later.button": "後で尋ねる",
|
||||
"a.compile.commands.file": "compile_commands.json ファイル",
|
||||
"auto-configure.intellisense.folder": "{0} を使用して '{1}' フォルダーの IntelliSense を自動構成しますか?",
|
||||
"auto-configure.intellisense.this.folder": "{0} を使用して、このフォルダーの IntelliSense を自動構成しますか?",
|
||||
@@ -42,6 +50,5 @@
|
||||
"no.button": "いいえ",
|
||||
"configurations.received": "カスタム構成を受信しました:",
|
||||
"browse.configuration.received": "カスタムの参照構成を受信しました: {0}",
|
||||
"no.compilers.found": "お使いのシステムで C++ コンパイラが見つかりませんでした。プラットフォーム向けに、エディターの指示に従って {0} をインストールすることをお勧めします。",
|
||||
"compilers.found": "お使いのシステムに、次の C++ コンパイラが見つかりました。プロジェクトの IntelliSense 構成でコンパイラを選択します。"
|
||||
"fallback.clipboard": " 宣言/定義がコピーされました。"
|
||||
}
|
||||
@@ -7,6 +7,7 @@
|
||||
"find.all.references": "すべての参照を検索",
|
||||
"peek.references": "参照のクイック表示",
|
||||
"rename": "名前の変更",
|
||||
"call.hierarchy": "呼び出し階層",
|
||||
"confirmed.reference.upper": "参照が確認されました",
|
||||
"confirmation.in.progress.upper": "確認が進行中です",
|
||||
"comment.reference.upper": "コメント参照",
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"c.cpp.configurations": "C/C++ 構成"
|
||||
}
|
||||
@@ -7,10 +7,12 @@
|
||||
"c.cpp.parsing.open.files.tooltip": "開いているファイルを解析しています",
|
||||
"click.to.preview": "クリックして結果をプレビューします",
|
||||
"updating.intellisense.tooltip": "IntelliSense を更新しています...",
|
||||
"c.cpp.configureIntelliSenseStatus.text": "IntelliSense の構成",
|
||||
"c.cpp.configureIntelliSenseStatus.cppText": "C/C++ IntelliSense の構成",
|
||||
"select.command": "コマンドを選択する...",
|
||||
"select.code.analysis.command": "コード分析コマンドを選択...",
|
||||
"c.cpp.configuration.tooltip": "C/C++ 構成",
|
||||
"c.cpp.references.statusbar": "C/C + + リファレンスの状態",
|
||||
"c.cpp.compilerStatus.statusbar": "IntelliSense の構成",
|
||||
"c.cpp.intellisense.statusbar": "C/c + + IntelliSense の状態",
|
||||
"c.cpp.tagparser.statusbar": "C/C + + タグ パーサーの状態",
|
||||
"discovering.files.tooltip": "ファイルを検出しています",
|
||||
@@ -28,7 +30,8 @@
|
||||
"select.workspace": "ワークスペース フォルダーを選択します...",
|
||||
"resume.parsing": "ワークスペースの解析の再開",
|
||||
"pause.parsing": "ワークスペースの解析の一時停止",
|
||||
"cancel.analysis": "{0} の取り消し",
|
||||
"resume.analysis": "{0} の再開",
|
||||
"pause.analysis": "{0}の一時停止"
|
||||
"cancel.analysis": "キャンセル",
|
||||
"resume.analysis": "再開",
|
||||
"pause.analysis": "一時停止",
|
||||
"another.analysis": "別のファイルを開始..."
|
||||
}
|
||||
@@ -18,27 +18,28 @@
|
||||
"running.analysis.text": "Code Analysis: 実行中",
|
||||
"paused.analysis.text": "Code Analysis: 一時停止",
|
||||
"mode.analysis.prefix": "Code Analysis モード: ",
|
||||
"c.cpp.configureIntelliSenseStatus.text": "IntelliSense の構成",
|
||||
"c.cpp.configureIntelliSenseStatus.cppText": "C/C++ IntelliSense の構成",
|
||||
"select.command": "コマンドを選択する...",
|
||||
"cpptools.status.configuration": "構成の選択",
|
||||
"select.code.analysis.command": "コード分析コマンドを選択...",
|
||||
"c.cpp.configuration.tooltip": "C/C++ 構成",
|
||||
"c.cpp.references.statusbar": "C/C + + リファレンスの状態",
|
||||
"c.cpp.compilerStatus.statusbar": "IntelliSense の構成",
|
||||
"cpptools.status.intellisense": "C/C++ IntelliSense の状態",
|
||||
"cpptools.status.tagparser": "C/C + + タグ パーサーの状態",
|
||||
"cpptools.detail.tagparser": "初期化しています...",
|
||||
"cpptools.status.codeanalysis": "C/C++ Code Analysis の状態",
|
||||
"c.cpp.codeanalysis.statusbar.runNow": "直ちに実行",
|
||||
"configuration.notselected.text": "構成: 未選択",
|
||||
"configuration.selected.text": "構成の選択",
|
||||
"tagparser.pause.text": "一時停止",
|
||||
"tagparser.resume.text": "再開",
|
||||
"intellisense.select.text": "コンパイラを選択する",
|
||||
"rescan.intellisense.text": "再スキャン",
|
||||
"rescan.intellisense.tooltip": "IntelliSense の再スキャン",
|
||||
"mode.codeanalysis.status": "自動",
|
||||
"mode.codeanalysis.status.automatic": "自動",
|
||||
"mode.codeanalysis.status.manual": "手動",
|
||||
"c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "オプション",
|
||||
"startup.codeanalysis.status": "開始しています...",
|
||||
"c.cpp.codeanalysis.statusbar.showRunNowOptions": "直ちに実行",
|
||||
"running.analysis.processed.tooltip": "実行中{0}: {1} / {2} ({3}%)",
|
||||
"running.analysis.processed.tooltip": "実行中: {0} / {1} ({2}%)",
|
||||
"select.a.configuration": "構成を選択する...",
|
||||
"edit.configuration.ui": "構成の編集 (UI)",
|
||||
"edit.configuration.json": "構成の編集 (JSON)",
|
||||
@@ -50,10 +51,10 @@
|
||||
"select.workspace": "ワークスペース フォルダーを選択します...",
|
||||
"resume.parsing": "ワークスペースの解析の再開",
|
||||
"pause.parsing": "ワークスペースの解析の一時停止",
|
||||
"cancel.analysis": "{0} の取り消し",
|
||||
"resume.analysis": "{0} の再開",
|
||||
"pause.analysis": "{0} の一時停止",
|
||||
"another.analysis": "別の {0} を開始...",
|
||||
"cancel.analysis": "キャンセル",
|
||||
"resume.analysis": "再開",
|
||||
"pause.analysis": "一時停止",
|
||||
"another.analysis": "別のファイルを開始...",
|
||||
"active.analysis": "アクティブ ファイルで Code Analysis を実行する",
|
||||
"all.analysis": "すべてのファイルで Code Analysis を実行する",
|
||||
"open.analysis": "開いているファイルで Code Analysis を実行する"
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user