Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
80a6d16f83 | ||
|
|
e5a976f229 | ||
|
|
980cccb1ce | ||
|
|
c3b4190601 | ||
|
|
ea2540f7f0 | ||
|
|
4015e0fc29 | ||
|
|
4221a90ee1 | ||
|
|
f8624937ef | ||
|
|
9771ca6fb1 | ||
|
|
66fd5af437 | ||
|
|
bdb77c0bcf | ||
|
|
bb42f2f56d | ||
|
|
70fbfd71e1 | ||
|
|
5b3b56c694 | ||
|
|
777ff002f1 | ||
|
|
bc477d360a | ||
|
|
5a4be2c7d3 | ||
|
|
4d6f27df02 | ||
|
|
802b46011a | ||
|
|
3a458aa99d | ||
|
|
6559cc2af0 | ||
|
|
8de8679b3e | ||
|
|
e02269ba89 | ||
|
|
7852d4587c | ||
|
|
a1cb1d8bec | ||
|
|
e10273d4a5 | ||
|
|
9ccb63f177 | ||
|
|
dbb3e72e80 | ||
|
|
4642371880 | ||
|
|
756b1aa47b | ||
|
|
fcf11debc3 | ||
|
|
cf5de9cadf | ||
|
|
4aadfda399 | ||
|
|
666bc4d703 | ||
|
|
fdd100d0cd | ||
|
|
544c672e60 | ||
|
|
80dbf491cf | ||
|
|
1a5fdd19ed | ||
|
|
361139fc67 | ||
|
|
cf9f23d081 | ||
|
|
bebf2245af | ||
|
|
11ea1e29d9 | ||
|
|
feee0c63db | ||
|
|
a2cc5d7de7 |
Generated
+1364
-1180
File diff suppressed because it is too large
Load Diff
@@ -10,8 +10,8 @@
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"dependencies": {
|
||||
"@actions/core": "^1.9.1",
|
||||
"@actions/github": "^6.0.0",
|
||||
"@actions/core": "^2.0.3",
|
||||
"@actions/github": "^8.0.1",
|
||||
"@octokit/rest": "^21.1.1",
|
||||
"@slack/web-api": "^6.9.1",
|
||||
"applicationinsights": "^2.5.1",
|
||||
|
||||
+13
-2
@@ -98,9 +98,20 @@ extends:
|
||||
- script: mkdir $(Build.ArtifactStagingDirectory)\Extension
|
||||
displayName: Create Extension Staging Directory
|
||||
|
||||
- script: yarn run vsix-prepublish
|
||||
- task: Bash@3
|
||||
displayName: Build files
|
||||
workingDirectory: $(Build.SourcesDirectory)\Extension
|
||||
inputs:
|
||||
targetType: 'inline'
|
||||
script: |
|
||||
export SRC_DIR=$(echo $BUILD_SOURCESDIRECTORY | sed 's|\\|/|g')
|
||||
cd "$SRC_DIR/Extension"
|
||||
yarn run vsix-prepublish
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "yarn run vsix-prepublish failed, sleeping for 30s before retrying..."
|
||||
sleep 30
|
||||
exit 1
|
||||
fi
|
||||
retryCountOnTaskFailure: 3
|
||||
|
||||
- script: |
|
||||
cd $(Build.SourcesDirectory)\Extension
|
||||
|
||||
+74
-15
@@ -1,5 +1,64 @@
|
||||
# C/C++ for Visual Studio Code Changelog
|
||||
|
||||
## Version 1.30.3: February 2, 2026
|
||||
### Enhancements
|
||||
* Add IntelliSense support for C++23 multidimensional subscript operators. [#11400](https://github.com/microsoft/vscode-cpptools/issues/11400), [#13798](https://github.com/microsoft/vscode-cpptools/issues/13798)
|
||||
* Change `C` completion behavior to automatically trigger after the `struct/union/enum` keyword and to filter based on the keyword. [#13634](https://github.com/microsoft/vscode-cpptools/issues/13634)
|
||||
* Add IntelliSense support for C23/C++26 `#embed`. [#13705](https://github.com/microsoft/vscode-cpptools/issues/13705)
|
||||
* Change `C++` completions after `using namespace` to include only namespaces and namespace aliases. [#14091](https://github.com/microsoft/vscode-cpptools/issues/14091)
|
||||
* Add IntelliSense support for C++23 `static operator[]`.
|
||||
|
||||
### Bug Fixes
|
||||
* Fix `C_Cpp.commentContinuationPatterns` not working after the 2nd line (for non-`/**` patterns). [#8998](https://github.com/microsoft/vscode-cpptools/issues/8998)
|
||||
* Thanks for the contribution. [@dinhtam2c](https://github.com/dinhtam2c) [PR #14074](https://github.com/microsoft/vscode-cpptools/pull/14074)
|
||||
* Fix `${userHome}` not resolving in `C_Cpp` path settings. [#10350](https://github.com/microsoft/vscode-cpptools/issues/10350)
|
||||
* Fix the Locals/Watch window displaying `std::map<enum, struct>` incorrectly when using the `cppdbg` debugger. [#12102](https://github.com/microsoft/vscode-cpptools/issues/12102)
|
||||
* Thanks for the contribution. [@OXINARF (Francisco Ferreira)](https://github.com/OXINARF) [PR MIEngine#1531](https://github.com/microsoft/MIEngine/pull/1531)
|
||||
* Fix an incorrect IntelliSense error on an overridden method. [#13729](https://github.com/microsoft/vscode-cpptools/issues/13729)
|
||||
* Fix an IntelliSense error with `std::countl_zero`. [#13876](https://github.com/microsoft/vscode-cpptools/issues/13876)
|
||||
* Fix an IntelliSense squiggle on the wrong identifier when assigning to a constant member variable. [#14018](https://github.com/microsoft/vscode-cpptools/issues/14018)
|
||||
* Fix IntelliSense with Clang mode C++23 deduced type construction with `auto`. [#14041](https://github.com/microsoft/vscode-cpptools/issues/14041)
|
||||
* Fix a long `args` list in `launch.json` getting truncated when using the `cppdbg` debugger. [#14054](https://github.com/microsoft/vscode-cpptools/issues/14054)
|
||||
* Thanks for the contribution. [@Subham-KRLX (Subham)](https://github.com/Subham-KRLX) [PR MIEngine#1529](https://github.com/microsoft/MIEngine/pull/1529)
|
||||
* Fix changes to `C_Cpp.commentContinuationPatterns` not taking effect until the extension restarts. [#14079](https://github.com/microsoft/vscode-cpptools/issues/14079)
|
||||
* Fix `C_Cpp.commentContinuationPatterns` not working correctly for a pattern if it's a prefix of a pattern that is later in the list. [#14081](https://github.com/microsoft/vscode-cpptools/issues/14081)
|
||||
* Fix completion not automatically triggering if invoked on the last column of a line when the previous token is an identifier. [#14086](https://github.com/microsoft/vscode-cpptools/issues/14086)
|
||||
* Fix an IntelliSense error with `std::popcount`. [#14105](https://github.com/microsoft/vscode-cpptools/issues/14105)
|
||||
* Fix GitHub Copilot hover. [#14114](https://github.com/microsoft/vscode-cpptools/issues/14114)
|
||||
* Fix headers sometimes using a header-only configuration from a configuration provider instead of the source file's configuration. [#14126](https://github.com/microsoft/vscode-cpptools/issues/14126)
|
||||
* Fix a reference in a `#define` not being found if it's directly after a `#include`. [#14130](https://github.com/microsoft/vscode-cpptools/issues/14130)
|
||||
* Fix a bug that could cause IntelliSense operations to fail when a document is closed during processing.
|
||||
* Fix an IntelliSense crash in `a_completion_symbol_manager::handle_function` when Copilot is enabled.
|
||||
* Fix a bug with internal buffer handling that could cause some IntelliSense operations to fail.
|
||||
|
||||
## Version 1.29.3: December 8, 2025
|
||||
### Bug Fix
|
||||
* Remove `NETFXSDKDir` from the developer environment check. [#14084](https://github.com/microsoft/vscode-cpptools/issues/14084)
|
||||
|
||||
## Version 1.29.2: December 3, 2025
|
||||
### New Feature
|
||||
* Enable setting the VS developer environment without running VS Code from the developer command prompt. [#4742](https://github.com/microsoft/vscode-cpptools/issues/4742)
|
||||
|
||||
### Enhancements
|
||||
* Add built-in file associations for C++ extensionless system headers and set `C_Cpp.autoAddFileAssociations` to `false` by default. [#4077](https://github.com/microsoft/vscode-cpptools/issues/4077)
|
||||
* Add IntelliSense support for `c23` enums with an underlying type. [#13675](https://github.com/microsoft/vscode-cpptools/issues/13675)
|
||||
|
||||
### Bug Fixes
|
||||
* Fix 'Find All References' and 'Rename' on `#define` macro definitions. [#6194](https://github.com/microsoft/vscode-cpptools/issues/6194)
|
||||
* Fix anonymous enums not working in gcc/clang modes. [#10436](https://github.com/microsoft/vscode-cpptools/issues/10436)
|
||||
* Fix Doxygen comments at the end of a function. [#13725](https://github.com/microsoft/vscode-cpptools/issues/13725)
|
||||
* Fix mac framework search path detection to include paths passed in the `includePath` from a configuration provider, and fix omission of unpopulated Mac framework paths. [#13993](https://github.com/microsoft/vscode-cpptools/issues/13993)
|
||||
* Fix formatting with `clang-tidy` randomly getting stuck on Windows (on a call to `GetOverlappedResult`). [#14025](https://github.com/microsoft/vscode-cpptools/issues/14025)
|
||||
* Fix IntelliSense with MSVC mode C++23 deduced type construction with `auto`. [#14041](https://github.com/microsoft/vscode-cpptools/issues/14041)
|
||||
* Fix code analysis re-running automatically after a settings change when diagnostics already exist if it was manually instead of automatically invoked.
|
||||
* Reduce the memory usage in a couple cases to reduce the chance of a `bad_alloc` in cpptools.
|
||||
* Update `clang-format` and `clang-tidy` from 21.1.3 to 21.1.4 (fixes some formatting bugs).
|
||||
* Fix the handling of the cl.exe `/external:I` argument for IntelliSense configuration.
|
||||
* Fix a case where a large file could cause a `bad_alloc` in cpptools-srv on Windows.
|
||||
* Update the default compiler search to include newer versions of clang/gcc.
|
||||
* Fix a potential memory corruption crash of cpptools-srv (related to PCH).
|
||||
* Fix a crash in `detect_encoding`.
|
||||
|
||||
## Version 1.28.3: October 16, 2025
|
||||
### Enhancements
|
||||
* Add IntelliSense support for c23 `bool`, `true`, and `false`. [#13737](https://github.com/microsoft/vscode-cpptools/issues/13737)
|
||||
@@ -22,7 +81,7 @@
|
||||
### Enhancements
|
||||
* Show a warning when too many files are processed in a workspace. [#10828](https://github.com/microsoft/vscode-cpptools/issues/10828)
|
||||
* Improvements to GitHub Copilot activation. [PR #13924](https://github.com/microsoft/vscode-cpptools/pull/13924)
|
||||
* Thank you for the contribution. [@dbaeumer (Dirk Bäumer)](https://github.com/dbaeumer)
|
||||
* Thanks for the contribution. [@dbaeumer (Dirk Bäumer)](https://github.com/dbaeumer)
|
||||
* Add a `C_Cpp.windowsErrorReportingMode` setting and default to only enabling WER for the first crash in a session. [#13928](https://github.com/microsoft/vscode-cpptools/issues/13928)
|
||||
|
||||
### Bug Fixes
|
||||
@@ -36,11 +95,11 @@
|
||||
* Fix bugs with 'Create Definition'. [#13741](https://github.com/microsoft/vscode-cpptools/issues/13741), [#13773](https://github.com/microsoft/vscode-cpptools/issues/13773)
|
||||
* Fix IntelliSense crashes when there are duplicate constexpr template functions in a TU. [#13775](https://github.com/microsoft/vscode-cpptools/issues/13775)
|
||||
* Fix the description of `debugServerPath`. [PR #13778](https://github.com/microsoft/vscode-cpptools/pull/13778)
|
||||
* Thank you for the contribution. [@redstrate (Joshua Goins)](https://github.com/redstrate)
|
||||
* Thanks for the contribution. [@redstrate (Joshua Goins)](https://github.com/redstrate)
|
||||
* Remove `-fmodule-mapper`, `-fdeps-format`, and some additional unnecessary args from compiler queries. [#13782](https://github.com/microsoft/vscode-cpptools/issues/13782)
|
||||
* Fix `-imacro` not configuring IntelliSense correctly. [#13785](https://github.com/microsoft/vscode-cpptools/issues/13785)
|
||||
* Fix `pipeTransport.quoteArgs` not being handled correctly. [#13791](https://github.com/microsoft/vscode-cpptools/issues/13791)
|
||||
* Thank you for the contribution. [@mrjist (Matt)](https://github.com/mrjist) [PR #13794](https://github.com/microsoft/vscode-cpptools/pull/13794)
|
||||
* Thanks for the contribution. [@mrjist (Matt)](https://github.com/mrjist) [PR #13794](https://github.com/microsoft/vscode-cpptools/pull/13794)
|
||||
* Fix `.txx` and `.tpp` not being handled as C++ header files. [#13808](https://github.com/microsoft/vscode-cpptools/issues/13808)
|
||||
* Fix an error when using GitHub Copilot with VS Code older than 1.90.0. [#13818](https://github.com/microsoft/vscode-cpptools/issues/13818)
|
||||
* Fix activation failing if the `c_cpp_properties.json` exists but fails to be opened. [#13829](https://github.com/microsoft/vscode-cpptools/issues/13829)
|
||||
@@ -62,12 +121,12 @@
|
||||
## Version 1.26.5: September 10, 2025
|
||||
### Bug Fix
|
||||
* Fix extension activation getting stuck by GitHub Copilot activation. [#13914](https://github.com/microsoft/vscode-cpptools/issues/13914)
|
||||
* Thank you for the contribution. [@dbaeumer (Dirk Bäumer)](https://github.com/dbaeumer) [PR #13918](https://github.com/microsoft/vscode-cpptools/pull/13918)
|
||||
* Thanks for the contribution. [@dbaeumer (Dirk Bäumer)](https://github.com/dbaeumer) [PR #13918](https://github.com/microsoft/vscode-cpptools/pull/13918)
|
||||
|
||||
## Version 1.26.4: September 9, 2025
|
||||
### Enhancement
|
||||
* Update GitHub Copilot APIs. [PR #13877](https://github.com/microsoft/vscode-cpptools/pull/13877)
|
||||
* Thank you for the contribution. [@dbaeumer (Dirk Bäumer)](https://github.com/dbaeumer)
|
||||
* Thanks for the contribution. [@dbaeumer (Dirk Bäumer)](https://github.com/dbaeumer)
|
||||
|
||||
## Version 1.26.3: June 24, 2025
|
||||
### New Feature
|
||||
@@ -175,13 +234,13 @@
|
||||
### Enhancements
|
||||
* Modifications to the snippet completions to more closely match the snippets provided by TypeScript. [#4482](https://github.com/microsoft/vscode-cpptools/issues/4482)
|
||||
* Enable setting multiple compile commands. [#7029](https://github.com/microsoft/vscode-cpptools/issues/7029)
|
||||
* Thank you for the contribution. [@yiftahw](https://github.com/yiftahw) [PR #12960](https://github.com/microsoft/vscode-cpptools/pull/12960)
|
||||
* Thanks for the contribution. [@yiftahw](https://github.com/yiftahw) [PR #12960](https://github.com/microsoft/vscode-cpptools/pull/12960)
|
||||
* Changes to how paths are internally canonicalized on Linux and macOS, avoiding file system access to improve performance and delay resolution of symbolic links. [#12924](https://github.com/microsoft/vscode-cpptools/issues/12924)
|
||||
* Add handling of `-fno-char8_t` and `-fchar8_t` compiler arguments. [#12968](https://github.com/microsoft/vscode-cpptools/issues/12968)
|
||||
* Add support for providing well-known compiler argument information to Copilot Completions. [PR #12979](https://github.com/microsoft/vscode-cpptools/pull/12979)
|
||||
* Fixed unnecessary cancellation of Copilot context requests. [PR #12988](https://github.com/microsoft/vscode-cpptools/pull/12988)
|
||||
* Add support for passing an additional parameter to `C_Cpp.ConfigurationSelect` command. [PR #12993](https://github.com/microsoft/vscode-cpptools/pull/12993)
|
||||
* Thank you for the contribution. [@adrianstephens](https://github.com/adrianstephens)
|
||||
* Thanks for the contribution. [@adrianstephens](https://github.com/adrianstephens)
|
||||
* Update clang path setting descriptions. [PR #13071](https://github.com/microsoft/vscode-cpptools/pull/13071)
|
||||
* Update clang-format and clang-tidy from 19.1.2 to 19.1.7.
|
||||
* IntelliSense parser updates.
|
||||
@@ -189,7 +248,7 @@
|
||||
### Bug Fixes
|
||||
* Fix a perf regression in hover operation by using cached lexer line states. [#3126](https://github.com/microsoft/vscode-cpptools/issues/3126)
|
||||
* Fix `compile_commands.json` no longer being used if the containing folder is deleted and recreated. [#7030](https://github.com/microsoft/vscode-cpptools/issues/7030)
|
||||
* Thank you for the contribution. [@yiftahw](https://github.com/yiftahw) [PR #13032](https://github.com/microsoft/vscode-cpptools/pull/13032)
|
||||
* Thanks for the contribution. [@yiftahw](https://github.com/yiftahw) [PR #13032](https://github.com/microsoft/vscode-cpptools/pull/13032)
|
||||
* Increase clang-format timeout from 10 seconds to 30 seconds. [#10213](https://github.com/microsoft/vscode-cpptools/issues/10213)
|
||||
* Fix `C_Cpp.enhancedColorization` not taking effect after it's changed. [#10565](https://github.com/microsoft/vscode-cpptools/issues/10565)
|
||||
* Fix changes to `files.encoding` not triggering a database reset. [#10892](https://github.com/microsoft/vscode-cpptools/issues/10892)
|
||||
@@ -205,9 +264,9 @@
|
||||
* Fix pattern matching of sections in `.editorConfig` files. [#12933](https://github.com/microsoft/vscode-cpptools/issues/12933)
|
||||
* Fix handling of relative paths passed to cl.exe `/reference` argument. [#12944](https://github.com/microsoft/vscode-cpptools/issues/12944)
|
||||
* Fix a leak of compile command file watchers. [#12946](https://github.com/microsoft/vscode-cpptools/issues/12946)
|
||||
* Thank you for the contribution. [@yiftahw](https://github.com/yiftahw) [PR #12948](https://github.com/microsoft/vscode-cpptools/pull/12948)
|
||||
* Thanks for the contribution. [@yiftahw](https://github.com/yiftahw) [PR #12948](https://github.com/microsoft/vscode-cpptools/pull/12948)
|
||||
* Fix a compile commands fallback logic issue. [#12947](https://github.com/microsoft/vscode-cpptools/issues/12947)
|
||||
* Thank you for the contribution. [@yiftahw](https://github.com/yiftahw) [PR #12948](https://github.com/microsoft/vscode-cpptools/pull/12948)
|
||||
* Thanks for the contribution. [@yiftahw](https://github.com/yiftahw) [PR #12948](https://github.com/microsoft/vscode-cpptools/pull/12948)
|
||||
* Fix an issue in which a `didOpen` event was processed before the language client was fully started. [#12954](https://github.com/microsoft/vscode-cpptools/issues/12954)
|
||||
* Fix the IntelliSense mode being `macos` instead of `windows` when `_WIN32` is defined on macOS. [#13016](https://github.com/microsoft/vscode-cpptools/issues/13016)
|
||||
* Fix IntelliSense bugs when using non-UTF8 file encodings. [#13028](https://github.com/microsoft/vscode-cpptools/issues/13028), [#13044](https://github.com/microsoft/vscode-cpptools/issues/13044)
|
||||
@@ -287,7 +346,7 @@
|
||||
* Fix include path ordering being incorrect if there is a duplicate. [#12525](https://github.com/microsoft/vscode-cpptools/issues/12525)
|
||||
* Fix a WebAssembly "Out of Memory" error. [#12529](https://github.com/microsoft/vscode-cpptools/issues/12529)
|
||||
* Fix an error message not being shown if the connection failed with remote attach debugging. [#12547](https://github.com/microsoft/vscode-cpptools/issues/12547)
|
||||
* Thank you for the contribution. [@MrStanislav0 (Stanislav)](https://github.com/MrStanislav0)
|
||||
* Thanks for the contribution. [@MrStanislav0 (Stanislav)](https://github.com/MrStanislav0)
|
||||
* Fix `-I` not being used if `-iquote` is also used for the same path. [#12551](https://github.com/microsoft/vscode-cpptools/issues/12551)
|
||||
* Fix issues with relative paths on `nvcc` (CUDA) command lines not being handled correctly. [#12553](https://github.com/microsoft/vscode-cpptools/issues/12553)
|
||||
* Fix a crash on shutdown on macOS with a verbose logging level. [#12567](https://github.com/microsoft/vscode-cpptools/issues/12567)
|
||||
@@ -466,7 +525,7 @@
|
||||
* Fix an exception getting thrown if IntelliSense is disabled but a configuration provider is registered. [#11795](https://github.com/microsoft/vscode-cpptools/issues/11795)
|
||||
* Fix an EACCES error when using include wildcards with system includes. [#11833](https://github.com/microsoft/vscode-cpptools/issues/11833)
|
||||
* Fix German code analysis translations. [PR #11845](https://github.com/microsoft/vscode-cpptools/pull/11845)
|
||||
* Thank you for the contribution. [@Sir2B (Tobias Obermayer)](https://github.com/Sir2B)
|
||||
* Thanks for the contribution. [@Sir2B (Tobias Obermayer)](https://github.com/Sir2B)
|
||||
* Trim trailing spaces from include paths in the configuration UI. [#11862](https://github.com/microsoft/vscode-cpptools/issues/11862)
|
||||
* Fix comma delimited lists in `@param` Doxygen parameters. [#11868](https://github.com/microsoft/vscode-cpptools/issues/11868)
|
||||
* Fix incorrect errors for `compilerPath` in the configuration UI for compilers that can be found in PATH. [#11903](https://github.com/microsoft/vscode-cpptools/issues/11903)
|
||||
@@ -604,7 +663,7 @@
|
||||
* Move user compilers to the beginning of the "known compilers" lists. [#10985](https://github.com/microsoft/vscode-cpptools/issues/10985)
|
||||
* Add file path to the details of a call hierarchy result. [#10997](https://github.com/microsoft/vscode-cpptools/issues/10997)
|
||||
* Add `miDebuggerArgs` to debugger attach option.
|
||||
* Thank you for the contribution @Summon528 [PR #11066](https://github.com/microsoft/vscode-cpptools/pull/11066)
|
||||
* Thanks for the contribution @Summon528 [PR #11066](https://github.com/microsoft/vscode-cpptools/pull/11066)
|
||||
|
||||
### Bug Fixes
|
||||
* Fix an IntelliSense parsing bug with C++20 ranges. [#8039](https://github.com/microsoft/vscode-cpptools/issues/8039)
|
||||
@@ -625,7 +684,7 @@
|
||||
* Fix the thread pool sometimes not increasing in size, which could lead to the cpptools process incorrectly being shut down. [#11003](https://github.com/microsoft/vscode-cpptools/issues/11003)
|
||||
* Stop using vcFormat if .editorconfig exists with only non-formatting cpp settings. [PR #11015](https://github.com/microsoft/vscode-cpptools/pull/11015)
|
||||
* Use integratedTerminal when user is running cl.exe for debugger. [#11032](https://github.com/microsoft/vscode-cpptools/issues/11032)
|
||||
* Thank you for the contribution @caiohamamura [PR #11035](https://github.com/microsoft/vscode-cpptools/pull/11035)
|
||||
* Thanks for the contribution @caiohamamura [PR #11035](https://github.com/microsoft/vscode-cpptools/pull/11035)
|
||||
* Fix the configure your IntelliSense notification to not show again when the "Don't Show Again" option is selected. [#11070](https://github.com/microsoft/vscode-cpptools/issues/11070)
|
||||
* Fix a bug that could cause incomplete reading of stdout/stderr of child processes on Windows.
|
||||
* Fix incorrect "declaration is incompatible" IntelliSense errors.
|
||||
@@ -1148,7 +1207,7 @@
|
||||
### New Features
|
||||
* Added support for standard `.editorconfig` entries when using vcFormat. [#7920](https://github.com/microsoft/vscode-cpptools/issues/7920)
|
||||
* Debug Step Granularity for cppdbg [PR MIEngine#1169](https://github.com/microsoft/MIEngine/pull/1169)
|
||||
* Thank you for the contribution @Trass3r
|
||||
* Thanks for the contribution @Trass3r
|
||||
* InstructionBreakpoints for cppdbg [PR MIEgnine#1192](https://github.com/microsoft/MIEngine/pull/1192)
|
||||
|
||||
### Enhancements
|
||||
|
||||
+92
-308
@@ -300,313 +300,6 @@ SOFTWARE.
|
||||
|
||||
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
llvm/llvm-project 0d44201451f03ba907cdb268ddddfc3fa38a0ebd - Apache-2.0 WITH LLVM-exception
|
||||
|
||||
|
||||
(c) ABS
|
||||
(c) (tm)
|
||||
(c) Value A
|
||||
(c) auto AS
|
||||
(c) Value Sd
|
||||
(c) auto AST
|
||||
(c) CXType PT
|
||||
(c) Type I1Ty
|
||||
(c) Value RHS
|
||||
(c) X1 ... X1
|
||||
Copy (c) Copy
|
||||
(c) Type I32Ty
|
||||
(c) Value Elt0
|
||||
(c) Type Int8Ty
|
||||
(c) Type V8x8Ty
|
||||
(c) unsigned AS
|
||||
Copy c (c) Copy
|
||||
(c) Constant One
|
||||
(c) Type FloatTy
|
||||
(c) Type Int16Ty
|
||||
(c) Type Int32Ty
|
||||
(c) Type Int64Ty
|
||||
(c) Value AllocA
|
||||
(c) Value Alloca
|
||||
Alloc1 a1 (c) R1
|
||||
Alloc1 a2 (c) R1
|
||||
copyright u'2013
|
||||
(c) FileID MainID
|
||||
(c) Lower C Upper
|
||||
(c) Stmt NumExprs
|
||||
(c) Type DoubleTy
|
||||
(c) Type I32PtrTy
|
||||
(c) Value AllocaA
|
||||
Coproc, Opc1, CRm
|
||||
(c) Align NewAlign
|
||||
(c) PointerType P2
|
||||
Copyright (c) 2012
|
||||
Exprs new (c) Stmt
|
||||
(c) DeclRefExpr Ref
|
||||
(c) ExprResult NewE
|
||||
(c) Metadata Ops MD
|
||||
(c) SelectInst SelI
|
||||
(c) SmallVector MDs
|
||||
(c) TransferBatch B
|
||||
(c) Type Int32PtrTy
|
||||
(c) Type Int64PtrTy
|
||||
(c) Value InvMaxMin
|
||||
(c) BasicBlock Entry
|
||||
(c) CXXRecordDecl CD
|
||||
(c) FunctionType FTy
|
||||
(c) Offset C- Offset
|
||||
Copyright 2010 INRIA
|
||||
Copyright 2011 INRIA
|
||||
Copyright 2012 INRIA
|
||||
Copyright 2014 INRIA
|
||||
Copyright 2015 INRIA
|
||||
Copyright 2016 INRIA
|
||||
(c) FunctionType FnTy
|
||||
(c) QualType ResultTy
|
||||
(c) SourceRange Range
|
||||
AsmToks new (c) Token
|
||||
SubExprs new (c) Stmt
|
||||
(c) BasicBlock EntryBB
|
||||
(c) FunctionType FFnTy
|
||||
(c) FunctionType IFnTy
|
||||
(c) SourceLocation Loc
|
||||
Condition (c) Branches
|
||||
Context (c) LineToUnit
|
||||
(c) ErrMsg Stream Error
|
||||
(c) SmallVector NewVars
|
||||
(c) SmallVector ToErase
|
||||
Bbb kind copyright' Bbb
|
||||
(c) Constant PosDivisorC
|
||||
CommonPtr new (c) Common
|
||||
Copyright (c) 2012 CHECK
|
||||
(c) CharUnits AlignedSize
|
||||
(c) Constant NullV2I32Ptr
|
||||
(c) Constant PosDividendC
|
||||
Copyright 2010-2011 INRIA
|
||||
Copyright 2014-2015 INRIA
|
||||
COPYRIGHT,v 1.3 2003/06/02
|
||||
Coproc, Opc1, Rt, Rt2, CRm
|
||||
Copyright 2008 Google Inc.
|
||||
Copyright 2015 Google Inc.
|
||||
Copyright 2018 Google Inc.
|
||||
Copyright The LLVM project
|
||||
coprime. APInt A HugePrime
|
||||
(c) IdentifierInfo NumExprs
|
||||
(c) VectorType Int8PtrVecTy
|
||||
Copyright (c) 1997, Phillip
|
||||
Copyright 2005, Google Inc.
|
||||
Copyright 2006, Google Inc.
|
||||
Copyright 2007, Google Inc.
|
||||
Copyright 2008, Google Inc.
|
||||
Copyright 2013, Google Inc.
|
||||
Copyright 2015, Google Inc.
|
||||
InitCache (c) TransferBatch
|
||||
Copyright 2006, Dean Edwards
|
||||
(c) CXXBaseSpecifier NumBases
|
||||
(c) Designator NumDesignators
|
||||
(c) StringLiteral NumClobbers
|
||||
Constraints new (c) StringRef
|
||||
Copyright (c) 2010 Apple Inc.
|
||||
Copyright (c) by P.J. Plauger
|
||||
Copyright 2010 Zencoder, Inc.
|
||||
Copyright 2017 Roman Lebedev.
|
||||
ParamInfo new (c) ParmVarDecl
|
||||
Copyright (c) 2009 Google Inc.
|
||||
Copyright (c) 2016 Aaron Watry
|
||||
Copyright (c) 2017 Google Inc.
|
||||
Copyright (c) 2018 Jim Ingham.
|
||||
IMPL-NEXT switch (c) IMPL-NEXT
|
||||
coprocessor. SDValue ImmCorpoc
|
||||
(c) CHECK-NEXT foo() CHECK-NEXT
|
||||
(copr0) ConstantDataVector CDV1
|
||||
(copr1) ConstantDataVector CDV2
|
||||
Copyright (c) 1994 X Consortium
|
||||
Copyright (c) 2008 Matteo Frigo
|
||||
Copyright (c) 2009 Matteo Frigo
|
||||
Copyright 2008-2010 Apple, Inc.
|
||||
Copyright 2015 Sven Verdoolaege
|
||||
Copyright 2016 Sven Verdoolaege
|
||||
Copyright 2017 Sven Verdoolaege
|
||||
Copyright 2018 Cerebras Systems
|
||||
Copyright 2018 Sven Verdoolaege
|
||||
Copyright 2019 Cerebras Systems
|
||||
Copyright, License, and Patents
|
||||
Other Coprocessor Instructions.
|
||||
(c) StringLiteral NumConstraints
|
||||
Copyright 2011 Sven Verdoolaege.
|
||||
(c) foo() pragma omp target teams
|
||||
Copyright (c) 1992 Henry Spencer.
|
||||
Copyright (c) 2004-2018 Bootstrap
|
||||
Copyright (c) 2006 Kirill Simonov
|
||||
Copyright (c) 2010-2018 Bootstrap
|
||||
Copyright 2001-2004 Unicode, Inc.
|
||||
Value0 Data.getULEB128 (c) Value1
|
||||
copyright u'2003- d, LLVM Project
|
||||
copyright u'2011- d, LLVM Project
|
||||
Copyright (c) 1999-2007 Apple Inc.
|
||||
Copyright (c) 2009-2019 Polly Team
|
||||
Copyright 2012 Universiteit Leiden
|
||||
Copyright 2016-2017 Tobias Grosser
|
||||
copyright u'2007- d, The LLDB Team
|
||||
copyright u'2013- d, Analyzer Team
|
||||
Constraint new (c) AtomicConstraint
|
||||
Copyright (c) 2015the LLVM Project.
|
||||
copyright u'2007- d, The Clang Team
|
||||
copyright u'2010- d, The Polly Team
|
||||
copyright u'2017- d, The Flang Team
|
||||
Copyright (C ) Microsoft Corporation
|
||||
Copyright (c) 2001 Alexander Peslyak
|
||||
Copyright (c) 2014, 2015 Google Inc.
|
||||
Copyright (c) 2019 The MLIR Authors.
|
||||
Copyright (c) Microsoft Corporation.
|
||||
Copyright 2015-2016 Sven Verdoolaege
|
||||
Copyright 2016, 2017 Tobias Grosser.
|
||||
Copyright 2016-2017 Sven Verdoolaege
|
||||
Copyright 2018-2019 Cerebras Systems
|
||||
(c) PointerType InitPtrType InitValue
|
||||
Copyright (c) 1999-2003 Steve Purcell
|
||||
Copyright (c) 2012-2016, Yann Collet.
|
||||
Copyright 2011,2015 Sven Verdoolaege.
|
||||
DiagStorage new (c) DiagnosticStorage
|
||||
Copyright (c) 2008 Christian Haggstrom
|
||||
Copyright (c) 2012 Avionic Design GmbH
|
||||
Copyright 2007-2010 by the Sphinx team
|
||||
(c) CHECK-NEXT T break CHECK-NEXT Preds
|
||||
Copyright (c) 2002-2004 Tim J. Robbins.
|
||||
Copyright (c) 2005 Free Standards Group
|
||||
Copyright (c) 2019, NVIDIA CORPORATION.
|
||||
Copyright 2005-2007 Universiteit Leiden
|
||||
Copyright 2006-2007 Universiteit Leiden
|
||||
Copyright 2012 Ecole Normale Superieure
|
||||
Copyright 2013 Ecole Normale Superieure
|
||||
Copyright 2014 Ecole Normale Superieure
|
||||
Copyright 2016 Ismael Jimenez Martinez.
|
||||
NameCount AS.getU32 (c) AbbrevTableSize
|
||||
in LLVM, Diploma Thesis, (c) April 2011
|
||||
(c) StringRef NumClobbers // FIXME Avoid
|
||||
Copyright (c) 1997-2019 Intel Corporation
|
||||
Copyright (c) 2010-2015 Benjamin Peterson
|
||||
Copyright 1992, 1993, 1994 Henry Spencer.
|
||||
coproc_option_imm Operand let PrintMethod
|
||||
(c) CXXCtorInitializer NumIvarInitializers
|
||||
(c), intrinsic cos !WARNING Attribute BIND
|
||||
Copyright (c) 2004 eXtensible Systems, Inc.
|
||||
Copyright (c) 2009-2014 by the contributors
|
||||
Copyright (c) 2009-2015 by the contributors
|
||||
Copyright (c) 2009-2016 by the contributors
|
||||
Copyright (c) 2009-2019 by the contributors
|
||||
Copyright (c) 2011-2014 by the contributors
|
||||
Copyright (c) 2011-2019 by the contributors
|
||||
Copyright (c) 2017-2019 by the contributors
|
||||
(c) CHECK-NEXT Preds (1) B4 CHECK-NEXT Succs
|
||||
(c) CHECK-NEXT Preds (1) B5 CHECK-NEXT Succs
|
||||
(c) CHECK-NEXT Preds (1) B7 CHECK-NEXT Succs
|
||||
CoprocNumAsmOperand AsmOperandClass let Name
|
||||
CoprocRegAsmOperand AsmOperandClass let Name
|
||||
Copyright (c) 1993 by Sun Microsystems, Inc.
|
||||
Copyright 2012,2014 Ecole Normale Superieure
|
||||
Copyright 2012-2013 Ecole Normale Superieure
|
||||
Copyright 2012-2014 Ecole Normale Superieure
|
||||
Copyright 2013-2014 Ecole Normale Superieure
|
||||
Copyright (c) 1992, 1993, 1994 Henry Spencer.
|
||||
Copyright (c) 2002-2007 Michael J. Fromberger
|
||||
Copyright 2000 Free Software Foundation, Inc.
|
||||
CompUnitCount AS.getU32 (c) LocalTypeUnitCount
|
||||
Copyright (c) 2008 Ryan McCabe <[email protected]>
|
||||
ForeignTypeUnitCount AS.getU32 (c) BucketCount
|
||||
CoprocOptionAsmOperand AsmOperandClass let Name
|
||||
Copyright (c) 2014 Advanced Micro Devices, Inc.
|
||||
Copyright (c) 2015 Advanced Micro Devices, Inc.
|
||||
(c) Designator NumDesigs NumDesignators NumDesigs
|
||||
Copyright (c) 1992, 1993 UNIX International, Inc.
|
||||
Copyright (c) 2004 Free Software Foundation, Inc.
|
||||
Copyright (c) 2008 Free Software Foundation, Inc.
|
||||
Copyright (c) 2011 Free Software Foundation, Inc.
|
||||
Copyright (c) 2012 Free Software Foundation, Inc.
|
||||
Copyright (c) 2012, Noah Spurrier <[email protected]>
|
||||
Copyright (c) 2013-2014, Pexpect development team
|
||||
Copyright (c) 2013-2016, Pexpect development team
|
||||
Copyright (c) 2014 Free Software Foundation, Inc.
|
||||
Copyright (c) 2015 Paul Norman <[email protected]>
|
||||
Copyright (c) 2016 Aaron Watry <[email protected]>
|
||||
Copyright extcopyright~ he year the LLVM Project.
|
||||
(c) CHECK-NEXT Preds (3) B3 B4 B2 CHECK-NEXT Succs
|
||||
(c) CHECK-NEXT Preds (3) B3 B5 B6 CHECK-NEXT Succs
|
||||
Copyright (c) 2003-2010 Python Software Foundation
|
||||
Copyright (c) 2008 Paolo Bonzini <[email protected]>
|
||||
Copyright (c) 2012 Zack Weinberg <[email protected]>
|
||||
Copyright 2008-2009 Katholieke Universiteit Leuven
|
||||
(c) Desc StrOffsetsContributionDescriptor C- Offset
|
||||
(c) Stmt NumExprs std::copy Exprs, Exprs + NumExprs
|
||||
Copyright (c) 2008 Guido U. Draheim <[email protected]>
|
||||
Copyright (c) 2008 Stepan Kasal <[email protected]>
|
||||
Copyright (c) 2012 Qualcomm Innovation Center, Inc.
|
||||
Copyright (c) 2008 Benjamin Kosnik <[email protected]>
|
||||
Copyright (c) 2014,2015 Advanced Micro Devices, Inc.
|
||||
Copyright (c) 2014 Mike Frysinger <[email protected]>
|
||||
Copyright (c) 2014, 2015 Advanced Micro Devices, Inc.
|
||||
Copyright (c) 2016 Krzesimir Nowak <[email protected]>
|
||||
Copyright (c) 1994-2014 Free Software Foundation, Inc.
|
||||
Copyright (c) 1996-2014 Free Software Foundation, Inc.
|
||||
Copyright (c) 1996-2018 Free Software Foundation, Inc.
|
||||
Copyright (c) 1997-2014 Free Software Foundation, Inc.
|
||||
Copyright (c) 1999-2013 Free Software Foundation, Inc.
|
||||
Copyright (c) 1999-2014 Free Software Foundation, Inc.
|
||||
Copyright (c) 2001-2014 Free Software Foundation, Inc.
|
||||
Copyright (c) 2002-2014 Free Software Foundation, Inc.
|
||||
Copyright (c) 2003-2014 Free Software Foundation, Inc.
|
||||
Copyright (c) 2004-2014 Free Software Foundation, Inc.
|
||||
Copyright (c) 2006-2014 Free Software Foundation, Inc.
|
||||
Copyright (c) 2008 Sven Verdoolaege <[email protected]>
|
||||
Copyright (c) 2009-2014 Free Software Foundation, Inc.
|
||||
Copyright (c) 2010-2015 Free Software Foundation, Inc.
|
||||
Copyright (c) 2010-2017 Free Software Foundation, Inc.
|
||||
Copyright (c) 2011-2013 Free Software Foundation, Inc.
|
||||
Copyright (c) 2015 Moritz Klammler <[email protected]>
|
||||
(c) StructType FrameTy Shape.FrameTy Instruction FramePtr
|
||||
Copyright (c) 2013 Jesse Towner <[email protected]>
|
||||
Copyright (c) 2013 Roy Stogner <[email protected]>
|
||||
(c) Type AtExitFuncArgs VoidStar FunctionType AtExitFuncTy
|
||||
(c) GlobalVariable Handle new GlobalVariable M, DsoHandleTy
|
||||
(c) Type ArgTys Int32Ty, Int32Ty, Int32Ty FunctionType FnTy
|
||||
Copyright (c) 2004 Scott James Remnant <[email protected]>
|
||||
Copyright (c) 2008 Steven G. Johnson <[email protected]>
|
||||
Copyright (c) 2009 Steven G. Johnson <[email protected]>
|
||||
Copyright (c) 2004, 2011-2018 Free Software Foundation, Inc.
|
||||
Copyright (c) 2013 Victor Oliveira <[email protected]>
|
||||
(c) DeclRefExpr DR M.makeDeclRefExpr(PV) ImplicitCastExpr ICE
|
||||
(c) IdentifierInfo NumExprs std::copy Names, Names + NumExprs
|
||||
Copyright (c) 1998 Todd C. Miller <[email protected]>
|
||||
(c) BranchInst BI BranchInst::Create(Exit, Exit, False, Entry)
|
||||
Copyright (c) 1994 The Regents of the University of California.
|
||||
Copyright (c) 1992-1996, 1998-2012 Free Software Foundation, Inc.
|
||||
Copyright (c) 1996-2001, 2003-2018 Free Software Foundation, Inc.
|
||||
Copyright (c) 2003-2019 University of Illinois at Urbana-Champaign.
|
||||
Copyright (c) 2004, 2005, 2007, 2008 Free Software Foundation, Inc.
|
||||
Copyright (c) 2004, 2005, 2007, 2009 Free Software Foundation, Inc.
|
||||
Copyright (c) 2007-2018 University of Illinois at Urbana-Champaign.
|
||||
Copyright (c) 2007-2019 University of Illinois at Urbana-Champaign.
|
||||
(c) StringRef Expression Data.getBytes(C, BlockLength) DataExtractor
|
||||
Copyright (c) 2006-2009 Steven J. Bethard <[email protected]>
|
||||
Copyright (c) 1992, 1993 The Regents of the University of California.
|
||||
(c) StringLiteral NumClobbers std::copy Clobbers, Clobbers + NumClobbers
|
||||
Copyright (c) 2004, 2005, 2007, 2008, 2009 Free Software Foundation, Inc.
|
||||
Copyright (c) 1992, 1993, 1994 The Regents of the University of California.
|
||||
Copyright (c) 2004-2005, 2007-2008, 2011-2018 Free Software Foundation, Inc.
|
||||
Copyright (c) 2004-2005, 2007-2009, 2011-2018 Free Software Foundation, Inc.
|
||||
Copyright (c) 2004-2005, 2007, 2009, 2011-2018 Free Software Foundation, Inc.
|
||||
(c) StringLiteral NumConstraints std::copy Constraints, Constraints + NumConstraints
|
||||
Copyright (c) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
|
||||
Copyright (c) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
|
||||
Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
|
||||
Copyright (c) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
|
||||
Copyright (c) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
|
||||
|
||||
Apache-2.0 WITH LLVM-exception
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
---------------------------------------------------------
|
||||
@@ -956,6 +649,33 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
||||
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
semver 7.7.3 - ISC
|
||||
https://github.com/npm/node-semver#readme
|
||||
|
||||
Copyright Isaac Z. Schlueter
|
||||
Copyright (c) Isaac Z. Schlueter and Contributors
|
||||
|
||||
The ISC License
|
||||
|
||||
Copyright (c) Isaac Z. Schlueter and Contributors
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted, provided that the above
|
||||
copyright notice and this permission notice appear in all copies.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
||||
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
---------------------------------------------------------
|
||||
@@ -2380,6 +2100,70 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
node-vcvarsall 1.2.0 - MIT
|
||||
https://github.com/bobbrow/node-vcvarsall#readme
|
||||
|
||||
Copyright (c) 2025 Bob Brown
|
||||
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2025 Bob Brown
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
node-vswhere 1.0.2 - MIT
|
||||
https://github.com/bobbrow/node-vswhere#readme
|
||||
|
||||
Copyright (c) 2025 Bob Brown
|
||||
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2025 Bob Brown
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
---------------------------------------------------------
|
||||
@@ -2681,7 +2465,7 @@ SOFTWARE.
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
tmp 0.2.4 - MIT
|
||||
tmp 0.2.5 - MIT
|
||||
http://github.com/raszi/node-tmp
|
||||
|
||||
Copyright (c) 2014 KARASZI Istvan
|
||||
|
||||
@@ -1134,7 +1134,7 @@
|
||||
"Prázdný seznam přepisovačů se musí kompletně vynechat.",
|
||||
"Očekával se operand asm.",
|
||||
"Očekávalo se přepsání registru.",
|
||||
"Atribut format vyžaduje parametr tři tečky.",
|
||||
"Atribut format vyžaduje parametr ellipsis (tři tečky) nebo sadu parametrů.",
|
||||
"První argument náhrady není prvním argumentem proměnné.",
|
||||
"Index argumentu formátu je větší než počet parametrů.",
|
||||
"Argument formátu není řetězcového typu.",
|
||||
@@ -2711,7 +2711,7 @@
|
||||
"Pokus o přístup přes nulový ukazatel na člen (datový člen)",
|
||||
"Porovnání ukazatele s hodnotou void nebo ukazatelem na funkci není standardní.",
|
||||
"Nepovedlo se inicializovat metadata.",
|
||||
"Neplatné přetypování mezi základní a odvozenou třídou (úplný typ třídy je %t).",
|
||||
"Neplatné přetypování mezi základní a odvozenou třídou (skutečný typ odvozené třídy je %t)",
|
||||
"Neplatný přístup k %n v objektu s úplným typem %t.",
|
||||
"__auto_type tady není povolený.",
|
||||
"__auto_type nepovoluje víc deklarátorů.",
|
||||
@@ -3209,7 +3209,7 @@
|
||||
"Explicitní volání destruktoru není povolené v konstantním výrazu.",
|
||||
"Operátor čárky nezadané v závorkách ve výrazu dolního indexu pole je zastaralý.",
|
||||
"Počet dynamicky přidělených elementů (%d) pro inicializátor je moc malý.",
|
||||
"Nestálý operand pro výraz %s je zastaralý.",
|
||||
null,
|
||||
"Použití výsledku přiřazení do nestálého skalárního objektu je zastaralé.",
|
||||
"Nestálý cílový typ pro složený výraz přiřazení je zastaralý.",
|
||||
"Nestálý parametr funkce je zastaralý.",
|
||||
@@ -3249,7 +3249,7 @@
|
||||
"Nepovedlo se nahradit argumenty %T pro concept-id.",
|
||||
"Pro argumenty %T je koncept false.",
|
||||
"Klauzule requires tady není povolena (nejedná se o funkci se šablonami).",
|
||||
"Šablona konceptu",
|
||||
"koncept",
|
||||
"Klauzule requires není kompatibilní s %nfd.",
|
||||
"Očekával se atribut.",
|
||||
null,
|
||||
@@ -3439,12 +3439,12 @@
|
||||
"Převzetí adresy funkce s explicitním this vyžaduje kvalifikovaný název.",
|
||||
"Vytvoření adresy funkce s explicitním this vyžaduje operátor &.",
|
||||
"řetězcový literál nelze použít k inicializaci člena flexibilního pole.",
|
||||
"reprezentace IFC definice funkce %sq je neplatná",
|
||||
null,
|
||||
"graf UniLevel IFC se nepoužil k zadání parametrů.",
|
||||
"V grafu definice parametrů IFC byl zadán tento počet parametrů: %u1, zatímco deklarace IFC určovala tento počet parametrů: %u2.",
|
||||
"V grafu definice parametrů IFC byly zadány %u1 parametry, zatímco deklarace IFC určovala tento počet parametrů: %u2.",
|
||||
"V grafu definice parametrů IFC byly zadány %u1 parametry, zatímco deklarace IFC určovala tento počet parametrů: %u2.",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
"chybí reprezentace IFC definice funkce %sq",
|
||||
"modifikátor funkce se nevztahuje na deklaraci členské šablony.",
|
||||
"výběr člena zahrnuje příliš mnoho vnořených anonymních typů",
|
||||
@@ -3598,8 +3598,8 @@
|
||||
"Výraz lambda static musí mít prázdnou specifikaci zachycení.",
|
||||
"Jednotka hlavičky EDG IFC",
|
||||
"EDG IFC",
|
||||
"pro aktuální jednotku překladu se nepovedlo vytvořit jednotku hlavičky",
|
||||
"aktuální jednotka překladu používá jednu nebo více funkcí, které se v tuto chvíli nedají zapsat do jednotky hlavičky",
|
||||
"Pro aktuální jednotku překladu se nepovedlo vygenerovat soubor IFC.",
|
||||
"Jedna nebo více entit se v tuto chvíli nedá zapsat do souboru IFC.",
|
||||
"explicit(bool) je funkcí C++20",
|
||||
"prvním argumentem musí být ukazatel na celé číslo (integer), výčet (enum) nebo podporovaný typ s plovoucí desetinnou čárkou",
|
||||
"moduly C++ nelze použít při kompilaci více jednotek překladu",
|
||||
@@ -3671,5 +3671,81 @@
|
||||
"Jednotka oddílu modulu EDG IFC",
|
||||
"Deklaraci modulu nelze z této jednotky překladu exportovat, pokud není vytvořen soubor rozhraní modulu.",
|
||||
"Deklarace modulu se musí exportovat z této jednotky překladu, aby se vytvořil soubor rozhraní modulu.",
|
||||
"Bylo požadováno generování souboru modulu, ale v jednotce překladu nebyl deklarován žádný modul."
|
||||
"Bylo požadováno generování souboru modulu, ale v jednotce překladu nebyl deklarován žádný modul.",
|
||||
"nahrazení %T za %n neúspěšných omezení",
|
||||
"%n není splněno pro %T",
|
||||
"rozšíření #embed je příliš dlouhé pro inicializaci entity typu %t",
|
||||
"operátor defined tady není povolený",
|
||||
"%n není členem %t",
|
||||
"zužující převod na podepsaný znak v datech #embed",
|
||||
"operátor není povolený pro typy „vector of bool“",
|
||||
"objekt je pro vyhodnocení konstanty příliš velký",
|
||||
"dočasný objekt odkazující sám na sebe",
|
||||
"lambda v tomto kontextu nemůže odkazovat na místní proměnnou nebo init-capture",
|
||||
"parametr lambda nemůže skrýt explicitní zachycení",
|
||||
"parametr šablony lambda nemůže skrýt explicitní zachycení",
|
||||
"pro zpracování této jednotky překladu není k dispozici dostatek adresního prostoru",
|
||||
"<undetermined type>",
|
||||
"<undetermined constant>",
|
||||
"<undetermined template>",
|
||||
"nakonfigurovaná velikost %s je pro zadaný počet bitů řetězce mantissa a exponentu příliš malá",
|
||||
"výraz",
|
||||
"<expression>",
|
||||
"bez názvu",
|
||||
"<unnamed>",
|
||||
"<error-type>",
|
||||
"<unknown-type>",
|
||||
"<something>",
|
||||
"<null-type>",
|
||||
"<no-init>",
|
||||
"<zero-init>",
|
||||
"bitová kopie: ",
|
||||
"<bitwise-copy>",
|
||||
"výsledek třídy přes konstruktor: ",
|
||||
"<constructor-call>",
|
||||
"<NULL expression>",
|
||||
"<error>",
|
||||
"<NULL routine>",
|
||||
"<default>",
|
||||
"parametr #",
|
||||
" (o jednu úroveň výš)",
|
||||
" o úroveň výše",
|
||||
"dynamic-init: ",
|
||||
"<error-constant>",
|
||||
"stack-offset-of:",
|
||||
"<implicit element> ",
|
||||
" opakování ",
|
||||
"celé číslo",
|
||||
"výčet",
|
||||
"vymezený výčet",
|
||||
"aritmetické",
|
||||
"non-bool arithmetic",
|
||||
"ukazatel",
|
||||
"typ nullptr",
|
||||
"popisovač",
|
||||
"handle-to-CLI-array",
|
||||
"pointer-to-object",
|
||||
"pointer-to-function",
|
||||
"pointer-to-member",
|
||||
"bool",
|
||||
"bool-equivalent",
|
||||
"třída",
|
||||
"nestálý operand pro inkrementační výraz je zastaralý",
|
||||
"nestálý operand pro dekrementační výraz je zastaralý",
|
||||
"%n dřív deklarované bez atributu „indeterminate“",
|
||||
"výchozí konstruktor pro %t je explicitní",
|
||||
"nepodařilo se načíst definici %n v %m",
|
||||
"nepodařilo se načíst inicializátor pro %n v %m",
|
||||
"třída s názvem typedef pro účely propojení nemůže mít základní třídu",
|
||||
"třída s názvem typedef pro účely propojení nemůže mít členskou funkci",
|
||||
"třída s názvem typedef pro účely propojení nemůže mít vnořený typ jiný než typ výčtu nebo typ třídy bez uzávěru",
|
||||
"třída s názvem typedef pro účely propojení nemůže obsahovat výraz lambda",
|
||||
"třída s názvem typedef pro účely propojení nemůže mít nestatický datový člen s výchozím inicializátorem",
|
||||
"deklarace člena statických dat není v anonymní třídě povolená",
|
||||
"výsledek inicializátoru odkazuje na proměnnou dllimport",
|
||||
"šablona s atributem no_specializations nemůže být specializovaná",
|
||||
"„static“ je zde nestandardní",
|
||||
"%nd byl dříve deklarován bez explicitního základu výčtu",
|
||||
"Chybějící typename je tady nestandardní.",
|
||||
"Zkrácená syntaxe šablony funkce není standardní pro vodítka dedukce"
|
||||
]
|
||||
|
||||
@@ -1134,7 +1134,7 @@
|
||||
"Eine leere Überschreibungsliste muss komplett ausgelassen werden.",
|
||||
"Es wurde ein ASM-Operand erwartet.",
|
||||
"Es wurde eine zu überschreibende Registrierung erwartet.",
|
||||
"Das format-Attribut erfordert einen Auslassungszeichenparameter.",
|
||||
"Das Attribut „Format“ erfordert einen Auslassungspunkte-Parameter oder ein Parameterpaket",
|
||||
"Das erste Ersetzungsargument ist nicht das erste Variablenargument.",
|
||||
"Der Formatargumentindex ist größer als die Anzahl von Parametern.",
|
||||
"Das Formatargument weist keinen Zeichenfolgentyp auf.",
|
||||
@@ -2711,7 +2711,7 @@
|
||||
"Es wurde versucht, eine Pointer-to-Member-Funktion mit dem Wert NULL (Datenmember) zu dereferenzieren.",
|
||||
"Das Vergleichen eines Zeigers mit \"void\" und eines Zeigers mit einer Funktion ist kein Standardvorgehen.",
|
||||
"Fehler bei der Metadateninitialisierung.",
|
||||
"Ungültige Umwandlung aus Basis in abgeleitete Klasse (der vollständige Klassentyp ist \"%t\").",
|
||||
"Ungültige Umwandlung vom Basistyp zum abgeleiteten Typ (tatsächlicher abgeleiteter Klassentyp ist %t)",
|
||||
"Ungültiger Zugriff auf %n im Objekt des vollständigen Typs %t.",
|
||||
"\"__auto_type\" ist hier unzulässig.",
|
||||
"\"__auto_type\" erlaubt nicht mehrere Deklaratoren.",
|
||||
@@ -3209,7 +3209,7 @@
|
||||
"Ein expliziter Destruktoraufruf ist in einem Konstantenausdruck nicht zulässig.",
|
||||
"Ein nicht in Klammern gesetzter Kommaoperator im Unterskriptausdruck eines Arrays ist veraltet.",
|
||||
"Die Anzahl dynamisch zugeordneter Elemente (%d) ist zu klein für den Initialisierer.",
|
||||
"Ein volatile-Operand für einen %s-Ausdruck ist veraltet.",
|
||||
null,
|
||||
"Die Verwendung des Ergebnisses einer Zuweisung zu einem volatile-Skalarobjekt ist veraltet.",
|
||||
"Ein volatile-Zieltyp für einen Verbundzuweisungsausdruck ist veraltet.",
|
||||
"Ein volatile-Funktionsparameter ist veraltet.",
|
||||
@@ -3249,7 +3249,7 @@
|
||||
"Fehler beim Ersetzen von Argumenten \"%T\" für \"concept-id\".",
|
||||
"Das Konzept für die Argumente \"%T\" ist FALSE.",
|
||||
"Eine requires-Klausel ist hier nicht zulässig (keine Funktion mit Vorlagen).",
|
||||
"Konzeptvorlage",
|
||||
"Konzept",
|
||||
"Die requires-Klausel ist nicht mit \"%nfd\" kompatibel.",
|
||||
"Es wurde ein Attribut erwartet.",
|
||||
null,
|
||||
@@ -3439,12 +3439,12 @@
|
||||
"das Übernehmen der Adresse einer expliziten „dies“-Funktion erfordert einen qualifizierten Namen.",
|
||||
"das Formatieren der Adresse einer expliziten „dies“-Funktion erfordert den Operator „&“",
|
||||
"Ein Zeichenfolgenliteral kann nicht zum Initialisieren eines flexiblen Arraymembers verwendet werden.",
|
||||
"Die IFC-Darstellung der Definition der Funktion %sq ist ungültig",
|
||||
null,
|
||||
"Ein UniLevel-IFC-Chart wurde nicht zum Angeben von Parametern verwendet.",
|
||||
"Der %u1 Parameter wurden im IFC-Parameterdefinitionschart angegeben, während %u2 Parameter in der IFC-Deklaration angegeben wurden.",
|
||||
"Der %u1 Parameter wurde im IFC-Parameterdefinitionschart angegeben, während %u2 Parameter in der IFC-Deklaration angegeben wurden.",
|
||||
"%u1 Parameter wurden im IFC-Parameterdefinitionschart angegeben, während der %u2 Parameter in der IFC-Deklaration angegeben wurde.",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
"Die IFC-Darstellung der Definition der Funktion %sq fehlt",
|
||||
"Funktionsmodifizierer gilt nicht für eine statische Mitgliedervorlagendeklaration",
|
||||
"Die Mitgliederauswahl umfasst zu viele geschachtelte anonyme Typen",
|
||||
@@ -3598,8 +3598,8 @@
|
||||
"Ein Lambdaausdruck \"static\" muss eine leere Erfassungsspezifikation aufweisen.",
|
||||
"EDG IFC-Headereinheit",
|
||||
"EDG IFC",
|
||||
"für die aktuelle Übersetzungseinheit konnte keine Headereinheit erstellt werden",
|
||||
"Die aktuelle Übersetzungseinheit verwendet mindestens ein Feature, das derzeit nicht in eine Headereinheit geschrieben werden kann",
|
||||
"Für die aktuelle Übersetzungseinheit konnte keine IFC-Datei erstellt werden.",
|
||||
"Mindestens eine Entität kann derzeit nicht in eine IFC-Datei geschrieben werden.",
|
||||
"\"explicit(bool)\" ist ein C++20-Feature",
|
||||
"Das erste Argument muss ein Zeiger auf eine Ganzzahl, enum oder unterstützte Gleitkommazahl sein",
|
||||
"C++-Module können beim Kompilieren mehrerer Übersetzungseinheiten nicht verwendet werden",
|
||||
@@ -3671,5 +3671,81 @@
|
||||
"EDG-IFC-Modulpartitionseinheit",
|
||||
"Die Moduldeklaration kann aus dieser Übersetzungseinheit exportiert werden, wenn eine Modulschnittstellendatei erstellt werden.",
|
||||
"Die Moduldeklaration muss aus dieser Übersetzungseinheit exportiert werden, um eine Modulschnittstellendatei zu erstellen.",
|
||||
"Die Moduldateigenerierung wurde angefordert, aber in der Übersetzungseinheit wurde kein Modul deklariert."
|
||||
"Die Moduldateigenerierung wurde angefordert, aber in der Übersetzungseinheit wurde kein Modul deklariert.",
|
||||
"Ersetzen von %T durch %n fehlgeschlagene Einschränkungen",
|
||||
"%n nicht zufrieden für %T",
|
||||
"die #embed Erweiterung ist zu lang, um eine Entität des Typs zu initialisieren %t",
|
||||
"Der „defined“-Operator ist hier nicht zulässig",
|
||||
"%n ist kein Member von %t",
|
||||
"Einschränken der Konvertierung in signiertes Zeichen in #embed Daten",
|
||||
"Der Operator ist für „Vektor-of-bool“-Typen nicht zulässig",
|
||||
"Objekt zu groß für konstanten Auswertung",
|
||||
"Temporäres Objekt, das auf sich selbst verweist",
|
||||
"Ein Lambda kann in diesem Kontext nicht auf eine lokale Variable oder init-capture verweisen",
|
||||
"Ein Lambdaparameter kann eine explizite Erfassung nicht ausblenden",
|
||||
"Ein Lambdavorlagenparameter kann eine explizite Erfassung nicht ausblenden",
|
||||
"Es ist nicht genügend Adressraum vorhanden, um diese Übersetzungseinheit zu verarbeiten",
|
||||
"<bestimmter Typ>",
|
||||
"<bestimmte Konstante>",
|
||||
"<bestimmte Vorlage>",
|
||||
"die konfigurierte Größe von %s ist zu klein für die angegebene Anzahl von Mantisse + Exponentenbits",
|
||||
"Ausdruck",
|
||||
"<Ausdruck>",
|
||||
"Unbenannt",
|
||||
"<Unbenannt>",
|
||||
"<fehlertyp>",
|
||||
"<unbekannter-typ>",
|
||||
"<etwas>",
|
||||
"<null-typ>",
|
||||
"<kein-init>",
|
||||
"<null-init>",
|
||||
"bitweise Kopie von: ",
|
||||
"<bitwise-kopie>",
|
||||
"Klassenergebnis über ctor: ",
|
||||
"<konstruktor-aufruf>",
|
||||
"<NULL-Ausdruck>",
|
||||
"<Fehler>",
|
||||
"<NULL-Routine>",
|
||||
"<Standard>",
|
||||
"Parameternr.",
|
||||
" (eine Ebene höher)",
|
||||
" Stufen nach oben",
|
||||
"dynamische-init: ",
|
||||
"<Fehlerkonstante>",
|
||||
"Stack-Offset-von:",
|
||||
"<implizites-Element> ",
|
||||
" Wiederholungen von ",
|
||||
"Integer",
|
||||
"Enumeration",
|
||||
"Bereichsenumeration",
|
||||
"arithmetisch",
|
||||
"nicht boolesche Arithmetik",
|
||||
"Zeiger",
|
||||
"nullptr-Typ",
|
||||
"Handle",
|
||||
"Handle-to-CLI-Array",
|
||||
"Pointer-zum-Objekt",
|
||||
"Pointer-auf-Funktion",
|
||||
"pointer-to-member",
|
||||
"bool",
|
||||
"bool-äquivalent",
|
||||
"Klasse",
|
||||
"Ein flüchtiger Operand zu einem Inkrementausdruck ist veraltet",
|
||||
"Ein flüchtiger Operand zu einem Dekrementausdruck ist veraltet",
|
||||
"%n zuvor ohne das Attribut „unbestimmt“ deklariert",
|
||||
"der Standardkonstruktor für %t ist explizit",
|
||||
"Fehler beim Laden der Definition von %n in %m",
|
||||
"Fehler beim Laden des Initialisierers für %n in %m",
|
||||
"Eine Klasse mit einem typedef-Namen zu Verknüpfungszwecken darf keine Basisklasse aufweisen",
|
||||
"Eine Klasse mit einem typedef-Namen zu Verknüpfungszwecken darf keine Memberfunktion aufweisen",
|
||||
"Eine Klasse mit einem typedef-Namen für Verknüpfungszwecke darf keinen geschachtelten Typ aufweisen, außer einem Enumerationstyp oder einem Klassentyp ohne Abschluss",
|
||||
"Eine Klasse mit einem typedef-Namen zu Verknüpfungszwecken darf keinen Lambdaausdruck enthalten",
|
||||
"eine Klasse mit einem typedef-Namen zu Verknüpfungszwecken darf keinen nicht statischen Datenmember mit einem Standardmemberinitialisierer aufweisen",
|
||||
"Eine statische Datenmemberdeklaration ist in einer unbenannten Klasse nicht zulässig",
|
||||
"Initialisiererergebnis behebt eine dllimport-Variable",
|
||||
"Vorlage mit dem Attribut „no_specializations“ kann nicht spezialisiert werden",
|
||||
"„static“ entspricht hier nicht dem Standard",
|
||||
"%nd wurde zuvor ohne explizite Enumerationsbasis deklariert",
|
||||
"Fehlender „typename“ entspricht hier nicht dem Standard.",
|
||||
"Die abgekürzte Funktionsvorlagensyntax entspricht nicht dem Standard für Deduktionsleitfäden."
|
||||
]
|
||||
@@ -1134,7 +1134,7 @@
|
||||
"una lista de destrucciones vacía se debe omitir por completo",
|
||||
"se esperaba un operando asm",
|
||||
"se esperaba un registro para destruir",
|
||||
"el atributo 'format' requiere un parámetro de puntos suspensivos",
|
||||
"El atributo \"format\" requiere un parámetro de puntos suspensivos o un paquete de parámetros",
|
||||
"el primer argumento de sustitución no es el primer argumento de variable",
|
||||
"el índice de argumentos de formato es superior al número de parámetros",
|
||||
"un argumento de formato no tiene un tipo de cadena",
|
||||
@@ -2711,7 +2711,7 @@
|
||||
"Intento de desreferenciar un puntero a miembro nulo (miembro de datos)",
|
||||
"comparar un puntero con void y un puntero con una función no estándar",
|
||||
"error en la inicialización de los metadatos",
|
||||
"conversión de base a derivado no válida (el tipo de clase completa es %t)",
|
||||
"conversión de base a derivada no válida (el tipo de clase derivada real es %t)",
|
||||
"acceso a %n no válido en un objeto del tipo %t completo",
|
||||
"no se permite aquí \"__auto_type\"",
|
||||
"\"__auto_type\" no admite varios declaradores",
|
||||
@@ -3209,7 +3209,7 @@
|
||||
"no se permite una llamada explícita a un destructor en una expresión constante",
|
||||
"Un operador de coma sin paréntesis en una expresión de subíndice de matriz está en desuso",
|
||||
"el número de elementos asignados dinámicamente (%d) es demasiado pequeño para el inicializador",
|
||||
"un operando volatile para la expresión %s está en desuso",
|
||||
null,
|
||||
"el uso del resultado de una asignación a un objeto escalar volatile está en desuso",
|
||||
"un tipo de destino volatile para una expresión de asignación compuesta está en desuso",
|
||||
"un parámetro de función volatile está en desuso",
|
||||
@@ -3249,7 +3249,7 @@
|
||||
"error de sustitución de los argumentos %T para concept-id",
|
||||
"el concepto es false para los argumentos %T",
|
||||
"no se permite una cláusula requires aquí (no es una función basada en plantilla)",
|
||||
"plantilla de concepto",
|
||||
"concepto",
|
||||
"la cláusula requires es incompatible con %nfd",
|
||||
"se esperaba un atributo",
|
||||
null,
|
||||
@@ -3439,12 +3439,12 @@
|
||||
"tomar la dirección de una función explícita \"this\" requiere un nombre completo",
|
||||
"la formación de la dirección de una función explícita 'this' requiere el operador '&'",
|
||||
"no se puede usar un literal de cadena para inicializar un miembro de matriz flexible",
|
||||
"la representación IFC de la definición de la función %sq no es válida",
|
||||
null,
|
||||
"no se usó un gráfico IFC UniLevel para especificar parámetros",
|
||||
"el gráfico de definición de parámetros IFC especificó %u1 parámetros, mientras que la declaración IFC especificó %u2 parámetros",
|
||||
"el gráfico de definición de parámetros IFC especificó %u1 parámetro, mientras que la declaración IFC especificó %u2 parámetros",
|
||||
"el gráfico de definición de parámetros IFC especificó %u1 parámetros, mientras que la declaración IFC especificó %u2 parámetro",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
"falta la representación IFC de la definición de la función %sq",
|
||||
"el modificador de función no se aplica a la declaración de plantilla de miembro",
|
||||
"la selección de miembros implica demasiados tipos anónimos anidados",
|
||||
@@ -3598,8 +3598,8 @@
|
||||
"una expresión lambda \"estática\" debe tener una especificación de captura vacía",
|
||||
"Unidad de encabezado EDG IFC",
|
||||
"EDG IFC",
|
||||
"no se pudo crear una unidad de encabezado para la unidad de traducción actual",
|
||||
"la unidad de traducción actual usa una o varias características que no se pueden escribir actualmente en una unidad de encabezado",
|
||||
"no se pudo generar un archivo IFC para la unidad de traducción actual",
|
||||
"actualmente no se puede escribir una o más entidades en un archivo IFC",
|
||||
"'explicit(bool)' es una característica de C++20",
|
||||
"el primer argumento debe ser un puntero a entero, enumeración o tipo de punto flotante admitido",
|
||||
"No se pueden usar módulos de C++ al compilar varias unidades de traducción",
|
||||
@@ -3671,5 +3671,81 @@
|
||||
"Unidad de partición del módulo EDG IFC",
|
||||
"la declaración de módulo no se puede exportar desde esta unidad de traducción a menos que se cree un archivo de interfaz de módulo",
|
||||
"la declaración de módulo debe exportarse desde esta unidad de traducción para crear un archivo de interfaz de módulo",
|
||||
"se solicitó la generación de archivos de módulo, pero no se declaró ningún módulo en la unidad de traducción"
|
||||
"se solicitó la generación de archivos de módulo, pero no se declaró ningún módulo en la unidad de traducción",
|
||||
"sustitución de %T por %n restricciones fallidas",
|
||||
"%n no satisfecho para %T",
|
||||
"La expansión #embed es demasiado larga para inicializar una entidad de tipo %t",
|
||||
"El operador \"definido\" no está permitido aquí",
|
||||
"%n no es miembro de %t",
|
||||
"reducción de la conversión a caracteres con signo en datos #embed",
|
||||
"el operador no está permitido para los tipos \"vector de bool\"",
|
||||
"objeto demasiado grande para la evaluación constante",
|
||||
"objeto temporal que hace referencia a sí mismo",
|
||||
"una lambda no puede hacer referencia a una variable local ni a una captura de inicialización en este contexto",
|
||||
"Un parámetro lambda no puede ocultar una captura explícita",
|
||||
"un parámetro de plantilla lambda no puede ocultar una captura explícita",
|
||||
"no hay suficiente espacio de direcciones para procesar esta unidad de traducción",
|
||||
"<undetermined type>",
|
||||
"<undetermined constant>",
|
||||
"<undetermined template>",
|
||||
"el tamaño configurado de %s es demasiado pequeño para el número especificado de bits de mantisa + exponente",
|
||||
"expresión",
|
||||
"<expression>",
|
||||
"sin nombre",
|
||||
"<unnamed>",
|
||||
"<error-type>",
|
||||
"<unknown-type>",
|
||||
"<something>",
|
||||
"<null-type>",
|
||||
"<no-init>",
|
||||
"<zero-init>",
|
||||
"copia bit a bit de: ",
|
||||
"<bitwise-copy>",
|
||||
"resultado de la clase a través del ctor: ",
|
||||
"<constructor-call>",
|
||||
"<NULL expression>",
|
||||
"<error>",
|
||||
"rutina <NULL>",
|
||||
"<default>",
|
||||
"parámetro #",
|
||||
" (un nivel superior)",
|
||||
" subir niveles",
|
||||
"dynamic-init: ",
|
||||
"<error-constant>",
|
||||
"stack-offset-of:",
|
||||
"<implicit element> ",
|
||||
" repeticiones de ",
|
||||
"entero",
|
||||
"enumeración",
|
||||
"enumeración con ámbito",
|
||||
"aritmética",
|
||||
"non-bool arithmetic",
|
||||
"puntero",
|
||||
"tipo nullptr",
|
||||
"controlador",
|
||||
"handle-to-CLI-array",
|
||||
"pointer-to-object",
|
||||
"pointer-to-function",
|
||||
"pointer-to-member",
|
||||
"bool",
|
||||
"bool equivalente",
|
||||
"clase",
|
||||
"un operando volátil en una expresión de incremento está en desuso",
|
||||
"Un operando volátil en una expresión de decremento está en desuso.",
|
||||
"%n declarado previamente sin el atributo \"indeterminate\"",
|
||||
"El constructor predeterminado para %t es explícito",
|
||||
"error al cargar la definición de %n en %m",
|
||||
"No se pudo cargar el inicializador para %n en %m",
|
||||
"Una clase con un nombre typedef para fines de vinculación no puede tener una clase base",
|
||||
"Una clase con un nombre typedef para fines de vinculación no puede tener una función miembro",
|
||||
"una clase con un nombre typedef para fines de vinculación no puede tener un tipo anidado, salvo un tipo de enumeración o un tipo de clase sin cierre",
|
||||
"una clase con un nombre typedef para fines de vinculación no puede contener una expresión lambda",
|
||||
"una clase con un nombre typedef para fines de vinculación no puede tener un miembro de datos no estático con un inicializador de miembro predeterminado",
|
||||
"no se permite la declaración de un miembro de datos estático en una clase sin nombre.",
|
||||
"el resultado del inicializador se dirige a una variable dllimport",
|
||||
"La plantilla con el atributo \"no_specializations\" no se puede especializar",
|
||||
"\"static\" no es estándar aquí",
|
||||
"%nd se declaró previamente sin una base explícita de enumeración",
|
||||
"falta 'typename' no estándar aquí",
|
||||
"La sintaxis abreviada de las plantillas de funciones no es estándar para las guías de deducción"
|
||||
]
|
||||
@@ -1134,7 +1134,7 @@
|
||||
"une liste d'éléments écrasés vide doit être omise entièrement",
|
||||
"opérande asm attendu",
|
||||
"registre à écraser attendu",
|
||||
"l'attribut 'format' requiert un paramètre ellipse",
|
||||
"L’attribut « format » nécessite un paramètre ellipse ou un ensemble de paramètres",
|
||||
"le premier argument de substitution n'est pas le premier argument de variable",
|
||||
"l'index d'arguments de format est supérieur au nombre d'arguments",
|
||||
"l'argument de format n'est pas de type chaîne",
|
||||
@@ -2711,7 +2711,7 @@
|
||||
"tentative de déréférencement d'un pointeur vers membre null (membre de données)",
|
||||
"la comparaison d'un pointeur à void et d'un pointeur à une fonction n'est pas standard",
|
||||
"échec de l'initialisation des métadonnées",
|
||||
"cast du type de base en type dérivé non valide (le type de classe complet est %t)",
|
||||
"conversion de base vers dérivée non valide (le type réel de la classe dérivée est %t)",
|
||||
"accès non valide à %n dans l'objet de type complet %t",
|
||||
"'__auto_type' non autorisé ici",
|
||||
"'__auto_type' n'autorise pas plusieurs déclarateurs",
|
||||
@@ -3209,7 +3209,7 @@
|
||||
"un appel à un destructeur explicite n'est pas autorisé dans une expression constante",
|
||||
"l'utilisation d'un opérateur virgule non placé entre parenthèses dans une expression d'indice de tableau est dépréciée",
|
||||
"le nombre d'éléments alloués dynamiquement (%d) est trop faible pour l'initialiseur",
|
||||
"l'utilisation d'un opérande volatile dans l'expression %s est dépréciée",
|
||||
null,
|
||||
"l'utilisation du résultat d'une affectation dans un objet scalaire volatile est dépréciée",
|
||||
"l'utilisation d'un type de destination volatile pour une expression d'affectation composée est dépréciée",
|
||||
"l'utilisation d'un paramètre de fonction volatile est dépréciée",
|
||||
@@ -3249,7 +3249,7 @@
|
||||
"échec de la substitution des arguments %T pour l'ID de concept",
|
||||
"le concept est faux pour les arguments %T",
|
||||
"une clause requires n'est pas autorisée ici (il ne s'agit pas d'une fonction basée sur un modèle)",
|
||||
"modèle de concept",
|
||||
"concept",
|
||||
"clause requires incompatible avec %nfd",
|
||||
"attribut attendu",
|
||||
null,
|
||||
@@ -3439,12 +3439,12 @@
|
||||
"la prise de l’adresse d’une fonction « this » explicite nécessite un nom qualifié",
|
||||
"la création de l’adresse d’une fonction « this » explicite nécessite l’opérateur '&'",
|
||||
"impossible d’utiliser un littéral de chaîne pour initialiser un membre de tableau flexible",
|
||||
"la représentation IFC de la définition de la fonction %sq n’est pas valide",
|
||||
null,
|
||||
"un graphique IFC UniLevel n’a pas été utilisé pour spécifier des paramètres.",
|
||||
"%u1 paramètres ont été spécifiés par le graphique de définition de paramètres IFC alors que %u2 paramètres ont été spécifiés par la déclaration IFC",
|
||||
"%u1 paramètre a été spécifié par le graphique de définition de paramètres IFC alors que %u2 paramètres ont été spécifiés par la déclaration IFC",
|
||||
"%u1 paramètres ont été spécifiés par le graphique de définition de paramètres IFC alors que %u2 paramètre a été spécifié par la déclaration IFC",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
"la représentation IFC de la définition de la fonction %sq est absente",
|
||||
"Le modificateur de fonction ne s'applique pas à la déclaration du modèle de membre.",
|
||||
"la sélection de membre implique un trop grand nombre de types anonymes imbriqués",
|
||||
@@ -3598,8 +3598,8 @@
|
||||
"une expression lambda « static » doit avoir une spécification de capture vide",
|
||||
"Unité d’en-tête IFC EDG",
|
||||
"EDG IFC",
|
||||
"impossible de créer une unité d’en-tête pour l’unité de traduction actuelle",
|
||||
"l’unité de traduction actuelle utilise une ou plusieurs fonctionnalités qui ne peuvent actuellement pas être écrites dans une unité d’en-tête",
|
||||
"impossible de produire un fichier IFC pour l’unité de traduction en cours",
|
||||
"impossible d’écrire une ou plusieurs entités dans un fichier IFC",
|
||||
"'explicit(bool)' est une fonctionnalité C++20",
|
||||
"le premier argument doit être un pointeur vers un entier, une enum ou un type de point flottant pris en charge",
|
||||
"les modules C++ ne peuvent pas être utilisés lors de la compilation de plusieurs unités de traduction",
|
||||
@@ -3671,5 +3671,81 @@
|
||||
"Unité de partition de module IFC EDG",
|
||||
"la déclaration de module ne peut pas être exportée à partir de cette unité de traduction, sauf si vous créez un fichier d’interface de module",
|
||||
"la déclaration de module doit être exportée depuis cette unité de traduction pour créer un fichier d’interface de module",
|
||||
"la génération du fichier de module a été demandée, mais aucun module n’a été déclaré dans l’unité de traduction"
|
||||
"la génération du fichier de module a été demandée, mais aucun module n’a été déclaré dans l’unité de traduction",
|
||||
"remplacement de %T par %n contraintes ayant échoué",
|
||||
"%n non satisfait pour %T",
|
||||
"l’expansion #embed est trop longue pour initialiser une entité de type %t",
|
||||
"l’opérateur « defined » n’est pas autorisé ici",
|
||||
"%n n’est pas membre de %t",
|
||||
"conversion restrictive en caractère signé dans les données #embed",
|
||||
"opérateur non autorisé pour les types « vector of bool »",
|
||||
"objet trop grand pour l’évaluation constante",
|
||||
"objet temporaire auto-référençant",
|
||||
"une expression lambda ne peut pas faire référence à une variable locale ou à une capture d’initialisation dans ce contexte",
|
||||
"un paramètre lambda ne peut pas masquer une capture explicite",
|
||||
"un paramètre de modèle lambda ne peut pas masquer une capture explicite",
|
||||
"espace d’adressage insuffisant pour traiter cette unité de traduction",
|
||||
"<undetermined type>",
|
||||
"<undetermined constant>",
|
||||
"<undetermined template>",
|
||||
"la taille configurée de %s est trop petite pour le nombre spécifié de bits mantisse + exposant",
|
||||
"expression",
|
||||
"<expression>",
|
||||
"sans nom",
|
||||
"<unnamed>",
|
||||
"<error-type>",
|
||||
"<unknown-type>",
|
||||
"<something>",
|
||||
"<null-type>",
|
||||
"<no-init>",
|
||||
"<zero-init>",
|
||||
"copie au niveau du bit de : ",
|
||||
"<bitwise-copy>",
|
||||
"résultat de classe via le ctor : ",
|
||||
"<constructor-call>",
|
||||
"<NULL expression>",
|
||||
"<erreur>",
|
||||
"<NULL routine>",
|
||||
"<default>",
|
||||
"paramètre #",
|
||||
" Dossier parent",
|
||||
" niveaux supérieurs",
|
||||
"dynamic-init: ",
|
||||
"<error-constant>",
|
||||
"stack-offset-of:",
|
||||
"<implicit element> ",
|
||||
" répétitions de ",
|
||||
"entier",
|
||||
"enum",
|
||||
"énumération délimitée",
|
||||
"arithmétique",
|
||||
"arithmétique non booléenne",
|
||||
"aiguille",
|
||||
"Type nullptr",
|
||||
"handle",
|
||||
"handle-to-CLI-array",
|
||||
"pointer-to-object",
|
||||
"pointer-to-function",
|
||||
"pointeur vers membre",
|
||||
"bool",
|
||||
"bool-equivalent",
|
||||
"classe",
|
||||
"l'utilisation d’un opérande volatile dans une expression d’incrément est déconseillée",
|
||||
"l’utilisation d’un opérande volatile dans une expression de décrément est déconseillée",
|
||||
"%n précédemment déclaré sans l’attribut « indéterminé »",
|
||||
"le constructeur par défaut pour %t est explicite",
|
||||
"échec du chargement de la définition de %n dans %m",
|
||||
"échec du chargement de l’initialiseur pour %n dans %m",
|
||||
"une classe avec un nom typedef à des fins de liaison ne peut pas avoir de classe de base",
|
||||
"une classe avec un nom typedef à des fins de liaison ne peut pas avoir de fonction membre",
|
||||
"une classe avec un nom typedef à des fins de liaison ne peut pas avoir un type imbriqué, autre qu’un type d’énumération ou un type de classe non-fermeture",
|
||||
"une classe avec un nom typedef à des fins de liaison ne peut pas contenir d’expression lambda",
|
||||
"une classe avec un nom typedef à des fins de liaison ne peut pas avoir un membre de données non statique avec un initialiseur de membre par défaut",
|
||||
"une déclaration de membre de données statique n’est pas autorisée dans une classe sans nom",
|
||||
"Le résultat de l’initialiseur traite une variable dllimport",
|
||||
"le modèle avec l’attribut « no_specializations » ne peut pas être spécialisé",
|
||||
"« static » n’est pas standard ici",
|
||||
"%nd a été déclaré précédemment sans base d’énumération explicite",
|
||||
"le mot-clé « typename » manquant n’est pas standard ici",
|
||||
"la syntaxe abrégée du modèle de fonction n’est pas standard pour les guides de déduction"
|
||||
]
|
||||
|
||||
@@ -1134,7 +1134,7 @@
|
||||
"un elenco di sovrascritture vuoto deve essere interamente omesso",
|
||||
"previsto un operando di assembly",
|
||||
"previsto un registro da sovrascrivere",
|
||||
"con l'attributo 'format' è richiesto un parametro puntini di sospensione",
|
||||
"l'attributo 'format' richiede un parametro ellipsis o un pacchetto di parametri",
|
||||
"il primo argomento di sostituzione non è il primo argomento variabile",
|
||||
"l'indice dell'argomento format è maggiore del numero di parametri",
|
||||
"l'argomento format non include il tipo string",
|
||||
@@ -2711,7 +2711,7 @@
|
||||
"si è provato a dereferenziare un puntatore a membro (membro dati) Null",
|
||||
"il confronto di un puntatore con void e di un puntatore con una funzione non è conforme allo standard",
|
||||
"inizializzazione dei metadati non riuscita",
|
||||
"cast da base a derivato non valido (il tipo classe completo è %t)",
|
||||
"cast da base a derivato non valido (il tipo della classe derivata effettivo è %t)",
|
||||
"accesso non valido a %n nell'oggetto del tipo completo %t",
|
||||
"'__auto_type' non è consentito in questo punto",
|
||||
"'__auto_type' non consente l'uso di più dichiaratori",
|
||||
@@ -3209,7 +3209,7 @@
|
||||
"una chiamata di distruttore esplicita non è consentita in un'espressione costante",
|
||||
"un operatore con virgola non racchiusa tra parentesi in un'espressione di indice di matrice è deprecato",
|
||||
"il numero di elementi allocati dinamicamente (%d) è troppo ridotto per l'inizializzatore",
|
||||
"un operando volatile per l'espressione %s è deprecato",
|
||||
null,
|
||||
"l'utilizzo del risultato di un'assegnazione a un oggetto scalare volatile è deprecato",
|
||||
"un tipo di destinazione volatile per un'espressione di assegnazione composta è deprecato",
|
||||
"un parametro di funzione volatile è deprecato",
|
||||
@@ -3249,7 +3249,7 @@
|
||||
"la sostituzione degli argomenti %T per l'ID concetto non è riuscita",
|
||||
"il concetto è false per gli argomenti %T",
|
||||
"in questo punto non sono consentite clausole requires (non è una funzione basata su modelli)",
|
||||
"modello di concetto",
|
||||
"concetto",
|
||||
"la clausola requires non è compatibile con %nfd",
|
||||
"è previsto un attributo",
|
||||
null,
|
||||
@@ -3439,12 +3439,12 @@
|
||||
"l'acquisizione dell'indirizzo di una funzione esplicita 'this' richiede un nome qualificato",
|
||||
"per formare l'indirizzo di una funzione esplicita 'this' è necessario l'operatore '&'",
|
||||
"impossibile utilizzare un valore letterale stringa per inizializzare un membro di matrice flessibile",
|
||||
"la rappresentazione IFC della definizione della funzione %sq non è valida",
|
||||
null,
|
||||
"un grafico IFC UniLevel non è stato usato per specificare i parametri",
|
||||
"%u1 parametri specificati dal grafico di definizione dei parametri IFC mentre %u2 parametri sono stati specificati dalla dichiarazione IFC",
|
||||
"%u1 parametro è stato specificato dal grafico di definizione del parametro IFC mentre %u2 parametri sono stati specificati dalla dichiarazione IFC",
|
||||
"%u1 parametri sono stati specificati dal grafico di definizione del parametro IFC mentre %u2 parametro è stato specificato dalla dichiarazione IFC",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
"manca la rappresentazione IFC della definizione della funzione %sq",
|
||||
"il modificatore di funzione non si applica alla dichiarazione del modello di membro",
|
||||
"la selezione dei membri implica troppi tipi anonimi annidati",
|
||||
@@ -3598,8 +3598,8 @@
|
||||
"un'espressione lambda 'static' deve avere una specifica di acquisizione vuota",
|
||||
"Unità di intestazione IFC EDG",
|
||||
"EDG IFC",
|
||||
"Non è possibile creare un'unità di intestazione per l'unità di conversione corrente",
|
||||
"l'unità di conversione corrente utilizza una o più funzionalità che attualmente non possono essere scritte in un'unità di intestazione",
|
||||
"non è possibile generare un file IFC per l'unità di traduzione corrente",
|
||||
"non è attualmente possibile scrivere una o più entità in un file IFC",
|
||||
"'explicit(bool)' è una funzionalità di C++20",
|
||||
"il primo argomento deve essere un puntatore a un numero intero, un'enumerazione o un tipo a virgola mobile supportato",
|
||||
"non è possibile utilizzare moduli C++ durante la compilazione di più unità di conversione",
|
||||
@@ -3671,5 +3671,81 @@
|
||||
"unità di partizione del modulo IFC EDG",
|
||||
"la dichiarazione del modulo non può essere esportata da questa unità di conversione a meno che non si crei un file di interfaccia del modulo",
|
||||
"la dichiarazione del modulo deve essere esportata da questa unità di conversione per creare un file di interfaccia del modulo",
|
||||
"è stata richiesta la generazione di file di modulo, ma non è stato dichiarato alcun modulo nell'unità di conversione"
|
||||
"è stata richiesta la generazione di file di modulo, ma non è stato dichiarato alcun modulo nell'unità di conversione",
|
||||
"sostituzione di %T per %n vincoli non riusciti",
|
||||
"%n non soddisfatto per %T",
|
||||
"l'espansione #embed è troppo lunga per inizializzare un'entità di tipo %t",
|
||||
"l'operatore 'defined' non è consentito qui",
|
||||
"%n non è un membro di %t",
|
||||
"conversione restrittiva a carattere firmato nei dati di #embed",
|
||||
"operatore non consentito per i tipi 'vector of bool'",
|
||||
"oggetto troppo grande per la valutazione costante",
|
||||
"oggetto temporaneo auto-riferito",
|
||||
"un'espressione lambda non può fare riferimento a una variabile locale o a un init-capture in questo contesto",
|
||||
"un parametro lambda non può nascondere una acquisizione esplicita",
|
||||
"un parametro di modello lambda non può nascondere una acquisizione esplicita",
|
||||
"spazio indirizzi insufficiente per elaborare questa unità di conversione",
|
||||
"<undetermined type>",
|
||||
"<undetermined constant>",
|
||||
"<undetermined template>",
|
||||
"la dimensione configurata di %s è troppo piccola per il numero specificato di bit di mantissa + esponente",
|
||||
"espressione",
|
||||
"<expression>",
|
||||
"senza nome",
|
||||
"<unnamed>",
|
||||
"<error-type>",
|
||||
"<unknown-type>",
|
||||
"<something>",
|
||||
"<null-type>",
|
||||
"<no-init>",
|
||||
"<zero-init>",
|
||||
"copia bit per bit di: ",
|
||||
"<bitwise-copy>",
|
||||
"risultato classe tramite ctor: ",
|
||||
"<constructor-call>",
|
||||
"<NULL expression>",
|
||||
"<error>",
|
||||
"<NULL routine>",
|
||||
"<default>",
|
||||
"parametro #",
|
||||
" (livello superiore)",
|
||||
" livelli superiori",
|
||||
"dynamic-init: ",
|
||||
"<error-constant>",
|
||||
"stack-offset-of:",
|
||||
"<implicit element> ",
|
||||
" ripetizioni di ",
|
||||
"intero",
|
||||
"enumerazione",
|
||||
"enumerazione con ambito",
|
||||
"aritmetica",
|
||||
"aritmetica non bool",
|
||||
"puntatore",
|
||||
"tipo nullptr",
|
||||
"handle",
|
||||
"handle-to-CLI-array",
|
||||
"puntatore a oggetto",
|
||||
"puntatore a funzione",
|
||||
"puntatore a membro",
|
||||
"bool",
|
||||
"bool-equivalent",
|
||||
"classe",
|
||||
"un operando volatile per l'espressione di incremento è deprecato",
|
||||
"un operando volatile per una espressione di decremento è deprecato",
|
||||
"%n precedentemente dichiarato senza l'attributo 'indeterminate'",
|
||||
"il costruttore predefinito per %t è esplicito",
|
||||
"impossibile caricare la definizione di %n in %m",
|
||||
"impossibile caricare l'inizializzatore per %n in %m",
|
||||
"una classe con un nome typedef a scopo di collegamento non può avere una classe base",
|
||||
"una classe con un nome typedef a scopo di collegamento non può avere una funzione membro",
|
||||
"una classe con un nome typedef a scopo di collegamento non può avere un tipo annidato diverso da un tipo enumerazione o da un tipo di classe non di chiusura",
|
||||
"una classe con un nome typedef a scopo di collegamento non può contenere un'espressione lambda",
|
||||
"una classe con un nome typedef a scopo di collegamento non può contenere un membro dati non statico con un inizializzatore membro predefinito",
|
||||
"dichiarazione di membro dati statico non consentita in una classe senza nome",
|
||||
"il risultato dell'inizializzatore punta a una variabile dllimport",
|
||||
"modello con l'attributo 'no_specializations' non può essere specializzato",
|
||||
"'static' non è standard qui",
|
||||
"%nd era stato dichiarato in precedenza senza una base di enumerazione esplicita",
|
||||
"manca 'typename' che qui non è standard",
|
||||
"la sintassi abbreviata del modello di funzione non è standard per le guide alla deduzione"
|
||||
]
|
||||
|
||||
@@ -1134,7 +1134,7 @@
|
||||
"空の上書きリストはリスト全体が省略される必要があります",
|
||||
"asm オペランドが必要です",
|
||||
"上書きするレジスタが必要です",
|
||||
"'format' 属性には省略記号のパラメーターが必要です",
|
||||
"'format' 属性には省略記号パラメーターまたはパラメーター パックが必要です",
|
||||
"最初の代替引数が最初の可変引数ではありません",
|
||||
"format 引数のインデックスがパラメーターの数より大きいです",
|
||||
"format 引数が文字列型ではありません",
|
||||
@@ -2711,7 +2711,7 @@
|
||||
"null pointer-to-member を逆参照しようとしました (データ メンバー)",
|
||||
"void へのポインターと関数へのポインターの比較は非標準です",
|
||||
"メタデータの初期化に失敗しました",
|
||||
"base から derived へのキャストが無効です (完全なクラス型は %t です)",
|
||||
"base から derived へのキャストが無効です (実際の derived クラス型は %t です)",
|
||||
"完全な型 %t のオブジェクトの %n へのアクセス権が無効です",
|
||||
"'__auto_type' はここでは使用できません",
|
||||
"'__auto_type' には複数の宣言子は使用できません",
|
||||
@@ -3209,7 +3209,7 @@
|
||||
"定数式では明示的なデストラクター呼び出しは許可されていません",
|
||||
"配列インデックス式では、かっこで囲まれていないコンマ演算子は非推奨です",
|
||||
"動的に割り当てられる要素 (%d) の数が初期化子には少なすぎます",
|
||||
"%s 式に対する揮発性のオペランドは非推奨です",
|
||||
null,
|
||||
"揮発性のスカラー オブジェクトへの代入の結果の使用は非推奨です",
|
||||
"複合代入式では揮発性のターゲットの型は非推奨です",
|
||||
"揮発性の関数パラメーターは非推奨です",
|
||||
@@ -3249,7 +3249,7 @@
|
||||
"概念 ID の引数 %Tの置換に失敗しました",
|
||||
"引数 %T の概念は false です",
|
||||
"こちらでは requires 句は許可されていません (テンプレート関数ではありません)",
|
||||
"コンセプト テンプレート",
|
||||
"概念",
|
||||
"requires 句は %nfd と互換性がありません",
|
||||
"属性が必要です",
|
||||
null,
|
||||
@@ -3439,12 +3439,12 @@
|
||||
"明示的な 'this' 関数のアドレスの取得には修飾名が必要です",
|
||||
"明示的な 'this' 関数のアドレスの形成には '&' 演算子が必要です",
|
||||
"文字列リテラルを柔軟な配列メンバーを初期化するのに使用することはできません",
|
||||
"関数 %sq の定義の IFC 表現が無効です",
|
||||
null,
|
||||
"パラメーターの指定に UniLevel IFC グラフが使用されませんでした",
|
||||
"%u1 個のパラメーターが IFC パラメーター定義グラフで指定されましたが、IFC 宣言では %u2 個のパラメーターが指定されました",
|
||||
"%u1 個のパラメーターが IFC パラメーター定義グラフで指定されましたが、IFC 宣言では %u2 個のパラメーターが指定されました",
|
||||
"%u1 個のパラメーターが IFC パラメーター定義グラフで指定されましたが、IFC 宣言では %u2 個のパラメーターが指定されました",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
"関数 %sq の定義の IFC 表現が見つかりません",
|
||||
"関数修飾子はメンバー テンプレート宣言には適用されません",
|
||||
"メンバーの選択に含まれる、入れ子になった匿名のタイプが多すぎます",
|
||||
@@ -3598,8 +3598,8 @@
|
||||
"'static' ラムダ式には空のキャプチャ仕様が必要です",
|
||||
"EDG IFC ヘッダー ユニット",
|
||||
"EDG IFC",
|
||||
"現在の翻訳単位のヘッダー ユニットを作成できませんでした",
|
||||
"現在の翻訳単位は、現在ヘッダー ユニットに書き込むことができない 1 つ以上の機能を使用します",
|
||||
"現在の翻訳単位の IFC ファイルを生成できませんでした",
|
||||
"現在、1 つ以上のエンティティを IFC ファイルに書き込めません",
|
||||
"'explicit(bool)' は C++20 機能です",
|
||||
"最初の引数は、整数、enum、またはサポートされている浮動小数点型へのポインターである必要があります",
|
||||
"複数の翻訳単位をコンパイルする場合、C++ モジュールは使用できません",
|
||||
@@ -3671,5 +3671,81 @@
|
||||
"EDG IFC モジュール パーティション ユニット",
|
||||
"モジュール インターフェイス ファイルを作成しない限り、モジュール宣言をこの翻訳単位からエクスポートすることはできません",
|
||||
"モジュール インターフェイス ファイルを作成するには、この翻訳単位からモジュール宣言をエクスポートする必要があります",
|
||||
"モジュール ファイルの生成が要求されましたが、翻訳単位でモジュールが宣言されていません"
|
||||
"モジュール ファイルの生成が要求されましたが、翻訳単位でモジュールが宣言されていません",
|
||||
"%n の失敗した制約の %T を置き換える",
|
||||
"%n は、%T に対して満たされていません",
|
||||
"#embed 展開が長すぎて型のエンティティを初期化できません%t",
|
||||
"ここでは 'defined' 演算子は許可されていません",
|
||||
"'%n' は '%t' のメンバーではありません",
|
||||
"#embed データ内の符号付き文字への縮小変換",
|
||||
"演算子は 'vector of bool' 型では許可されていません",
|
||||
"オブジェクトが大きすぎて定数評価に使用できませんでした",
|
||||
"自己参照一時オブジェクト",
|
||||
"ラムダはこのコンテキストでローカル変数または init-capture を参照できません",
|
||||
"ラムダ パラメーターは明示的なキャプチャを非表示にできません",
|
||||
"ラムダ テンプレート パラメーターは明示的なキャプチャを非表示にできません",
|
||||
"この変換ユニットを処理するためのアドレス空間が不足しています",
|
||||
"<undetermined type>",
|
||||
"<undetermined constant>",
|
||||
"<undetermined template>",
|
||||
"構成された %s のサイズが、指定された仮数 + 指数ビットの数に対して小さすぎます",
|
||||
"式",
|
||||
"<expression>",
|
||||
"名前なし",
|
||||
"<unnamed>",
|
||||
"<error-type>",
|
||||
"<unknown-type>",
|
||||
"<something>",
|
||||
"<null-type>",
|
||||
"<no-init>",
|
||||
"<zero-init>",
|
||||
"以下のビットごとのコピー:",
|
||||
"<bitwise-copy>",
|
||||
"ctor を使用したクラスの結果:",
|
||||
"<constructor-call>",
|
||||
"<NULL expression>",
|
||||
"<error>",
|
||||
"<NULL routine>",
|
||||
"<default>",
|
||||
"パラメーター #",
|
||||
" (1 つ上のレベル)",
|
||||
" レベルを上げる",
|
||||
"dynamic-init:",
|
||||
"<error-constant>",
|
||||
"stack-offset-of:",
|
||||
"<implicit element> ",
|
||||
" 繰り返し: ",
|
||||
"整数",
|
||||
"列挙型",
|
||||
"範囲指定された列挙",
|
||||
"算術",
|
||||
"非ブール型算術",
|
||||
"ポインター",
|
||||
"nullptr 型",
|
||||
"ハンドル",
|
||||
"handle-to-CLI-array",
|
||||
"pointer-to-object",
|
||||
"pointer-to-function",
|
||||
"pointer-to-member",
|
||||
"bool",
|
||||
"bool-equivalent",
|
||||
"クラス",
|
||||
"インクリメント式に対する揮発性オペランドは非推奨です",
|
||||
"デクリメント式に対する揮発性オペランドは非推奨です",
|
||||
"%n が '不確定' 属性なしで以前に宣言されました",
|
||||
"%t の既定のコンストラクターは明示的です",
|
||||
"%m で %n の定義を読み込めませんでした",
|
||||
"%m で %n の初期化子を読み込めませんでした",
|
||||
"リンケージのために typedef 名を持つクラスに基底クラスを含めることはできません",
|
||||
"リンケージの目的で typedef 名を持つクラスにメンバー関数を含めることはできません",
|
||||
"リンケージの目的で typedef 名を持つクラスは、列挙型または非クロージャ クラス型以外の入れ子になった型を持つことはできません",
|
||||
"リンケージのために typedef 名を持つクラスにラムダ式を含めることはできません",
|
||||
"リンケージの目的で typedef 名を持つクラスは、既定のメンバー初期化子を持つ非静的データ メンバーを持つことはできません",
|
||||
"静的データ メンバー宣言は、名前のないクラスでは使用できません",
|
||||
"初期化子の結果は dllimport 変数をアドレス指定します",
|
||||
"'no_specializations' 属性を持つテンプレートを特殊化することはできません",
|
||||
"'static' はここでは非標準です",
|
||||
"%nd は、明示的な列挙型ベースなしで以前に宣言されました",
|
||||
"見つからない 'typename' はここでは非標準です",
|
||||
"省略形の関数テンプレート構文は、推論ガイドでは非標準です"
|
||||
]
|
||||
|
||||
@@ -1134,7 +1134,7 @@
|
||||
"비어 있는 변경 가능 목록을 완전히 생략해야 합니다.",
|
||||
"asm 피연산자가 필요합니다.",
|
||||
"변경할 레지스터가 필요합니다.",
|
||||
"'format' 특성에는 가변 매개 변수(...)가 필요합니다.",
|
||||
"'format' 특성에는 줄임표 매개 변수 또는 매개 변수 팩이 필요합니다.",
|
||||
"첫 번째 대체 인수가 첫 번째 가변 인수가 아닙니다.",
|
||||
"format 인수의 인덱스가 매개 변수 개수보다 큽니다.",
|
||||
"format 인수에 문자열 형식을 사용할 수 없습니다.",
|
||||
@@ -2711,7 +2711,7 @@
|
||||
"null 멤버 포인터(데이터 멤버)를 역참조하려고 합니다.",
|
||||
"void에 대한 포인터 및 함수에 대한 포인터 비교가 표준이 아닙니다.",
|
||||
"메타데이터 초기화 실패",
|
||||
"기본에서 파생으로의 캐스트가 잘못되었습니다(완전한 클래스 형식은 %t임).",
|
||||
"기본에서 파생으로의 캐스트가 잘못되었습니다(실제 파생 클래스 형식은 %t임).",
|
||||
"완전한 형식 %t의 개체에서 %n에 대한 액세스가 잘못되었습니다.",
|
||||
"'__auto_type'은 여기에 사용할 수 없습니다.",
|
||||
"'__auto_type'에는 선언자를 여러 개 사용할 수 없습니다.",
|
||||
@@ -3209,7 +3209,7 @@
|
||||
"상수 식에는 명시적 소멸자 호출을 사용할 수 없습니다.",
|
||||
"배열 첨자 식의 괄호로 묶이지 않은 쉼표 연산자는 사용되지 않습니다.",
|
||||
"동적으로 할당된 요소 수(%d개)가 이니셜라이저에 비해 너무 적습니다.",
|
||||
"%s 식에 대한 volatile 피연산자는 사용되지 않습니다.",
|
||||
null,
|
||||
"volatile 스칼라 개체에 할당한 결과는 사용되지 않습니다.",
|
||||
"복합 대입 식에 대한 volatile 대상 형식은 사용되지 않습니다.",
|
||||
"volatile 함수 매개 변수는 사용되지 않습니다.",
|
||||
@@ -3249,7 +3249,7 @@
|
||||
"개념 ID의 %T 인수를 대체하지 못했습니다.",
|
||||
"%T 인수의 개념이 false입니다.",
|
||||
"requires 절은 여기에서 허용되지 않습니다(템플릿 기반 함수가 아님).",
|
||||
"개념 템플릿",
|
||||
"개념",
|
||||
"requires 절이 %nfd과(와) 호환되지 않습니다.",
|
||||
"특성이 필요합니다.",
|
||||
null,
|
||||
@@ -3439,12 +3439,12 @@
|
||||
"명시적 'this' 함수의 주소를 사용하려면 정규화된 이름이 필요합니다.",
|
||||
"명시적 'this' 함수의 주소를 구성하려면 '&' 연산자가 필요합니다.",
|
||||
"가변 배열 멤버를 초기화하는 데 문자열 리터럴을 사용할 수 없습니다.",
|
||||
"함수 %sq의 정의의 IFC 표현이 잘못되었습니다.",
|
||||
null,
|
||||
"매개 변수를 지정하는 데 UniLevel IFC 차트가 사용되지 않았습니다.",
|
||||
"%u1 매개 변수는 IFC 매개 변수 정의 차트에 의해 지정되었지만 %u2 매개 변수는 IFC 선언에 의해 지정되었습니다.",
|
||||
"%u1 매개 변수는 IFC 매개 변수 정의 차트에 의해 지정되었지만 %u2 매개 변수는 IFC 선언에 의해 지정되었습니다.",
|
||||
"%u1 매개 변수는 IFC 매개 변수 정의 차트에 의해 지정되었지만 %u2 매개 변수는 IFC 선언에 의해 지정되었습니다.",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
"%sq 함수 정의의 IFC 표현이 없습니다.",
|
||||
"함수 한정자는 멤버 템플릿 선언에 적용되지 않습니다.",
|
||||
"멤버 선택에 너무 많은 중첩된 익명 형식이 포함됩니다.",
|
||||
@@ -3598,8 +3598,8 @@
|
||||
"'static' 람다 식에는 빈 캡처 사양이 있어야 합니다.",
|
||||
"EDG IFC 헤더 단위",
|
||||
"EDG IFC",
|
||||
"현재 변환 단위에 대한 헤더 단위를 만들 수 없습니다.",
|
||||
"현재 변환 단위는 헤더 단위에 현재 쓸 수 없는 하나 이상의 기능을 사용합니다.",
|
||||
"현재 번역 단위에 대해 IFC 파일을 생성할 수 없습니다.",
|
||||
"하나 이상의 엔터티를 현재 IFC 파일에 쓸 수 없습니다.",
|
||||
"'explicit(bool)'는 C++20 기능입니다.",
|
||||
"첫 번째 인수는 정수, enum 또는 지원되는 부동 소수점 형식에 대한 포인터여야 합니다.",
|
||||
"여러 번역 단위를 컴파일할 때는 C++ 모듈을 사용할 수 없습니다.",
|
||||
@@ -3671,5 +3671,81 @@
|
||||
"EDG IFC 모듈 파티션 단위",
|
||||
"모듈 인터페이스 파일을 만들지 않으면 이 변환 단위에서 모듈 선언을 내보낼 수 없습니다.",
|
||||
"모듈 인터페이스 파일을 만들려면 이 변환 단위에서 모듈 선언을 내보내야 합니다.",
|
||||
"모듈 파일 생성이 요청되었지만 변환 단위에 모듈이 선언되지 않았습니다."
|
||||
"모듈 파일 생성이 요청되었지만 변환 단위에 모듈이 선언되지 않았습니다.",
|
||||
"%T을(를) %n에 대체하는 데 실패했습니다.",
|
||||
"%n이(가) %T에 대해 만족되지 않음",
|
||||
"#embed 확장이 너무 길어 %t 형식 엔터티를 초기화할 수 없습니다.",
|
||||
"여기에서는 'defined' 연산자를 사용할 수 없습니다.",
|
||||
"%n은(는) %t의 멤버가 아닙니다.",
|
||||
"#embed 데이터에서 부호 있는 문자로의 축소 변환입니다.",
|
||||
"연산자는 'bool 벡터' 형식에 허용되지 않습니다.",
|
||||
"상수 평가를 수행하기에 개체가 너무 큽니다.",
|
||||
"자기 참조 임시 객체",
|
||||
"람다는 이 컨텍스트에서 지역 변수나 init-capture를 참조할 수 없습니다.",
|
||||
"람다 매개변수는 명시적 캡처를 가릴 수 없습니다.",
|
||||
"람다 템플릿 매개변수는 명시적 캡처를 숨길 수 없습니다.",
|
||||
"주소 공간이 부족하여 이 변환 단위를 처리할 수 없습니다.",
|
||||
"<undetermined type>",
|
||||
"<undetermined constant>",
|
||||
"<undetermined template>",
|
||||
"%s의 구성된 크기가 지정된 가수+지수 비트 수에 비해 너무 작습니다.",
|
||||
"식",
|
||||
"<expression>",
|
||||
"명명되지 않음",
|
||||
"<unnamed>",
|
||||
"<error-type>",
|
||||
"< 알 수 없는 형식>",
|
||||
"<something>",
|
||||
"<null-type>",
|
||||
"<no-init>",
|
||||
"<zero-init>",
|
||||
"bitwise copy of: ",
|
||||
"<bitwise-copy>",
|
||||
"ctor를 통한 클래스 결과: ",
|
||||
"<constructor-call>",
|
||||
"<NULL expression>",
|
||||
"<error>",
|
||||
"<NULL routine>",
|
||||
"<default>",
|
||||
"parameter #",
|
||||
" (한 수준 위로)",
|
||||
" 수준 올리기",
|
||||
"dynamic-init: ",
|
||||
"<error-constant>",
|
||||
"stack-offset-of:",
|
||||
"<implicit element> ",
|
||||
" 반복 ",
|
||||
"정수",
|
||||
"열거형",
|
||||
"범위가 지정된 열거형",
|
||||
"산술",
|
||||
"부울이 아닌 산술",
|
||||
"포인터",
|
||||
"nullptr 형식",
|
||||
"핸들",
|
||||
"CLI 배열에 대한 핸들",
|
||||
"개체에 대한 포인터",
|
||||
"함수에 대한 포인터",
|
||||
"pointer-to-member",
|
||||
"bool",
|
||||
"bool-equivalent",
|
||||
"클래스",
|
||||
"증가식에 대한 volatile 피연산자는 더 이상 권장되지 않습니다.",
|
||||
"감소식에 대한 volatile 피연산자는 더 이상 권장되지 않습니다.",
|
||||
"%n이(가) 이전에 'indeterminate' 특성 없이 선언됨",
|
||||
"%t에 대한 기본 생성자가 명시적입니다.",
|
||||
"%m에서 %n의 정의를 로드하지 못했습니다.",
|
||||
"%m에서 %n에 대한 이니셜라이저를 로드하지 못했습니다.",
|
||||
"링크 용도의 typedef 이름이 있는 클래스에는 기본 클래스를 가질 수 없습니다.",
|
||||
"링크 용도의 typedef 이름이 있는 클래스에는 멤버 함수를 가질 수 없습니다.",
|
||||
"링크 용도의 typedef 이름이 있는 클래스에는 열거형 또는 비클로저 클래스 형식을 제외한 중첩 형식을 가질 수 없습니다.",
|
||||
"링크 용도의 typedef 이름이 있는 클래스는 람다 식을 포함할 수 없습니다.",
|
||||
"링크 용도의 typedef 이름이 있는 클래스에는 기본 멤버 이니셜라이저가 있는 비정적 데이터 멤버를 가질 수 없습니다.",
|
||||
"이름 없는 클래스에서는 정적 데이터 멤버 선언을 사용할 수 없습니다.",
|
||||
"이니셜라이저 결과가 dllimport 변수를 참조합니다.",
|
||||
"'no_specializations' 특성이 있는 템플릿은 특수화할 수 없습니다.",
|
||||
"여기서 'static'은 표준이 아닙니다.",
|
||||
"%nd은(는) 이전에 명시적 열거형 기반 없이 선언되었습니다.",
|
||||
"여기서 누락된 'typename'이 표준이 아닙니다.",
|
||||
"약식 함수 템플릿 구문은 추론 가이드에 대한 표준이 아닙니다."
|
||||
]
|
||||
|
||||
@@ -1134,7 +1134,7 @@
|
||||
"pustą listę elementów nadpisywanych należy całkowicie pominąć",
|
||||
"oczekiwano operandu funkcji asm",
|
||||
"oczekiwano rejestru do nadpisania",
|
||||
"atrybut „format” wymaga parametru wielokropka",
|
||||
"atrybut „format” wymaga parametru wielokropka lub pakietu parametrów",
|
||||
"pierwszy argument podstawienia nie jest pierwszym argumentem zmiennej",
|
||||
"indeks argumentu formatu jest większy niż liczba parametrów",
|
||||
"argument formatu nie ma typu ciągu",
|
||||
@@ -2711,7 +2711,7 @@
|
||||
"próba wyłuskania pustego wskaźnika do składowej (składowej danych)",
|
||||
"porównanie wskaźnika z elementem void i wskaźnika z funkcją jest niestandardowe",
|
||||
"nie można zainicjować metadanych",
|
||||
"nieprawidłowe rzutowanie typu bazowego na pochodny (pełny typ klasy to %t)",
|
||||
"nieprawidłowe rzutowanie typu bazowego na pochodny (rzeczywisty typ klasy pochodnej to %t)",
|
||||
"nieprawidłowy dostęp do elementu %n w obiekcie, którego pełny typ to %t",
|
||||
"element „__auto_type” jest niedozwolony w tym miejscu",
|
||||
"element „__auto_type” nie zezwala na wiele deklaratorów",
|
||||
@@ -3209,7 +3209,7 @@
|
||||
"jawne wywołanie destruktora jest niedozwolone w wyrażeniu stałym",
|
||||
"nieujęty w nawiasach operator przecinka w wyrażeniu indeksu tablicy jest przestarzały",
|
||||
"liczba dynamicznie przydzielonych elementów (%d) jest zbyt mała dla inicjatora",
|
||||
"nietrwały operand wyrażenia %s jest przestarzały",
|
||||
null,
|
||||
"używanie wyniku przypisania do nietrwałego obiektu skalarnego jest przestarzałe",
|
||||
"nietrwały typ docelowy dla złożonego wyrażenia przypisania jest przestarzały",
|
||||
"nietrwały parametr funkcji jest przestarzały",
|
||||
@@ -3249,7 +3249,7 @@
|
||||
"podstawianie argumentów %T dla identyfikatora koncepcji nie powiodło się",
|
||||
"koncepcja jest fałszywa dla argumentów %T",
|
||||
"klauzula requires nie jest dozwolona w tym miejscu (nie jest to funkcja z szablonem)",
|
||||
"szablon koncepcji",
|
||||
"koncepcja",
|
||||
"klauzula requires jest niezgodna z elementem %nfd",
|
||||
"oczekiwano atrybutu",
|
||||
null,
|
||||
@@ -3439,12 +3439,12 @@
|
||||
"pobieranie adresu jawnej funkcji „this” wymaga kwalifikowanej nazwy",
|
||||
"utworzenie adresu jawnej funkcji „this” wymaga operatora \"&\"",
|
||||
"literału ciągu nie można użyć do zainicjowania elastycznej składowej tablicy",
|
||||
"Reprezentacja IFC definicji funkcji %sq jest nieprawidłowa",
|
||||
null,
|
||||
"wykres IFC UniLevel nie został użyty do określenia parametrów",
|
||||
"Parametry (%u1) zostały określone przez wykres definicji parametru IFC, podczas gdy parametry (%u2) zostały określone przez deklarację IFC",
|
||||
"Parametry (%u1) zostały określone przez wykres definicji parametru IFC, podczas gdy parametry (%u2) zostały określone przez deklarację IFC",
|
||||
"Parametry (%u1) zostały określone przez wykres definicji parametru IFC, podczas gdy parametry (%u2) zostały określone przez deklarację IFC",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
"Brak reprezentacji IFC definicji funkcji %sq",
|
||||
"modyfikator funkcji nie ma zastosowania do deklaracji szablonu elementu członkowskiego",
|
||||
"wybór elementu członkowskiego obejmuje zbyt wiele zagnieżdżonych typów anonimowych",
|
||||
@@ -3598,8 +3598,8 @@
|
||||
"wyrażenie lambda „statyczne” musi mieć pustą specyfikację przechwytywania",
|
||||
"Jednostka nagłówka EDG IFC",
|
||||
"EDG IFC",
|
||||
"nie można utworzyć jednostki nagłówka dla bieżącej jednostki translacji",
|
||||
"bieżąca jednostka translacji używa co najmniej jednej funkcji, których obecnie nie można zapisać w jednostce nagłówka",
|
||||
"nie można utworzyć pliku IFC dla bieżącej jednostki tłumaczenia",
|
||||
"nie można obecnie zapisać jednej lub więcej jednostek w pliku IFC",
|
||||
"„explicit(bool)” jest funkcją języka C++20",
|
||||
"pierwszy argument musi być wskaźnikiem do liczby całkowitej, wyliczenia lub obsługiwanego typu zmiennoprzecinkowego",
|
||||
"Modułów języka C++ nie można używać podczas kompilowania wielu jednostek tłumaczenia",
|
||||
@@ -3671,5 +3671,81 @@
|
||||
"jednostka partycji modułu EDG IFC",
|
||||
"deklaracja modułu nie może być wyeksportowana z tej jednostki translacji, chyba że zostanie utworzony plik interfejsu modułu",
|
||||
"deklaracja modułu musi być wyeksportowana z tej jednostki translacji, aby utworzyć plik interfejsu modułu",
|
||||
"zażądano wygenerowania pliku modułu, ale w jednostce translacji nie zadeklarowano żadnego modułu"
|
||||
"zażądano wygenerowania pliku modułu, ale w jednostce translacji nie zadeklarowano żadnego modułu",
|
||||
"podstawianie %T w przypadku %n niespełnionych ograniczeń",
|
||||
"%n nie jest spełniony dla %T",
|
||||
"rozszerzenie #embed jest zbyt długie, aby zainicjować jednostkę typu %t",
|
||||
"operator „defined” nie jest tutaj dozwolony",
|
||||
"%n nie jest członkiem %t",
|
||||
"konwersja zawężająca do znaku podpisanego w danych #embed",
|
||||
"operator nie jest dozwolony dla typów „vector of bool”",
|
||||
"obiekt za duży do obliczeń stałej",
|
||||
"obiekt tymczasowy odwołujący się do samego siebie",
|
||||
"w tym kontekście lambda nie może odwoływać się do zmiennej lokalnej ani do init-capture",
|
||||
"parametr lambda nie może ukryć jawnego przechwycenia",
|
||||
"parametr szablonu lambda nie może ukryć jawnego przechwycenia",
|
||||
"brak wystarczającej przestrzeni adresowej do przetworzenia tej jednostki translacji",
|
||||
"<undetermined type>",
|
||||
"<undetermined constant>",
|
||||
"<undetermined template>",
|
||||
"skonfigurowany rozmiar %s jest za mały dla określonej liczby bitów mantysy i wykładnika",
|
||||
"wyrażenie",
|
||||
"<expression>",
|
||||
"bez nazwy",
|
||||
"<unnamed>",
|
||||
"<error-type>",
|
||||
"<unknown-type>",
|
||||
"<something>",
|
||||
"<null-type>",
|
||||
"<no-init>",
|
||||
"<zero-init>",
|
||||
"kopia bitowa: ",
|
||||
"<bitwise-copy>",
|
||||
"wynik klasy przez konstruktora: ",
|
||||
"<constructor-call>",
|
||||
"<NULL expression>",
|
||||
"<error>",
|
||||
"<NULL routine>",
|
||||
"<default>",
|
||||
"parametr #",
|
||||
" (jeden poziom wyżej)",
|
||||
" wyrównuje się",
|
||||
"dynamic-init: ",
|
||||
"<error-constant>",
|
||||
"przesunięcie na stosie:",
|
||||
"<implicit element> ",
|
||||
" powtórzenia ",
|
||||
"liczba całkowita",
|
||||
"wyliczenie",
|
||||
"zakresowy wyliczenia",
|
||||
"arytmetyka",
|
||||
"wartość arytmetyczna niebędącą wartością logiczną",
|
||||
"wskaźnik",
|
||||
"typ nullptr",
|
||||
"uchwyt",
|
||||
"uchwyt do tablicy CLI",
|
||||
"wskaźnik do obiektu",
|
||||
"wskaźnik do funkcji",
|
||||
"wskaźnik do składowej",
|
||||
"logiczna",
|
||||
"równoważnik logiczny",
|
||||
"klasa",
|
||||
"nietrwały operand wyrażenia przyrostu jest przestarzały",
|
||||
"nietrwały operand wyrażenia dekrementacji jest przestarzały",
|
||||
"funkcja %n została poprzednio zadeklarowana bez atrybutu „indeterminate”",
|
||||
"domyślny konstruktor dla %t jest jawny",
|
||||
"nie udało się załadować definicji %n w %m",
|
||||
"nie udało się załadować inicjatora dla %n w %m",
|
||||
"klasa z nazwą typedef służącą do wiązania nie może mieć klasy bazowej",
|
||||
"klasa z nazwą typedef służącą do wiązania nie może mieć funkcji członkowskiej",
|
||||
"klasa z nazwą typedef służącą do wiązania nie może mieć typu zagnieżdżonego innego niż typ wyliczenia lub typ klasy bez zamknięcia",
|
||||
"klasa z nazwą typedef służącą do wiązania nie może zawierać wyrażenia lambda",
|
||||
"klasa z nazwą typedef służącą do wiązania nie może mieć niestatycznego elementu danych z domyślnym inicjatorem elementu",
|
||||
"deklaracja statycznej składowej danych nie jest dozwolona w nieznanej klasie",
|
||||
"wynik inicjatora adresuje zmienną dllimport",
|
||||
"szablon z atrybutem „no_specializations” nie może być wyspecjalizowany",
|
||||
"„static” jest tutaj niestandardowy",
|
||||
"funkcja %nd została poprzednio zadeklarowana bez jawnej bazy wyliczenia",
|
||||
"brak elementu „typename” jest tutaj niestandardowe",
|
||||
"skrócona składnia szablonu funkcji jest niestandardowa dla przewodników dedukcji"
|
||||
]
|
||||
|
||||
@@ -1134,7 +1134,7 @@
|
||||
"um clobber vazio deve ser totalmente omitido",
|
||||
"esperado um operando asm",
|
||||
"esperado um registro para clobber",
|
||||
"\"format\" attribute requires an ellipsis parameter",
|
||||
"O atributo 'format' requer um parâmetro elipse ou um pacote de parâmetros",
|
||||
"o primeiro argumento de substituição não é o primeiro argumento variável",
|
||||
"o índice de argumento do formato é maior que o número de parâmetros",
|
||||
"o argumento de formato não tem tipo de sequência",
|
||||
@@ -2711,7 +2711,7 @@
|
||||
"tentativa de desreferenciar um ponteiro para membro nulo (membro de dados)",
|
||||
"comparar um ponteiro para nulo e um ponteiro para uma função não é padrão",
|
||||
"falha na inicialização de metadados",
|
||||
"conversão de base para derivado inválida (o tipo de classe completo é %t)",
|
||||
"Conversão inválida de base para derivada (o tipo real da classe derivada é %t)",
|
||||
"acesso inválido a %n no objeto do tipo %t completo",
|
||||
"'__auto_type' não é permitido aqui",
|
||||
"'__auto_type' não permite vários declaradores",
|
||||
@@ -3209,7 +3209,7 @@
|
||||
"uma chamada de destruidor explícita não é permitida em uma expressão constante",
|
||||
"um operador de vírgula que não está entre parênteses em uma expressão de subscrito de matriz está preterido",
|
||||
"número de elementos alocados dinamicamente (%d) muito pequeno para o inicializador",
|
||||
"um operando volátil da expressão %s está preterido",
|
||||
null,
|
||||
"o uso do resultado de uma atribuição para um objeto volátil escalar está preterido",
|
||||
"um tipo de destino volátil para uma expressão de atribuição composta foi preterido",
|
||||
"um parâmetro de função volátil está preterido",
|
||||
@@ -3249,7 +3249,7 @@
|
||||
"falha na substituição de argumentos %T da ID do conceito",
|
||||
"o conceito é falso para argumentos %T",
|
||||
"uma cláusula requires não é permitida aqui (não é uma função de modelo)",
|
||||
"modelo de conceito",
|
||||
"conceito",
|
||||
"cláusula requires incompatível com %nfd",
|
||||
"um atributo é esperado",
|
||||
null,
|
||||
@@ -3439,12 +3439,12 @@
|
||||
"usar o endereço de uma função explícita 'this' requer um nome qualificado",
|
||||
"formar o endereço de uma função 'this' explícita requer o operador '&'",
|
||||
"um literal de cadeia de caracteres não pode ser usado para inicializar um membro de matriz flexível",
|
||||
"A representação IFC da definição da função %sq é inválida",
|
||||
null,
|
||||
"um gráfico UNILevel IFC não foi usado para especificar parâmetros",
|
||||
"%u1 parâmetros foram especificados pelo gráfico de definição de parâmetro IFC, enquanto %u2 parâmetros foram especificados pela declaração IFC",
|
||||
"O parâmetro %u1 foi especificado pelo gráfico de definição de parâmetro IFC, enquanto os parâmetros %u2 foram especificados pela declaração IFC",
|
||||
"O parâmetro %u1 foi especificado pelo gráfico de definição de parâmetro IFC, enquanto parâmetros %u2 foram especificados pela declaração IFC",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
"a representação IFC da definição da função %sq está ausente",
|
||||
"o modificador de função não se aplica à declaração de modelo do membro",
|
||||
"a seleção de membro envolve muitos tipos anônimos aninhados",
|
||||
@@ -3598,8 +3598,8 @@
|
||||
"uma expressão lambda 'static' deve ter uma especificação de captura vazia",
|
||||
"Unidade de cabeçalho EDG IFC",
|
||||
"EDG IFC",
|
||||
"não foi possível criar uma unidade de cabeçalho para a unidade de tradução atual",
|
||||
"a unidade de tradução atual usa um ou mais recursos que não podem ser gravados atualmente em uma unidade de cabeçalho",
|
||||
"Não foi possível gerar um arquivo IFC para a unidade de tradução atual",
|
||||
"Uma ou mais entidades não podem ser gravadas em um arquivo IFC no momento",
|
||||
"'explicit(bool)' é um recurso do C++20",
|
||||
"o primeiro argumento deve ser um ponteiro para inteiro, enum ou tipo de ponto flutuante suportado",
|
||||
"módulos C++ não podem ser usados ao compilar múltiplas unidades de tradução",
|
||||
@@ -3671,5 +3671,81 @@
|
||||
"Unidade de partição do módulo EDG IFC",
|
||||
"a declaração de módulo não pode ser exportada desta unidade de tradução, a menos que crie um arquivo de interface de módulo",
|
||||
"a declaração do módulo deve ser exportada desta unidade de tradução para criar um arquivo de interface de módulo",
|
||||
"a geração de arquivo de módulo foi solicitada, mas nenhum módulo foi declarado na unidade de tradução"
|
||||
"a geração de arquivo de módulo foi solicitada, mas nenhum módulo foi declarado na unidade de tradução",
|
||||
"substituindo %T por %n restrições com falha",
|
||||
"%n não satisfeito para %T",
|
||||
"a expansão #embed é muito longa para inicializar uma entidade do tipo %t",
|
||||
"o operador \"defined\" não é permitido aqui",
|
||||
"%to é um membro de %n",
|
||||
"conversão de restrição em caractere assinado em dados #embed",
|
||||
"operador não é permitido para tipos \"vector of bool\"",
|
||||
"objeto muito grande para avaliação constante",
|
||||
"objeto temporário de autorreferência",
|
||||
"um lambda não pode se referir a uma variável local ou init-capture nesse contexto",
|
||||
"um parâmetro lambda não pode ocultar uma captura explícita",
|
||||
"um parâmetro de modelo lambda não pode ocultar uma captura explícita",
|
||||
"espaço de endereço insuficiente para processar essa unidade de tradução",
|
||||
"<undetermined type>",
|
||||
"<undetermined constant>",
|
||||
"<undetermined template>",
|
||||
"o tamanho configurado de %sé muito pequeno para o número especificado de mantissa + bits expoentes",
|
||||
"expressão",
|
||||
"<expression>",
|
||||
"sem nome",
|
||||
"<unnamed>",
|
||||
"<error-type>",
|
||||
"<unknown-type>",
|
||||
"<something>",
|
||||
"<null-type>",
|
||||
"<no-init>",
|
||||
"<zero-init>",
|
||||
"cópia bit a bit de: ",
|
||||
"<bitwise-copy>",
|
||||
"resultado da classe por meio do ctor: ",
|
||||
"<constructor-call>",
|
||||
"<NULL expression>",
|
||||
"<error>",
|
||||
"<NULL routine>",
|
||||
"<default>",
|
||||
"parâmetro #",
|
||||
" (um nível para cima)",
|
||||
" níveis para cima",
|
||||
"dynamic-init: ",
|
||||
"<error-constant>",
|
||||
"stack-offset-of:",
|
||||
"<implicit element> ",
|
||||
" repetições de ",
|
||||
"inteiro",
|
||||
"enumeração",
|
||||
"enumeração com escopo",
|
||||
"aritmética",
|
||||
"aritmética não booliana",
|
||||
"ponteiro",
|
||||
"tipo nullptr",
|
||||
"identificador",
|
||||
"handle-to-CLI-array",
|
||||
"pointer-to-object",
|
||||
"pointer-to-function",
|
||||
"pointer-to-member",
|
||||
"bool",
|
||||
"bool-equivalent",
|
||||
"classe",
|
||||
"um operando volátil para uma expressão de incremento foi preterido",
|
||||
"um operando volátil para uma expressão de decremento foi preterido",
|
||||
"%n declarado anteriormente sem o atributo \"indeterminate\"",
|
||||
"o construtor padrão para %t é explícito",
|
||||
"falha ao carregar a definição de %n em %m",
|
||||
"falha ao carregar o inicializador para %n em %m",
|
||||
"uma classe com um nome typedef para fins de vinculação não pode ter uma classe base",
|
||||
"uma classe com um nome typedef para fins de vinculação não pode ter uma função membro",
|
||||
"uma classe com um nome typedef para fins de vinculação não pode ter um tipo aninhado, exceto um tipo de enumeração ou um tipo de classe sem fechamento",
|
||||
"uma classe com um nome typedef para fins de vinculação não pode conter uma expressão lambda",
|
||||
"uma classe com um nome typedef para fins de vinculação não pode ter um membro de dados não estático com um inicializador de membro padrão",
|
||||
"uma declaração de membro de dados estáticos não é permitida em uma classe sem nome",
|
||||
"o resultado do inicializador trata de uma variável dllimport",
|
||||
"modelo com atributo \"no_specializations\" não pode ser especializado",
|
||||
"\"static\" não é padrão aqui",
|
||||
"%nd foi declarado anteriormente sem uma base de enumeração explícita",
|
||||
"\"typename\" ausente não é padrão aqui",
|
||||
"a sintaxe abreviada de template de função é não padrão para guias de dedução"
|
||||
]
|
||||
|
||||
@@ -1134,7 +1134,7 @@
|
||||
"пустой список затирания должен быть полностью опущен",
|
||||
"требуется операнд ассемблерного кода",
|
||||
"требуется регистр для затирания",
|
||||
"для атрибута \"format\" требуется параметр-многоточие",
|
||||
"для атрибута \"format\" требуется параметр-многоточие или пакет параметров",
|
||||
"первый аргумент замены не является первым переменным аргументом",
|
||||
"индекс аргумента формата превышает число параметров",
|
||||
"аргумент формата имеет отличный от строкового тип",
|
||||
@@ -2711,7 +2711,7 @@
|
||||
"попытка отменить ссылку на пустой указатель на элемент (элемент данных)",
|
||||
"сравнение указателя на пустоту и указателя на функцию является нестандартным",
|
||||
"сбой инициализации метаданных",
|
||||
"недопустимое приведение базового класса к производному (полный тип класса — %t)",
|
||||
"недопустимое приведение базового класса к производному (фактический тип производного класса — %t)",
|
||||
"недопустимый доступ к %n в объекте полного типа %t",
|
||||
"Значение \"__auto_type\" здесь запрещено",
|
||||
"\"__auto_type\" не допускает множество операторов объявления.",
|
||||
@@ -3209,7 +3209,7 @@
|
||||
"явный вызов деструктора не разрешен в константном выражении",
|
||||
"Оператор \"запятая\" не в круглых скобках в выражении индекса массива не рекомендуется.",
|
||||
"число динамически выделенных элементов (%d) слишком мало для инициализатора",
|
||||
"временный операнд для выражения %s не рекомендуется",
|
||||
null,
|
||||
"использование результата назначения временному скалярному объекту не рекомендуется",
|
||||
"временный целевой тип для выражения сложного назначения не рекомендуется",
|
||||
"временный параметр функции не рекомендуется",
|
||||
@@ -3249,7 +3249,7 @@
|
||||
"не удалось подставить аргументы %T для идентификатора концепции",
|
||||
"концепция имеет значение false для аргументов %T",
|
||||
"Использование здесь предложения requires запрещено (не шаблонная функция)",
|
||||
"шаблон концепции",
|
||||
"понятие",
|
||||
"Предложение requires несовместимо с %nfd",
|
||||
"ожидается атрибут",
|
||||
null,
|
||||
@@ -3439,12 +3439,12 @@
|
||||
"для получения адреса явной функции \"this\" требуется полное имя",
|
||||
"для формирования адреса явной функции \"this\" требуется оператор \"&\"",
|
||||
"строковый литерал нельзя использовать для инициализации элемента гибкого массива",
|
||||
"представление IFC определения функции %sq недопустимо",
|
||||
null,
|
||||
"диаграмма IFC UniLevel не использовалось для указания параметров",
|
||||
"несколько (%u1) параметров указаны в диаграмме определения параметров IFC, в то время как несколько (%u2) параметров указаны в объявлении IFC",
|
||||
"%u1 параметр указан в диаграмме определения параметров IFC, в то время как несколько (%u2) параметров указаны в объявлении IFC",
|
||||
"несколько (%u1) параметров указаны в диаграмме определения параметров IFC, в то время как %u2 параметр указан в объявлении IFC",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
"отсутствует представление IFC определения функции %sq",
|
||||
"модификатор функции не применяется к объявлению шаблона элемента",
|
||||
"выбор элемента включает слишком много вложенных анонимных типов",
|
||||
@@ -3598,8 +3598,8 @@
|
||||
"Лямбда-выражение \"static\" должно содержать пустую спецификацию захвата",
|
||||
"Единица заголовка EDG IFC",
|
||||
"EDG IFC",
|
||||
"не удалось создать единицу заголовка для текущей единицы трансляции",
|
||||
"текущая единица трансляции использует одну или несколько функций, которые в данный момент невозможно записать в единицу заголовка",
|
||||
"не удалось создать файл IFC для текущей единицы трансляции",
|
||||
"не удалось записать один или несколько объектов в файл IFC",
|
||||
"\"explicit(bool)\" — это функция C++20",
|
||||
"первый аргумент должен быть указателем на целое число, enum или значение поддерживаемого типа с плавающей точкой",
|
||||
"Модули C++ не могут использоваться при компиляции нескольких единиц трансляции",
|
||||
@@ -3671,5 +3671,81 @@
|
||||
"единица раздела модуля EDG IFC",
|
||||
"объявление модуля невозможно экспортировать из этой единицы трансляции, если не создается файл интерфейса модуля",
|
||||
"объявление модуля должно быть экспортировано из этой единицы трансляции для создания файла интерфейса модуля",
|
||||
"запрошено создание файла модуля, но в единице трансляции не объявлен модуль"
|
||||
"запрошено создание файла модуля, но в единице трансляции не объявлен модуль",
|
||||
"сбой ограничений замены %T для %n",
|
||||
"%n не удовлетворено для %T",
|
||||
"расширение #embed слишком длинное для инициализации сущности типа %t",
|
||||
"оператор defined здесь не разрешен",
|
||||
"%n не является элементом %t",
|
||||
"сужающее преобразование в знаковый символ в данных #embed",
|
||||
"оператор не разрешен для типов \"vector of bool\"",
|
||||
"объект слишком большой для константной оценки",
|
||||
"ссылающийся на себя временный объект",
|
||||
"лямбда не может ссылаться на локальную переменную или инициализируемый захват в этом контексте",
|
||||
"параметр лямбда не может скрывать явный захват",
|
||||
"параметр шаблона лямбда не может скрывать явный захват",
|
||||
"недостаточный диапазон адресов для обработки этой единицы трансляции",
|
||||
"<неопределенный тип>",
|
||||
"<неопределенная константа>",
|
||||
"<неопределенный шаблон>",
|
||||
"настроенный размер %s слишком мал для указанного количества бит мантиссы и экспоненты",
|
||||
"выражение",
|
||||
"<выражение>",
|
||||
"без имени",
|
||||
"<без имени>",
|
||||
"<тип ошибки>",
|
||||
"<неизвестный тип>",
|
||||
"<нечто>",
|
||||
"<тип-null>",
|
||||
"<no-init>",
|
||||
"<zero-init>",
|
||||
"побитовая копия: ",
|
||||
"<побитовая копия>",
|
||||
"результат класса через ctor: ",
|
||||
"<вызов конструктора>",
|
||||
"<выражение NULL>",
|
||||
"<ошибка>",
|
||||
"<подпрограмма NULL>",
|
||||
"<по умолчанию>",
|
||||
"параметр #",
|
||||
" (один уровень вверх)",
|
||||
" увеличение уровня",
|
||||
"dynamic-init: ",
|
||||
"<error-constant>",
|
||||
"смещение стека:",
|
||||
"<неявный элемент> ",
|
||||
" повторы ",
|
||||
"целое число",
|
||||
"перечисление",
|
||||
"перечисление с областью",
|
||||
"арифметическое",
|
||||
"нелогическое арифметическое",
|
||||
"указатель",
|
||||
"тип nullptr",
|
||||
"дескриптор",
|
||||
"дескриптор массива CLI",
|
||||
"указатель на объект",
|
||||
"указатель на функцию",
|
||||
"указатель на элемент",
|
||||
"логическое",
|
||||
"логический эквивалент",
|
||||
"класс",
|
||||
"временный операнд для выражения увеличения не рекомендуется",
|
||||
"временный операнд для выражения уменьшения не рекомендуется",
|
||||
"%n ранее объявлен без атрибута indeterminate",
|
||||
"конструктор по умолчанию для %t является явным",
|
||||
"не удалось загрузить определение %n в %m",
|
||||
"не удалось загрузить инициализатор для %n в %m",
|
||||
"класс с именем typedef для целей связывания не может содержать базовый класс",
|
||||
"класс с именем typedef для целей связывания не может содержать функцию-член",
|
||||
"класс с именем typedef для целей связывания не может содержать вложенный тип, кроме типа перечисления или класса без замыкания",
|
||||
"класс с именем typedef для целей связывания не может содержать лямбда-выражение",
|
||||
"класс с именем typedef для целей связывания не может содержать нестатический элемент данных с инициализатором элемента по умолчанию",
|
||||
"объявление статического элемента данных в безымянном классе не допускается",
|
||||
"результат инициализатора указывает на переменную dllimport",
|
||||
"шаблон с атрибутом \"no_specializations\" не может иметь специализации",
|
||||
"\"static\" является здесь нестандартным",
|
||||
"%nd ранее был объявлен без явной базы перечисления",
|
||||
"отсутствие typename здесь является нестандартным",
|
||||
"сокращенный синтаксис шаблона функции не является стандартным для правил дедукции"
|
||||
]
|
||||
|
||||
@@ -1134,7 +1134,7 @@
|
||||
"boş bir değeri değiştirilecekler listesi tamamen atlanmalı",
|
||||
"bir asm işleneni bekleniyor",
|
||||
"değeri değiştirilecek bir yazmaç bekleniyor",
|
||||
"'format' özniteliği bir üç nokta parametresi gerektiriyor",
|
||||
"'format' özniteliği için bir üç nokta parametresi veya parametre paketi gerekir",
|
||||
"ilk değiştirme bağımsız değişkeni, ilk değişken bağımsız değişken değil",
|
||||
"biçim bağımsız değişken dizini, parametre sayısından daha büyük",
|
||||
"biçim bağımsız değişkeni, dize türünde değil",
|
||||
@@ -2711,7 +2711,7 @@
|
||||
"null üye işaretçisine (veri üyesi) başvurma denemesi",
|
||||
"bir void işaretçisiyle bir işlev işaretçisini karşılaştırmak standart değildir",
|
||||
"meta veriler başlatılamadı",
|
||||
"temelden türetilmişe dönüştürme geçersiz (tam sınıf türü: %t)",
|
||||
"temelden türetilmişe dönüştürme işlemi geçersiz (gerçek türetilmiş sınıf türü %t)",
|
||||
"tam %t türünün nesnesindeki %n öğesine geçersiz erişim",
|
||||
"'__auto_type' öğesine burada izin verilmez",
|
||||
"'__auto_type' birden fazla bildirimciye izin vermez",
|
||||
@@ -3209,7 +3209,7 @@
|
||||
"sabit ifade içerisinde açık yıkıcı çağrısına izin verilmez",
|
||||
"bir dizi alt simge ifadesinde parantez içine alınmış olmayan virgül işleci kullanım dışı bırakıldı",
|
||||
"başlatıcı için dinamik olarak ayrılan öğelerin sayısı (%d) çok küçük",
|
||||
"%s ifadesi için geçici bir işlenen kullanım dışı bırakıldı",
|
||||
null,
|
||||
"geçici skaler nesneye yapılan bir atamanın sonucunun kullanılması kullanım dışı bırakıldı",
|
||||
"bileşik atama ifadesi için geçici bir hedef türü kullanım dışı bırakıldı",
|
||||
"geçici işlev parametresi kullanım dışı bırakıldı",
|
||||
@@ -3249,7 +3249,7 @@
|
||||
"kavram kimliği için %T bağımsız değişkenleri değiştirilemedi",
|
||||
"%T bağımsız değişkenleri için kavram false",
|
||||
"burada bir requires yan tümcesine izin verilmiyor (şablonlu bir işlev değil)",
|
||||
"kavram şablonu",
|
||||
"kavram",
|
||||
"requires yan tümcesi %nfd ile uyumsuz",
|
||||
"öznitelik bekleniyordu",
|
||||
null,
|
||||
@@ -3439,12 +3439,12 @@
|
||||
"açık 'this' işlevine ait adresin alınabilmesi için tam ad gerekir",
|
||||
"açık 'this' işlevine ait adresin oluşturulabilmesi için '&' operatörü gerekir",
|
||||
"sabit değerli dize, esnek bir dizi üyesini başlatmak için kullanılamaz",
|
||||
"%sq işlevine ait tanımın IFC gösterimi geçersiz",
|
||||
null,
|
||||
"parametreleri belirtmek için UniLevel IFC grafiği kullanılmadı",
|
||||
"%u1 parametreleri, IFC parametre tanım grafiği tarafından, %u2 parametreleri ise IFC bildirimi tarafından belirtilir",
|
||||
"%u1 parametresi, IFC parametre tanım grafiği tarafından, %u2 parametreleri ise IFC bildirimi tarafından belirtilmiştir",
|
||||
"%u1 parametreleri, IFC parametre tanım grafiği tarafından, %u2 parametresi ise IFC bildirimi tarafından belirtilmiştir",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
"%sq işlevine ait tanımın IFC gösterimi eksik",
|
||||
"işlev değiştirici, üye şablonu bildirimi için geçerli değil",
|
||||
"üye seçimi çok fazla iç içe anonim tür içeriyor",
|
||||
@@ -3598,8 +3598,8 @@
|
||||
"'static' lambda ifadelerinin yakalama belirtimi boş olmalıdır",
|
||||
"EDG IFC üst bilgi birimi",
|
||||
"EDG IFC",
|
||||
"geçerli çeviri birimi için bir başlık birimi oluşturulamadı",
|
||||
"mevcut çeviri birimi şu anda bir başlık birimine yazılamayan bir veya daha fazla özellik kullanıyorsa",
|
||||
"geçerli çeviri birimi için bir IFC dosyası üretilemedi",
|
||||
"bir veya daha fazla varlık şu anda bir IFC dosyasına yazılamıyor",
|
||||
"'explicit(bool)' bir C++20 özelliğidir",
|
||||
"ilk bağımsız değişken tamsayıyı, enum'u veya desteklenen kayan noktayı gösteren bir işaretçi olmalıdır",
|
||||
"C++ modülleri birden çok çeviri birimi derlenirken kullanılamaz",
|
||||
@@ -3671,5 +3671,81 @@
|
||||
"EDG IFC modül bölme ünitesi",
|
||||
"modül arabirimi dosyası oluşturulmadıkça, modül bildirimi bu çeviri biriminden dışa aktarılamaz",
|
||||
"modül arabirim dosyası oluşturmak için modül bildirimi bu çeviri biriminden dışa aktarılmalıdır",
|
||||
"modül dosyası oluşturulması istendi, ancak çeviri biriminde hiçbir modül bildirilmedi"
|
||||
"modül dosyası oluşturulması istendi, ancak çeviri biriminde hiçbir modül bildirilmedi",
|
||||
"%n başarısız kısıtlama için %T ile değiştirme",
|
||||
"%n %T için karşılanmadı",
|
||||
"#embed genişlemesi, %t türündeki bir varlığı başlatmak için çok uzun",
|
||||
"'tanımlanmış' işleci burada kullanılamaz",
|
||||
"%n, bir %t üyesi değil",
|
||||
"#embed verilerinde imzalı karaktere dönüştürmeyi daraltma",
|
||||
"'bool vektörü' türleri için işlem izinli değil",
|
||||
"nesne sabit değerlendirme için çok büyük",
|
||||
"kendine referans veren geçici nesne",
|
||||
"Bu bağlamda bir lambda, yerel bir değişkene veya init-capture'a atıfta bulunamaz.",
|
||||
"lambda parametresi açık yakalamayı gizleyemez",
|
||||
"lambda şablon parametresi açık yakalamayı gizleyemez",
|
||||
"Bu çeviri birimini işlemek için yeterli adres alanı yok",
|
||||
"<belirlenmemiş tür>",
|
||||
"<belirlenmemiş sabit>",
|
||||
"<belirlenmemiş şablon>",
|
||||
"%s'in yapılandırılmış boyutu, belirtilen mantissa + üs bit sayısı için çok küçük",
|
||||
"ifade",
|
||||
"<ifade>",
|
||||
"adsız",
|
||||
"<adsız>",
|
||||
"<error-type>",
|
||||
"<unknown-type>",
|
||||
"<bir şey>",
|
||||
"<null-type>",
|
||||
"<no-init>",
|
||||
"<zero-init>",
|
||||
"bitwise kopyası: ",
|
||||
"<bitwise-copy>",
|
||||
"ctor ile sınıf sonucu: ",
|
||||
"<constructor-call>",
|
||||
"<NULL ifadesi>",
|
||||
"<hata>",
|
||||
"<NULL rutini>",
|
||||
"<varsayılan>",
|
||||
"parametre #",
|
||||
" (bir üst düzey)",
|
||||
" düzey yukarı",
|
||||
"dynamic-init: ",
|
||||
"<error-constant>",
|
||||
"stack-offset-of:",
|
||||
"<örtük öğe> ",
|
||||
" tekrarları ",
|
||||
"tamsayı",
|
||||
"sabit listesi",
|
||||
"kapsamlı sabit listesi",
|
||||
"aritmetik",
|
||||
"bool olmayan aritmetik",
|
||||
"işaretçi",
|
||||
"nullptr türü",
|
||||
"tanıtıcı",
|
||||
"handle-to-CLI-array",
|
||||
"pointer-to-object",
|
||||
"pointer-to-function",
|
||||
"pointer-to-member",
|
||||
"bool",
|
||||
"bool-equivalent",
|
||||
"sınıf",
|
||||
"artış ifadesine geçici bir işlenen kullanılması kullanım dışıdır",
|
||||
"azaltma ifadesine geçici bir işlenen kullanılması kullanım dışıdır",
|
||||
"%n daha önce ‘belirsiz’ özniteliği olmadan bildirilmiş",
|
||||
"%t için varsayılan oluşturucu açıkça belirtilmiştir",
|
||||
"%m içinde %n tanımı yüklenemedi",
|
||||
"%m içindeki %n için başlatıcı yüklenemedi",
|
||||
"bağlantı amacıyla typedef adı olan bir sınıfın temel sınıfı olamaz",
|
||||
"bağlantı amacıyla typedef adına sahip bir sınıfın üye işlevi olamaz",
|
||||
"bağlantı amacıyla typedef adına sahip bir sınıf, sabit listesi türü veya kapatma olmayan sınıf türü dışında iç içe türe sahip olamaz",
|
||||
"bağlantı amacıyla typedef adına sahip bir sınıf lambda ifadesi içeremez",
|
||||
"bağlantı amacıyla typedef adı olan bir sınıf, varsayılan üye başlatıcısı olan statik olmayan veri üyesine sahip olamaz",
|
||||
"isimsiz bir sınıfta statik veri üyesi bildirimi kullanılamaz",
|
||||
"başlatıcı sonucu bir dllimport değişkenini adresler",
|
||||
"'no_specializations' özniteliğine sahip şablon özelleştirilemez",
|
||||
"'static' burada standart dışıdır",
|
||||
"%nd daha önce açık bir sabit liste tabanı olmadan tanımlanmıştı",
|
||||
"eksik 'typename' burada standart dışı",
|
||||
"kısaltılmış işlev şablonu sözdizimi çıkarsama kılavuzları için standart değil"
|
||||
]
|
||||
|
||||
@@ -1134,7 +1134,7 @@
|
||||
"必须完全省略空的强制改写列表",
|
||||
"应指定 asm 操作数",
|
||||
"应指定要强制改写的寄存器",
|
||||
"“format”特性需要省略号参数",
|
||||
"\"format\" 属性需要省略号参数或参数包",
|
||||
"第一个替换参数不是第一个可变参数",
|
||||
"格式实参索引大于形参数目",
|
||||
"格式参数不是字符串类型",
|
||||
@@ -2711,7 +2711,7 @@
|
||||
"尝试取消引用指向成员的空指针(数据成员)",
|
||||
"比较指向 void 和指向函数的指针是非标准的",
|
||||
"元数据初始化失败",
|
||||
"从基类到派生类的转换无效(完整的类类型是 %t)",
|
||||
"从基类到派生类的转换无效(实际派生类类型是 %t)",
|
||||
"对完整类型 %t 的对象中的 %n 的访问无效",
|
||||
"此处禁止使用 \"__auto_type\"",
|
||||
"\"__auto_type\" 不允许多个声明符",
|
||||
@@ -3209,7 +3209,7 @@
|
||||
"常数表达式中不允许使用显式析构函数调用",
|
||||
"数组下标表达式中未带圆括号的逗号运算符已弃用",
|
||||
"对于初始化表达式,动态分配的元素数(%d)太小",
|
||||
"%s 表达式的可变操作数已弃用",
|
||||
null,
|
||||
"不建议使用易失标量对象的赋值结果",
|
||||
"复合赋值表达式的易失目标类型已弃用",
|
||||
"易失函数参数已弃用",
|
||||
@@ -3249,7 +3249,7 @@
|
||||
"concept-id 的参数 %T 替换失败",
|
||||
"参数 %T 的概念为 false",
|
||||
"此处不允许使用 requires 子句(不是模板化函数)",
|
||||
"概念模板",
|
||||
"概念",
|
||||
"requires 子句与 %nfd 不兼容",
|
||||
"预期特性",
|
||||
null,
|
||||
@@ -3439,12 +3439,12 @@
|
||||
"获取显式 'this' 函数的地址需要限定名称",
|
||||
"形成显式 'this' 函数的地址需要 '&' 运算符",
|
||||
"字符串文本无法用于初始化灵活数组成员",
|
||||
"函数 %sq 定义的 IFC 表示形式无效",
|
||||
null,
|
||||
"未将 UniLevel IFC 图表用于指定参数",
|
||||
"%u1 参数由 IFC 参数定义图表指定,而 %u2 参数由 IFC 声明指定",
|
||||
"%u1 参数由 IFC 参数定义图表指定,而 %u2 参数由 IFC 声明指定",
|
||||
"%u1 参数由 IFC 参数定义图表指定,而 %u2 参数由 IFC 声明指定",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
"缺少函数 %sq 定义的 IFC 表示形式",
|
||||
"函数修饰符不适用于成员模板声明",
|
||||
"成员选择涉及太多嵌套的匿名类型",
|
||||
@@ -3598,8 +3598,8 @@
|
||||
"\"static\" Lambda 表达式必须具有空的捕获规范",
|
||||
"EDG IFC 标头单元",
|
||||
"EDG IFC",
|
||||
"无法为当前翻译单元创建标头单元",
|
||||
"当前翻译单元使用当前无法写入标头单元的一个或多个功能",
|
||||
"无法为当前翻译单元生成 IFC 文件",
|
||||
"一个或多个实体当前无法写入 IFC 文件",
|
||||
"“explicit(bool)” 是 C++20 功能",
|
||||
"第一个参数必须是指向整数、enum 或支持的浮点类型的指针",
|
||||
"编译多个翻译单元时无法使用 C++ 模块",
|
||||
@@ -3671,5 +3671,81 @@
|
||||
"EDG IFC 模块分区单元",
|
||||
"除非创建模块接口文件,否则无法从此翻译单元导出模块声明",
|
||||
"模块声明必须从此翻译单元导出,以创建模块接口文件",
|
||||
"已请求生成模块文件,但在翻译单元中未声明任何模块"
|
||||
"已请求生成模块文件,但在翻译单元中未声明任何模块",
|
||||
"将 %T 替换为 %n 时违反了约束条件",
|
||||
"%T 未满足%n。",
|
||||
"#embed 扩展过长,无法初始化类型为 %t 的实体",
|
||||
"此处不允许使用 \"defined\" 运算符",
|
||||
"%n 不是 %t 的成员",
|
||||
"#embed 数据中向有符号字符的收缩转换",
|
||||
"\"vector of bool\" 类型不允许使用该运算符",
|
||||
"对象过大,无法进行常量求值",
|
||||
"自引用的临时对象",
|
||||
"lambda 不能在此上下文中引用局部变量或初始化捕获",
|
||||
"lambda 参数不能隐藏显式捕获",
|
||||
"lambda 模板参数不能隐藏显式捕获",
|
||||
"地址空间不足,无法处理此翻译单元",
|
||||
"<未确定的类型>",
|
||||
"<未确定的常量>",
|
||||
"<未确定的模板>",
|
||||
"%s 的配置大小对于指定的尾数 + 指数数位来说过小",
|
||||
"表达式",
|
||||
"<表达式>",
|
||||
"未命名",
|
||||
"<未命名>",
|
||||
"<错误类型>",
|
||||
"<未知类型>",
|
||||
"<其他>",
|
||||
"<null 类型>",
|
||||
"<未初始化>",
|
||||
"<零初始化>",
|
||||
"按位复制:",
|
||||
"<按位复制>",
|
||||
"通过构造函数得到的类结果:",
|
||||
"<构造函数调用>",
|
||||
"<NULL 表达式>",
|
||||
"<错误>",
|
||||
"<NULL 例程>",
|
||||
"<默认>",
|
||||
"参数 #",
|
||||
" (向上一级)",
|
||||
" 提升级别",
|
||||
"动态初始化:",
|
||||
"<错误常量>",
|
||||
"堆栈偏移量:",
|
||||
"隐式元素 ",
|
||||
" 重复次数 ",
|
||||
"整数",
|
||||
"枚举",
|
||||
"范围内的枚举",
|
||||
"算术",
|
||||
"非布尔算术",
|
||||
"指针",
|
||||
"nullptr 类型",
|
||||
"句柄",
|
||||
"CLI 数组的句柄",
|
||||
"指向对象的指针",
|
||||
"指向函数的指针",
|
||||
"指向成员的指针",
|
||||
"布尔型",
|
||||
"布尔等效",
|
||||
"类",
|
||||
"增量表达式的可变操作数已弃用",
|
||||
"减量表达式的可变操作数已弃用",
|
||||
"之前声明 %n 时未使用 \"indeterminate\" 属性",
|
||||
"%t 的默认构造函数不是显式的",
|
||||
"未能在 %m 中加载 %n 的定义",
|
||||
"无法在 %m 中加载 %n 的初始值设定项",
|
||||
"为链接目的使用 typedef 名称的类不能具有基类",
|
||||
"为链接目的使用 typedef 名称的类不能具有成员函数",
|
||||
"为链接目的使用 typedef 名称的类不能具有嵌套类型,除非是枚举类型或非闭包类类型",
|
||||
"为链接目的使用 typedef 名称的类不能包含 lambda 表达式",
|
||||
"为链接目的使用 typedef 名称的类不能具有带默认成员初始值设定项的非静态数据成员",
|
||||
"未命名类中不允许静态数据成员声明",
|
||||
"初始值设定项结果指向一个 dllimport 变量",
|
||||
"带有 \"no_specializations\" 属性的模板不能被专用化",
|
||||
"此处使用 \"static\" 不符合标准",
|
||||
"之前声明 %nd 时未指定显式枚举基类型",
|
||||
"此处缺少 'typename' 属于非标准用法",
|
||||
"缩写函数模板语法对于推导指南是不标准的"
|
||||
]
|
||||
|
||||
@@ -1134,7 +1134,7 @@
|
||||
"必須完全省略空的記憶體區域清單",
|
||||
"必須是 asm 運算元",
|
||||
"必須是要記憶體區域的暫存器",
|
||||
"'format' 屬性需要有省略符號參數",
|
||||
"'format' 屬性需要有省略符號參數或參數套件",
|
||||
"第一個替換引數不是第一個變數引數",
|
||||
"格式引數索引大於參數的數目",
|
||||
"格式引數沒有字串類型",
|
||||
@@ -2711,7 +2711,7 @@
|
||||
"嘗試為 null 成員指標 (資料成員) 取值",
|
||||
"正在比較要作廢的指標與指向非標準函式的指標",
|
||||
"中繼資料初始化失敗",
|
||||
"從基底到衍生的轉換無效 (完整類別類型是 %t)",
|
||||
"從基底到衍生的轉換無效 (實際衍生類別類型是 %t)",
|
||||
"對完整類型 %t 物件中 %n 的存取無效",
|
||||
"此處不允許 '__auto_type'",
|
||||
"'__auto_type' 不允許多個宣告子",
|
||||
@@ -3209,7 +3209,7 @@
|
||||
"常數運算式中不允許使用明確的解構函式呼叫",
|
||||
"陣列下標運算式中未在小括號內的逗號運算子已淘汰",
|
||||
"動態配置的元素數目 (%d) 對初始設定式而言太小",
|
||||
"%s 運算式的揮發性運算元已淘汰",
|
||||
null,
|
||||
"使用揮發性純量物件指派結果的用法已淘汰",
|
||||
"複合指派運算式的揮發性目的地類型已淘汰",
|
||||
"揮發性函式參數已淘汰",
|
||||
@@ -3249,7 +3249,7 @@
|
||||
"概念識別碼的引數 %T 替代失敗",
|
||||
"引數 %T 的概念為 False",
|
||||
"此處不允許使用 requires 子句 (非樣板化函式)",
|
||||
"概念範本",
|
||||
"概念",
|
||||
"requires 子句與 %nfd 不相容",
|
||||
"必須是屬性",
|
||||
null,
|
||||
@@ -3439,12 +3439,12 @@
|
||||
"取得明確 'this' 函數的位址需要限定名稱",
|
||||
"形成明確 'this' 函數的位址需要 '&' 運算子",
|
||||
"字串常值不能用來初始化彈性陣列成員",
|
||||
"函式 %sq 定義的 IFC 表示法無效",
|
||||
null,
|
||||
"UniLevel IFC 圖表未用來指定參數",
|
||||
"IFC 參數定義圖表指定了 %u1 個參數,而 IFC 宣告則指定了 %u2 個參數",
|
||||
"IFC 參數定義圖表指定了 %u1 個參數,而 IFC 宣告則指定了 %u2 個參數",
|
||||
"IFC 參數定義圖表指定了 %u1 個參數,而 IFC 宣告則指定了 %u2 個參數",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
"遺漏函式 %sq 定義的 IFC 標記法",
|
||||
"函數修飾詞不適用於成員範本宣告",
|
||||
"成員選取涉及太多巢狀匿名型別",
|
||||
@@ -3598,8 +3598,8 @@
|
||||
"'static' Lambda 運算式必須有空白的擷取規格",
|
||||
"EDG IFC 標頭單位",
|
||||
"EDG IFC",
|
||||
"無法為目前的編譯單位建立標頭單位",
|
||||
"目前的編譯單位使用一或多個目前無法寫入標頭單位的功能",
|
||||
"無法為目前的翻譯單元產生 IFC 檔案",
|
||||
"目前無法將一個或多個實體寫入 IFC 檔案",
|
||||
"'explicit(bool)' 是 C++20 功能",
|
||||
"第一個引數必須是整數的指標、enum 或支援的浮點類型",
|
||||
"編譯多個翻譯單元時,無法使用 C++ 模組",
|
||||
@@ -3671,5 +3671,81 @@
|
||||
"EDG IFC 模組分割單元",
|
||||
"除非建立模組介面檔案,否則無法從此翻譯單元匯出模組宣告",
|
||||
"必須從此翻譯單元匯出模組宣告,以建立模組介面檔案",
|
||||
"已要求模組檔案產生,但未在翻譯單元中宣告任何模組"
|
||||
"已要求模組檔案產生,但未在翻譯單元中宣告任何模組",
|
||||
"以 %T 替換 %n 導致限制式失敗",
|
||||
"%n 未滿足 %T 的條件",
|
||||
"#embed 擴充太長,無法初始化類型 %t 的實體",
|
||||
"此處不允許使用 'defined' 運算子",
|
||||
"%n 不是 %t 的成員",
|
||||
"將 #embed 資料中的縮小轉換為 signed character",
|
||||
"'vector of boo' 類型不允許運算子",
|
||||
"物件過大,無法進行常數評估",
|
||||
"自我參照的暫存物件",
|
||||
"在此內容中,Lambda 無法引用區域變數或初始化擷取",
|
||||
"Lambda 參數無法隱藏明確擷取",
|
||||
"Lambda 範本參數無法隱藏明確擷取",
|
||||
"處理此編譯單位時,可用位址空間不足",
|
||||
"<undetermined type>",
|
||||
"<undetermined constant>",
|
||||
"<undetermined template>",
|
||||
"%s 的設定大小對於指定的尾數位數 + 指數位數而言過小",
|
||||
"運算式",
|
||||
"<expression>",
|
||||
"未命名的",
|
||||
"<unnamed>",
|
||||
"<error-type>",
|
||||
"<unknown-type>",
|
||||
"<something>",
|
||||
"<null-type>",
|
||||
"<no-init>",
|
||||
"<zero-init>",
|
||||
"位元複製:",
|
||||
"<bitwise-copy>",
|
||||
"透過建構函式的類別結果:",
|
||||
"<constructor-call>",
|
||||
"<NULL expression>",
|
||||
"<error>",
|
||||
"<NULL routine>",
|
||||
"<default>",
|
||||
"參數 #",
|
||||
" (上移一層)",
|
||||
" 上移",
|
||||
"dynamic-init:",
|
||||
"<error-constant>",
|
||||
"stack-offset-of:",
|
||||
"<implicit element> ",
|
||||
" 重複的 ",
|
||||
"整數",
|
||||
"列舉",
|
||||
"範圍列舉",
|
||||
"算術",
|
||||
"非布林算術",
|
||||
"指標",
|
||||
"nullptr 類型",
|
||||
"控點",
|
||||
"handle-to-CLI-array",
|
||||
"pointer-to-object",
|
||||
"pointer-to-function",
|
||||
"pointer-to-member",
|
||||
"bool",
|
||||
"bool-equivalent",
|
||||
"類別",
|
||||
"遞增運算式的 volatile 運算元已淘汰",
|
||||
"遞減運算式的 volatile 運算元已淘汰",
|
||||
"%n 先前宣告時未帶有 'indeterminate' 屬性",
|
||||
"%t 的預設建構函式為明確的",
|
||||
"無法載入 %m 中 %n 的定義",
|
||||
"無法載入 %m 中 %n 的初始設定式",
|
||||
"具有 typedef 名稱以供連結用途的類別不能有基底類別",
|
||||
"具有 typedef 名稱以供連結用途的類別不能有成員函式",
|
||||
"為連結目的而使用 typedef 名稱的類別,除列舉類型或非閉鎖類別類型外,不得包含巢狀類型",
|
||||
"為連結目的而使用 typedef 名稱的類別無法包含 Lambda 表達式",
|
||||
"為連結目的而使用 typedef 名稱的類別,其非靜態資料成員不得具有預設成員初始設定式",
|
||||
"靜態資料成員宣告不得出現在未命名的類別中",
|
||||
"初始設定式結果會處理 dllimport 變數",
|
||||
"具有 'no_specializations' 屬性的範本無法特殊化",
|
||||
"此處使用的 'static' 非標準",
|
||||
"%nd 先前宣告時未明確指定的列舉基底",
|
||||
"此處缺少 'typename' 非標準用法",
|
||||
"簡化函式範本語法在推導指南中並非標準用法"
|
||||
]
|
||||
|
||||
@@ -4,9 +4,9 @@
|
||||
"--microsoft",
|
||||
"--microsoft_bugs",
|
||||
"--microsoft_version",
|
||||
"1943",
|
||||
"-D_MSC_VER=1943",
|
||||
"-D_MSC_FULL_VER=194334604",
|
||||
"1950",
|
||||
"-D_MSC_VER=1950",
|
||||
"-D_MSC_FULL_VER=195035717",
|
||||
"-D_MSC_BUILD=0",
|
||||
"-D_M_ARM=7"
|
||||
],
|
||||
|
||||
@@ -4,10 +4,10 @@
|
||||
"--microsoft",
|
||||
"--microsoft_bugs",
|
||||
"--microsoft_version",
|
||||
"1943",
|
||||
"1950",
|
||||
"-D_CPPUNWIND=1",
|
||||
"-D_MSC_VER=1943",
|
||||
"-D_MSC_FULL_VER=194334604",
|
||||
"-D_MSC_VER=1950",
|
||||
"-D_MSC_FULL_VER=195035717",
|
||||
"-D_MSC_BUILD=0",
|
||||
"-D_M_ARM64=1"
|
||||
],
|
||||
|
||||
@@ -4,10 +4,10 @@
|
||||
"--microsoft",
|
||||
"--microsoft_bugs",
|
||||
"--microsoft_version",
|
||||
"1943",
|
||||
"1950",
|
||||
"-D_CPPUNWIND=1",
|
||||
"-D_MSC_VER=1943",
|
||||
"-D_MSC_FULL_VER=194334604",
|
||||
"-D_MSC_VER=1950",
|
||||
"-D_MSC_FULL_VER=195035717",
|
||||
"-D_MSC_BUILD=0",
|
||||
"-D_M_X64=100",
|
||||
"-D_M_AMD64=100"
|
||||
|
||||
@@ -4,9 +4,9 @@
|
||||
"--microsoft",
|
||||
"--microsoft_bugs",
|
||||
"--microsoft_version",
|
||||
"1943",
|
||||
"-D_MSC_VER=1943",
|
||||
"-D_MSC_FULL_VER=194334604",
|
||||
"1950",
|
||||
"-D_MSC_VER=1950",
|
||||
"-D_MSC_FULL_VER=195035717",
|
||||
"-D_MSC_BUILD=0",
|
||||
"-D_M_IX86=600",
|
||||
"-D_M_IX86_FP=2"
|
||||
|
||||
@@ -42,6 +42,8 @@
|
||||
"c_cpp.command.RemoveAllCodeAnalysisProblems.title": "清除所有代码分析问题",
|
||||
"c_cpp.command.BuildAndDebugFile.title": "调试 C/C++ 文件",
|
||||
"c_cpp.command.BuildAndRunFile.title": "运行 C/C++ 文件",
|
||||
"c_cpp.command.SetVsDeveloperEnvironment.title": "设置 Visual Studio 开发人员环境",
|
||||
"c_cpp.command.ClearVsDeveloperEnvironment.title": "清除 Visual Studio 开发人员环境",
|
||||
"c_cpp.command.AddDebugConfiguration.title": "添加调试配置",
|
||||
"c_cpp.command.GenerateDoxygenComment.title": "生成 Doxygen 注释",
|
||||
"c_cpp.command.addSshTarget.title": "添加 SSH 目标",
|
||||
@@ -269,6 +271,7 @@
|
||||
"c_cpp.contributes.views.sshTargetsView.title": "Cpptools: SSH 目标",
|
||||
"c_cpp.contributes.viewsWelcome.contents": "要了解有关 launch.json 的信息,请参阅 [配置 C/C++ 调试](https://code.visualstudio.com/docs/cpp/launch-json-reference)。",
|
||||
"c_cpp.configuration.debugShortcut.description": "显示 C++ 文件编辑器标题栏中的“运行和调试”播放按钮和“添加调试配置”齿轮。",
|
||||
"c_cpp.configuration.persistVsDeveloperEnvironment.description": "记住当前工作区上次使用的 Visual Studio 开发人员环境。此设置仅适用于 Windows。",
|
||||
"c_cpp.debuggers.pipeTransport.description": "如果存在,这会指示调试程序使用其他可执行文件作为管道来连接到远程计算机,此管道将在 VS Code 和已启用 MI 的调试程序后端可执行文件(如 gdb)之间中继标准输入/输入。",
|
||||
"c_cpp.debuggers.pipeTransport.default.pipeProgram": "输入管道程序名称的完全限定的路径,例如 '/usr/bin/ssh'。",
|
||||
"c_cpp.debuggers.pipeTransport.default.debuggerPath": "目标计算机上调试程序的完整路径,例如 /usr/bin/gdb。",
|
||||
@@ -428,8 +431,8 @@
|
||||
"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": "从 Developer Command Prompt for VS 启动",
|
||||
"c_cpp.walkthrough.command.prompt.description": "使用 Microsoft Visual Studio C++ 编译器时,C++ 扩展需要你从 Developer Command Prompt for VS 启动 VS Code。请按照右侧的说明重新启动。\n[重新加载窗口](command:workbench.action.reloadWindow)",
|
||||
"c_cpp.walkthrough.command.prompt.title": "应用 Visual Studio 开发人员环境",
|
||||
"c_cpp.walkthrough.command.prompt.description": "使用 Microsoft Visual Studio C++ 编译器时,必须存在 Visual Studio 开发人员环境。\n\n请按照右侧说明重新启动,或单击下面的按钮。\n[设置开发人员环境](command:C_Cpp.SetVsDeveloperEnvironment?%22walkthrough%22)",
|
||||
"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++ - 构建和调试活动文件”以使用调试器运行。",
|
||||
|
||||
@@ -17,7 +17,12 @@
|
||||
"pre.Launch.Task": "preLaunchTask: {0}",
|
||||
"debugger.path.not.exists": "找不到 {0} 调试器。将忽略 {1} 的调试配置。",
|
||||
"build.and.debug.active.file": "构建和调试活动文件",
|
||||
"cl.exe.not.available": "{0} 仅在 VS Code 从 {1} 中运行时才可用。",
|
||||
"apply.dev.env": "应用开发人员环境",
|
||||
"cl.exe.not.available": "{0} 需要 Visual Studio 开发人员环境。",
|
||||
"update.dev.env": "更新开发人员环境",
|
||||
"cancel": "取消",
|
||||
"dev.env.not.applied": "由于未应用 Visual Studio 开发人员环境,无法生成源代码。",
|
||||
"dev.env.not.found": "由于找不到 Visual C++ 编译器,无法生成源代码。",
|
||||
"lldb.find.failed": "缺少 lldb-mi 可执行文件的依赖项“{0}”。",
|
||||
"lldb.search.paths": "搜索范围:",
|
||||
"lldb.install.help": "要解决此问题,请通过 Apple App Store 安装 XCode,或通过在终端窗口运行“{0}”来安装 XCode 命令行工具。",
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* 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.
|
||||
{
|
||||
"no.context.provided": "未提供上下文",
|
||||
"not.windows": "“设置 Visual Studio 开发人员环境”命令仅在 Windows 上可用",
|
||||
"error.no.vs": "找不到带有 C++ 编译器的 Visual Studio 安装项",
|
||||
"operation.cancelled": "已取消此操作",
|
||||
"no.hosts": "找不到主机",
|
||||
"config.dev.env": "正在配置开发人员环境...",
|
||||
"select.vs.install": "选择 Visual Studio 安装",
|
||||
"advanced.options": "高级选项...",
|
||||
"advanced.options.desc": "选择特定的主机和目标体系结构构、工具集版本等",
|
||||
"select.toolset": "选择工具集版本",
|
||||
"select.host.target": "选择主机和目标体系结构",
|
||||
"something.wrong": "出现问题: {0}",
|
||||
"dev.env.for": "{1} 的 {0} 开发人员环境",
|
||||
"default.env": "{0} 的默认环境",
|
||||
"host.target": "主机 = {0},目标 = {1}"
|
||||
}
|
||||
@@ -46,7 +46,7 @@
|
||||
"aborting_tag_parse_at_root": "正在终止根位置的标记分析",
|
||||
"unable_to_retrieve_to_reset_timestamps": "无法检索数据库记录以重置时间戳: 错误 = {0}",
|
||||
"failed_to_reset_timestamps_for": "未能为 {0} 重置时间戳: 错误 = {1}",
|
||||
"no_suitable_complier": "未找到合适的编译器。请在 c_cpp_properties.json 中设置 \"compilerPath\"。",
|
||||
"no_suitable_compiler": "未找到合适的编译器。请在 c_cpp_properties.json 中设置 \"compilerPath\"。",
|
||||
"compiler_include_not_found": "未找到编译器包含路径: {0}",
|
||||
"intellisense_not_responding": "IntelliSense 引擎未响应。改为使用标记分析器。",
|
||||
"tag_parser_will_be_used": "标记分析器将用于以下项中的 IntelliSense 操作: {0}",
|
||||
|
||||
+10
-4
@@ -4,8 +4,14 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"walkthrough.windows.title.open.dev.command.prompt": "使用 {0} 重新启动",
|
||||
"walkthrough.windows.background.dev.command.prompt": " 你使用的是具有 MSVC 编译器的 Windows 计算机,因此需要从 {0} 启动 VS Code,以正确设置所有环境变量。要使用 {1} 重新启动,请:",
|
||||
"walkthrough.open.command.prompt": "通过在 Windows“开始”菜单中键入“{1}”打开 {0}。选择 {2} 将自动导航到当前打开的文件夹。",
|
||||
"walkthrough.windows.press.f5": "在命令提示符中键入“{0}”,然后按 Enter。此操作应会重新启动 VS Code 并将你带回此演练。"
|
||||
"walkthrough.windows.title.apply.dev.env": "应用 Visual Studio 开发人员环境",
|
||||
"walkthrough.windows.dev.env.required": "Visual Studio C++ 编译器需要设置多个环境变量才能成功编译代码。如果正在 Windows 计算机上使用 Visual Studio C++ 编译器,有两种方法可确保应用了相应环境。",
|
||||
"walkthrough.windows.do.one": " 只需要执行以下操作之一:",
|
||||
"walkthrough.windows.run.dev.command": "运行 {0} 命令",
|
||||
"walkthrough.windows.set.dev.environment": "C/C++: 设置 Visual Studio 开发人员环境",
|
||||
"walkthrough.windows.start.from.dev.command": "从 {0} 启动 VS Code",
|
||||
"walkthrough.windows.relaunch.command.prompt": "使用 {0} 重新启动 VS Code",
|
||||
"walkthrough.close.vscode": "关闭 VS Code 的当前实例。",
|
||||
"walkthrough.open.command.prompt": "通过在 Windows“开始”菜单中键入 {1} 来打开 {0},然后选择 {2}。",
|
||||
"walkthrough.windows.press.f5": "在命令提示符中键入 {0},然后按 Enter。这应会重新启动同一工作区中的 VS Code,并将你带回此演练。"
|
||||
}
|
||||
+2
-4
@@ -16,8 +16,6 @@
|
||||
"walkthrough.windows.link.install": "安装",
|
||||
"walkthrough.windows.note1": "注意",
|
||||
"walkthrough.windows.note1.text": "可以使用 Visual Studio 生成工具中的 C++ 工具集以及 Visual Studio Code 以编译、生成并验证任何 C++ 代码库,前提是同时具有有效的 Visual Studio 许可证(社区版、专业版或企业版),且正积极将其用于开发该 C++ 代码库。",
|
||||
"walkthrough.windows.open.command.prompt": "通过在 Windows “开始”菜单中键入“{1}”打开 {0}。",
|
||||
"walkthrough.windows.check.install": "通过在 {1} 中键入 {0} 来检查 MSVC 安装。你应该会看到包含版本和基本使用说明的版权消息。",
|
||||
"walkthrough.windows.note2": "注意",
|
||||
"walkthrough.windows.note2.text": "要从命令行或 VS Code 使用 MSVC,必须从 {0} 运行。普通 shell (例如 {1}、{2} 或 Windows 命令提示符)未设置必要的路径环境变量。"
|
||||
"walkthrough.windows.open.command.prompt": "通过在 Windows“开始”菜单中键入 {1} 来打开 {0}。",
|
||||
"walkthrough.windows.check.install": "通过在 {1} 中键入 {0} 来检查 MSVC 安装。你应该会看到包含版本和基本使用说明的版权消息。"
|
||||
}
|
||||
+1
-3
@@ -10,10 +10,8 @@
|
||||
"walkthrough.windows.note1": "注意",
|
||||
"walkthrough.windows.note1.text": "可以使用 Visual Studio 生成工具中的 C++ 工具集以及 Visual Studio Code 以编译、生成并验证任何 C++ 代码库,前提是同时具有有效的 Visual Studio 许可证(社区版、专业版或企业版),且正积极将其用于开发该 C++ 代码库。",
|
||||
"walkthrough.windows.verify.compiler": "验证编译器安装",
|
||||
"walkthrough.windows.open.command.prompt": "通过在 Windows “开始”菜单中键入“{1}”打开 {0}。",
|
||||
"walkthrough.windows.open.command.prompt": "通过在 Windows“开始”菜单中键入 {1} 来打开 {0}。",
|
||||
"walkthrough.windows.check.install": "通过在 {1} 中键入 {0} 来检查 MSVC 安装。你应该会看到包含版本和基本使用说明的版权消息。",
|
||||
"walkthrough.windows.note2": "注意",
|
||||
"walkthrough.windows.note2.text": "要从命令行或 VS Code 使用 MSVC,必须从 {0} 运行。普通 shell (例如 {1}、{2} 或 Windows 命令提示符)未设置必要的路径环境变量。",
|
||||
"walkthrough.windows.other.compilers": "其他编译器选项",
|
||||
"walkthrough.windows.text3": "如果面向的是 Windows 中的 Linux,请查看 {0}。或者,可 {1}。",
|
||||
"walkthrough.windows.link.title1": "在 VS Code 中使用 C++ 和 适用于 Linux 的 Windows 子系统(WSL)",
|
||||
|
||||
+1
-3
@@ -10,10 +10,8 @@
|
||||
"walkthrough.windows.note1": "注意",
|
||||
"walkthrough.windows.note1.text": "可以使用 Visual Studio 生成工具中的 C++ 工具集以及 Visual Studio Code 以编译、生成并验证任何 C++ 代码库,前提是同时具有有效的 Visual Studio 许可证(社区版、专业版或企业版),且正积极将其用于开发该 C++ 代码库。",
|
||||
"walkthrough.windows.verify.compiler": "验证编译器安装",
|
||||
"walkthrough.windows.open.command.prompt": "通过在 Windows “开始”菜单中键入“{1}”打开 {0}。",
|
||||
"walkthrough.windows.open.command.prompt": "通过在 Windows“开始”菜单中键入 {1} 来打开 {0}。",
|
||||
"walkthrough.windows.check.install": "通过在 {1} 中键入 {0} 来检查 MSVC 安装。你应该会看到包含版本和基本使用说明的版权消息。",
|
||||
"walkthrough.windows.note2": "注意",
|
||||
"walkthrough.windows.note2.text": "要从命令行或 VS Code 使用 MSVC,必须从 {0} 运行。普通 shell (例如 {1}、{2} 或 Windows 命令提示符)未设置必要的路径环境变量。",
|
||||
"walkthrough.windows.other.compilers": "其他编译器选项",
|
||||
"walkthrough.windows.text3": "如果面向的是 Windows 中的 Linux,请查看 {0}。或者,可 {1}。",
|
||||
"walkthrough.windows.link.title1": "在 VS Code 中使用 C++ 和 适用于 Linux 的 Windows 子系统(WSL)",
|
||||
|
||||
@@ -42,6 +42,8 @@
|
||||
"c_cpp.command.RemoveAllCodeAnalysisProblems.title": "清除所有程式碼分析問題",
|
||||
"c_cpp.command.BuildAndDebugFile.title": "偵錯 C/C++ 檔案",
|
||||
"c_cpp.command.BuildAndRunFile.title": "執行 C/C++ 檔案",
|
||||
"c_cpp.command.SetVsDeveloperEnvironment.title": "設定 Visual Studio 開發人員環境",
|
||||
"c_cpp.command.ClearVsDeveloperEnvironment.title": "清除 Visual Studio 開發人員環境",
|
||||
"c_cpp.command.AddDebugConfiguration.title": "新增偵錯組態",
|
||||
"c_cpp.command.GenerateDoxygenComment.title": "產生 Doxygen 註解",
|
||||
"c_cpp.command.addSshTarget.title": "新增 SSH 目標",
|
||||
@@ -108,7 +110,7 @@
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.leftmostColumn.markdownDescription": "將 goto 標籤固定在程式碼的最左側。",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.none.markdownDescription": "將不會格式化 goto 標籤。",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.description": "前置處理器指示詞的位置。",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.oneLeft.markdownDescription": "前置處理器指令會以 `#editor.tabSize#` 設定中指定的數量,定位於目前程式碼縮排的左邊。",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.oneLeft.markdownDescription": "前置處理器指示詞會以 `#editor.tabSize#` 設定中指定的數量,定位於目前程式碼縮排的左側。",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.leftmostColumn.markdownDescription": "前置處理器指示詞位於程式碼的最左側。",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.none.markdownDescription": "將不會格式化前置處理器指示詞。",
|
||||
"c_cpp.configuration.vcFormat.indent.accessSpecifiers.markdownDescription": "存取指定名稱會依據 `#editor.tabSize#` 設定中指定的數量,按照類別或結構定義的相對位置縮排。",
|
||||
@@ -191,12 +193,12 @@
|
||||
"c_cpp.configuration.inactiveRegionOpacity.markdownDescription": "控制非作用中前置處理器區塊的不透明度。在 `0.1` 與 `1.0` 之間縮放。只有在啟用非作用中區域變暗時,才會套用此設定。",
|
||||
"c_cpp.configuration.inactiveRegionForegroundColor.description": "控制非作用中前置處理器區塊的前景色彩。輸入的格式為十六進位色彩代碼或有效的佈景主題色彩。若未設定,會預設為編輯器的語法著色配置。只有在啟用非作用中區域變暗時,才會套用此設定。",
|
||||
"c_cpp.configuration.inactiveRegionBackgroundColor.description": "控制非作用中前置處理器區塊的背景色彩。輸入的格式為十六進位色彩代碼或有效的佈景主題色彩。若未設定,會預設為透明。只有在啟用非作用中區域變暗時,才會套用此設定。",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.enabled.markdownDescription": "宣告中使用 `auto` 時,顯示推算類型的內嵌提示:\n```cpp \n\n auto index /* : int */ = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.showOnLeft.markdownDescription": "在識別碼左側的宣告中使用 `auto` 時,顯示推算類型的內嵌提示:\n```cpp \n\n auto /* int */ index = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.enabled.markdownDescription": "顯示參數名稱的內嵌提示:\n```cpp \n\n int a = getArea(/* width: */ x, /* height: */ y);\n```",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.enabled.markdownDescription": "宣告中使用 `auto` 時,顯示推算類型的嵌入式提示:\n```cpp \n\n auto index /* : int */ = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.showOnLeft.markdownDescription": "在識別碼左側的宣告中使用 `auto` 時,顯示推算類型的嵌入式提示:\n```cpp \n\n auto /* int */ index = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.enabled.markdownDescription": "顯示參數名稱的嵌入式提示:\n```cpp \n\n int a = getArea(/* width: */ x, /* height: */ y);\n```",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.hideLeadingUnderscores.markdownDescription": "隱藏參數名稱提示中的前置 `_`。",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.suppressWhenArgumentContainsName.markdownDescription": "當引數文字或內嵌註解包含參數名稱時,隱藏參數名稱提示:\n```cpp \n\n int a = getArea(width, /* height: */ y);\n```",
|
||||
"c_cpp.configuration.inlayHints.referenceOperator.enabled.markdownDescription": "顯示非 const 參照所傳遞之參數的內嵌提示參照運算子 `&`:\n```cpp \n\n swap(/* &first: */ str1, /* &last: */ str2);\n```",
|
||||
"c_cpp.configuration.inlayHints.referenceOperator.enabled.markdownDescription": "顯示非 const 參照所傳遞之參數的嵌入式提示參照運算子 `&`:\n```cpp \n\n swap(/* &first: */ str1, /* &last: */ str2);\n```",
|
||||
"c_cpp.configuration.inlayHints.referenceOperator.showSpace.markdownDescription": "控制是否針對非 const 參照所傳遞的參數在 `&` 之後顯示空格:\n```cpp \n\n swap(/* & first: */ str1, /* & last: */ str2);\n```",
|
||||
"c_cpp.configuration.loggingLevel.markdownDescription": "輸出面板中記錄的詳細程度。從最不詳細到最詳細的層級順序為: `None` < `Error` < `Warning` < `Information` < `Debug`。",
|
||||
"c_cpp.configuration.autoAddFileAssociations.markdownDescription": "控制是否會在檔案為 C/C++ 檔案的瀏覽作業目標時,自動將檔案新增至 `#files.associations#`。",
|
||||
@@ -269,6 +271,7 @@
|
||||
"c_cpp.contributes.views.sshTargetsView.title": "Cpptools: SSH 目標",
|
||||
"c_cpp.contributes.viewsWelcome.contents": "如需深入了解 launch.json,請參閱 [設定 C/C++ 偵錯](https://code.visualstudio.com/docs/cpp/launch-json-reference)。",
|
||||
"c_cpp.configuration.debugShortcut.description": "在 C++ 檔案的編輯器標題列中顯示 [執行及偵錯] 播放按鈕和 [新增偵錯組態] 齒輪。",
|
||||
"c_cpp.configuration.persistVsDeveloperEnvironment.description": "記住目前工作區上次使用的 Visual Studio 開發人員環境。此設定僅適用於 Windows。",
|
||||
"c_cpp.debuggers.pipeTransport.description": "出現時,會指示偵錯工具使用另一個可執行檔來連線至遠端電腦,該管道會在 VS Code 與 MI 啟用偵錯工具後端可執行檔之間傳送標準輸入/輸出 (例如 gdb)。",
|
||||
"c_cpp.debuggers.pipeTransport.default.pipeProgram": "輸入管道程式名稱的完整路徑,例如 '/usr/bin/ssh'。",
|
||||
"c_cpp.debuggers.pipeTransport.default.debuggerPath": "目標機器的偵錯工具完整路徑,例如 /use/bin/gdb。",
|
||||
@@ -428,8 +431,8 @@
|
||||
"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": "從 Developer Command Prompt for VS 中啟動",
|
||||
"c_cpp.walkthrough.command.prompt.description": "使用 Microsoft Visual Studio C++ 編譯器時,C++ 延伸模組會要求您在 Developer Command Prompt for VS 中啟動 VS Code。請遵循右側的指示來重新啟動。\n[重新載入視窗](command:workbench.action.reloadWindow)",
|
||||
"c_cpp.walkthrough.command.prompt.title": "套用 Visual Studio 開發人員環境",
|
||||
"c_cpp.walkthrough.command.prompt.description": "使用 Microsoft Visual Studio C++ 編譯器時,必須存在 Visual Studio 開發人員環境。\n\n請遵循右側的指示重新啟動,或按一下下方的按鈕。\n[設定開發人員環境](command:C_Cpp.SetVsDeveloperEnvironment?%22walkthrough%22)",
|
||||
"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++ - 建置及偵錯使用中的檔案] 以使用偵錯工具執行。",
|
||||
|
||||
@@ -17,7 +17,12 @@
|
||||
"pre.Launch.Task": "preLaunchTask: {0}",
|
||||
"debugger.path.not.exists": "找不到 {0} 偵錯工具。已略過 {1} 的偵錯組態。",
|
||||
"build.and.debug.active.file": "建置及偵錯使用中的檔案",
|
||||
"cl.exe.not.available": "{0} 僅限於從 {1} 執行 VS Code 時使用。",
|
||||
"apply.dev.env": "套用開發人員環境",
|
||||
"cl.exe.not.available": "{0} 需要 Visual Studio 開發人員環境。",
|
||||
"update.dev.env": "更新開發人員環境",
|
||||
"cancel": "取消",
|
||||
"dev.env.not.applied": "由於未套用 Visual Studio 開發人員環境,原始程式碼無法建置。",
|
||||
"dev.env.not.found": "由於找不到 Visual C++ 編譯器,原始程式碼無法建置。",
|
||||
"lldb.find.failed": "缺少 lldb-mi 可執行檔的相依性 '{0}'。",
|
||||
"lldb.search.paths": "已在下列位置中搜尋:",
|
||||
"lldb.install.help": "若要解決此問題,請透過 Apple App Store 安裝 XCode,或在終端機視窗中執行 '{0}' 以安裝 XCode 命令列工具。",
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* 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.
|
||||
{
|
||||
"no.context.provided": "未提供內容",
|
||||
"not.windows": "“設定 Visual Studio 開發人員環境”命令僅可在 Windows 使用",
|
||||
"error.no.vs": "找不到包含 C++ 編譯器的 Visual Studio 安裝",
|
||||
"operation.cancelled": "作業已取消",
|
||||
"no.hosts": "找不到主機",
|
||||
"config.dev.env": "正在設定開發人員環境...",
|
||||
"select.vs.install": "選取 Visual Studio 安裝",
|
||||
"advanced.options": "進階選項...",
|
||||
"advanced.options.desc": "選取特定主機和目標結構、工具集版本等。",
|
||||
"select.toolset": "選取工具集版本",
|
||||
"select.host.target": "選取主機和目標結構",
|
||||
"something.wrong": "發生錯誤: {0}",
|
||||
"dev.env.for": "{1} 的 {0} 開發人員環境",
|
||||
"default.env": "{0} 的預設環境",
|
||||
"host.target": "host = {0}, target = {1}"
|
||||
}
|
||||
@@ -46,7 +46,7 @@
|
||||
"aborting_tag_parse_at_root": "正在中止根目錄處的標籤剖析",
|
||||
"unable_to_retrieve_to_reset_timestamps": "無法取得 DB 記錄以重設時間戳記: 錯誤 = {0}",
|
||||
"failed_to_reset_timestamps_for": "無法重設 {0} 的時間戳記: 錯誤 = {1}",
|
||||
"no_suitable_complier": "找不到任何適合的編譯器。請設定 c_cpp_properties.json 中的 \"compilerPath\"。",
|
||||
"no_suitable_compiler": "找不到任何適合的編譯器。請設定 c_cpp_properties.json 中的 \"compilerPath\"。",
|
||||
"compiler_include_not_found": "找不到編譯器包含路徑: {0}",
|
||||
"intellisense_not_responding": "IntelliSense 引擎未回應。改為使用標籤剖析器。",
|
||||
"tag_parser_will_be_used": "標籤剖析器將用於 {0} 中的 IntelliSense 作業",
|
||||
|
||||
+10
-4
@@ -4,8 +4,14 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"walkthrough.windows.title.open.dev.command.prompt": "使用 {0} 重新啟動",
|
||||
"walkthrough.windows.background.dev.command.prompt": " 您正使用 Windows 電腦搭配 MSVC 編譯器,因此您必須從 {0} 啟動 VS Code,以便正確設定所有環境變數。若要使用 {1} 以下重新啟動:",
|
||||
"walkthrough.open.command.prompt": "在 Windows [開始] 功能表中輸入 \"{1}\",以開啟 {0}。選取 {2},這會自動瀏覽至您目前開啟的資料夾。",
|
||||
"walkthrough.windows.press.f5": "在命令提示字元中輸入 \"{0}\",然後按 Enter。這應該會重新啟動 VS Code,並帶您回到此逐步解說。"
|
||||
"walkthrough.windows.title.apply.dev.env": "套用 Visual Studio 開發人員環境",
|
||||
"walkthrough.windows.dev.env.required": "Visual Studio C++ 編譯器需要設定數個環境變數,才能成功編譯你的程式碼。如果您將 Windows 機器與 Visual Studio C++ 編譯器一起使用,可以透過兩種方式確保環境已套用。",
|
||||
"walkthrough.windows.do.one": " 您只需要執行下列其中一項:",
|
||||
"walkthrough.windows.run.dev.command": "執行 {0} 命令",
|
||||
"walkthrough.windows.set.dev.environment": "C/C++: 設定 Visual Studio 開發人員環境",
|
||||
"walkthrough.windows.start.from.dev.command": "從 {0} 啟動 VS Code",
|
||||
"walkthrough.windows.relaunch.command.prompt": "若要使用 {0} 重新啟動 VS Code",
|
||||
"walkthrough.close.vscode": "關閉目前的 VS Code 執行個體。",
|
||||
"walkthrough.open.command.prompt": "在 Windows [開始] 功能表中輸入 {1} 以開啟 {0},然後選取 {2}。",
|
||||
"walkthrough.windows.press.f5": "在命令提示字元中輸入 {0},然後點擊 Enter。這應該會在相同的工作區中重新啟動 VS Code,並帶您回到此逐步解說。"
|
||||
}
|
||||
+2
-4
@@ -16,8 +16,6 @@
|
||||
"walkthrough.windows.link.install": "安裝",
|
||||
"walkthrough.windows.note1": "備註",
|
||||
"walkthrough.windows.note1.text": "您可以使用 Visual Studio Build Tools 中的 C++ 工具組以及 Visual Studio Code 來編譯、組建及驗證任何 C++ 程式碼基底,只要您也擁有有效的 Visual Studio 授權 (社群版、專業版或企業版),且您正積極開發該 C++ 程式碼基底。",
|
||||
"walkthrough.windows.open.command.prompt": "在 Windows [開始] 功能表中輸入 '{1}',以開啟 {0}。",
|
||||
"walkthrough.windows.check.install": "將 {0} 輸入 {1},以檢查您的 Microsoft Visual C++ 安裝。畫面會顯示版本的著作權訊息以及基本的使用說明。",
|
||||
"walkthrough.windows.note2": "備註",
|
||||
"walkthrough.windows.note2.text": "若要從命令列或 VS Code 使用 MSVC,您必須從 {0} 執行。一般殼層,例如 {1}、{2} 或 Windows 命令提示字元,沒有設定必要的路徑環境變數集。"
|
||||
"walkthrough.windows.open.command.prompt": "在 Windows [開始] 功能表中輸入 {1} 以開啟 {0}。",
|
||||
"walkthrough.windows.check.install": "將 {0} 輸入 {1},以檢查您的 Microsoft Visual C++ 安裝。畫面會顯示版本的著作權訊息以及基本的使用說明。"
|
||||
}
|
||||
+1
-3
@@ -10,10 +10,8 @@
|
||||
"walkthrough.windows.note1": "備註",
|
||||
"walkthrough.windows.note1.text": "您可以使用 Visual Studio Build Tools 中的 C++ 工具組以及 Visual Studio Code 來編譯、組建及驗證任何 C++ 程式碼基底,只要您也擁有有效的 Visual Studio 授權 (社群版、專業版或企業版),且您正積極開發該 C++ 程式碼基底。",
|
||||
"walkthrough.windows.verify.compiler": "驗證編譯器安裝",
|
||||
"walkthrough.windows.open.command.prompt": "在 Windows [開始] 功能表中輸入 '{1}',以開啟 {0}。",
|
||||
"walkthrough.windows.open.command.prompt": "在 Windows [開始] 功能表中輸入 {1} 以開啟 {0}。",
|
||||
"walkthrough.windows.check.install": "將 {0} 輸入 {1},以檢查您的 Microsoft Visual C++ 安裝。畫面會顯示版本的著作權訊息以及基本的使用說明。",
|
||||
"walkthrough.windows.note2": "備註",
|
||||
"walkthrough.windows.note2.text": "若要從命令列或 VS Code 使用 MSVC,您必須從 {0} 執行。一般殼層,例如 {1}、{2} 或 Windows 命令提示字元,沒有設定必要的路徑環境變數集。",
|
||||
"walkthrough.windows.other.compilers": "其他編譯器選項",
|
||||
"walkthrough.windows.text3": "如果您是以 Windows 的 Linux 為目標,請查看 {0}。或者,您也可以 {1}。",
|
||||
"walkthrough.windows.link.title1": "在 VS Code 中使用 C++ 與 Windows 子系統 Linux 版 (WSL) ",
|
||||
|
||||
+1
-3
@@ -10,10 +10,8 @@
|
||||
"walkthrough.windows.note1": "備註",
|
||||
"walkthrough.windows.note1.text": "您可以使用 Visual Studio Build Tools 中的 C++ 工具組以及 Visual Studio Code 來編譯、組建及驗證任何 C++ 程式碼基底,只要您也擁有有效的 Visual Studio 授權 (社群版、專業版或企業版),且您正積極開發該 C++ 程式碼基底。",
|
||||
"walkthrough.windows.verify.compiler": "驗證編譯器安裝",
|
||||
"walkthrough.windows.open.command.prompt": "在 Windows [開始] 功能表中輸入 '{1}',以開啟 {0}。",
|
||||
"walkthrough.windows.open.command.prompt": "在 Windows [開始] 功能表中輸入 {1} 以開啟 {0}。",
|
||||
"walkthrough.windows.check.install": "將 {0} 輸入 {1},以檢查您的 Microsoft Visual C++ 安裝。畫面會顯示版本的著作權訊息以及基本的使用說明。",
|
||||
"walkthrough.windows.note2": "備註",
|
||||
"walkthrough.windows.note2.text": "若要從命令列或 VS Code 使用 MSVC,您必須從 {0} 執行。一般殼層,例如 {1}、{2} 或 Windows 命令提示字元,沒有設定必要的路徑環境變數集。",
|
||||
"walkthrough.windows.other.compilers": "其他編譯器選項",
|
||||
"walkthrough.windows.text3": "如果您是以 Windows 的 Linux 為目標,請查看 {0}。或者,您也可以 {1}。",
|
||||
"walkthrough.windows.link.title1": "在 VS Code 中使用 C++ 與 Windows 子系統 Linux 版 (WSL) ",
|
||||
|
||||
@@ -42,6 +42,8 @@
|
||||
"c_cpp.command.RemoveAllCodeAnalysisProblems.title": "Vymazat všechny problémy s analýzou kódu",
|
||||
"c_cpp.command.BuildAndDebugFile.title": "Ladit soubor C/C++",
|
||||
"c_cpp.command.BuildAndRunFile.title": "Spustit soubor C/C++",
|
||||
"c_cpp.command.SetVsDeveloperEnvironment.title": "Nastavit prostředí vývojáře ve Visual Studiu",
|
||||
"c_cpp.command.ClearVsDeveloperEnvironment.title": "Vymazat prostředí vývojáře ve Visual Studiu",
|
||||
"c_cpp.command.AddDebugConfiguration.title": "Přidat konfiguraci ladění",
|
||||
"c_cpp.command.GenerateDoxygenComment.title": "Vygenerovat komentář Doxygen",
|
||||
"c_cpp.command.addSshTarget.title": "Přidat cíl SSH",
|
||||
@@ -191,12 +193,12 @@
|
||||
"c_cpp.configuration.inactiveRegionOpacity.markdownDescription": "Určuje neprůhlednost neaktivních bloků preprocesoru. Hodnoty spadají do rozsahu od `0,1` do `1,0`. Toto nastavení platí jen v případě, že je povolené ztmavování neaktivních oblastí.",
|
||||
"c_cpp.configuration.inactiveRegionForegroundColor.description": "Určuje barvení písma neaktivních bloků preprocesoru. Vstup má tvar šestnáctkového kódu barvy nebo platné barvy motivu. Pokud se nenastaví, výchozí nastavení je schéma barvení syntaxe v editoru. Toto nastavení platí jen v případě, že je povolené ztmavování neaktivních oblastí.",
|
||||
"c_cpp.configuration.inactiveRegionBackgroundColor.description": "Určuje barvení pozadí neaktivních bloků preprocesoru. Vstup má tvar šestnáctkového kódu barvy nebo platné barvy motivu. Pokud se nenastaví, výchozí nastavení je průhledné pozadí. Toto nastavení platí jen v případě, že je povolené ztmavování neaktivních oblastí.",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.enabled.markdownDescription": "Zobrazit pomocné parametry vloženého kódu pro odvozený typ, když se v deklaraci používá `auto`:\n```cpp \n\n auto index /* : int */ = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.showOnLeft.markdownDescription": "Zobrazit pomocné parametry vloženého kódu pro odvozený typ, když se v deklaraci na levé straně identifikátoru používá `auto`:\n```cpp \n\n auto /* int */ index = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.enabled.markdownDescription": "Zobrazit pomocné parametry vloženého kódu pro názvy parametrů:\n```cpp \n\n int a = getArea(/* width: */ x, /* height: */ y);\n```",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.enabled.markdownDescription": "Zobrazit vložené upozornění pro odvozený typ, když se v deklaraci používá `auto`:\n```cpp \n\n auto index /* : int */ = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.showOnLeft.markdownDescription": "Zobrazit vložené upozornění pro odvozený typ, když se v deklaraci na levé straně identifikátoru používá `auto`:\n```cpp \n\n auto /* int */ index = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.enabled.markdownDescription": "Zobrazit vložené upozornění pro názvy parametrů:\n```cpp \n\n int a = getArea(/* width: */ x, /* height: */ y);\n```",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.hideLeadingUnderscores.markdownDescription": "Skryje úvodní `_` v pomocných parametrech pro názvy parametrů.",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.suppressWhenArgumentContainsName.markdownDescription": "Potlačit pomocné parametry názvu parametru, pokud text argumentu nebo vložený komentář obsahuje název parametru:\n```cpp \n\n int a = getArea(width, /* height: */ y);\n```",
|
||||
"c_cpp.configuration.inlayHints.referenceOperator.enabled.markdownDescription": "Zobrazí operátor odkazu na pomocný parametr vloženého kódu `&` pro parametry předané nekonstantním odkazem:\n```cpp \n\n swap(/* & first: */ str1, /* & last: */ str2);\n```",
|
||||
"c_cpp.configuration.inlayHints.referenceOperator.enabled.markdownDescription": "Zobrazí operátor odkazu vloženého upozornění `&` pro parametry předané nekonstantním odkazem:\n```cpp \n\n swap(/* & first: */ str1, /* & last: */ str2);\n```",
|
||||
"c_cpp.configuration.inlayHints.referenceOperator.showSpace.markdownDescription": "Určuje, jestli se za znakem `&` u parametrů, předaných nekonstantním odkazem, zobrazí mezera:\n```cpp \n\n swap(/* & first: */ str1, /* & last: */ str2);\n```",
|
||||
"c_cpp.configuration.loggingLevel.markdownDescription": "Úroveň podrobností protokolování panelu výstupu. Pořadí úrovní od nejméně podrobné po nejpodrobnější je toto: `None` < `Error` < `Warning` < `Information` < `Debug`.",
|
||||
"c_cpp.configuration.autoAddFileAssociations.markdownDescription": "Určuje, jestli se soubory automaticky přidají do `#files.associations#`, když budou cílem operace navigace ze souboru C/C++.",
|
||||
@@ -269,6 +271,7 @@
|
||||
"c_cpp.contributes.views.sshTargetsView.title": "Cpptools: cíle SSH",
|
||||
"c_cpp.contributes.viewsWelcome.contents": "Další informace o launch.json najdete tady: [konfigurace C/C++ ladění](https://code.visualstudio.com/docs/cpp/launch-json-reference).",
|
||||
"c_cpp.configuration.debugShortcut.description": "Zobrazit tlačítko pro přehrávání Spustit a ladit a ozubené kolečko Přidat konfiguraci ladění v záhlaví editoru pro soubory C++.",
|
||||
"c_cpp.configuration.persistVsDeveloperEnvironment.description": "Zapamatujte si poslední použité prostředí vývojáře ve Visual Studiu pro aktuální pracovní prostor. Toto nastavení platí jenom pro Windows.",
|
||||
"c_cpp.debuggers.pipeTransport.description": "Pokud je k dispozici, předá ladicímu programu informaci, aby se připojil ke vzdálenému počítači pomocí dalšího spustitelného souboru jako kanál, který bude přenášet standardní vstup a výstup mezi nástrojem VS Code a spustitelným souborem back-endu ladicího programu s podporou MI (třeba gdb).",
|
||||
"c_cpp.debuggers.pipeTransport.default.pipeProgram": "zadejte absolutní cestu k názvu programu kanálu, například /usr/bin/ssh.",
|
||||
"c_cpp.debuggers.pipeTransport.default.debuggerPath": "Úplná cesta k ladicímu programu na cílovém počítači, například /usr/bin/gdb",
|
||||
@@ -428,8 +431,8 @@
|
||||
"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 Developer Command Prompt for VS",
|
||||
"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 Developer Command Prompt for VS. Postupujte podle pokynů na pravé straně a spusťte ho znovu.\n[Znovu načíst okno](command:workbench.action.reloadWindow)",
|
||||
"c_cpp.walkthrough.command.prompt.title": "Použít prostředí vývojáře ve Visual Studio",
|
||||
"c_cpp.walkthrough.command.prompt.description": "Při použití kompilátoru Microsoft Visual Studio C++ musí být k dispozici prostředí vývojáře ve Visual Studio.\n\nPostupujte podle pokynů vpravo pro opětovné spuštění nebo klikněte na tlačítko níže.\n[Nastavit prostředí vývojáře](command:C_Cpp.SetVsDeveloperEnvironment?%22walkthrough%22)",
|
||||
"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.",
|
||||
|
||||
@@ -17,7 +17,12 @@
|
||||
"pre.Launch.Task": "preLaunchTask: {0}",
|
||||
"debugger.path.not.exists": "Nepovedlo se najít ladicí program {0}. Konfigurace ladění pro {1} se ignoruje.",
|
||||
"build.and.debug.active.file": "sestavit a ladit aktivní soubor",
|
||||
"cl.exe.not.available": "{0} se dá použít jenom v případě, že se VS Code spouští z nástroje {1}.",
|
||||
"apply.dev.env": "Použít prostředí vývojáře",
|
||||
"cl.exe.not.available": "{0} vyžaduje prostředí vývojáře ve Visual Studiu.",
|
||||
"update.dev.env": "Aktualizovat prostředí vývojáře ve Visual Studiu",
|
||||
"cancel": "Zrušit",
|
||||
"dev.env.not.applied": "Zdrojový kód nelze sestavit, protože nebylo použito prostředí vývojáře ve Visual Studiu.",
|
||||
"dev.env.not.found": "Zdrojový kód nelze sestavit, protože nebyl nalezen kompilátor Visual C++.",
|
||||
"lldb.find.failed": "Chybí závislosti {0} pro spustitelný soubor lldb-mi.",
|
||||
"lldb.search.paths": "Prohledáno:",
|
||||
"lldb.install.help": "Pokud chcete tento problém vyřešit, buď nainstalujte XCode přes obchod Apple App Store, nebo v okně terminálu spusťte {0}, aby se nainstalovaly nástroje příkazového řádku XCode.",
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* 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.
|
||||
{
|
||||
"no.context.provided": "Nebyl zadán žádný kontext",
|
||||
"not.windows": "Příkaz „Nastavit prostředí vývojáře ve Visual Studiu“ je dostupný jenom ve Windows",
|
||||
"error.no.vs": "Instalace Visual Studia s kompilátorem C++ nebyla nalezena",
|
||||
"operation.cancelled": "Operace byla zrušena",
|
||||
"no.hosts": "Nenašli se žádní hostitelé",
|
||||
"config.dev.env": "Konfiguruje se prostředí vývojáře...",
|
||||
"select.vs.install": "Vyberte instalaci Visual Studia",
|
||||
"advanced.options": "Pokročilé možnosti...",
|
||||
"advanced.options.desc": "Vyberte konkrétního hostitele, cílovou architekturu, verzi sady nástrojů atd.",
|
||||
"select.toolset": "Vyberte verzi sady nástrojů",
|
||||
"select.host.target": "Vyberte hostitelskou a cílovou architekturu.",
|
||||
"something.wrong": "Něco neproběhlo, jak mělo: {0}",
|
||||
"dev.env.for": "Prostředí vývojáře {0} pro {1}",
|
||||
"default.env": "Výchozí prostředí pro {0}",
|
||||
"host.target": "hostitel = {0}, cíl = {1}"
|
||||
}
|
||||
@@ -46,7 +46,7 @@
|
||||
"aborting_tag_parse_at_root": "Parsování značek v kořenu se přerušuje.",
|
||||
"unable_to_retrieve_to_reset_timestamps": "Nepovedlo se načíst záznamy databáze pro resetování časových razítek: chyba = {0}",
|
||||
"failed_to_reset_timestamps_for": "Nepovedlo se resetovat časové razítko pro {0}: chyba = {1}",
|
||||
"no_suitable_complier": "Nenašel se žádný vhodný kompilátor. Nastavte prosím compilerPath v souboru c_cpp_properties.json.",
|
||||
"no_suitable_compiler": "Nenašel se žádný vhodný kompilátor. Nastavte prosím compilerPath v souboru c_cpp_properties.json.",
|
||||
"compiler_include_not_found": "Nenašla se cesta kompilátoru pro vložené soubory: {0}",
|
||||
"intellisense_not_responding": "Modul IntelliSense neodpovídá. Používá se místo něj analyzátor značek.",
|
||||
"tag_parser_will_be_used": "Analyzátor značek se bude používat pro operace IntelliSense v: {0}",
|
||||
|
||||
+10
-4
@@ -4,8 +4,14 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"walkthrough.windows.title.open.dev.command.prompt": "Znovu spustit pomocí {0}",
|
||||
"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 {0}, aby se všechny proměnné prostředí správně nastavily. Opětovné spuštění pomocí nástroje {1}:",
|
||||
"walkthrough.open.command.prompt": "Otevřete {0} zadáním „{1}“ v nabídce Start ve Windows. Vyberte {2}, čímž automaticky přejdete do aktuální otevřené složky.",
|
||||
"walkthrough.windows.press.f5": "Do příkazového řádku zadejte „{0}“ a stiskněte Enter. Mělo by se znovu spustit VS Code a vrátit se k tomuto názorném postupu. "
|
||||
"walkthrough.windows.title.apply.dev.env": "Použít prostředí vývojáře ve Visual Studiu",
|
||||
"walkthrough.windows.dev.env.required": "Kompilátor Visual Studio C++ vyžaduje nastavení několika proměnných prostředí, aby bylo možné úspěšně zkompilovat váš kód. Pokud používáte počítač s Windows a kompilátorem Visual Studio C++, existují dva způsoby, jak zajistit použití prostředí.",
|
||||
"walkthrough.windows.do.one": " Stačí udělat jenom jednu z těchto věcí:",
|
||||
"walkthrough.windows.run.dev.command": "Spusťte příkaz {0}",
|
||||
"walkthrough.windows.set.dev.environment": "C/C++: Nastavit prostředí vývojáře ve Visual Studiu",
|
||||
"walkthrough.windows.start.from.dev.command": "Spusťte VS Code z {0}",
|
||||
"walkthrough.windows.relaunch.command.prompt": "Opětovné spuštění VS Code pomocí {0}",
|
||||
"walkthrough.close.vscode": "Zavřete aktuální instanci VS Code.",
|
||||
"walkthrough.open.command.prompt": "Otevřete {0} tak, že zadáte {1} do nabídky Start systému Windows a pak vyberete {2}.",
|
||||
"walkthrough.windows.press.f5": "Do příkazového řádku zadejte {0} a stiskněte Enter. Tím by se měl VS Code znovu spustit ve stejném pracovním prostoru a vrátit vás k tomuto názornému postupu."
|
||||
}
|
||||
+2
-4
@@ -16,8 +16,6 @@
|
||||
"walkthrough.windows.link.install": "Nainstalovat",
|
||||
"walkthrough.windows.note1": "Poznámka",
|
||||
"walkthrough.windows.note1.text": "Můžete použít sadu nástrojů C++ z Visual Studio Build Tools spolu s Visual Studio Code ke kompilaci, sestavení a ověření jakékoli kódové báze C++, pokud máte také platnou licenci Visual Studio (buď Community, Pro nebo Enterprise), kterou aktivně používáte k vývoji kódové báze C++.",
|
||||
"walkthrough.windows.open.command.prompt": "Otevřete ho {0} zadáním '{1}' v nabídce Start ve Windows.",
|
||||
"walkthrough.windows.check.install": "Zkontrolujte instalaci MSVC zadáním {0} do nástroje {1}. Měla by se zobrazit zpráva o autorských právech v popisu verze a základního použití.",
|
||||
"walkthrough.windows.note2": "Poznámka",
|
||||
"walkthrough.windows.note2.text": "Pokud chcete použít MSVC z příkazového řádku nebo VS Code, musíte spouštět z {0}. Běžné prostředí, jako je {1}, {2} nebo příkazový řádek Windows, nemá nastavenou nezbytnou proměnnou prostředí cesty."
|
||||
"walkthrough.windows.open.command.prompt": "Otevřete {0} zadáním {1} v nabídce Start ve Windows.",
|
||||
"walkthrough.windows.check.install": "Zkontrolujte instalaci MSVC zadáním {0} do nástroje {1}. Měla by se zobrazit zpráva o autorských právech v popisu verze a základního použití."
|
||||
}
|
||||
+1
-3
@@ -10,10 +10,8 @@
|
||||
"walkthrough.windows.note1": "Poznámka",
|
||||
"walkthrough.windows.note1.text": "Můžete použít sadu nástrojů C++ z Visual Studio Build Tools spolu s Visual Studio Code ke kompilaci, sestavení a ověření jakékoli kódové báze C++, pokud máte také platnou licenci Visual Studio (buď Community, Pro nebo Enterprise), kterou aktivně používáte k vývoji kódové báze C++.",
|
||||
"walkthrough.windows.verify.compiler": "Ověřování instalace kompilátoru",
|
||||
"walkthrough.windows.open.command.prompt": "Otevřete ho {0} zadáním '{1}' v nabídce Start ve Windows.",
|
||||
"walkthrough.windows.open.command.prompt": "Otevřete {0} zadáním {1} v nabídce Start ve Windows.",
|
||||
"walkthrough.windows.check.install": "Zkontrolujte instalaci MSVC zadáním {0} do nástroje {1}. Měla by se zobrazit zpráva o autorských právech v popisu verze a základního použití.",
|
||||
"walkthrough.windows.note2": "Poznámka",
|
||||
"walkthrough.windows.note2.text": "Pokud chcete použít MSVC z příkazového řádku nebo VS Code, musíte spouštět z {0}. Běžné prostředí, jako je {1}, {2} nebo příkazový řádek Windows, nemá nastavenou nezbytnou proměnnou prostředí cesty.",
|
||||
"walkthrough.windows.other.compilers": "Další možnosti kompilátoru",
|
||||
"walkthrough.windows.text3": "Pokud cílíte na Linux z Windows, podívejte se na {0}. Nebo můžete {1}.",
|
||||
"walkthrough.windows.link.title1": "Použití C++ a subsystému Windows pro Linux (WSL) ve VS Code",
|
||||
|
||||
+1
-3
@@ -10,10 +10,8 @@
|
||||
"walkthrough.windows.note1": "Poznámka",
|
||||
"walkthrough.windows.note1.text": "Můžete použít sadu nástrojů C++ z Visual Studio Build Tools spolu s Visual Studio Code ke kompilaci, sestavení a ověření jakékoli kódové báze C++, pokud máte také platnou licenci Visual Studio (buď Community, Pro nebo Enterprise), kterou aktivně používáte k vývoji kódové báze C++.",
|
||||
"walkthrough.windows.verify.compiler": "Ověřování instalace kompilátoru",
|
||||
"walkthrough.windows.open.command.prompt": "Otevřete ho {0} zadáním '{1}' v nabídce Start ve Windows.",
|
||||
"walkthrough.windows.open.command.prompt": "Otevřete {0} zadáním {1} v nabídce Start ve Windows.",
|
||||
"walkthrough.windows.check.install": "Zkontrolujte instalaci MSVC zadáním {0} do nástroje {1}. Měla by se zobrazit zpráva o autorských právech v popisu verze a základního použití.",
|
||||
"walkthrough.windows.note2": "Poznámka",
|
||||
"walkthrough.windows.note2.text": "Pokud chcete použít MSVC z příkazového řádku nebo VS Code, musíte spouštět z {0}. Běžné prostředí, jako je {1}, {2} nebo příkazový řádek Windows, nemá nastavenou nezbytnou proměnnou prostředí cesty.",
|
||||
"walkthrough.windows.other.compilers": "Další možnosti kompilátoru",
|
||||
"walkthrough.windows.text3": "Pokud cílíte na Linux z Windows, podívejte se na {0}. Nebo můžete {1}.",
|
||||
"walkthrough.windows.link.title1": "Použití C++ a subsystému Windows pro Linux (WSL) ve VS Code",
|
||||
|
||||
@@ -42,6 +42,8 @@
|
||||
"c_cpp.command.RemoveAllCodeAnalysisProblems.title": "Alle Codeanalyseprobleme löschen",
|
||||
"c_cpp.command.BuildAndDebugFile.title": "C/C++-Datei debuggen",
|
||||
"c_cpp.command.BuildAndRunFile.title": "C/C++-Datei ausführen",
|
||||
"c_cpp.command.SetVsDeveloperEnvironment.title": "Visual Studio-Entwicklungsumgebung festlegen",
|
||||
"c_cpp.command.ClearVsDeveloperEnvironment.title": "Visual Studio-Entwicklungsumgebung löschen",
|
||||
"c_cpp.command.AddDebugConfiguration.title": "Debugkonfiguration hinzufügen",
|
||||
"c_cpp.command.GenerateDoxygenComment.title": "Doxygenkommentar generieren",
|
||||
"c_cpp.command.addSshTarget.title": "SSH-Ziel hinzufügen",
|
||||
@@ -108,7 +110,7 @@
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.leftmostColumn.markdownDescription": "Positionieren Sie goto-Bezeichnungen ganz links im Code.",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.none.markdownDescription": "goto-Bezeichnungen werden nicht formatiert.",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.description": "Position der Präprozessordirektiven.",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.oneLeft.markdownDescription": "Präprozessordirektiven werden links neben dem aktuellen Codeeinzug um den in der Einstellung `#editor.tabSize#` angegebenen Betrag positioniert.",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.oneLeft.markdownDescription": "Präprozessordirektiven werden um den in der Einstellung `#editor.tabSize#` angegebenen Wert links neben dem aktuellen Codeeinzug positioniert.",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.leftmostColumn.markdownDescription": "Präprozessoranweisungen werden am linken Rand des Codes positioniert.",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.none.markdownDescription": "Präprozessoranweisungen werden nicht formatiert.",
|
||||
"c_cpp.configuration.vcFormat.indent.accessSpecifiers.markdownDescription": "Zugriffsspezifizierer werden relativ zu Klassen- oder Strukturdefinitionen um den in der Einstellung `#editor.tabSize#` angegebenen Wert eingerückt.",
|
||||
@@ -191,12 +193,12 @@
|
||||
"c_cpp.configuration.inactiveRegionOpacity.markdownDescription": "Steuert de Deckkraft von inaktiven Präprozessorblöcken. Skaliert zwischen `0.1` und `1.0`. Diese Einstellung gilt nur, wenn das Abblenden inaktiver Regionen aktiviert ist.",
|
||||
"c_cpp.configuration.inactiveRegionForegroundColor.description": "Hiermit wird die Schriftfarbe von inaktiven Präprozessorblöcken gesteuert. Die Eingabe erfolgt in Form eines hexadezimalen Farbcodes oder einer gültigen Designfarbe. Wenn diese Option nicht festgelegt ist, wird standardmäßig das Syntaxfarbschema des Editors verwendet. Diese Einstellung gilt nur, wenn das Abblenden inaktiver Regionen aktiviert ist.",
|
||||
"c_cpp.configuration.inactiveRegionBackgroundColor.description": "Hiermit wird die Hintergrundfarbe von inaktiven Präprozessorblöcken gesteuert. Die Eingabe erfolgt in Form eines hexadezimalen Farbcodes oder einer gültigen Designfarbe. Wenn diese Option nicht festgelegt ist, ist die Anzeige standardmäßig transparent. Diese Einstellung gilt nur, wenn das Abblenden inaktiver Regionen aktiviert ist.",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.enabled.markdownDescription": "Zeigt Einlegehinweise für abgeleiteten Typ an, wenn `auto` in einer Deklaration verwendet wird:\n```cpp \n\n auto index /* : int */ = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.showOnLeft.markdownDescription": "Zeigt Einlegehinweise für den abgeleiteten Typ an, wenn `auto` in einer Deklaration links vom Bezeichner verwendet wird:\n```cpp \n\n auto /* int */ index = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.enabled.markdownDescription": "Inlayhinweise für Parameternamen anzeigen:\n```cpp \n\n int a = getArea(/* width: */ x, /* height: */ y);\n```",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.enabled.markdownDescription": "Zeigt Inlay-Hinweise für abgeleiteten Typ an, wenn `auto` in einer Deklaration verwendet wird:\n```cpp \n\n auto index /* : int */ = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.showOnLeft.markdownDescription": "Zeigt Inlay-Hinweise für den abgeleiteten Typ an, wenn `auto` in einer Deklaration links vom Bezeichner verwendet wird:\n```cpp \n\n auto /* int */ index = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.enabled.markdownDescription": "Zeigt Inlay-Hinweise für Parameternamen an:\n```cpp \n\n int a = getArea(/* width: */ x, /* height: */ y);\n```",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.hideLeadingUnderscores.markdownDescription": "Blendet führendes `_` in Parameternamenshinweisen aus.",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.suppressWhenArgumentContainsName.markdownDescription": "Parameternamenhinweise unterdrücken, wenn der Argumenttext oder der Inlinekommentar den Parameternamen enthält:\n```cpp \n\n int a = getArea(width, /* height: */ y);\n```",
|
||||
"c_cpp.configuration.inlayHints.referenceOperator.enabled.markdownDescription": "Zeigen Sie den Inlayhinweis-Verweisoperator `&` für Parameter an, die von einem nicht konstanten Verweis übergeben werden:\n```cpp \n\n swap(/* &first: */ str1, /* &last: */ str2);\n```",
|
||||
"c_cpp.configuration.inlayHints.referenceOperator.enabled.markdownDescription": "Zeigt den Inlay-Hinweis-Verweisoperator `&` für Parameter an, die von einem nicht konstanten Verweis übergeben werden:\n```cpp \n\n swap(/* &first: */ str1, /* &last: */ str2);\n```",
|
||||
"c_cpp.configuration.inlayHints.referenceOperator.showSpace.markdownDescription": "Steuert, ob nach `&` ein Leerzeichen für Parameter angezeigt wird, die von einem nicht konstanten Verweis übergeben werden:\n```cpp \n\n swap(/* & first: */ str1, /* & last: */ str2);\n```",
|
||||
"c_cpp.configuration.loggingLevel.markdownDescription": "Die Ausführlichkeit der Protokollierung im Ausgabebereich. Die Reihenfolge der Ebenen von \"am wenigsten ausführlich\" bis \"am ausführlichsten\" lautet: `None` < `Error` < `Warning` < `Information` < `Debug`.",
|
||||
"c_cpp.configuration.autoAddFileAssociations.markdownDescription": "Steuert, ob Dateien automatisch zu `#files.associations#` hinzugefügt werden, wenn sie das Ziel eines Navigationsvorgangs aus einer C/C++-Datei sind.",
|
||||
@@ -269,6 +271,7 @@
|
||||
"c_cpp.contributes.views.sshTargetsView.title": "Cpptools: SSH-Ziele",
|
||||
"c_cpp.contributes.viewsWelcome.contents": "Weitere Informationen zu launch.json finden Sie unter [Konfigurieren des C/C++-Debuggings](https://code.visualstudio.com/docs/cpp/launch-json-reference).",
|
||||
"c_cpp.configuration.debugShortcut.description": "Zeigen Sie die Wiedergabeschaltfläche \"Ausführen und Debuggen\" und das Zahnrad \"Debugkonfiguration hinzufügen\" in der Titelleiste des Editors für C++-Dateien an.",
|
||||
"c_cpp.configuration.persistVsDeveloperEnvironment.description": "Speichern Sie die zuletzt verwendete Visual Studio-Entwicklungsumgebung für den aktuellen Arbeitsbereich. Diese Einstellung gilt nur für Windows.",
|
||||
"c_cpp.debuggers.pipeTransport.description": "Falls angegeben, weist diese Option den Debugger an, eine Verbindung mit einem Remotecomputer mithilfe einer anderen ausführbaren Datei als Pipe herzustellen, die Standardeingaben/-ausgaben zwischen VS Code und der ausführbaren Back-End-Datei für den MI-fähigen Debugger weiterleitet (z. B. gdb).",
|
||||
"c_cpp.debuggers.pipeTransport.default.pipeProgram": "Geben Sie den vollqualifizierten Pfad für den Pipeprogrammnamen ein, z. B. `/usr/bin/ssh`.",
|
||||
"c_cpp.debuggers.pipeTransport.default.debuggerPath": "Der vollständige Pfad zum Debugger auf dem Zielcomputer, z. B. \"/usr/bin/gdb\".",
|
||||
@@ -417,7 +420,7 @@
|
||||
"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.walkthrough.title": "Los geht's mit C++-Entwicklung",
|
||||
"c_cpp.walkthrough.title": "Erste Schritte 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...",
|
||||
@@ -428,8 +431,8 @@
|
||||
"c_cpp.walkthrough.create.cpp.file.title": "C++-Datei erstellen",
|
||||
"c_cpp.walkthrough.create.cpp.file.description": "[Öffnen](command:toSide:workbench.action.files.openFile) oder [erstellen](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\" extension, z. B. \"helloworld.cpp\". \n[Erstellen Sie eine C++-Datei](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": "Aus Developer Command Prompt for VS starten",
|
||||
"c_cpp.walkthrough.command.prompt.description": "Bei Verwendung des Microsoft Visual Studio C++-Compilers erfordert die C++-Erweiterung, dass Sie VS Code aus Developer Command Prompt for VS starten. Befolgen Sie die Anweisungen auf der rechten Seite, um den Neustart zu starten.\n[Reload Window](command:workbench.action.reloadWindow)",
|
||||
"c_cpp.walkthrough.command.prompt.title": "Anwenden der Visual Studio-Entwicklungsumgebung",
|
||||
"c_cpp.walkthrough.command.prompt.description": "Bei Verwendung des Microsoft Visual Studio C++-Compilers muss die Visual Studio-Entwicklungsumgebung vorhanden sein.\n\nBefolgen Sie die Anweisungen auf der rechten Seite, um den Neustart auszuführen, oder klicken Sie auf die Schaltfläche unten.\n[Entwicklungsumgebung festlegen](command:C_Cpp.SetVsDeveloperEnvironment?%22walkthrough%22)",
|
||||
"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.",
|
||||
|
||||
@@ -17,7 +17,12 @@
|
||||
"pre.Launch.Task": "preLaunchTask: {0}",
|
||||
"debugger.path.not.exists": "Der {0}-Debugger wurde nicht gefunden. Die Debugkonfiguration für {1} wird ignoriert.",
|
||||
"build.and.debug.active.file": "Aktive Datei erstellen und debuggen",
|
||||
"cl.exe.not.available": "{0} kann nur verwendet werden, wenn VS Code von {1} ausgeführt wird.",
|
||||
"apply.dev.env": "Entwicklungsumgebung anwenden",
|
||||
"cl.exe.not.available": "{0} erfordert die Visual Studio-Entwicklungsumgebung.",
|
||||
"update.dev.env": "Entwicklungsumgebung aktualisieren",
|
||||
"cancel": "Abbrechen",
|
||||
"dev.env.not.applied": "Der Quellcode konnte nicht erstellt werden, da die Visual Studio-Entwicklungsumgebung nicht angewendet wurde.",
|
||||
"dev.env.not.found": "Der Quellcode konnte nicht erstellt werden, da der Visual C++-Compiler nicht gefunden wurde.",
|
||||
"lldb.find.failed": "Fehlende Abhängigkeit \"{0}\" für ausführbare LLDB-MI-Datei.",
|
||||
"lldb.search.paths": "Gesucht in:",
|
||||
"lldb.install.help": "Um dieses Problem zu beheben, installieren Sie entweder XCode über den Apple App Store, oder installieren Sie die XCode-Befehlszeilentools, indem Sie \"{0}\" in einem Terminalfenster ausführen.",
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* 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.
|
||||
{
|
||||
"no.context.provided": "Es wurde kein Kontext angegeben",
|
||||
"not.windows": "Der Befehl „Visual Studio-Entwicklungsumgebung festlegen“ ist nur unter Windows verfügbar",
|
||||
"error.no.vs": "Es wurde keine Visual Studio-Installation mit dem C++-Compiler gefunden",
|
||||
"operation.cancelled": "Der Vorgang wurde abgebrochen",
|
||||
"no.hosts": "Keine Hosts gefunden",
|
||||
"config.dev.env": "Entwicklungsumgebung wird konfiguriert...",
|
||||
"select.vs.install": "Visual Studio-Installation auswählen",
|
||||
"advanced.options": "Erweiterte Optionen...",
|
||||
"advanced.options.desc": "Wählen Sie eine bestimmte Host- und Zielarchitektur, Toolsetversion usw. aus.",
|
||||
"select.toolset": "Toolsetversion auswählen",
|
||||
"select.host.target": "Host- und Zielarchitektur auswählen",
|
||||
"something.wrong": "Es ist ein Problem aufgetreten: {0}",
|
||||
"dev.env.for": "{0}-Entwicklungsumgebung für {1}",
|
||||
"default.env": "Standardumgebung für {0}",
|
||||
"host.target": "Host = {0}, Ziel = {1}"
|
||||
}
|
||||
@@ -46,7 +46,7 @@
|
||||
"aborting_tag_parse_at_root": "Die Taganalyse wird am Stamm abgebrochen.",
|
||||
"unable_to_retrieve_to_reset_timestamps": "Datenbankdatensätze können nicht abgerufen werden, um Zeitstempel zurückzusetzen: Fehler = {0}",
|
||||
"failed_to_reset_timestamps_for": "Fehler beim Zurücksetzen des Zeitstempels für \"{0}\": Fehler = {1}",
|
||||
"no_suitable_complier": "Es wurde kein geeigneter Compiler gefunden. Legen Sie \"compilerPath\" in \"c_cpp_properties.json\" fest.",
|
||||
"no_suitable_compiler": "Es wurde kein geeigneter Compiler gefunden. Legen Sie \"compilerPath\" in \"c_cpp_properties.json\" fest.",
|
||||
"compiler_include_not_found": "Compilerincludepfad nicht gefunden: {0}",
|
||||
"intellisense_not_responding": "Die IntelliSense-Engine reagiert nicht. Stattdessen wird der Tagparser verwendet.",
|
||||
"tag_parser_will_be_used": "Der Tagparser wird für IntelliSense-Vorgänge in \"{0}\" verwendet.",
|
||||
|
||||
+10
-4
@@ -4,8 +4,14 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"walkthrough.windows.title.open.dev.command.prompt": "Mit dem {0} neu starten",
|
||||
"walkthrough.windows.background.dev.command.prompt": " Sie verwenden einen Windows-Computer mit dem MSVC-Compiler. Daher müssen Sie VS Code aus dem {0} starten, damit alle Umgebungsvariablen ordnungsgemäß festgelegt werden. So initiieren Sie den Neustart mithilfe von {1}:",
|
||||
"walkthrough.open.command.prompt": "Öffnen Sie die {0}, indem Sie im Windows-Startmenü „{1}“ eingeben. Wählen Sie {2} aus, das Sie automatisch zu Ihrem aktuell geöffneten Ordner navigiert.",
|
||||
"walkthrough.windows.press.f5": "Geben Sie „{0}“ in die Eingabeaufforderung ein, und drücken Sie die EINGABETASTE. Dies sollte VS Code neu starten und Sie zu dieser exemplarischen Vorgehensweise zurückkehren. "
|
||||
"walkthrough.windows.title.apply.dev.env": "Anwenden der Visual Studio-Entwicklungsumgebung",
|
||||
"walkthrough.windows.dev.env.required": "Der Visual Studio C++-Compiler erfordert, dass mehrere Umgebungsvariablen festgelegt werden, um Ihren Code erfolgreich kompilieren zu können. Wenn Sie einen Windows-Computer mit dem Visual Studio C++-Compiler verwenden, gibt es zwei Möglichkeiten, wie Sie sicherstellen können, dass die Umgebung angewendet wird.",
|
||||
"walkthrough.windows.do.one": " Sie müssen nur eine der folgenden Aktionen ausführen:",
|
||||
"walkthrough.windows.run.dev.command": "Befehl „{0}“ ausführen",
|
||||
"walkthrough.windows.set.dev.environment": "C/C++: Visual Studio-Entwicklungsumgebung festlegen",
|
||||
"walkthrough.windows.start.from.dev.command": "VS Code über die {0} starten",
|
||||
"walkthrough.windows.relaunch.command.prompt": "So starten Sie VS Code mithilfe der {0}",
|
||||
"walkthrough.close.vscode": "Schließen Sie die aktuelle Instanz von VS Code.",
|
||||
"walkthrough.open.command.prompt": "Öffnen Sie die {0}, indem Sie im Windows-Startmenü „{1}“ eingeben, und wählen Sie dann {2} aus.",
|
||||
"walkthrough.windows.press.f5": "Geben Sie „{0}“ in die Eingabeaufforderung ein, und drücken Sie die EINGABETASTE. Dadurch sollte VS Code im selben Arbeitsbereich neu gestartet werden, und Sie sollten zu dieser exemplarischen Vorgehensweise zurückkehren."
|
||||
}
|
||||
+1
-3
@@ -17,7 +17,5 @@
|
||||
"walkthrough.windows.note1": "Hinweis",
|
||||
"walkthrough.windows.note1.text": "Sie können das C++-Toolset aus Visual Studio Build Tools zusammen mit Visual Studio Code zum Kompilieren, Erstellen und Überprüfen von C++-Codebasis verwenden, sofern Sie auch über eine gültige Visual Studio-Lizenz (Community, Pro oder Enterprise) verfügen, die Sie aktiv zum Entwickeln dieser C++-Codebasis verwenden.",
|
||||
"walkthrough.windows.open.command.prompt": "Öffnen Sie die {0}, indem Sie im Windows-Startmenü „{1}“ eingeben.",
|
||||
"walkthrough.windows.check.install": "Überprüfen Sie Ihre MSVC-Installation, indem Sie {0} in {1} eingeben. Es sollten ein Copyrighthinweis mit der Version und der grundlegenden Nutzungsbeschreibung angezeigt werden.",
|
||||
"walkthrough.windows.note2": "Hinweis",
|
||||
"walkthrough.windows.note2.text": "Um MSVC mithilfe der Befehlszeile oder mit VS Code zu verwenden, müssen Sie von einem {0} aus ausführen. Für eine normale Shell wie {1}, {2} oder die Windows-Eingabeaufforderung sind die erforderlichen PATH-Umgebungsvariablen nicht festgelegt."
|
||||
"walkthrough.windows.check.install": "Überprüfen Sie Ihre MSVC-Installation, indem Sie {0} in {1} eingeben. Es sollten ein Copyrighthinweis mit der Version und der grundlegenden Nutzungsbeschreibung angezeigt werden."
|
||||
}
|
||||
@@ -12,8 +12,6 @@
|
||||
"walkthrough.windows.verify.compiler": "Überprüfen der Compilerinstallation",
|
||||
"walkthrough.windows.open.command.prompt": "Öffnen Sie die {0}, indem Sie im Windows-Startmenü „{1}“ eingeben.",
|
||||
"walkthrough.windows.check.install": "Überprüfen Sie Ihre MSVC-Installation, indem Sie {0} in {1} eingeben. Es sollten ein Copyrighthinweis mit der Version und der grundlegenden Nutzungsbeschreibung angezeigt werden.",
|
||||
"walkthrough.windows.note2": "Hinweis",
|
||||
"walkthrough.windows.note2.text": "Um MSVC mithilfe der Befehlszeile oder mit VS Code zu verwenden, müssen Sie von einem {0} aus ausführen. Für eine normale Shell wie {1}, {2} oder die Windows-Eingabeaufforderung sind die erforderlichen PATH-Umgebungsvariablen nicht festgelegt.",
|
||||
"walkthrough.windows.other.compilers": "Andere Compileroptionen",
|
||||
"walkthrough.windows.text3": "Wenn Sie Linux aus Windows verwenden, lesen Sie {0}. Oder Sie können {1}.",
|
||||
"walkthrough.windows.link.title1": "Verwenden von C++ und Windows-Subsystem für Linux (WSL) in VS Code",
|
||||
|
||||
@@ -12,8 +12,6 @@
|
||||
"walkthrough.windows.verify.compiler": "Überprüfen der Compilerinstallation",
|
||||
"walkthrough.windows.open.command.prompt": "Öffnen Sie die {0}, indem Sie im Windows-Startmenü „{1}“ eingeben.",
|
||||
"walkthrough.windows.check.install": "Überprüfen Sie Ihre MSVC-Installation, indem Sie {0} in {1} eingeben. Es sollten ein Copyrighthinweis mit der Version und der grundlegenden Nutzungsbeschreibung angezeigt werden.",
|
||||
"walkthrough.windows.note2": "Hinweis",
|
||||
"walkthrough.windows.note2.text": "Um MSVC mithilfe der Befehlszeile oder mit VS Code zu verwenden, müssen Sie von einem {0} aus ausführen. Für eine normale Shell wie {1}, {2} oder die Windows-Eingabeaufforderung sind die erforderlichen PATH-Umgebungsvariablen nicht festgelegt.",
|
||||
"walkthrough.windows.other.compilers": "Andere Compileroptionen",
|
||||
"walkthrough.windows.text3": "Wenn Sie Linux aus Windows verwenden, lesen Sie {0}. Oder Sie können {1}.",
|
||||
"walkthrough.windows.link.title1": "Verwenden von C++ und Windows-Subsystem für Linux (WSL) in VS Code",
|
||||
|
||||
@@ -42,6 +42,8 @@
|
||||
"c_cpp.command.RemoveAllCodeAnalysisProblems.title": "Borrar todos los problemas de análisis de código",
|
||||
"c_cpp.command.BuildAndDebugFile.title": "Depurar archivo C/C++",
|
||||
"c_cpp.command.BuildAndRunFile.title": "Ejecutar archivo C/C++",
|
||||
"c_cpp.command.SetVsDeveloperEnvironment.title": "Configurar el entorno de desarrollador de Visual Studio",
|
||||
"c_cpp.command.ClearVsDeveloperEnvironment.title": "Borrar el entorno de desarrollador de Visual Studio",
|
||||
"c_cpp.command.AddDebugConfiguration.title": "Agregar configuración de depuración",
|
||||
"c_cpp.command.GenerateDoxygenComment.title": "Generar comentario de Doxygen",
|
||||
"c_cpp.command.addSshTarget.title": "Agregar destino SSH",
|
||||
@@ -104,11 +106,11 @@
|
||||
"c_cpp.configuration.vcFormat.indent.caseContentsWhenBlock.markdownDescription": "Se aplica sangría a las llaves siguiendo una instrucción case, según lo especificado en la configuración de `#editor.tabSize#`.",
|
||||
"c_cpp.configuration.vcFormat.indent.lambdaBracesWhenParameter.markdownDescription": "Se aplica sangría a las llaves de expresiones lambda usadas como parámetros de función en relación con el inicio de la instrucción, según lo especificado en la configuración de `#editor.tabSize#`",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.description": "La posición de las etiquetas goto.",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.oneLeft.markdownDescription": "Coloca las etiquetas goto a la izquierda de la sangría de código actual, según la cantidad especificada en la configuración de `#editor.tabSize#`.",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.oneLeft.markdownDescription": "Coloque las etiquetas goto a la izquierda de la sangría de código actual según la cantidad especificada en la configuración de `#editor.tabSize#`.",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.leftmostColumn.markdownDescription": "Coloca las etiquetas goto en el borde izquierdo del código.",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.none.markdownDescription": "Las etiquetas Goto no se formatearán.",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.description": "La posición de las directivas de preprocesador.",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.oneLeft.markdownDescription": "Las directivas de preprocesador se colocan a la izquierda de la sangría de código actual, según la cantidad especificada en la configuración de `#editor.tabSize#`.",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.oneLeft.markdownDescription": "Las directivas de preprocesador se colocan a la izquierda de la sangría de código actual según la cantidad especificada en la configuración de `#editor.tabSize#`.",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.leftmostColumn.markdownDescription": "Las directivas de preprocesador se colocan en el borde izquierdo del código.",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.none.markdownDescription": "Las directivas de preprocesador no se formatearán.",
|
||||
"c_cpp.configuration.vcFormat.indent.accessSpecifiers.markdownDescription": "Se aplica sangría a los especificadores de acceso en relación con las definiciones de clase o estructura según la cantidad especificada en el valor `#editor.tabSize#`.",
|
||||
@@ -191,12 +193,12 @@
|
||||
"c_cpp.configuration.inactiveRegionOpacity.markdownDescription": "Controla la opacidad de los bloques de preprocesador inactivos. Escala el valor entre `0.1` y `1.0`. Esta configuración solo se aplica cuando está habilitada la atenuación de regiones inactivas.",
|
||||
"c_cpp.configuration.inactiveRegionForegroundColor.description": "Controla el color de la fuente en los bloques de preprocesador inactivos. La entrada se realiza en forma de código de color hexadecimal o de un color para temas válido. Si no se establece, se usa como valor predeterminado la combinación de colores de la sintaxis del editor. Esta configuración solo se aplica cuando está habilitada la atenuación de regiones inactivas.",
|
||||
"c_cpp.configuration.inactiveRegionBackgroundColor.description": "Controla el color de fondo de los bloques de preprocesador inactivos. La entrada se realiza en forma de código de color hexadecimal o de un color para temas válido. Si no se establece, el valor predeterminado es transparente. Esta configuración solo se aplica cuando está habilitada la atenuación de regiones inactivas.",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.enabled.markdownDescription": "Mostrar sugerencias de incrustación para el tipo deducido cuando se usa `auto` en una declaración:\n```cpp \n\n auto index /* : int */ = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.showOnLeft.markdownDescription": "Mostrar sugerencias de incrustación para el tipo deducido cuando se usa `auto` en una declaración:\n```cpp \n\n auto /* int */ index = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.enabled.markdownDescription": "Mostrar sugerencias de incrustación para nombres de parámetros:\n```cpp \n\n int a = getArea(/* width: */ x, /* height: */ y);\n```",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.enabled.markdownDescription": "Mostrar indicaciones incrustadas para el tipo deducido cuando se usa `auto` en una declaración:\n```cpp \n\n auto index /* : int */ = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.showOnLeft.markdownDescription": "Mostrar indicaciones incrustadas para el tipo deducido cuando se usa `auto` en una declaración:\n```cpp \n\n auto /* int */ index = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.enabled.markdownDescription": "Mostrar indicaciones incrustadas para nombres de parámetros:\n```cpp \n\n int a = getArea(/* width: */ x, /* height: */ y);\n```",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.hideLeadingUnderscores.markdownDescription": "Ocultar el `_` inicial en las sugerencias de nombre de parámetro.",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.suppressWhenArgumentContainsName.markdownDescription": "Suprima las sugerencias de nombre de parámetro cuando el texto del argumento o el comentario insertado contenga el nombre del parámetro:\n```cpp \n\n int a = getArea(width, /* height: */ y);\n```",
|
||||
"c_cpp.configuration.inlayHints.referenceOperator.enabled.markdownDescription": "Muestra el operador de referencia de sugerencia de incrustación `&` para los parámetros pasados por una referencia no const:\n```cpp \n\n swap(/* &first: */ str1, /* &last: */ str2);\n```",
|
||||
"c_cpp.configuration.inlayHints.referenceOperator.enabled.markdownDescription": "Muestra el operador de referencia de indicación incrustada `&` para los parámetros pasados por una referencia no const:\n```cpp \n\n swap(/* &first: */ str1, /* &last: */ str2);\n```",
|
||||
"c_cpp.configuration.inlayHints.referenceOperator.showSpace.markdownDescription": "Controla si un espacio se muestra después de `&` para parámetros pasados por referencia no-const:\n```cpp \n\n swap(/* & first: */ str1, /* & last: */ str2);\n```",
|
||||
"c_cpp.configuration.loggingLevel.markdownDescription": "Nivel de detalle del registro en el panel de salida. El orden de los niveles de menos detallado a más detallado es: `None` < `Error` < `Warning` < `Information` < `Debug`.",
|
||||
"c_cpp.configuration.autoAddFileAssociations.markdownDescription": "Controla si los archivos se agregan automáticamente a `#files.associations#` cuando son el destino de una operación de navegación desde un archivo de C/C++.",
|
||||
@@ -269,6 +271,7 @@
|
||||
"c_cpp.contributes.views.sshTargetsView.title": "Cpptools: destinos SSH",
|
||||
"c_cpp.contributes.viewsWelcome.contents": "Para obtener más información sobre launch.json, vea [Configuración de depuración de C/C++](https://code.visualstudio.com/docs/cpp/launch-json-reference).",
|
||||
"c_cpp.configuration.debugShortcut.description": "Mostrar el botón de reproducción \"Ejecutar y depurar\" y el engranaje \"Agregar configuración de depuración\" en la barra de título del editor para archivos de C++.",
|
||||
"c_cpp.configuration.persistVsDeveloperEnvironment.description": "Recordar el último entorno de desarrollo de Visual Studio utilizado para el área de trabajo actual. Esta configuración solo es aplicable para Windows.",
|
||||
"c_cpp.debuggers.pipeTransport.description": "Cuando se especifica, indica al depurador que se conecte a un equipo remoto usando otro archivo ejecutable como canalización que retransmitirá la entrada o la salida estándar entre VS Code y el archivo ejecutable del back-end del depurador habilitado para MI (por ejemplo, gdb).",
|
||||
"c_cpp.debuggers.pipeTransport.default.pipeProgram": "escriba la ruta de acceso absoluta para el nombre del programa de canalización; por ejemplo, \"/usr/bin/ssh\".",
|
||||
"c_cpp.debuggers.pipeTransport.default.debuggerPath": "Ruta de acceso completa al depurador en la máquina de destino. Por ejemplo, /usr/bin/gdb.",
|
||||
@@ -417,9 +420,9 @@
|
||||
"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.walkthrough.title": "Introducción al desarrollo de C++",
|
||||
"c_cpp.walkthrough.title": "Empiece a desarrollar en 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.set.up.title": "Configure su entorno 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.windows.description": "No pudimos encontrar un compilador de C++ en el equipo, que es necesario para usar la extensión de C++. Siga las instrucciones de la derecha para instalar una y, a continuación, haga clic en “Buscar mi nuevo compilador”.\n[Buscar mi nuevo compilador](command:C_Cpp.RescanCompilers?%22walkthrough%22)",
|
||||
"c_cpp.walkthrough.no.compilers.description": "No pudimos encontrar un compilador de C++ en el equipo, que es necesario para usar la extensión de C++. Seleccione “Instalar un compilador de C++” para tener un compilador instalado automáticamente o siga las instrucciones de la derecha para instalar uno y, a continuación, haga clic en “Buscar mi nuevo compilador”.\n[Instalar un compilador de C++](command:C_Cpp.InstallCompiler?%22walkthrough%22)\n[Buscar mi nuevo compilador](command:C_Cpp.RescanCompilers?%22walkthrough%22)",
|
||||
@@ -428,8 +431,8 @@
|
||||
"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": "Iniciar desde Developer Command Prompt for VS",
|
||||
"c_cpp.walkthrough.command.prompt.description": "Al usar el compilador de Microsoft Visual Studio C++, la extensión de C++ requiere que inicie VS Code desde Developer Command Prompt for VS. Sigue las instrucciones de la derecha para volver a iniciar.\n[Volver a cargar ventana](command:workbench.action.reloadWindow)",
|
||||
"c_cpp.walkthrough.command.prompt.title": "Aplicar el entorno de desarrollo de Visual Studio",
|
||||
"c_cpp.walkthrough.command.prompt.description": "Cuando se utiliza el compilador Microsoft Visual Studio C++, debe estar presente el entorno de desarrollo Visual Studio.\n\nSiga las instrucciones de la derecha para reiniciar o haga clic en el botón de abajo.\n[Configurar el entorno de desarrollador](command:C_Cpp.SetVsDeveloperEnvironment?%22walkthrough%22)",
|
||||
"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.",
|
||||
|
||||
@@ -17,7 +17,12 @@
|
||||
"pre.Launch.Task": "preLaunchTask: {0}",
|
||||
"debugger.path.not.exists": "No se encuentra el depurador {0}. Se ha omitido la configuración de depuración de {1}.",
|
||||
"build.and.debug.active.file": "Compilar y depurar el archivo activo",
|
||||
"cl.exe.not.available": "{0} solo se puede usar cuando VS Code se ejecuta desde {1}.",
|
||||
"apply.dev.env": "Aplicar entorno de desarrollador",
|
||||
"cl.exe.not.available": "{0} requiere el entorno de desarrollado Visual Studio.",
|
||||
"update.dev.env": "Actualizar entorno de desarrollador",
|
||||
"cancel": "Cancelar",
|
||||
"dev.env.not.applied": "No se pudo compilar el código fuente porque no se aplicó el entorno de desarrollo Visual Studio.",
|
||||
"dev.env.not.found": "No se pudo compilar el código fuente porque no se encontró el compilador Visual C++.",
|
||||
"lldb.find.failed": "Falta la dependencia \"{0}\" para el ejecutable lldb-mi.",
|
||||
"lldb.search.paths": "Buscado en:",
|
||||
"lldb.install.help": "Para resolver este problema, instale XCode mediante App Store de Apple o instale las herramientas de línea de comandos de XCode ejecutando \"{0}\" en una ventana de terminal.",
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* 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.
|
||||
{
|
||||
"no.context.provided": "No se proporcionó ningún contexto",
|
||||
"not.windows": "El comando \"Configurar el entorno de desarrollador de Visual Studio\" solo está disponible en Windows",
|
||||
"error.no.vs": "No se encontró una instalación de Visual Studio con el compilador C++",
|
||||
"operation.cancelled": "Se canceló la operación",
|
||||
"no.hosts": "No se han encontrado hosts",
|
||||
"config.dev.env": "Configurando el entorno de desarrollador...",
|
||||
"select.vs.install": "Seleccione una instalación de Visual Studio",
|
||||
"advanced.options": "Opciones avanzadas...",
|
||||
"advanced.options.desc": "Seleccione un host específico y la arquitectura de destino, la versión del conjunto de herramientas, etc.",
|
||||
"select.toolset": "Seleccionar una versión del conjunto de herramientas",
|
||||
"select.host.target": "Seleccione un host y una arquitectura de destino",
|
||||
"something.wrong": "Algo ha ido mal: {0}",
|
||||
"dev.env.for": "{0} entorno de desarrollador para {1}",
|
||||
"default.env": "Entorno predeterminado para {0}",
|
||||
"host.target": "host = {0}, destino = {1}"
|
||||
}
|
||||
@@ -46,7 +46,7 @@
|
||||
"aborting_tag_parse_at_root": "Anulando el análisis de etiquetas en el directorio raíz",
|
||||
"unable_to_retrieve_to_reset_timestamps": "No se pueden recuperar los registros de la base de datos para restablecer las marcas de tiempo. Error = {0}",
|
||||
"failed_to_reset_timestamps_for": "No se pudo restablecer la marca de tiempo de {0}. Error = {1}",
|
||||
"no_suitable_complier": "No se encontró ningún compilador adecuado. Establezca \"compilerPath\" en c_cpp_properties.json.",
|
||||
"no_suitable_compiler": "No se encontró ningún compilador adecuado. Establezca \"compilerPath\" en c_cpp_properties.json.",
|
||||
"compiler_include_not_found": "No se encontró la ruta de acceso de inclusión del compilador: {0}",
|
||||
"intellisense_not_responding": "El motor de IntelliSense no responde. Se usará el analizador de etiquetas en su lugar.",
|
||||
"tag_parser_will_be_used": "Se usará el analizador de etiquetas para las operaciones de IntelliSense en {0}",
|
||||
|
||||
+10
-4
@@ -4,8 +4,14 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"walkthrough.windows.title.open.dev.command.prompt": "Volver a iniciar con el {0}",
|
||||
"walkthrough.windows.background.dev.command.prompt": " Está usando una máquina Windows con el compilador de MSVC, por lo que debe iniciar VS Code desde el {0} para que todas las variables de entorno se establezcan correctamente. Para volver a iniciar con el {1}:",
|
||||
"walkthrough.open.command.prompt": "Abra {0} escribiendo '{1}' en el menú Inicio de Windows. Selecciona el {2}, que irá automáticamente a la carpeta abierta actual.",
|
||||
"walkthrough.windows.press.f5": "Escriba '{0}' en el símbolo del sistema y pulse Entrar. Esto debería reiniciar VS Code y hacerte volver a este tutorial. "
|
||||
"walkthrough.windows.title.apply.dev.env": "Aplicar el entorno de desarrollo de Visual Studio",
|
||||
"walkthrough.windows.dev.env.required": "El compilador Visual Studio C++ requiere que se configuren varias variables de entorno para poder compilar correctamente el código. Si utiliza un equipo Windows con el compilador Visual Studio C++, hay dos formas de asegurarse de que se aplique el entorno.",
|
||||
"walkthrough.windows.do.one": " Solo tiene que realizar una de las siguientes acciones:",
|
||||
"walkthrough.windows.run.dev.command": "Ejecute el comando {0}",
|
||||
"walkthrough.windows.set.dev.environment": "C/C++: Configurar el entorno de desarrollador de Visual Studio",
|
||||
"walkthrough.windows.start.from.dev.command": "Inicie el VS Code desde el {0}",
|
||||
"walkthrough.windows.relaunch.command.prompt": "Para volver a iniciar VS Code con el {0}",
|
||||
"walkthrough.close.vscode": "Cierre la instancia actual de VS Code.",
|
||||
"walkthrough.open.command.prompt": "Abra el {0} escribiendo {1} en el menú Inicio de Windows, y luego seleccione el {2}.",
|
||||
"walkthrough.windows.press.f5": "Escriba {0} en el símbolo del sistema y pulse Intro. Esto debería reiniciar VS Code en la misma área de trabajo y llevarlo de vuelta a este tutorial."
|
||||
}
|
||||
+2
-4
@@ -16,8 +16,6 @@
|
||||
"walkthrough.windows.link.install": "Instalar",
|
||||
"walkthrough.windows.note1": "Nota",
|
||||
"walkthrough.windows.note1.text": "Puede usar el conjunto de herramientas de C++ de Visual Studio Build Tools junto con Visual Studio Code para compilar y comprobar cualquier código base de C++, siempre que también tenga una licencia de Visual Studio válida (Community, Pro o Enterprise) que esté usando de manera activa para desarrollar ese código base de C++.",
|
||||
"walkthrough.windows.open.command.prompt": "Abra {0} escribiendo '{1}' en el menú Inicio de Windows.",
|
||||
"walkthrough.windows.check.install": "Compruebe la instalación de MSVC escribiendo {0} en {1}. Debería ver un mensaje de copyright con la versión y la descripción de uso básica.",
|
||||
"walkthrough.windows.note2": "Nota",
|
||||
"walkthrough.windows.note2.text": "Para usar MSVC desde la línea de comandos o VS Code, debe ejecutar desde un {0}. Un shell normal como {1}, {2}, o el símbolo del sistema de Windows no tiene establecidas las variables de entorno de ruta de acceso necesarias."
|
||||
"walkthrough.windows.open.command.prompt": "Abra el {0} escribiendo {1} en el menú Inicio de Windows.",
|
||||
"walkthrough.windows.check.install": "Compruebe la instalación de MSVC escribiendo {0} en {1}. Debería ver un mensaje de copyright con la versión y la descripción de uso básica."
|
||||
}
|
||||
+1
-3
@@ -10,10 +10,8 @@
|
||||
"walkthrough.windows.note1": "Nota",
|
||||
"walkthrough.windows.note1.text": "Puede usar el conjunto de herramientas de C++ de Visual Studio Build Tools junto con Visual Studio Code para compilar y comprobar cualquier código base de C++, siempre que también tenga una licencia de Visual Studio válida (Community, Pro o Enterprise) que esté usando de manera activa para desarrollar ese código base de C++.",
|
||||
"walkthrough.windows.verify.compiler": "Comprobación de la instalación del compilador",
|
||||
"walkthrough.windows.open.command.prompt": "Abra {0} escribiendo '{1}' en el menú Inicio de Windows.",
|
||||
"walkthrough.windows.open.command.prompt": "Abra el {0} escribiendo {1} en el menú Inicio de Windows.",
|
||||
"walkthrough.windows.check.install": "Compruebe la instalación de MSVC escribiendo {0} en {1}. Debería ver un mensaje de copyright con la versión y la descripción de uso básica.",
|
||||
"walkthrough.windows.note2": "Nota",
|
||||
"walkthrough.windows.note2.text": "Para usar MSVC desde la línea de comandos o VS Code, debe ejecutar desde un {0}. Un shell normal como {1}, {2}, o el símbolo del sistema de Windows no tiene establecidas las variables de entorno de ruta de acceso necesarias.",
|
||||
"walkthrough.windows.other.compilers": "Otras opciones del compilador",
|
||||
"walkthrough.windows.text3": "Si su objetivo es Linux desde Windows, consulte {0}. O bien, consulte {1}.",
|
||||
"walkthrough.windows.link.title1": "Uso de C++ y Subsistema de Windows para Linux (WSL) en VS Code",
|
||||
|
||||
+1
-3
@@ -10,10 +10,8 @@
|
||||
"walkthrough.windows.note1": "Nota",
|
||||
"walkthrough.windows.note1.text": "Puede usar el conjunto de herramientas de C++ de Visual Studio Build Tools junto con Visual Studio Code para compilar y comprobar cualquier código base de C++, siempre que también tenga una licencia de Visual Studio válida (Community, Pro o Enterprise) que esté usando de manera activa para desarrollar ese código base de C++.",
|
||||
"walkthrough.windows.verify.compiler": "Comprobación de la instalación del compilador",
|
||||
"walkthrough.windows.open.command.prompt": "Abra {0} escribiendo '{1}' en el menú Inicio de Windows.",
|
||||
"walkthrough.windows.open.command.prompt": "Abra el {0} escribiendo {1} en el menú Inicio de Windows.",
|
||||
"walkthrough.windows.check.install": "Compruebe la instalación de MSVC escribiendo {0} en {1}. Debería ver un mensaje de copyright con la versión y la descripción de uso básica.",
|
||||
"walkthrough.windows.note2": "Nota",
|
||||
"walkthrough.windows.note2.text": "Para usar MSVC desde la línea de comandos o VS Code, debe ejecutar desde un {0}. Un shell normal como {1}, {2}, o el símbolo del sistema de Windows no tiene establecidas las variables de entorno de ruta de acceso necesarias.",
|
||||
"walkthrough.windows.other.compilers": "Otras opciones del compilador",
|
||||
"walkthrough.windows.text3": "Si su objetivo es Linux desde Windows, consulte {0}. O bien, consulte {1}.",
|
||||
"walkthrough.windows.link.title1": "Uso de C++ y Subsistema de Windows para Linux (WSL) en VS Code",
|
||||
|
||||
@@ -42,6 +42,8 @@
|
||||
"c_cpp.command.RemoveAllCodeAnalysisProblems.title": "Effacer tous les problèmes d’analyse du code",
|
||||
"c_cpp.command.BuildAndDebugFile.title": "Déboguer le fichier C/C++",
|
||||
"c_cpp.command.BuildAndRunFile.title": "Exécuter le fichier C/C++",
|
||||
"c_cpp.command.SetVsDeveloperEnvironment.title": "Définir l’environnement de développeur Visual Studio",
|
||||
"c_cpp.command.ClearVsDeveloperEnvironment.title": "Effacer l’environnement de développeur Visual Studio",
|
||||
"c_cpp.command.AddDebugConfiguration.title": "Ajouter une configuration de débogage",
|
||||
"c_cpp.command.GenerateDoxygenComment.title": "Générer un commentaire Doxygen",
|
||||
"c_cpp.command.addSshTarget.title": "Ajouter une cible SSH",
|
||||
@@ -104,11 +106,11 @@
|
||||
"c_cpp.configuration.vcFormat.indent.caseContentsWhenBlock.markdownDescription": "Mettez en retrait les accolades qui suivent une instruction case en fonction de la quantité spécifiée dans le paramètre `#editor.tabSize#`.",
|
||||
"c_cpp.configuration.vcFormat.indent.lambdaBracesWhenParameter.markdownDescription": "Mettre en retrait les accolades des expressions lambda utilisées comme paramètres de fonction par rapport au début de l’instruction par la quantité spécifiée dans le paramètre `#editor.tabSize#`.",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.description": "Position des étiquettes goto.",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.oneLeft.markdownDescription": "Positionne les étiquettes goto à gauche de l'indentation actuelle du code, de la quantité spécifiée dans le paramètre `#editor.tabSize#`.",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.oneLeft.markdownDescription": "Positionne les étiquettes goto à gauche de la mise en retrait actuelle du code, de la valeur spécifiée dans le paramètre `#editor.tabSize#`.",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.leftmostColumn.markdownDescription": "Placez les étiquettes goto sur le bord le plus à gauche du code.",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.none.markdownDescription": "Les étiquettes goto ne sont pas mises en forme.",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.description": "Position des directives de préprocesseur.",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.oneLeft.markdownDescription": "Les directives de préprocesseur sont positionnées à gauche de la mise en retrait du code actuel, selon la quantité spécifiée dans le paramètre `#editor.tabSize#`.",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.oneLeft.markdownDescription": "Les directives de préprocesseur sont positionnées à gauche de la mise en retrait actuelle du code, selon la valeur spécifiée dans le paramètre `#editor.tabSize#`.",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.leftmostColumn.markdownDescription": "Les directives de préprocesseur sont placées sur le bord le plus à gauche du code.",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.none.markdownDescription": "Les directives de préprocesseur ne sont pas mises en forme.",
|
||||
"c_cpp.configuration.vcFormat.indent.accessSpecifiers.markdownDescription": "Les spécificateurs d'accès sont indentés par rapport aux définitions de classes ou de structures de la quantité spécifiée dans le paramètre `#editor.tabSize#`.",
|
||||
@@ -191,12 +193,12 @@
|
||||
"c_cpp.configuration.inactiveRegionOpacity.markdownDescription": "Contrôle l'opacité des blocs inactifs du préprocesseur. L'échelle est comprise entre `0.1` et `1.0`. Ce paramètre ne s'applique que lorsque la gradation des régions inactives est activée.",
|
||||
"c_cpp.configuration.inactiveRegionForegroundColor.description": "Contrôle la coloration de la police des blocs de préprocesseur inactifs. L'entrée se présente sous la forme d'un code de couleur hexadécimal ou d'une couleur de thème valide. Si ce paramètre n'est pas défini, la valeur par défaut est le schéma de coloration de syntaxe de l'éditeur. Ce paramètre s'applique uniquement quand l'estompage des régions inactives est activé.",
|
||||
"c_cpp.configuration.inactiveRegionBackgroundColor.description": "Contrôle la coloration d'arrière-plan des blocs de préprocesseur inactifs. L'entrée se présente sous la forme d'un code de couleur hexadécimal ou d'une couleur de thème valide. Si ce paramètre n'est pas défini, la valeur par défaut est Transparent. Ce paramètre s'applique uniquement quand l'estompage des régions inactives est activé.",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.enabled.markdownDescription": "Afficher les indicateurs d’inlay pour le type déduit quand `auto` est utilisé dans une déclaration :\n```cpp \n\n auto index /* : int */ = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.showOnLeft.markdownDescription": "Afficher les indicateurs d’inlay pour le type déduit quand `auto` est utilisé dans une déclaration à gauche de l’identificateur :\n```cpp \n\n auto /* int */ index = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.enabled.markdownDescription": "Afficher des indicateurs d’inlay pour les noms de paramètres :\n```cpp \n\n int a = getArea(/* width: */ x, /* height: */ y);\n```",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.enabled.markdownDescription": "Afficher les hints incrustés pour le type déduit quand `auto` est utilisé dans une déclaration :\n```cpp \n\n auto index /* : int */ = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.showOnLeft.markdownDescription": "Afficher les hints incrustés pour le type déduit quand `auto` est utilisé dans une déclaration à gauche de l’identificateur :\n```cpp \n\n auto /* int */ index = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.enabled.markdownDescription": "Afficher des hints incrustés pour les noms de paramètres :\n```cpp \n\n int a = getArea(/* width: */ x, /* height: */ y);\n```",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.hideLeadingUnderscores.markdownDescription": "Masquez `_` principal dans les indicateurs de nom de paramètre.",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.suppressWhenArgumentContainsName.markdownDescription": "Supprimez les indicateurs de nom de paramètre lorsque le texte de l’argument ou le commentaire inline contient le nom du paramètre :\n```cpp \n\n int a = getArea(width, /* height: */ y);\n```",
|
||||
"c_cpp.configuration.inlayHints.referenceOperator.enabled.markdownDescription": "Afficher l’opérateur de référence d’indicateur d’inlay `&` pour les paramètres passés par une référence non const :\n```cpp \n\n swap(/* &first: */ str1, /* &last: */ str2);\n```",
|
||||
"c_cpp.configuration.inlayHints.referenceOperator.enabled.markdownDescription": "Afficher l’opérateur de référence d’hint incrusté `&` pour les paramètres passés par une référence non const :\n```cpp \n\n swap(/* &first: */ str1, /* &last: */ str2);\n```",
|
||||
"c_cpp.configuration.inlayHints.referenceOperator.showSpace.markdownDescription": "Contrôle si un espace est affiché après `&` pour les paramètres passés par référence non-const.\n```cpp \n\n swap(/* & first: */ str1, /* & last: */ str2);\n```",
|
||||
"c_cpp.configuration.loggingLevel.markdownDescription": "La verbosité de la journalisation dans le panneau de sortie. L'ordre des niveaux du moins verbeux au plus verbeux est : `None` < `Error` < `Warning` < `Information` < `Debug`.",
|
||||
"c_cpp.configuration.autoAddFileAssociations.markdownDescription": "Contrôle si les fichiers sont automatiquement ajoutés à `#files.associations#` lorsqu'ils sont la cible d'une opération de navigation depuis un fichier C/C++.",
|
||||
@@ -269,6 +271,7 @@
|
||||
"c_cpp.contributes.views.sshTargetsView.title": "Cpptools : cibles SSH",
|
||||
"c_cpp.contributes.viewsWelcome.contents": "Pour en savoir plus sur launch.json, consultez [Configuration du débogage C/C++](https://code.visualstudio.com/docs/cpp/launch-json-reference).",
|
||||
"c_cpp.configuration.debugShortcut.description": "Afficher le bouton de lecture « Exécuter et déboguer » et l’engrenage « Ajouter une configuration de débogage » dans la barre de titre de l’éditeur pour les fichiers C++.",
|
||||
"c_cpp.configuration.persistVsDeveloperEnvironment.description": "Mémoriser le dernier environnement de développement Visual Studio utilisé pour l’espace de travail actuel. Ce paramètre s’applique uniquement à Windows.",
|
||||
"c_cpp.debuggers.pipeTransport.description": "Quand ce paramètre est présent, indique au débogueur de se connecter à un ordinateur distant en se servant d'un autre exécutable comme canal de relais d'entrée/de sortie standard entre VS Code et l'exécutable du back-end du débogueur MI (par exemple, gdb).",
|
||||
"c_cpp.debuggers.pipeTransport.default.pipeProgram": "entrez le chemin d’accès complet pour le nom du programme de canal, par exemple « /usr/bin/ssh ».",
|
||||
"c_cpp.debuggers.pipeTransport.default.debuggerPath": "Chemin complet du débogueur sur la machine cible, par exemple /usr/bin/gdb.",
|
||||
@@ -428,8 +431,8 @@
|
||||
"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 Developer Command Prompt for VS",
|
||||
"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 Developer Command Prompt for VS. Suivez les instructions à droite pour relancer.\n[Recharger la fenêtre](command:workbench.action.reloadWindow)",
|
||||
"c_cpp.walkthrough.command.prompt.title": "Appliquer l’environnement de développeur Visual Studio",
|
||||
"c_cpp.walkthrough.command.prompt.description": "Lorsque vous utilisez le compilateur Microsoft Visual Studio C++, l’environnement de développeur Visual Studio doit être présent.\n\nSuivez les instructions sur la droite pour relancer ou cliquez sur le bouton ci-dessous.\n[Définir l’environnement développeur](command:C_Cpp.SetVsDeveloperEnvironment?%22walkthrough%22)",
|
||||
"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.",
|
||||
|
||||
@@ -17,7 +17,12 @@
|
||||
"pre.Launch.Task": "tâche de prélancement : {0}",
|
||||
"debugger.path.not.exists": "Impossible de trouver le débogueur {0}. La configuration de débogage pour {1} est ignorée.",
|
||||
"build.and.debug.active.file": "Générer et déboguer le fichier actif",
|
||||
"cl.exe.not.available": "{0} est utilisable uniquement lorsque VS Code est exécuté à partir du {1}.",
|
||||
"apply.dev.env": "Appliquer l’environnement de développeur",
|
||||
"cl.exe.not.available": "{0} nécessite l’environnement de développeur Visual Studio.",
|
||||
"update.dev.env": "Mettre à jour l’environnement de développeur",
|
||||
"cancel": "Annuler",
|
||||
"dev.env.not.applied": "Impossible de générer le code source, car l’environnement de développeur Visual Studio n’a pas été appliqué.",
|
||||
"dev.env.not.found": "Impossible de générer le code source, car le compilateur Visual C++ est introuvable.",
|
||||
"lldb.find.failed": "La dépendance '{0}' est manquante pour l'exécutable lldb-mi.",
|
||||
"lldb.search.paths": "Recherche effectuée dans :",
|
||||
"lldb.install.help": "Pour résoudre ce problème, installez XCode via l'Apple App Store ou installez les outils en ligne de commande XCode en exécutant '{0}' dans une fenêtre de terminal.",
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* 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.
|
||||
{
|
||||
"no.context.provided": "Aucun contexte fourni",
|
||||
"not.windows": "La commande « Définir l’environnement de développeur Visual Studio » est disponible uniquement sur Windows",
|
||||
"error.no.vs": "Aucune installation Visual Studio avec le compilateur C++ n’a été trouvée",
|
||||
"operation.cancelled": "L’opération a été annulée",
|
||||
"no.hosts": "Aucun hôte trouvé",
|
||||
"config.dev.env": "Configuration de l’environnement de développeur...",
|
||||
"select.vs.install": "Sélectionnez une installation de Visual Studio",
|
||||
"advanced.options": "Options avancées...",
|
||||
"advanced.options.desc": "Sélectionnez une architecture hôte et cible spécifique, une version de l’ensemble d’outils, etc.",
|
||||
"select.toolset": "Sélectionnez une version d’ensemble d’outils",
|
||||
"select.host.target": "Sélectionnez une architecture hôte et cible",
|
||||
"something.wrong": "Une erreur s'est produite : {0}",
|
||||
"dev.env.for": "Environnement de développeur {0} pour {1}",
|
||||
"default.env": "Environnement par défaut pour {0}",
|
||||
"host.target": "hôte = {0}, cible = {1}"
|
||||
}
|
||||
@@ -46,7 +46,7 @@
|
||||
"aborting_tag_parse_at_root": "Annulation de l'analyse des balises à la racine",
|
||||
"unable_to_retrieve_to_reset_timestamps": "Impossible de récupérer les enregistrements de base de données pour réinitialiser les horodatages : erreur = {0}",
|
||||
"failed_to_reset_timestamps_for": "La réinitialisation de l'horodatage a échoué pour {0} : erreur = {1}",
|
||||
"no_suitable_complier": "Aucun compilateur approprié. Définissez \"compilerPath\" dans c_cpp_properties.json.",
|
||||
"no_suitable_compiler": "Aucun compilateur approprié. Définissez \"compilerPath\" dans c_cpp_properties.json.",
|
||||
"compiler_include_not_found": "Le chemin d'inclusion du compilateur est introuvable : {0}",
|
||||
"intellisense_not_responding": "Le moteur IntelliSense ne répond pas. Utilisation de l'analyseur de balises à la place.",
|
||||
"tag_parser_will_be_used": "L'analyseur de balises est utilisé pour les opérations IntelliSense dans {0}",
|
||||
|
||||
+10
-4
@@ -4,8 +4,14 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"walkthrough.windows.title.open.dev.command.prompt": "Relancer à l’aide du {0}",
|
||||
"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’{0} pour que toutes les variables d’environnement soient correctement définies. Pour relancer en tirant parti de l’{1} :",
|
||||
"walkthrough.open.command.prompt": "Ouvrez le {0} en tapant « {1} » dans le menu Démarrer de Windows. Sélectionnez le {2}, qui accède automatiquement à votre dossier ouvert actuel.",
|
||||
"walkthrough.windows.press.f5": "Tapez « {0} » dans l’invite de commandes et appuyez sur Entrée. Vous devriez relancer VS Code et revenir à cette procédure pas à pas. "
|
||||
"walkthrough.windows.title.apply.dev.env": "Appliquer l’environnement de développeur Visual Studio",
|
||||
"walkthrough.windows.dev.env.required": "Le compilateur C++ Visual Studio requiert la définition de plusieurs variables d’environnement afin de compiler correctement votre code. Si vous utilisez un ordinateur Windows avec le compilateur Visual Studio C++, vous pouvez vous assurer que l’environnement est appliqué de deux façons.",
|
||||
"walkthrough.windows.do.one": " Vous n’avez besoin que de l’une des opérations suivantes :",
|
||||
"walkthrough.windows.run.dev.command": "Exécuter la commande {0}",
|
||||
"walkthrough.windows.set.dev.environment": "C/C++ : définir l’environnement de développeur Visual Studio",
|
||||
"walkthrough.windows.start.from.dev.command": "Démarrez VS Code à partir du {0}",
|
||||
"walkthrough.windows.relaunch.command.prompt": "Pour relancer VS Code à l’aide du {0}",
|
||||
"walkthrough.close.vscode": "Fermez l’instance actuelle de VS Code.",
|
||||
"walkthrough.open.command.prompt": "Ouvrez le {0} en tapant {1} dans le menu Démarrer Windows, puis sélectionnez le {2}.",
|
||||
"walkthrough.windows.press.f5": "Tapez {0} dans l’invite de commandes et appuyez sur Entrée. Cela doit relancer VS Code dans le même espace de travail et vous rediriger vers cette procédure pas à pas."
|
||||
}
|
||||
+2
-4
@@ -16,8 +16,6 @@
|
||||
"walkthrough.windows.link.install": "Installer",
|
||||
"walkthrough.windows.note1": "Remarque",
|
||||
"walkthrough.windows.note1.text": "Vous pouvez utiliser l’ensemble d’outils C++ à partir de Visual Studio Build Tools avec Visual Studio Code pour compiler, générer et vérifier n’importe quelle base de code C++, tant que vous disposez également d’une licence Visual Studio valide (Community, Pro ou Enterprise) que vous utilisez activement pour développer cette base de code C++.",
|
||||
"walkthrough.windows.open.command.prompt": "Ouvrez le {0} en tapant « {1} » dans le menu Démarrer de Windows.",
|
||||
"walkthrough.windows.check.install": "Vérifiez votre installation MSVC en tapant {0} dans le {1}. Vous devez voir un message de Copyright avec la version et la description de l’utilisation de base.",
|
||||
"walkthrough.windows.note2": "Remarque",
|
||||
"walkthrough.windows.note2.text": "Pour utiliser MSVC à partir de la ligne de commande ou VS Code, vous devez exécuter à partir d’un {0}. Un interpréteur de commandes ordinaire, tel que {1}, {2} ou l’invite de commandes Windows, n’a pas les variables d’environnement de chemin d’accès nécessaires définies."
|
||||
"walkthrough.windows.open.command.prompt": "Ouvrez le {0} en tapant {1} dans le menu Démarrer de Windows.",
|
||||
"walkthrough.windows.check.install": "Vérifiez votre installation MSVC en tapant {0} dans le {1}. Vous devez voir un message de Copyright avec la version et la description de l’utilisation de base."
|
||||
}
|
||||
+1
-3
@@ -10,10 +10,8 @@
|
||||
"walkthrough.windows.note1": "Remarque",
|
||||
"walkthrough.windows.note1.text": "Vous pouvez utiliser l’ensemble d’outils C++ à partir de Visual Studio Build Tools avec Visual Studio Code pour compiler, générer et vérifier n’importe quelle base de code C++, tant que vous disposez également d’une licence Visual Studio valide (Community, Pro ou Enterprise) que vous utilisez activement pour développer cette base de code C++.",
|
||||
"walkthrough.windows.verify.compiler": "Vérification de l’installation du compilateur",
|
||||
"walkthrough.windows.open.command.prompt": "Ouvrez le {0} en tapant « {1} » dans le menu Démarrer de Windows.",
|
||||
"walkthrough.windows.open.command.prompt": "Ouvrez le {0} en tapant {1} dans le menu Démarrer de Windows.",
|
||||
"walkthrough.windows.check.install": "Vérifiez votre installation MSVC en tapant {0} dans le {1}. Vous devez voir un message de Copyright avec la version et la description de l’utilisation de base.",
|
||||
"walkthrough.windows.note2": "Remarque",
|
||||
"walkthrough.windows.note2.text": "Pour utiliser MSVC à partir de la ligne de commande ou VS Code, vous devez exécuter à partir d’un {0}. Un interpréteur de commandes ordinaire, tel que {1}, {2} ou l’invite de commandes Windows, n’a pas les variables d’environnement de chemin d’accès nécessaires définies.",
|
||||
"walkthrough.windows.other.compilers": "Autres options du compilateur",
|
||||
"walkthrough.windows.text3": "Si vous ciblez Linux à partir de Windows, consultez {0}. Vous pouvez également {1}.",
|
||||
"walkthrough.windows.link.title1": "Utilisation de C++ et du Sous-système Windows pour Linux (WSL) dans VS Code",
|
||||
|
||||
+1
-3
@@ -10,10 +10,8 @@
|
||||
"walkthrough.windows.note1": "Remarque",
|
||||
"walkthrough.windows.note1.text": "Vous pouvez utiliser l’ensemble d’outils C++ à partir de Visual Studio Build Tools avec Visual Studio Code pour compiler, générer et vérifier n’importe quelle base de code C++, tant que vous disposez également d’une licence Visual Studio valide (Community, Pro ou Enterprise) que vous utilisez activement pour développer cette base de code C++.",
|
||||
"walkthrough.windows.verify.compiler": "Vérification de l’installation du compilateur",
|
||||
"walkthrough.windows.open.command.prompt": "Ouvrez le {0} en tapant « {1} » dans le menu Démarrer de Windows.",
|
||||
"walkthrough.windows.open.command.prompt": "Ouvrez le {0} en tapant {1} dans le menu Démarrer de Windows.",
|
||||
"walkthrough.windows.check.install": "Vérifiez votre installation MSVC en tapant {0} dans le {1}. Vous devez voir un message de Copyright avec la version et la description de l’utilisation de base.",
|
||||
"walkthrough.windows.note2": "Remarque",
|
||||
"walkthrough.windows.note2.text": "Pour utiliser MSVC à partir de la ligne de commande ou VS Code, vous devez exécuter à partir d’un {0}. Un interpréteur de commandes ordinaire, tel que {1}, {2} ou l’invite de commandes Windows, n’a pas les variables d’environnement de chemin d’accès nécessaires définies.",
|
||||
"walkthrough.windows.other.compilers": "Autres options du compilateur",
|
||||
"walkthrough.windows.text3": "Si vous ciblez Linux à partir de Windows, consultez {0}. Vous pouvez également {1}.",
|
||||
"walkthrough.windows.link.title1": "Utilisation de C++ et du Sous-système Windows pour Linux (WSL) dans VS Code",
|
||||
|
||||
@@ -42,6 +42,8 @@
|
||||
"c_cpp.command.RemoveAllCodeAnalysisProblems.title": "Cancellare tutti i problemi di analisi codice",
|
||||
"c_cpp.command.BuildAndDebugFile.title": "Debug file C/C++",
|
||||
"c_cpp.command.BuildAndRunFile.title": "Esegui file C/C++",
|
||||
"c_cpp.command.SetVsDeveloperEnvironment.title": "Impostare l'ambiente di sviluppo Visual Studio",
|
||||
"c_cpp.command.ClearVsDeveloperEnvironment.title": "Cancellare l'ambiente di sviluppo Visual Studio",
|
||||
"c_cpp.command.AddDebugConfiguration.title": "Aggiungere configurazione di debug",
|
||||
"c_cpp.command.GenerateDoxygenComment.title": "Genera commento Doxygen",
|
||||
"c_cpp.command.addSshTarget.title": "Aggiungi destinazione SSH",
|
||||
@@ -104,7 +106,7 @@
|
||||
"c_cpp.configuration.vcFormat.indent.caseContentsWhenBlock.markdownDescription": "Imposta un rientro per le parentesi graffe dopo un'istruzione case in base al valore specificato nell'impostazione `#editor.tabSize#`.",
|
||||
"c_cpp.configuration.vcFormat.indent.lambdaBracesWhenParameter.markdownDescription": "Imposta un rientro per le parentesi graffe delle funzioni lambda usate come parametri di funzione rispetto all'inizio dell'istruzione in base al valore specificato nell'impostazione `#editor.tabSize#`.",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.description": "Posizione delle etichette GoTo.",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.oneLeft.markdownDescription": "Posiziona le etichette GoTo a sinistra del rientro del codice corrente in base al valore specificato nell'impostazione `#editor.tabSize#`.",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.oneLeft.markdownDescription": "Posizionare le etichette GoTo a sinistra del rientro del codice corrente in base al valore specificato nell'impostazione `#editor.tabSize#`.",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.leftmostColumn.markdownDescription": "Posiziona le etichette goto in corrispondenza del bordo più a sinistra del codice.",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.none.markdownDescription": "Le etichette goto non verranno formattate.",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.description": "Posizione delle direttive del preprocessore.",
|
||||
@@ -191,12 +193,12 @@
|
||||
"c_cpp.configuration.inactiveRegionOpacity.markdownDescription": "Controlla l'opacità dei blocchi del preprocessore inattivi. Può essere impostata su un valore compreso tra `0,1` e `1,0`. Questa impostazione viene applicata solo se è abilitata l'attenuazione delle aree inattive.",
|
||||
"c_cpp.configuration.inactiveRegionForegroundColor.description": "Controlla la colorazione dei caratteri dei blocchi del preprocessore inattivi. L'input è costituito da codice a colori esadecimale o da un colore del tema valido. Se non è impostata, per impostazione predefinita viene usato lo schema di colorazione della sintassi dell'editor. Questa impostazione viene applicata solo se è abilitata l'attenuazione delle aree inattive.",
|
||||
"c_cpp.configuration.inactiveRegionBackgroundColor.description": "Controlla la colorazione di sfondo dei blocchi del preprocessore inattivi. L'input è costituito da codice a colori esadecimale o da un colore del tema valido. Se non è impostata, l'impostazione predefinita è trasparente. Questa impostazione viene applicata solo se è abilitata l'attenuazione delle aree inattive.",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.enabled.markdownDescription": "Visualizza i suggerimenti di inlay per il tipo dedotto quando in una dichiarazione viene usato `auto`:\n```cpp \n\n auto index /* : int */ = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.showOnLeft.markdownDescription": "Visualizza i suggerimenti di inlay per il tipo dedotto quando in una dichiarazione viene usato `auto` a sinistra dell'identificatore:\n```cpp \n\n auto /* int */ index = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.enabled.markdownDescription": "Visualizza i suggerimenti di inlay per i nomi del parametro:\n```cpp \n\n int a = getArea(/* width: */ x, /* height: */ y);\n```",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.enabled.markdownDescription": "Visualizza i suggerimenti per l'inlay per il tipo dedotto quando in una dichiarazione viene usato `auto`:\n```cpp \n\n auto index /* : int */ = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.showOnLeft.markdownDescription": "Visualizza i suggerimenti per l'inlay per il tipo dedotto quando in una dichiarazione viene usato `auto` a sinistra dell'identificatore:\n```cpp \n\n auto /* int */ index = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.enabled.markdownDescription": "Visualizza i suggerimenti per l'inlay per i nomi del parametro:\n```cpp \n\n int a = getArea(/* width: */ x, /* height: */ y);\n```",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.hideLeadingUnderscores.markdownDescription": "Nascondere il carattere `_` iniziale nei suggerimenti per i nomi di parametro.",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.suppressWhenArgumentContainsName.markdownDescription": "Elimina i suggerimenti per il nome del parametro quando il testo dell'argomento o il commento inline contiene il nome del parametro:\n```cpp \n\n int a = getArea(width, /* height: */ y);\n```",
|
||||
"c_cpp.configuration.inlayHints.referenceOperator.enabled.markdownDescription": "Visualizza l'operatore di riferimento del suggerimento di inlay `&` per i parametri passati dal riferimento non-const:\n```cpp \n\n swap(/* &first: */ str1, /* &last: */ str2);\n```",
|
||||
"c_cpp.configuration.inlayHints.referenceOperator.enabled.markdownDescription": "Visualizza l'operatore di riferimento del suggerimento per l'inlay `&` per i parametri passati dal riferimento non-const:\n```cpp \n\n swap(/* &first: */ str1, /* &last: */ str2);\n```",
|
||||
"c_cpp.configuration.inlayHints.referenceOperator.showSpace.markdownDescription": "Controlla se viene visualizzato uno spazio dopo `&` per i parametri passati dal riferimento non-const:\n```cpp \n\n swap(/* & first: */ str1, /* & last: */ str2);\n```",
|
||||
"c_cpp.configuration.loggingLevel.markdownDescription": "Livello di dettaglio della registrazione nel pannello di output. L'ordine dei livelli da meno dettagliato a più dettagliato è: `None` < `Error` < `Warning` < `Information` < `Debug`.",
|
||||
"c_cpp.configuration.autoAddFileAssociations.markdownDescription": "Controlla se i file vengono aggiunti automaticamente a `files.associations` quando sono la destinazione di un'operazione di spostamento da un file C/C++.",
|
||||
@@ -269,6 +271,7 @@
|
||||
"c_cpp.contributes.views.sshTargetsView.title": "Cpptools: destinazioni SSH",
|
||||
"c_cpp.contributes.viewsWelcome.contents": "Per altre informazioni su launch.json, vedere [Configurazione del debug C/C++](https://code.visualstudio.com/docs/cpp/launch-json-reference).",
|
||||
"c_cpp.configuration.debugShortcut.description": "Mostrare il pulsante di riproduzione \"Esegui ed esegui debug\" e l'ingranaggio \"Aggiungi configurazione di debug\" nella barra del titolo dell'editor per i file C++.",
|
||||
"c_cpp.configuration.persistVsDeveloperEnvironment.description": "Ricordare l'ultimo ambiente di sviluppo Visual Studio usato per l'area di lavoro corrente. Questa impostazione è applicabile solo per Windows.",
|
||||
"c_cpp.debuggers.pipeTransport.description": "Se presente, indica al debugger di connettersi a un computer remoto usando come pipe un altro eseguibile che inoltra l'input/output standard tra VS Code e l'eseguibile back-end del debugger abilitato per MI, ad esempio gdb.",
|
||||
"c_cpp.debuggers.pipeTransport.default.pipeProgram": "immettere il percorso assoluto per il nome del programma pipe, ad esempio '/usr/bin/ssh'.",
|
||||
"c_cpp.debuggers.pipeTransport.default.debuggerPath": "Percorso completo del debugger nel computer di destinazione, ad esempio /usr/bin/gdb.",
|
||||
@@ -417,7 +420,7 @@
|
||||
"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.walkthrough.title": "Introduzione allo sviluppo C++",
|
||||
"c_cpp.walkthrough.title": "Introduzione allo sviluppo in 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...",
|
||||
@@ -428,8 +431,8 @@
|
||||
"c_cpp.walkthrough.create.cpp.file.title": "Creare un file C++",
|
||||
"c_cpp.walkthrough.create.cpp.file.description": "[Apri](command:toSide:workbench.action.files.openFile) o [Crea](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) un file C++. Assicurati di salvarlo con l'estensione \".cpp\", ad esempio \"helloworld.cpp\". \n[Crea 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": "Avvia dal Developer Command Prompt for VS",
|
||||
"c_cpp.walkthrough.command.prompt.description": "Nell'ambito dell'utilizzo del compilatore C++ di Microsoft Visual Studio C++, l'estensione C++ richiede di avviare VS Code dal Developer Command Prompt for VS. Seguire le istruzioni a destra per riavviare.\n[Ricarica finestra](command:workbench.action.reloadWindow)",
|
||||
"c_cpp.walkthrough.command.prompt.title": "Applicare l'ambiente di sviluppo Visual Studio",
|
||||
"c_cpp.walkthrough.command.prompt.description": "Quando si usa il compilatore Microsoft Visual Studio C++, deve essere presente l'ambiente di sviluppo Visual Studio.\n\nSeguire le istruzioni a destra per riavviare o fare clic sul pulsante seguente.\n[Imposta ambiente per sviluppatori](command:C_Cpp.SetVsDeveloperEnvironment?%22walkthrough%22)",
|
||||
"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.",
|
||||
|
||||
@@ -17,7 +17,12 @@
|
||||
"pre.Launch.Task": "preLaunchTask: {0}",
|
||||
"debugger.path.not.exists": "Impossibile trovare il debugger {0}. La configurazione di debug per {1} viene ignorata.",
|
||||
"build.and.debug.active.file": "compilare ed eseguire il debug del file attivo",
|
||||
"cl.exe.not.available": "{0} è utilizzabile solo quando VS Code è in esecuzione da {1}.",
|
||||
"apply.dev.env": "Applicare l'ambiente di sviluppo",
|
||||
"cl.exe.not.available": "{0} richiede l'ambiente di sviluppo Visual Studio.",
|
||||
"update.dev.env": "Aggiornare l'ambiente di sviluppo",
|
||||
"cancel": "Annulla",
|
||||
"dev.env.not.applied": "Non è possibile compilare il codice sorgente perché non è stato applicato l'ambiente di sviluppo Visual Studio.",
|
||||
"dev.env.not.found": "Non è possibile compilare il codice sorgente perché non è stato trovato il compilatore Visual C++.",
|
||||
"lldb.find.failed": "Manca la dipendenza '{0}' per l'eseguibile lldb-mi.",
|
||||
"lldb.search.paths": "Ricerca effettuata in:",
|
||||
"lldb.install.help": "Per risolvere questo problema, installare Xcode tramite Apple App Store oppure installare gli strumenti da riga di comando di Xcode eseguendo '{0}' in una finestra di terminale.",
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* 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.
|
||||
{
|
||||
"no.context.provided": "Nessun contesto specificato",
|
||||
"not.windows": "Il comando \"Impostare l'ambiente di sviluppo Visual Studio\" è disponibile solo in Windows",
|
||||
"error.no.vs": "Non è stata trovata un'installazione di Visual Studio con il compilatore C++",
|
||||
"operation.cancelled": "L'operazione è stata annullata",
|
||||
"no.hosts": "Nessun host trovato",
|
||||
"config.dev.env": "Configurazione dell'ambiente Developer in corso...",
|
||||
"select.vs.install": "Selezionare un'installazione di Visual Studio",
|
||||
"advanced.options": "Opzioni avanzate...",
|
||||
"advanced.options.desc": "Selezionare un host e un'architettura di destinazione specifici, la versione del set di strumenti, e così via.",
|
||||
"select.toolset": "Selezionare una versione del set di strumenti",
|
||||
"select.host.target": "Selezionare un host e un'architettura di destinazione",
|
||||
"something.wrong": "Si è verificato un problema: {0}",
|
||||
"dev.env.for": "{0} ambiente di sviluppo per {1}",
|
||||
"default.env": "Ambiente predefinito per {0}",
|
||||
"host.target": "host = {0}, destinazione = {1}"
|
||||
}
|
||||
@@ -46,7 +46,7 @@
|
||||
"aborting_tag_parse_at_root": "Interruzione dell'analisi dei tag in corrispondenza della radice",
|
||||
"unable_to_retrieve_to_reset_timestamps": "Non è possibile recuperare i record del database per reimpostare i timestamp. Errore = {0}",
|
||||
"failed_to_reset_timestamps_for": "Non è stato possibile reimpostare il timestamp per {0}. Errore = {1}",
|
||||
"no_suitable_complier": "Non sono stati trovati compilatore appropriati. Impostare \"compilerPath\" in c_cpp_properties.json.",
|
||||
"no_suitable_compiler": "Non sono stati trovati compilatore appropriati. Impostare \"compilerPath\" in c_cpp_properties.json.",
|
||||
"compiler_include_not_found": "Il percorso di inclusione del compilatore non è stato trovato: {0}",
|
||||
"intellisense_not_responding": "Il motore IntelliSense non risponde. Verrà usato il parser di tag.",
|
||||
"tag_parser_will_be_used": "Il parser di tag verrà usato per le operazioni IntelliSense in: {0}",
|
||||
|
||||
+10
-4
@@ -4,8 +4,14 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"walkthrough.windows.title.open.dev.command.prompt": "Riavvia utilizzando il {0}",
|
||||
"walkthrough.windows.background.dev.command.prompt": " Si sta usando un computer Windows con il compilatore MSVC, quindi è necessario avviare VS Code da {0} per impostare correttamente tutte le variabili di ambiente. Per riavviare usando {1}:",
|
||||
"walkthrough.open.command.prompt": "Aprire il {0} digitando \"{1}\" nel menu Start di Windows. Selezionare il {2}, che passerà automaticamente alla cartella aperta corrente.",
|
||||
"walkthrough.windows.press.f5": "Digitare \"{0}\" nel prompt dei comandi e premere INVIO. È consigliabile riavviare VS Code e tornare a questa procedura dettagliata. "
|
||||
"walkthrough.windows.title.apply.dev.env": "Applicare l'ambiente di sviluppo Visual Studio",
|
||||
"walkthrough.windows.dev.env.required": "Il compilatore Visual Studio C++ richiede che siano impostate alcune variabili di ambiente per poter compilare correttamente il codice. Se si usa un computer Windows con il compilatore Visual Studio C++, esistono due modi per assicurarsi che l'ambiente sia applicato.",
|
||||
"walkthrough.windows.do.one": " È sufficiente eseguire una delle operazioni seguenti:",
|
||||
"walkthrough.windows.run.dev.command": "Eseguire il comando {0}",
|
||||
"walkthrough.windows.set.dev.environment": "C/C++: Impostare l'ambiente di sviluppo Visual Studio",
|
||||
"walkthrough.windows.start.from.dev.command": "Avviare VS Code da {0}",
|
||||
"walkthrough.windows.relaunch.command.prompt": "Per riavviare VS Code con {0}",
|
||||
"walkthrough.close.vscode": "Chiudere l'istanza corrente di VS Code.",
|
||||
"walkthrough.open.command.prompt": "Aprire {0} digitando {1} nel menu Start di Windows e selezionare {2}.",
|
||||
"walkthrough.windows.press.f5": "Digitare {0} nel prompt dei comandi e premere INVIO. È consigliabile riavviare VS Code nella stessa area di lavoro e tornare a questa procedura dettagliata."
|
||||
}
|
||||
+1
-3
@@ -17,7 +17,5 @@
|
||||
"walkthrough.windows.note1": "Nota",
|
||||
"walkthrough.windows.note1.text": "È possibile usare il set di strumenti C++ di Visual Studio Build Tools insieme a Visual Studio Code per compilare, creare e verificare qualsiasi codebase C++, purché sia disponibile una licenza di Visual Studio valida (Community, Pro o Enterprise) usata attivamente per sviluppare la codebase C++.",
|
||||
"walkthrough.windows.open.command.prompt": "Aprire {0} digitando '{1}' nel menu Start di Windows.",
|
||||
"walkthrough.windows.check.install": "Controllare l'installazione di MSVC digitando {0} in {1}. Verranno visualizzati un messaggio di copyright, la versione e la descrizione sulla sintassi di base.",
|
||||
"walkthrough.windows.note2": "Nota",
|
||||
"walkthrough.windows.note2.text": "Per usare MSVC dalla riga di comando o da VS Code, è necessario eseguire l'applicazione da {0}. Con una shell normale, ad esempio {1}, {2} o il prompt dei comandi di Windows le variabili di ambiente del percorso necessarie non sono impostate."
|
||||
"walkthrough.windows.check.install": "Controllare l'installazione di MSVC digitando {0} in {1}. Verranno visualizzati un messaggio di copyright, la versione e la descrizione sulla sintassi di base."
|
||||
}
|
||||
@@ -12,8 +12,6 @@
|
||||
"walkthrough.windows.verify.compiler": "Verifica dell'installazione del compilatore",
|
||||
"walkthrough.windows.open.command.prompt": "Aprire {0} digitando '{1}' nel menu Start di Windows.",
|
||||
"walkthrough.windows.check.install": "Controllare l'installazione di MSVC digitando {0} in {1}. Verranno visualizzati un messaggio di copyright, la versione e la descrizione sulla sintassi di base.",
|
||||
"walkthrough.windows.note2": "Nota",
|
||||
"walkthrough.windows.note2.text": "Per usare MSVC dalla riga di comando o da VS Code, è necessario eseguire l'applicazione da {0}. Con una shell normale, ad esempio {1}, {2} o il prompt dei comandi di Windows le variabili di ambiente del percorso necessarie non sono impostate.",
|
||||
"walkthrough.windows.other.compilers": "Altre opzioni del compilatore",
|
||||
"walkthrough.windows.text3": "Se la destinazione è Linux da Windows, vedere {0}. In alternativa, è possibile {1}.",
|
||||
"walkthrough.windows.link.title1": "Uso di C++ e del sottosistema Windows per Linux (WSL) in VS Code",
|
||||
|
||||
@@ -12,8 +12,6 @@
|
||||
"walkthrough.windows.verify.compiler": "Verifica dell'installazione del compilatore",
|
||||
"walkthrough.windows.open.command.prompt": "Aprire {0} digitando '{1}' nel menu Start di Windows.",
|
||||
"walkthrough.windows.check.install": "Controllare l'installazione di MSVC digitando {0} in {1}. Verranno visualizzati un messaggio di copyright, la versione e la descrizione sulla sintassi di base.",
|
||||
"walkthrough.windows.note2": "Nota",
|
||||
"walkthrough.windows.note2.text": "Per usare MSVC dalla riga di comando o da VS Code, è necessario eseguire l'applicazione da {0}. Con una shell normale, ad esempio {1}, {2} o il prompt dei comandi di Windows le variabili di ambiente del percorso necessarie non sono impostate.",
|
||||
"walkthrough.windows.other.compilers": "Altre opzioni del compilatore",
|
||||
"walkthrough.windows.text3": "Se la destinazione è Linux da Windows, vedere {0}. In alternativa, è possibile {1}.",
|
||||
"walkthrough.windows.link.title1": "Uso di C++ e del sottosistema Windows per Linux (WSL) in VS Code",
|
||||
|
||||
@@ -42,6 +42,8 @@
|
||||
"c_cpp.command.RemoveAllCodeAnalysisProblems.title": "すべてのコード分析の問題をクリアする",
|
||||
"c_cpp.command.BuildAndDebugFile.title": "C/C++ ファイルのデバッグ",
|
||||
"c_cpp.command.BuildAndRunFile.title": "C/C++ ファイルの実行",
|
||||
"c_cpp.command.SetVsDeveloperEnvironment.title": "Visual Studio 開発環境の設定",
|
||||
"c_cpp.command.ClearVsDeveloperEnvironment.title": "Visual Studio 開発環境のクリア",
|
||||
"c_cpp.command.AddDebugConfiguration.title": "デバッグ構成の追加",
|
||||
"c_cpp.command.GenerateDoxygenComment.title": "Doxygen コメントの生成",
|
||||
"c_cpp.command.addSshTarget.title": "SSH ターゲットの追加",
|
||||
@@ -104,11 +106,11 @@
|
||||
"c_cpp.configuration.vcFormat.indent.caseContentsWhenBlock.markdownDescription": "ケース ステートメントに続く中かっこは、`#editor.tabSize#` 設定で指定された分だけインデントされます。",
|
||||
"c_cpp.configuration.vcFormat.indent.lambdaBracesWhenParameter.markdownDescription": "関数パラメーターとして使用されるラムダの中かっこは、ステートメントの先頭を基準に `#editor.tabSize#` 設定で指定された分だけインデントされます。",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.description": "goto ラベルの位置。",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.oneLeft.markdownDescription": "現在のコード インデントの左に、`#editor.tabSize#` 設定で指定された分だけ goto ラベルが配置されます",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.oneLeft.markdownDescription": "`#editor.tabSize#` 設定で指定された量だけ、現在のコードのインデントの左側に goto ラベルを配置します。",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.leftmostColumn.markdownDescription": "goto ラベルは、コードの左端に配置されます。",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.none.markdownDescription": "goto ラベルは書式設定されません。",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.description": "プリプロセッサ ディレクティブの位置。",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.oneLeft.markdownDescription": "現在のコード インデントの左に、`#editor.tabSize#` 設定で指定された分だけプリプロセッサ ディレクティブが配置されています。",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.oneLeft.markdownDescription": "プリプロセッサ ディレクティブは、現在のコードのインデントから、`#editor.tabSize#` 設定で指定された量だけ左に配置されます。",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.leftmostColumn.markdownDescription": "プリプロセッサ ディレクティブは、コードの左端に配置されています。",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.none.markdownDescription": "プリプロセッサ ディレクティブはフォーマットされません。",
|
||||
"c_cpp.configuration.vcFormat.indent.accessSpecifiers.markdownDescription": "アクセス指定子は、クラスまたは構造体の定義を基準に `#editor.tabSize#` 設定で指定された分だけインデントされます。",
|
||||
@@ -269,6 +271,7 @@
|
||||
"c_cpp.contributes.views.sshTargetsView.title": "Cpptools: SSH ターゲット",
|
||||
"c_cpp.contributes.viewsWelcome.contents": "launch.json に関する詳細については、[C/C++ デバッグを構成する](https://code.visualstudio.com/docs/cpp/launch-json-reference) を参照してください。",
|
||||
"c_cpp.configuration.debugShortcut.description": "C++ ファイルのエディター タイトル バーに [実行とデバッグ] 再生ボタンと [デバッグ構成の追加] 歯車を表示します。",
|
||||
"c_cpp.configuration.persistVsDeveloperEnvironment.description": "現在のワークスペースで最後に使用した Visual Studio 開発者環境を記憶します。この設定は Windows のみで有効です。",
|
||||
"c_cpp.debuggers.pipeTransport.description": "これを指定すると、デバッガーにより、別の実行可能ファイルをパイプとして使用してリモート コンピューターに接続され、VS Code と MI 対応のデバッガー バックエンド実行可能ファイル (gdb など) との間で標準入出力が中継されます。",
|
||||
"c_cpp.debuggers.pipeTransport.default.pipeProgram": "パイプ プログラム名の完全修飾パスを入力してください (例: '/usr/bin/ssh')。",
|
||||
"c_cpp.debuggers.pipeTransport.default.debuggerPath": "対象マシン上のデバッガーへの完全なパス。例: /usr/bin/gdb。",
|
||||
@@ -428,8 +431,8 @@
|
||||
"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": "Developer Command Prompt for VS から起動する",
|
||||
"c_cpp.walkthrough.command.prompt.description": "Microsoft Visual Studio C++ コンパイラを使用する場合、C++ 拡張機能では、Developer Command Prompt for VS から VS Code を起動する必要があります。右側の指示に従って再起動してください。\n[ウィンドウの再読み込み](command:workbench.action.reloadWindow)",
|
||||
"c_cpp.walkthrough.command.prompt.title": "Visual Studio開発環境を適用する",
|
||||
"c_cpp.walkthrough.command.prompt.description": "Microsoft Visual Studio C++ コンパイラを使用する場合、Visual Studio 開発者環境が存在する必要があります。\n\n右側の指示に従って再起動するか、下のボタンをクリックします。\n[開発環境の設定](command:C_Cpp.SetVsDeveloperEnvironment?%22walkthrough%22)",
|
||||
"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++ - アクティブ ファイルのビルドとデバッグ] を選択します。",
|
||||
|
||||
@@ -17,7 +17,12 @@
|
||||
"pre.Launch.Task": "preLaunchTask: {0}",
|
||||
"debugger.path.not.exists": "{0} デバッガーが見つかりません。{1} のデバッグ構成は無視されます。",
|
||||
"build.and.debug.active.file": "アクティブ ファイルのビルドとデバッグ",
|
||||
"cl.exe.not.available": "{0} は、{1} から VS Code を実行する場合にのみ使用できます。",
|
||||
"apply.dev.env": "開発環境の適用",
|
||||
"cl.exe.not.available": "{0} には、Visual Studio 開発環境が必要です。",
|
||||
"update.dev.env": "開発環境の更新",
|
||||
"cancel": "キャンセル",
|
||||
"dev.env.not.applied": "Visual Studio 開発者環境が適用されなかったため、ソース コードをビルドできませんでした。",
|
||||
"dev.env.not.found": "Visual C++ コンパイラが見つからなかったため、ソース コードをビルドできませんでした。",
|
||||
"lldb.find.failed": "lldb-mi 実行可能ファイルの依存関係 '{0}' が見つかりません。",
|
||||
"lldb.search.paths": "検索対象:",
|
||||
"lldb.install.help": "この問題を解決するには、Apple App Store から XCode をインストールするか、またはターミナル ウィンドウで '{0}' を実行して XCode コマンド ライン ツールをインストールしてください。",
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* 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.
|
||||
{
|
||||
"no.context.provided": "コンテキストが指定されていません",
|
||||
"not.windows": "「Visual Studio 開発環境の設定」コマンドは Windows でのみ利用可能です",
|
||||
"error.no.vs": "C++ コンパイラを使用したVisual Studioインストールが見つかりませんでした",
|
||||
"operation.cancelled": "操作は取り消されました",
|
||||
"no.hosts": "ホストが見つかりません",
|
||||
"config.dev.env": "開発者環境を構成しています...",
|
||||
"select.vs.install": "Visual Studio のインストールを選択します",
|
||||
"advanced.options": "詳細オプション...",
|
||||
"advanced.options.desc": "特定のホストとターゲットのアーキテクチャ、ツールセットのバージョンなどを選択します",
|
||||
"select.toolset": "ツールセット バージョンの選択",
|
||||
"select.host.target": "ホストとターゲット アーキテクチャを選択します",
|
||||
"something.wrong": "問題が発生しました: {0}",
|
||||
"dev.env.for": "{1} 用の {0} 開発環境",
|
||||
"default.env": "{0} の既定の環境",
|
||||
"host.target": "host = {0}, target = {1}"
|
||||
}
|
||||
@@ -46,7 +46,7 @@
|
||||
"aborting_tag_parse_at_root": "ルートでのタグ解析を中止しています",
|
||||
"unable_to_retrieve_to_reset_timestamps": "タイムスタンプをリセットするための DB レコードを取得できません。エラー = {0}",
|
||||
"failed_to_reset_timestamps_for": "{0} のタイムスタンプをリセットできませんでした: エラー = {1}",
|
||||
"no_suitable_complier": "適切なコンパイラが見つかりませんでした。c_cpp_properties.json の \"compilerPath\" を設定してください。",
|
||||
"no_suitable_compiler": "適切なコンパイラが見つかりませんでした。c_cpp_properties.json の \"compilerPath\" を設定してください。",
|
||||
"compiler_include_not_found": "コンパイラのインクルード パスが見つかりませんでした: {0}",
|
||||
"intellisense_not_responding": "IntelliSense エンジンが応答していません。代わりにタグ パーサーを使用します。",
|
||||
"tag_parser_will_be_used": "タグ パーサーは {0} で IntelliSense 操作に使用されます",
|
||||
|
||||
+10
-4
@@ -4,8 +4,14 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"walkthrough.windows.title.open.dev.command.prompt": "{0} を使用して再起動する",
|
||||
"walkthrough.windows.background.dev.command.prompt": " MSVC コンパイラで Windows マシンを使用しているため、すべての環境変数を正しく設定するには、{0} から VS Code を開始する必要があります。{1} を使用して再起動するには:",
|
||||
"walkthrough.open.command.prompt": "Windows スタート メニューで \"{1}\" と入力して、{0} を開きます。{2} を選択すると、現在開いているフォルダーに自動的に移動します。",
|
||||
"walkthrough.windows.press.f5": "コマンド プロンプトに \"{0}\" と入力して Enter キーを押します。これにより、VS Code が再起動され、このチュートリアルに戻ります。"
|
||||
"walkthrough.windows.title.apply.dev.env": "Visual Studio開発環境を適用する",
|
||||
"walkthrough.windows.dev.env.required": "Visual Studio C++ コンパイラでは、コードを正常にコンパイルするためにいくつかの環境変数を設定する必要があります。Windows マシンで Visual Studio C++ コンパイラを使用している場合、環境が適用されていることを確認する方法は 2 つあります。",
|
||||
"walkthrough.windows.do.one": " 次のいずれかの操作のみを行う必要があります:",
|
||||
"walkthrough.windows.run.dev.command": "{0} コマンドを実行する",
|
||||
"walkthrough.windows.set.dev.environment": "C/C++: Visual Studio 開発環境の設定",
|
||||
"walkthrough.windows.start.from.dev.command": "{0} から VS Code を起動します",
|
||||
"walkthrough.windows.relaunch.command.prompt": "{0} を使用して VS Code を再起動するには",
|
||||
"walkthrough.close.vscode": "VS Code の現在のインスタンスを閉じます。",
|
||||
"walkthrough.open.command.prompt": "Windows スタート メニューで {1} と入力して、{0} を開き、{2} を選択します。",
|
||||
"walkthrough.windows.press.f5": "コマンド プロンプトに {0} と入力して Enter キーを押します。これにより、同じワークスペースで VS Code が再起動され、このチュートリアルに戻ります。"
|
||||
}
|
||||
+2
-4
@@ -16,8 +16,6 @@
|
||||
"walkthrough.windows.link.install": "インストール",
|
||||
"walkthrough.windows.note1": "メモ",
|
||||
"walkthrough.windows.note1.text": "有効な Visual Studio ライセンス (Community、Pro、Enterprise のいずれか) があり、その C++ コードベースの開発に積極的に使用している場合は、Visual Studio Build Tools の C++ ツールセットを Visual Studio Code と合わせて使用して、C++ コードベースのコンパイル、ビルド、および検証を行うことができます。",
|
||||
"walkthrough.windows.open.command.prompt": "Windows スタート メニューで '{1}' と入力して、{0} を開きます。",
|
||||
"walkthrough.windows.check.install": "{1} に「{0}」と入力して、MSVC のインストールを確認します。バージョンと基本的な使用法の説明とともに、著作権に関するメッセージが表示されます。",
|
||||
"walkthrough.windows.note2": "メモ",
|
||||
"walkthrough.windows.note2.text": "コマンド ラインまたは VS Code で MSVC を使用するには、{0} で実行する必要があります。{1}、{2}、Windows コマンド プロンプトなどの通常のシェルには、必要なパス環境変数が設定されていません。"
|
||||
"walkthrough.windows.open.command.prompt": "Windows スタート メニューで {1} と入力して、{0} を開きます。",
|
||||
"walkthrough.windows.check.install": "{1} に「{0}」と入力して、MSVC のインストールを確認します。バージョンと基本的な使用法の説明とともに、著作権に関するメッセージが表示されます。"
|
||||
}
|
||||
+1
-3
@@ -10,10 +10,8 @@
|
||||
"walkthrough.windows.note1": "メモ",
|
||||
"walkthrough.windows.note1.text": "有効な Visual Studio ライセンス (Community、Pro、Enterprise のいずれか) があり、その C++ コードベースの開発に積極的に使用している場合は、Visual Studio Build Tools の C++ ツールセットを Visual Studio Code と合わせて使用して、C++ コードベースのコンパイル、ビルド、および検証を行うことができます。",
|
||||
"walkthrough.windows.verify.compiler": "コンパイラのインストールの確認中",
|
||||
"walkthrough.windows.open.command.prompt": "Windows スタート メニューで '{1}' と入力して、{0} を開きます。",
|
||||
"walkthrough.windows.open.command.prompt": "Windows スタート メニューで {1} と入力して、{0} を開きます。",
|
||||
"walkthrough.windows.check.install": "{1} に「{0}」と入力して、MSVC のインストールを確認します。バージョンと基本的な使用法の説明とともに、著作権に関するメッセージが表示されます。",
|
||||
"walkthrough.windows.note2": "メモ",
|
||||
"walkthrough.windows.note2.text": "コマンド ラインまたは VS Code で MSVC を使用するには、{0} で実行する必要があります。{1}、{2}、Windows コマンド プロンプトなどの通常のシェルには、必要なパス環境変数が設定されていません。",
|
||||
"walkthrough.windows.other.compilers": "その他のコンパイラ オプション",
|
||||
"walkthrough.windows.text3": "Windows から Linux に貼り付ける場合は、{0} をチェックしてください。あるいは、{1} も使用できます。",
|
||||
"walkthrough.windows.link.title1": "VS Code で C++ と Windows Subsystem for Linux (WSL) を使用する",
|
||||
|
||||
+1
-3
@@ -10,10 +10,8 @@
|
||||
"walkthrough.windows.note1": "メモ",
|
||||
"walkthrough.windows.note1.text": "有効な Visual Studio ライセンス (Community、Pro、Enterprise のいずれか) があり、その C++ コードベースの開発に積極的に使用している場合は、Visual Studio Build Tools の C++ ツールセットを Visual Studio Code と合わせて使用して、C++ コードベースのコンパイル、ビルド、および検証を行うことができます。",
|
||||
"walkthrough.windows.verify.compiler": "コンパイラのインストールの確認中",
|
||||
"walkthrough.windows.open.command.prompt": "Windows スタート メニューで '{1}' と入力して、{0} を開きます。",
|
||||
"walkthrough.windows.open.command.prompt": "Windows スタート メニューで {1} と入力して、{0} を開きます。",
|
||||
"walkthrough.windows.check.install": "{1} に「{0}」と入力して、MSVC のインストールを確認します。バージョンと基本的な使用法の説明とともに、著作権に関するメッセージが表示されます。",
|
||||
"walkthrough.windows.note2": "メモ",
|
||||
"walkthrough.windows.note2.text": "コマンド ラインまたは VS Code で MSVC を使用するには、{0} で実行する必要があります。{1}、{2}、Windows コマンド プロンプトなどの通常のシェルには、必要なパス環境変数が設定されていません。",
|
||||
"walkthrough.windows.other.compilers": "その他のコンパイラ オプション",
|
||||
"walkthrough.windows.text3": "Windows から Linux に貼り付ける場合は、{0} をチェックしてください。あるいは、{1} も使用できます。",
|
||||
"walkthrough.windows.link.title1": "VS Code で C++ と Windows Subsystem for Linux (WSL) を使用する",
|
||||
|
||||
@@ -42,6 +42,8 @@
|
||||
"c_cpp.command.RemoveAllCodeAnalysisProblems.title": "모든 코드 분석 문제 해결",
|
||||
"c_cpp.command.BuildAndDebugFile.title": "C/C++ 파일 디버그",
|
||||
"c_cpp.command.BuildAndRunFile.title": "C/C++ 파일 실행",
|
||||
"c_cpp.command.SetVsDeveloperEnvironment.title": "Visual Studio 개발자 환경 설정",
|
||||
"c_cpp.command.ClearVsDeveloperEnvironment.title": "Visual Studio 개발자 환경 지우기",
|
||||
"c_cpp.command.AddDebugConfiguration.title": "디버그 구성 추가",
|
||||
"c_cpp.command.GenerateDoxygenComment.title": "Doxygen 주석 생성",
|
||||
"c_cpp.command.addSshTarget.title": "SSH 대상 추가",
|
||||
@@ -191,12 +193,12 @@
|
||||
"c_cpp.configuration.inactiveRegionOpacity.markdownDescription": "비활성 전처리기 블록의 불투명도를 제어합니다. `0.1`에서 `1.0` 사이에서 크기를 조정합니다. 이 설정은 비활성 영역 흐리게 표시가 사용하도록 설정된 경우에만 적용됩니다.",
|
||||
"c_cpp.configuration.inactiveRegionForegroundColor.description": "비활성 전처리기 블록의 글꼴 색 지정을 제어합니다. 입력은 16진수 색 코드 또는 유효한 테마 색의 형식입니다. 설정하지 않으면 기본적으로 편집기의 구문 색 구성표로 설정됩니다. 이 설정은 비활성 영역 흐리게 표시가 사용하도록 설정된 경우에만 적용됩니다.",
|
||||
"c_cpp.configuration.inactiveRegionBackgroundColor.description": "비활성 전처리기 블록의 배경색 지정을 제어합니다. 입력은 16진수 색 코드 또는 유효한 테마 색의 형식입니다. 설정하지 않으면 기본적으로 투명으로 설정됩니다. 이 설정은 비활성 영역 흐리게 표시가 사용하도록 설정된 경우에만 적용됩니다.",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.enabled.markdownDescription": "선언에서 `auto`가 사용될 때 추론된 유형에 대한 인레이 힌트 표시:\n```cpp \n\n auto index /* : int */ = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.showOnLeft.markdownDescription": "식별자의 왼쪽에 있는 선언에서 `auto`가 사용될 때 추론된 유형에 대한 인레이 힌트 표시:\n```cpp \n\n auto /* int */ index = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.enabled.markdownDescription": "선언에서 `auto`가 사용될 때 추론된 형식에 대한 인레이 힌트 표시:\n```cpp \n\n auto index /* : int */ = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.showOnLeft.markdownDescription": "식별자의 왼쪽에 있는 선언에서 `auto`가 사용될 때 추론된 형식에 대한 인레이 힌트 표시:\n```cpp \n\n auto /* int */ index = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.enabled.markdownDescription": "매개 변수 이름에 대한 인레이 힌트 표시:\n```cpp \n\n int a = getArea(/* width: */ x, /* height: */ y);\n```",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.hideLeadingUnderscores.markdownDescription": "매개 변수 이름 힌트에서 선행 `_`를 숨깁니다.",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.suppressWhenArgumentContainsName.markdownDescription": "인수 텍스트 또는 인라인 주석에 매개 변수 이름이 포함된 경우 매개 변수 이름 힌트 표시 안 함:\n```cpp \n\n int a = getArea(width, /* height: */ y);\n```",
|
||||
"c_cpp.configuration.inlayHints.referenceOperator.enabled.markdownDescription": "비 const 참조에 의해 전달된 매개 변수에 대한 인레이 힌트 참조 연산자 `&` 표시:\n```cpp \n\n swap(/* &first: */ str1, /* &last: */ str2);\n```",
|
||||
"c_cpp.configuration.inlayHints.referenceOperator.enabled.markdownDescription": "비상수 참조로 전달되는 매개 변수에 대한 인레이 힌트 참조 연산자(`&`) 표시:\n```cpp \n\n swap(/* &first: */ str1, /* &last: */ str2);\n```",
|
||||
"c_cpp.configuration.inlayHints.referenceOperator.showSpace.markdownDescription": "const가 아닌 참조로 전달된 매개 변수에 대해 `&` 뒤에 공백이 표시되는지 여부를 제어합니다.\n```cpp \n\n swap(/* & first: */ str1, /* & last: */ str2);\n```",
|
||||
"c_cpp.configuration.loggingLevel.markdownDescription": "출력 패널에서 로깅의 세부 정보 표시 수준입니다. 가장 낮은 표시 수준에서 가장 높은 표시 수준의 순서는 `None` < `Error` < `Warning` < `Information` < `Debug`입니다.",
|
||||
"c_cpp.configuration.autoAddFileAssociations.markdownDescription": "파일이 C/C++ 파일의 탐색 작업의 대상인 경우 `#files.associations#`에 자동으로 추가되는지 여부를 제어합니다.",
|
||||
@@ -269,6 +271,7 @@
|
||||
"c_cpp.contributes.views.sshTargetsView.title": "Cpptools: SSH 대상",
|
||||
"c_cpp.contributes.viewsWelcome.contents": "launch.json에 대한 자세한 내용은 [C/C++ 디버깅 구성](https://code.visualstudio.com/docs/cpp/launch-json-reference)을 참조하세요.",
|
||||
"c_cpp.configuration.debugShortcut.description": "C++ 파일의 편집기 제목 표시줄에 \"실행 및 디버그\" 재생 버튼과 \"디버그 구성 추가\" 기어를 표시합니다.",
|
||||
"c_cpp.configuration.persistVsDeveloperEnvironment.description": "현재 작업 영역에 마지막으로 사용한 Visual Studio 개발자 환경을 기억합니다. 이 설정은 Windows에만 적용됩니다.",
|
||||
"c_cpp.debuggers.pipeTransport.description": "있을 경우 VS Code와 MI 지원 디버거 백 엔드 실행 파일(예: gdb) 사이에 표준 입출력을 릴레이하는 파이프로 다른 실행 파일을 사용하여 원격 컴퓨터에 연결되도록 디버거를 지정합니다.",
|
||||
"c_cpp.debuggers.pipeTransport.default.pipeProgram": "파이프 프로그램 이름의 정규화된 경로 입력(예: '/usr/bin/ssh')",
|
||||
"c_cpp.debuggers.pipeTransport.default.debuggerPath": "대상 컴퓨터에서 디버거의 전체 경로(예: /usr/bin/gdb)입니다.",
|
||||
@@ -428,8 +431,8 @@
|
||||
"c_cpp.walkthrough.create.cpp.file.title": "C++ 파일 만들기",
|
||||
"c_cpp.walkthrough.create.cpp.file.description": "C++를 [열거나](command:toSide:workbench.action.files.openFile) [만드세요](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D). \"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": "Developer Command Prompt for VS에서 시작",
|
||||
"c_cpp.walkthrough.command.prompt.description": "Microsoft Visual Studio C++ 컴파일러를 사용하는 경우 C++ 확장을 사용하려면 Developer Command Prompt for VS에서 VS Code를 실행해야 합니다. 다시 시작하려면 오른쪽의 지침을 따르세요.\n[Window 다시 로드](command:workbench.action.reloadWindow)",
|
||||
"c_cpp.walkthrough.command.prompt.title": "Visual Studio 개발자 환경 적용",
|
||||
"c_cpp.walkthrough.command.prompt.description": "Microsoft Visual Studio C++ 컴파일러를 사용하려면 Visual Studio 개발자 환경이 있어야 합니다.\n\n오른쪽의 지침에 따라 다시 시작하거나 아래 단추를 클릭합니다.\n[개발자 환경 설정](command:C_Cpp.SetVsDeveloperEnvironment?%22walkthrough%22)",
|
||||
"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++- 활성 파일 빌드 및 디버그\"를 선택합니다.",
|
||||
|
||||
@@ -17,7 +17,12 @@
|
||||
"pre.Launch.Task": "preLaunchTask: {0}",
|
||||
"debugger.path.not.exists": "{0} 디버거를 찾을 수 없습니다. {1}에 대한 디버그 구성은 무시됩니다.",
|
||||
"build.and.debug.active.file": "활성 파일 빌드 및 디버그",
|
||||
"cl.exe.not.available": "{0}은(는) VS Code가 {1}에서 실행되는 경우에만 사용할 수 있습니다.",
|
||||
"apply.dev.env": "개발자 환경 적용",
|
||||
"cl.exe.not.available": "{0}에 Visual Studio 개발자 환경이 필요합니다.",
|
||||
"update.dev.env": "개발자 환경 업데이트",
|
||||
"cancel": "취소",
|
||||
"dev.env.not.applied": "Visual Studio 개발자 환경이 적용되지 않아 소스 코드를 빌드할 수 없습니다.",
|
||||
"dev.env.not.found": "Visual C++ 컴파일러를 찾을 수 없어 소스 코드를 빌드할 수 없습니다.",
|
||||
"lldb.find.failed": "lldb-mi 실행 파일에 대한 '{0}' 종속성이 없습니다.",
|
||||
"lldb.search.paths": "다음에서 검색됨:",
|
||||
"lldb.install.help": "이 문제를 해결하려면 Apple App Store를 통해 XCode를 설치하거나, 터미널 창에서 '{0}'을(를) 실행하여 XCode 명령줄 도구를 설치하세요.",
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* 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.
|
||||
{
|
||||
"no.context.provided": "컨텍스트가 제공되지 않음",
|
||||
"not.windows": "\"Visual Studio 개발자 환경 설정\" 명령은 Windows에서만 사용할 수 있습니다",
|
||||
"error.no.vs": "C++ 컴파일러가 포함된 Visual Studio 설치를 찾을 수 없음",
|
||||
"operation.cancelled": "작업이 취소되었음",
|
||||
"no.hosts": "호스트를 찾을 수 없음",
|
||||
"config.dev.env": "개발자 환경 구성 중...",
|
||||
"select.vs.install": "Visual Studio 설치 선택",
|
||||
"advanced.options": "고급 옵션...",
|
||||
"advanced.options.desc": "특정 호스트 및 대상 아키텍처, 도구 집합 버전 등을 선택합니다.",
|
||||
"select.toolset": "도구 집합 버전 선택",
|
||||
"select.host.target": "호스트 및 대상 아키텍처 선택",
|
||||
"something.wrong": "오류 발생: {0}",
|
||||
"dev.env.for": "{1}에 대한 {0} 개발자 환경",
|
||||
"default.env": "{0}의 기본 환경",
|
||||
"host.target": "호스트 = {0}, 대상 = {1}"
|
||||
}
|
||||
@@ -46,7 +46,7 @@
|
||||
"aborting_tag_parse_at_root": "루트에서 태그 구문 분석을 중단합니다.",
|
||||
"unable_to_retrieve_to_reset_timestamps": "타임스탬프를 다시 설정할 DB 레코드를 검색할 수 없습니다. 오류 = {0}",
|
||||
"failed_to_reset_timestamps_for": "{0} 에 대한 타임스탬프를 다시 설정하지 못했습니다. 오류 = {1}",
|
||||
"no_suitable_complier": "적합한 컴파일러를 찾을 수 없습니다. c_cpp_properties.json에서 \"compilerPath\"를 설정하세요.",
|
||||
"no_suitable_compiler": "적합한 컴파일러를 찾을 수 없습니다. c_cpp_properties.json에서 \"compilerPath\"를 설정하세요.",
|
||||
"compiler_include_not_found": "컴파일러 포함 경로를 찾을 수 없음: {0}",
|
||||
"intellisense_not_responding": "IntelliSense 엔진이 응답하지 않습니다. 태그 파서를 대신 사용합니다.",
|
||||
"tag_parser_will_be_used": "태그 파서가 다음의 IntelliSense 작업에서 사용됨: {0}",
|
||||
|
||||
+10
-4
@@ -4,8 +4,14 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"walkthrough.windows.title.open.dev.command.prompt": "{0}을(를) 사용하여 다시 시작",
|
||||
"walkthrough.windows.background.dev.command.prompt": " MSVC 컴파일러와 함께 Windows 컴퓨터를 사용하고 있으므로 모든 환경 변수를 올바르게 설정하려면 {0}에서 VS Code를 시작해야 합니다. {1}을(를) 사용하여 다시 시작하려면 다음을 수행하세요.",
|
||||
"walkthrough.open.command.prompt": "Windows 시작 메뉴에 \"{1}\"을(를) 입력하여 {0}을(를) 엽니다. {2}을(를) 선택하면 현재 열려 있는 폴더로 자동으로 이동합니다.",
|
||||
"walkthrough.windows.press.f5": "명령 프롬프트에 \"{0}\"을(를) 입력하고 Enter 키를 누릅니다. 이렇게 하면 VS Code가 다시 시작되고 이 연습으로 다시 돌아옵니다. "
|
||||
"walkthrough.windows.title.apply.dev.env": "Visual Studio 개발자 환경 적용",
|
||||
"walkthrough.windows.dev.env.required": "Visual Studio C++ 컴파일러에서는 코드를 성공적으로 컴파일하려면 여러 환경 변수를 설정해야 합니다. Visual Studio C++ 컴파일러가 설치된 Windows 머신을 사용하는 경우 환경을 적용하는 두 가지 방법이 있습니다.",
|
||||
"walkthrough.windows.do.one": " 다음 중 하나만 수행하면 됩니다.",
|
||||
"walkthrough.windows.run.dev.command": "{0} 명령 실행",
|
||||
"walkthrough.windows.set.dev.environment": "C/C++: Visual Studio 개발자 환경 설정",
|
||||
"walkthrough.windows.start.from.dev.command": "{0}에서 VS Code 시작",
|
||||
"walkthrough.windows.relaunch.command.prompt": "{0}을(를) 사용해 VS Code를 다시 시작하려면",
|
||||
"walkthrough.close.vscode": "VS Code 현재 인스턴스를 닫습니다.",
|
||||
"walkthrough.open.command.prompt": "Windows 시작 메뉴에 {1}을(를) 입력하여 {0}을(를) 연 다음 {2}을(를) 선택합니다.",
|
||||
"walkthrough.windows.press.f5": "명령 프롬프트에 {0}을(를) 입력하고 Enter 키를 누릅니다. 이렇게 하면 동일한 작업 영역에서 VS Code 다시 시작되고 이 연습으로 돌아옵니다."
|
||||
}
|
||||
+2
-4
@@ -16,8 +16,6 @@
|
||||
"walkthrough.windows.link.install": "설치",
|
||||
"walkthrough.windows.note1": "메모",
|
||||
"walkthrough.windows.note1.text": "현재 C++ 코드베이스를 개발하는 데 적극적으로 사용 중인 유효한 Visual Studio 라이선스(Community, Pro 또는 Enterprise)가 있는 한 Visual Studio Build Tools의 C++ 도구 집합을 Visual Studio Code와 함께 사용하여 모든 C++ 코드베이스를 컴파일, 빌드 및 확인할 수 있습니다.",
|
||||
"walkthrough.windows.open.command.prompt": "Windows 시작 메뉴에 '{1}'을(를) 입력하여 {0}을(를) 엽니다.",
|
||||
"walkthrough.windows.check.install": "{1}에 {0}을(를) 입력하여 MSVC 설치를 확인하세요. 버전 및 기본 사용 설명과 함께 저작권 메시지가 표시될 것입니다.",
|
||||
"walkthrough.windows.note2": "메모",
|
||||
"walkthrough.windows.note2.text": "명령줄 또는 VS Code에서 MSVC를 사용하려면 {0}에서 실행해야 합니다. {1}, {2} 또는 Windows 명령 프롬프트와 같은 일반 셸에는 필요한 경로 환경 변수가 설정되어 있지 않습니다."
|
||||
"walkthrough.windows.open.command.prompt": "Windows 시작 메뉴에 {1}을(를) 입력하여 {0}을(를) 엽니다.",
|
||||
"walkthrough.windows.check.install": "{1}에 {0}을(를) 입력하여 MSVC 설치를 확인하세요. 버전 및 기본 사용 설명과 함께 저작권 메시지가 표시될 것입니다."
|
||||
}
|
||||
+1
-3
@@ -10,10 +10,8 @@
|
||||
"walkthrough.windows.note1": "메모",
|
||||
"walkthrough.windows.note1.text": "현재 C++ 코드베이스를 개발하는 데 적극적으로 사용 중인 유효한 Visual Studio 라이선스(Community, Pro 또는 Enterprise)가 있는 한 Visual Studio Build Tools의 C++ 도구 집합을 Visual Studio Code와 함께 사용하여 모든 C++ 코드베이스를 컴파일, 빌드 및 확인할 수 있습니다.",
|
||||
"walkthrough.windows.verify.compiler": "컴파일러 설치 확인 중",
|
||||
"walkthrough.windows.open.command.prompt": "Windows 시작 메뉴에 '{1}'을(를) 입력하여 {0}을(를) 엽니다.",
|
||||
"walkthrough.windows.open.command.prompt": "Windows 시작 메뉴에 {1}을(를) 입력하여 {0}을(를) 엽니다.",
|
||||
"walkthrough.windows.check.install": "{1}에 {0}을(를) 입력하여 MSVC 설치를 확인하세요. 버전 및 기본 사용 설명과 함께 저작권 메시지가 표시될 것입니다.",
|
||||
"walkthrough.windows.note2": "메모",
|
||||
"walkthrough.windows.note2.text": "명령줄 또는 VS Code에서 MSVC를 사용하려면 {0}에서 실행해야 합니다. {1}, {2} 또는 Windows 명령 프롬프트와 같은 일반 셸에는 필요한 경로 환경 변수가 설정되어 있지 않습니다.",
|
||||
"walkthrough.windows.other.compilers": "기타 컴파일러 옵션",
|
||||
"walkthrough.windows.text3": "Windows에서 Linux를 대상으로 하는 경우 {0}을(를) 확인하세요. 또는 {1}할 수 있습니다.",
|
||||
"walkthrough.windows.link.title1": "VS Code에서 C++ 및 Linux용 Windows 하위 시스템(WSL) 사용",
|
||||
|
||||
+1
-3
@@ -10,10 +10,8 @@
|
||||
"walkthrough.windows.note1": "메모",
|
||||
"walkthrough.windows.note1.text": "현재 C++ 코드베이스를 개발하는 데 적극적으로 사용 중인 유효한 Visual Studio 라이선스(Community, Pro 또는 Enterprise)가 있는 한 Visual Studio Build Tools의 C++ 도구 집합을 Visual Studio Code와 함께 사용하여 모든 C++ 코드베이스를 컴파일, 빌드 및 확인할 수 있습니다.",
|
||||
"walkthrough.windows.verify.compiler": "컴파일러 설치 확인 중",
|
||||
"walkthrough.windows.open.command.prompt": "Windows 시작 메뉴에 '{1}'을(를) 입력하여 {0}을(를) 엽니다.",
|
||||
"walkthrough.windows.open.command.prompt": "Windows 시작 메뉴에 {1}을(를) 입력하여 {0}을(를) 엽니다.",
|
||||
"walkthrough.windows.check.install": "{1}에 {0}을(를) 입력하여 MSVC 설치를 확인하세요. 버전 및 기본 사용 설명과 함께 저작권 메시지가 표시될 것입니다.",
|
||||
"walkthrough.windows.note2": "메모",
|
||||
"walkthrough.windows.note2.text": "명령줄 또는 VS Code에서 MSVC를 사용하려면 {0}에서 실행해야 합니다. {1}, {2} 또는 Windows 명령 프롬프트와 같은 일반 셸에는 필요한 경로 환경 변수가 설정되어 있지 않습니다.",
|
||||
"walkthrough.windows.other.compilers": "기타 컴파일러 옵션",
|
||||
"walkthrough.windows.text3": "Windows에서 Linux를 대상으로 하는 경우 {0}을(를) 확인하세요. 또는 {1}할 수 있습니다.",
|
||||
"walkthrough.windows.link.title1": "VS Code에서 C++ 및 Linux용 Windows 하위 시스템(WSL) 사용",
|
||||
|
||||
@@ -42,6 +42,8 @@
|
||||
"c_cpp.command.RemoveAllCodeAnalysisProblems.title": "Wyczyść wszystkie problemy z analizą kodu",
|
||||
"c_cpp.command.BuildAndDebugFile.title": "Debuguj plik C/C++",
|
||||
"c_cpp.command.BuildAndRunFile.title": "Uruchom plik C/C++",
|
||||
"c_cpp.command.SetVsDeveloperEnvironment.title": "Ustaw środowisko deweloperskie Visual Studio",
|
||||
"c_cpp.command.ClearVsDeveloperEnvironment.title": "Wyczyść środowisko deweloperskie programu Visual Studio",
|
||||
"c_cpp.command.AddDebugConfiguration.title": "Dodaj konfigurację debugowania",
|
||||
"c_cpp.command.GenerateDoxygenComment.title": "Generuj komentarz Doxygen",
|
||||
"c_cpp.command.addSshTarget.title": "Dodaj element docelowy SSH",
|
||||
@@ -104,11 +106,11 @@
|
||||
"c_cpp.configuration.vcFormat.indent.caseContentsWhenBlock.markdownDescription": "Zastosuj wcięcie nawiasów klamrowych po instrukcji case o wartości określonej w ustawieniu `#editor.tabSize#`.",
|
||||
"c_cpp.configuration.vcFormat.indent.lambdaBracesWhenParameter.markdownDescription": "Zastosuj wcięcie nawiasów klamrowych dla wyrażeń lambda używanych jako parametry funkcji względem początku instrukcji o wartości określonej w ustawieniu `#editor.tabSize#`.",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.description": "Pozycja etykiet instrukcji goto.",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.oneLeft.markdownDescription": "Umieść etykiety funkcji goto po lewej stronie bieżącego wcięcia kodu według wartości określonej w ustawieniu `#editor.tabSize#`.",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.oneLeft.markdownDescription": "Umieść etykiety funkcji goto po lewej stronie bieżącego wcięcia kodu według wartości określonej w ustawieniu `#editor.tabSize#`.",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.leftmostColumn.markdownDescription": "Umieść etykiety funkcji goto przy lewej krawędzi kodu.",
|
||||
"c_cpp.configuration.vcFormat.indent.gotoLabels.none.markdownDescription": "Etykiety funkcji goto nie będą formatowane.",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.description": "Pozycja dyrektyw preprocesora.",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.oneLeft.markdownDescription": "Dyrektywy preprocesora są umieszczane po lewej stronie bieżącego wcięcia kodu o wartości określonej w ustawieniu `#editor.tabSize#`.",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.oneLeft.markdownDescription": "Dyrektywy preprocesora są umieszczane po lewej stronie bieżącego wcięcia kodu według wartości określonej w ustawieniu `#editor.tabSize#`.",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.leftmostColumn.markdownDescription": "Dyrektywy preprocesora są umieszczane przy lewej krawędzi kodu.",
|
||||
"c_cpp.configuration.vcFormat.indent.preprocessor.none.markdownDescription": "Dyrektywy preprocesora nie będą formatowane.",
|
||||
"c_cpp.configuration.vcFormat.indent.accessSpecifiers.markdownDescription": "W przypadku specyfikatorów dostępu jest stosowane wcięcie względem definicji klasy lub struktury o szerokości określonej w ustawieniu `#editor.tabSize#`.",
|
||||
@@ -191,12 +193,12 @@
|
||||
"c_cpp.configuration.inactiveRegionOpacity.markdownDescription": "Określa przezroczystość nieaktywnych bloków preprocesora. Przyjmuje wartości od `0.1` do `1.0`. To ustawienie ma zastosowanie tylko wtedy, gdy włączono funkcję przygaszania nieaktywnego regionu.",
|
||||
"c_cpp.configuration.inactiveRegionForegroundColor.description": "Określa kolor czcionki nieaktywnych bloków preprocesora. Dane wejściowe są w postaci szesnastkowego kodu koloru lub prawidłowego koloru motywu. Jeśli nie zostanie ustawione, to wartością domyślną będzie schemat kolorowania składni edytora. To ustawienie ma zastosowanie tylko wtedy, gdy włączono funkcję przygaszania nieaktywnego regionu.",
|
||||
"c_cpp.configuration.inactiveRegionBackgroundColor.description": "Określa kolor tła nieaktywnych bloków preprocesora. Dane wejściowe są w postaci szesnastkowego kodu koloru lub prawidłowego koloru motywu. Jeśli nie zostanie ustawione, to domyślny kolor tła będzie przezroczysty. To ustawienie ma zastosowanie tylko wtedy, gdy włączono funkcję przygaszania nieaktywnego regionu.",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.enabled.markdownDescription": "Wyświetl wskazówki inlay dotyczące wywnioskowanego typu, gdy w deklaracji jest używany element `auto`:\n```cpp \n\n auto /* int */ index = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.showOnLeft.markdownDescription": "Wyświetl wskazówki inlay dotyczące wywnioskowanego typu, gdy w deklaracji używany jest element `auto` po lewej stronie identyfikatora:\n```cpp \n\n auto /* int */ index = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.enabled.markdownDescription": "Wyświetl wskazówki inlay dotyczące nazw parametrów:\n```cpp \n\n int a = getArea(/* width: */ x, /* height: */ y);\n```",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.enabled.markdownDescription": "Wyświetl wskazówki wbudowane dotyczące wywnioskowanego typu, gdy w deklaracji jest używany element `auto`:\n```cpp \n\n auto /* int */ index = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.autoDeclarationTypes.showOnLeft.markdownDescription": "Wyświetl wskazówki wbudowane dotyczące wywnioskowanego typu, gdy w deklaracji używany jest element `auto` po lewej stronie identyfikatora:\n```cpp \n\n auto /* int */ index = 0;\n```",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.enabled.markdownDescription": "Wyświetl wskazówki wbudowane dotyczące nazw parametrów:\n```cpp \n\n int a = getArea(/* width: */ x, /* height: */ y);\n```",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.hideLeadingUnderscores.markdownDescription": "Ukryj wiodący znak `_` we wskazówkach dotyczących nazw parametrów.",
|
||||
"c_cpp.configuration.inlayHints.parameterNames.suppressWhenArgumentContainsName.markdownDescription": "Pomiń wskazówki dotyczące nazwy parametru, gdy tekst argumentu lub komentarz śródwierszowy zawiera nazwę parametru:\n```cpp \n\n int a = getArea(width, /* height: */ y);\n```",
|
||||
"c_cpp.configuration.inlayHints.referenceOperator.enabled.markdownDescription": "Wyświetl operator odwołania wskazówki inlay `&` dla parametrów przekazanych przez odwołanie inne niż const:\n```cpp \n\n swap(/* &first: */ str1, /* &last: */ str2);\n```",
|
||||
"c_cpp.configuration.inlayHints.referenceOperator.enabled.markdownDescription": "Wyświetl operator odwołania wskazówki wbudowanej `&` dla parametrów przekazanych przez odwołanie inne niż const:\n```cpp \n\n swap(/* &first: */ str1, /* &last: */ str2);\n```",
|
||||
"c_cpp.configuration.inlayHints.referenceOperator.showSpace.markdownDescription": "Określa, czy spacja jest wyświetlana po operatorze `&` w przypadku parametrów przekazanych przez odwołanie inne niż const:\n```cpp \n\n swap(/* & first: */ str1, /* & last: */ str2);\n```",
|
||||
"c_cpp.configuration.loggingLevel.markdownDescription": "Szczegółowość rejestrowania w panelu danych wyjściowych. Kolejność poziomów od najmniej szczegółowego do najbardziej szczegółowego jest następująca: `None` < `Error` < `Warning` < `Information` < `Debug`.",
|
||||
"c_cpp.configuration.autoAddFileAssociations.markdownDescription": "Określa, czy pliki są automatycznie dodawane do elementu `#files.associations#`, gdy są one elementem docelowym operacji nawigacji z pliku w języku C/C++.",
|
||||
@@ -269,6 +271,7 @@
|
||||
"c_cpp.contributes.views.sshTargetsView.title": "Narzędzia Cpptools: elementy docelowe SSH",
|
||||
"c_cpp.contributes.viewsWelcome.contents": "Aby dowiedzieć się więcej na temat pliku launch.json, zobacz [Konfigurowanie debugowania C/C++](https://code.visualstudio.com/docs/cpp/launch-json-reference).",
|
||||
"c_cpp.configuration.debugShortcut.description": "Pokaż przycisk odtwarzania „Uruchom i debuguj” i koło zębate „Dodaj konfigurację debugowania” na pasku tytułu edytora dla plików C++.",
|
||||
"c_cpp.configuration.persistVsDeveloperEnvironment.description": "Zapamiętaj ostatnio używane środowisko deweloperskie Visual Studio dla bieżącego obszaru roboczego. To ustawienie dotyczy tylko systemu Windows.",
|
||||
"c_cpp.debuggers.pipeTransport.description": "Jeśli jest obecny, zawiera instrukcje dla debugera, aby połączył się z komputerem zdalnym przy użyciu innego pliku wykonywalnego jako potoku, który będzie przekazywał standardowe wejście/wyjście między programem VS Code a plikiem wykonywalnym zaplecza debugera z włączoną obsługą indeksu MI (takim jak gdb).",
|
||||
"c_cpp.debuggers.pipeTransport.default.pipeProgram": "wprowadź w pełni kwalifikowaną ścieżkę na potrzeby nazwy programu potoku, na przykład '/usr/bin/ssh'.",
|
||||
"c_cpp.debuggers.pipeTransport.default.debuggerPath": "Pełna ścieżka do debugera na komputerze docelowym, na przykład /usr/bin/gdb.",
|
||||
@@ -428,8 +431,8 @@
|
||||
"c_cpp.walkthrough.create.cpp.file.title": "Tworzenie pliku C++",
|
||||
"c_cpp.walkthrough.create.cpp.file.description": "[Otwórz](command:toSide:workbench.action.files.openFile) lub [utwórz](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) plik C++. Pamiętaj, aby zapisać go z rozszerzeniem „.cpp” (na przykład „helloworld.cpp”). \n[Utwórz plik C++ ](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)",
|
||||
"c_cpp.walkthrough.create.cpp.file.altText": "Otwórz plik C++ lub folder z projektem C++.",
|
||||
"c_cpp.walkthrough.command.prompt.title": "Uruchom z wiersza polecenia Developer Command Prompt for VS",
|
||||
"c_cpp.walkthrough.command.prompt.description": "W przypadku korzystania z kompilatora języka C++ programu Microsoft Visual Studio rozszerzenie języka C++ wymaga uruchomienia programu VS Code z wiersza polecenia Developer Command Prompt for VS. Postępuj zgodnie z instrukcjami po prawej stronie, aby uruchomić ponownie.\n[Załaduj ponownie okno](command:workbench.action.reloadWindow)",
|
||||
"c_cpp.walkthrough.command.prompt.title": "Zastosuj środowisko deweloperskie Visual Studio",
|
||||
"c_cpp.walkthrough.command.prompt.description": "Jeśli korzystasz z kompilatora Visual Studio C++, musi być dostępne środowisko deweloperskie Visual Studio.\n\nPostępuj zgodnie z instrukcjami po prawej stronie, aby ponownie uruchomić środowisko, lub kliknij przycisk poniżej.\n[Ustaw środowisko deweloperskie](command:C_Cpp.SetVsDeveloperEnvironment?%22walkthrough%22)",
|
||||
"c_cpp.walkthrough.run.debug.title": "Uruchamianie i debugowanie pliku C++",
|
||||
"c_cpp.walkthrough.run.debug.mac.description": "Otwórz plik C++ i kliknij przycisk odtwarzania w prawym górnym rogu edytora lub naciśnij klawisz F5, gdy korzystasz z pliku. Wybierz pozycję „clang++ — kompiluj i debuguj aktywny plik\", aby uruchomić go za pomocą debugera.",
|
||||
"c_cpp.walkthrough.run.debug.linux.description": "Otwórz plik C++ i kliknij przycisk odtwarzania w prawym górnym rogu edytora lub naciśnij klawisz F5, gdy korzystasz z pliku. Wybierz pozycję „g++ — kompiluj i debuguj aktywny plik\", aby uruchomić go za pomocą debugera.",
|
||||
|
||||
@@ -17,7 +17,12 @@
|
||||
"pre.Launch.Task": "preLaunchTask: {0}",
|
||||
"debugger.path.not.exists": "Nie można odnaleźć debugera {0}. Konfiguracja debugowania dla {1} jest ignorowana.",
|
||||
"build.and.debug.active.file": "Kompiluj i debuguj aktywny plik",
|
||||
"cl.exe.not.available": "Możliwe jest używanie opcji {0} w przypadku, gdy program VS Code zostanie uruchomiony z {1}.",
|
||||
"apply.dev.env": "Zastosuj środowisko deweloperskie",
|
||||
"cl.exe.not.available": "{0} wymaga środowiska deweloperskiego programu Visual Studio.",
|
||||
"update.dev.env": "Zaktualizuj środowisko deweloperskie",
|
||||
"cancel": "Anuluj",
|
||||
"dev.env.not.applied": "Nie można skompilować kodu źródłowego, ponieważ nie zastosowano środowiska deweloperskiego Visual Studio.",
|
||||
"dev.env.not.found": "Nie można skompilować kodu źródłowego, ponieważ nie znaleziono kompilatora Visual C++.",
|
||||
"lldb.find.failed": "Brak zależności „{0}” dla pliku wykonywalnego lldb-mi.",
|
||||
"lldb.search.paths": "Wyszukano w:",
|
||||
"lldb.install.help": "Aby rozwiązać ten problem, zainstaluj środowisko XCode za pośrednictwem sklepu Apple App Store lub zainstaluj narzędzia wiersza polecenia środowiska XCode, uruchamiając polecenie „{0}” w oknie terminala.",
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* 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.
|
||||
{
|
||||
"no.context.provided": "Nie podano kontekstu",
|
||||
"not.windows": "Polecenie „Ustaw środowisko deweloperskie Visual Studio” jest dostępne tylko w systemie Windows",
|
||||
"error.no.vs": "Nie znaleziono instalacji Visual Studio z kompilatorem C++",
|
||||
"operation.cancelled": "Operacja została anulowana",
|
||||
"no.hosts": "Nie znaleziono hostów",
|
||||
"config.dev.env": "Trwa konfigurowanie środowiska deweloperskiego...",
|
||||
"select.vs.install": "Wybierz instalację programu Visual Studio",
|
||||
"advanced.options": "Opcje zaawansowane...",
|
||||
"advanced.options.desc": "Wybierz konkretny host, architekturę docelową, wersję zestawu narzędzi itp.",
|
||||
"select.toolset": "Wybierz wersję zestawu narzędzi",
|
||||
"select.host.target": "Wybierz hosta i architekturę docelową",
|
||||
"something.wrong": "Wystąpił błąd: {0}",
|
||||
"dev.env.for": "{0} środowisko deweloperskie dla {1}",
|
||||
"default.env": "Środowisko domyślne dla {0}",
|
||||
"host.target": "host = {0}, cel = {1}"
|
||||
}
|
||||
@@ -46,7 +46,7 @@
|
||||
"aborting_tag_parse_at_root": "Przerywanie analizowania tagów w elemencie głównym",
|
||||
"unable_to_retrieve_to_reset_timestamps": "Nie można pobrać rekordów bazy danych w celu zresetowania znaczników czasu: błąd = {0}",
|
||||
"failed_to_reset_timestamps_for": "Nie można zresetować znacznika czasu dla elementu {0}: błąd = {1}",
|
||||
"no_suitable_complier": "Nie znaleziono odpowiedniego kompilatora. Ustaw element „compilerPath” w pliku c_cpp_properties.json.",
|
||||
"no_suitable_compiler": "Nie znaleziono odpowiedniego kompilatora. Ustaw element „compilerPath” w pliku c_cpp_properties.json.",
|
||||
"compiler_include_not_found": "Nie znaleziono ścieżki dołączania kompilatora: {0}",
|
||||
"intellisense_not_responding": "Aparat funkcji IntelliSense nie odpowiada. W zamian użyj analizatora tagów.",
|
||||
"tag_parser_will_be_used": "Analizator tagów będzie używany na potrzeby operacji funkcji IntelliSense w: {0}",
|
||||
|
||||
+10
-4
@@ -4,8 +4,14 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"walkthrough.windows.title.open.dev.command.prompt": "Uruchom ponownie przy użyciu {0}",
|
||||
"walkthrough.windows.background.dev.command.prompt": " Używasz komputera z systemem Windows i kompilatorem programu Microsoft Visual C++ z {0}, więc musisz uruchomić program VS Code od początku, aby wszystkie zmienne środowiskowe zostały poprawnie ustawione. Aby ponownie uruchomić przy użyciu {1}:",
|
||||
"walkthrough.open.command.prompt": "Otwórz pozycję {0}, wpisując „{1}” w menu Start systemu Windows. Wybierz {2}, który automatycznie przeniesie do bieżącego otwartego folderu.",
|
||||
"walkthrough.windows.press.f5": "Wpisz „{0}” w wierszu polecenia i naciśnij klawisz Enter. To powinno ponownie uruchomić program VS Code i przenieść Cię z powrotem do tego przewodnika. "
|
||||
"walkthrough.windows.title.apply.dev.env": "Zastosuj środowisko deweloperskie Visual Studio",
|
||||
"walkthrough.windows.dev.env.required": "Kompilator Visual Studio C++ wymaga ustawienia kilku zmiennych środowiskowych, aby kod został poprawnie skompilowany. Jeśli używasz komputera z systemem Windows i kompilatorem Visual Studio C++, masz dwie możliwości, by zapewnić zastosowanie odpowiedniego środowiska.",
|
||||
"walkthrough.windows.do.one": " Musisz wykonać tylko jedną z następujących czynności:",
|
||||
"walkthrough.windows.run.dev.command": "Uruchom polecenie {0}",
|
||||
"walkthrough.windows.set.dev.environment": "C/C++: ustaw środowisko deweloperskie Visual Studio",
|
||||
"walkthrough.windows.start.from.dev.command": "Uruchom VS Code z {0}",
|
||||
"walkthrough.windows.relaunch.command.prompt": "Aby ponownie uruchomić VS Code przy użyciu {0}",
|
||||
"walkthrough.close.vscode": "Zamknij bieżące wystąpienie programu VS Code.",
|
||||
"walkthrough.open.command.prompt": "Otwórz {0}, wpisując {1} w menu Start systemu Windows, a następnie wybierz {2}.",
|
||||
"walkthrough.windows.press.f5": "Wpisz {0} w wierszu polecenia i naciśnij klawisz Enter. Powinno to spowodować ponowne uruchomienie programu VS Code w tym samym obszarze roboczym i powrót do tego przewodnika."
|
||||
}
|
||||
+2
-4
@@ -16,8 +16,6 @@
|
||||
"walkthrough.windows.link.install": "Zainstaluj",
|
||||
"walkthrough.windows.note1": "Uwaga",
|
||||
"walkthrough.windows.note1.text": "Zestawu narzędzi języka C++ z narzędzi Visual Studio Build Tools wraz z programem Visual Studio Code można używać do kompilowania, tworzenia i weryfikowania dowolnej bazy kodu języka C++, o ile masz również ważną licencję programu Visual Studio (Community, Pro lub Enterprise), której aktywnie używasz do opracowywania tej bazy kodu języka C++.",
|
||||
"walkthrough.windows.open.command.prompt": "Otwórz pozycję {0}, wpisując „{1}” w menu Start systemu Windows.",
|
||||
"walkthrough.windows.check.install": "Sprawdź instalację MSVC, wpisując {0} w {1}. Powinien zostać wyświetlony komunikat o prawach autorskich z wersją i podstawowym opisem dotyczącym użycia.",
|
||||
"walkthrough.windows.note2": "Uwaga",
|
||||
"walkthrough.windows.note2.text": "Aby użyć programu MSVC z wiersza polecenia lub programu VS Code, należy uruchomić z {0}. Zwykła powłoka, taka jak {1}, {2} lub wiersz polecenia systemu Windows, nie ma ustawionych wymaganych zmiennych środowiskowych ścieżki."
|
||||
"walkthrough.windows.open.command.prompt": "Otwórz {0}, wpisując {1} w menu Start systemu Windows.",
|
||||
"walkthrough.windows.check.install": "Sprawdź instalację MSVC, wpisując {0} w {1}. Powinien zostać wyświetlony komunikat o prawach autorskich z wersją i podstawowym opisem dotyczącym użycia."
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user