Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
212 changes: 212 additions & 0 deletions i18n/chs/assets/policies.json.i18n.json

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions i18n/chs/package.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@
"cmake-tools.command.cmake.launchTarget.title": "运行但不调试",
"cmake-tools.command.cmake.launchTargetAll.title": "运行所有项目但不调试",
"cmake-tools.command.cmake.selectLaunchTarget.title": "设置启动/调试目标",
"cmake-tools.command.cmake.selectBuildAndLaunchTarget.title": "Set Build and Launch/Debug Target",
"cmake-tools.command.cmake.stop.title": "取消生成",
"cmake-tools.command.cmake.stopAll.title": "取消所有项目的生成",
"cmake-tools.command.cmake.resetState.title": "重置 CMake Tools 扩展状态(用于故障排除)",
Expand Down Expand Up @@ -105,6 +106,7 @@
"cmake-tools.configuration.cmake.generator.description": "要使用的 CMake 生成器。",
"cmake-tools.configuration.cmake.toolset.description": "要在配置时使用的 CMake 工具集。",
"cmake-tools.configuration.cmake.platform.description": "要在配置时使用的 CMake 平台。",
"cmake-tools.configuration.cmake.shell.description": "Path to a shell executable to use when running CMake, CTest, and CPack commands (e.g., Git Bash or MSYS2). When set, all subprocess invocations are routed through this shell. Useful for embedded toolchains that require POSIX path translation. When null, the default system shell behavior is used.",
"cmake-tools.configuration.cmake.configureArgs.description": "要在配置时传递给 CMake 的其他参数。使用 CMake 预设时,这些参数会临时追加到活动配置预设提供的参数中。",
"cmake-tools.configuration.cmake.buildArgs.description": "要在生成时传递给 CMake 的其他参数。使用 CMake 预设时,这些参数会临时追加到活动生成预设提供的参数中。",
"cmake-tools.configuration.cmake.buildToolArgs.description": "要在生成时传递给基础生成工具的其他参数。使用 CMake 预设时,这些参数会临时追加到活动生成预设提供的参数,以调用生成工具。",
Expand All @@ -124,8 +126,19 @@
"cmake-tools.configuration.cmake.ctest.failurePatterns.actual": "实际测试输出的匹配组索引。默认为“未定义”。",
"cmake-tools.configuration.cmake.ctest.failurePatterns.expected": "预期测试输出的匹配组索引。默认为“未定义”。",
"cmake-tools.configuration.cmake.ctest.debugLaunchTarget.description": "在使用 CTest 调试测试时,从 launch.json 中获取目标名称以启动。默认情况下,如果目标不存在,将显示一个包含所有有空目标的选取器。",
"cmake-tools.configuration.cmake.ctest.neverDebugTestsWithLaunchConfiguration.description": "When set to true, always debug tests without a launch configuration, bypassing the quick pick menu. Default is false.",
"cmake-tools.configuration.cmake.parseBuildDiagnostics.description": "分析编译器输出以查找警告和错误。",
"cmake-tools.configuration.cmake.enabledOutputParsers.description": "要使用的输出分析程序。支持的分析程序 `cmake`、`gcc`、`gnuld`(适用于 GNULD 样式的链接器输出)、`msvc`(适用于 Microsoft Visual C++)、`ghs`(适用于 Green Hills 编译器,具有 --no_wrap_diagnostics --brief_diagnostics),`diab`(适用于 Wind River Diab 编译器)以及 `iwyu`(适用于 include-what-you-use 诊断)。",
"cmake-tools.configuration.cmake.additionalBuildProblemMatchers.markdownDescription": "Additional problem matchers for build output. Use this to surface diagnostics from tools like clang-tidy, PCLint Plus, cppcheck, or custom scripts integrated via `add_custom_command`/`add_custom_target` in CMake.\r\n\r\nEach entry defines a `name` (used as the diagnostic source label), a `regexp`, and capture group indices for `file`, `line`, `column`, `severity`, `message`, and `code`.\r\n\r\nFor example, to match clang-tidy output like `/path/file.cpp:10:5: warning: some message [check-name]`:\r\n```json\r\n[\r\n {\r\n \"name\": \"clang-tidy\",\r\n \"regexp\": \"^(.+?):(\\\\d+):(\\\\d+):\\\\s+(warning|error|note):\\\\s+(.+?)\\\\s*(?:\\\\[(.+)\\\\])?$\",\r\n \"file\": 1,\r\n \"line\": 2,\r\n \"column\": 3,\r\n \"severity\": 4,\r\n \"message\": 5,\r\n \"code\": 6\r\n }\r\n]\r\n```\r\n\r\nCustom matchers run **after** the built-in parsers (`gcc`, `msvc`, etc.) so they do not steal lines from built-in compilers.",
"cmake-tools.configuration.cmake.additionalBuildProblemMatchers.name": "A unique name for this matcher, used as the diagnostic source label in the Problems pane.",
"cmake-tools.configuration.cmake.additionalBuildProblemMatchers.regexp": "The regular expression to match against each build output line.",
"cmake-tools.configuration.cmake.additionalBuildProblemMatchers.file": "The capture group index for the file path. Defaults to `1`.",
"cmake-tools.configuration.cmake.additionalBuildProblemMatchers.line": "The capture group index for the line number. Defaults to `2`.",
"cmake-tools.configuration.cmake.additionalBuildProblemMatchers.column": "The capture group index for the column number. Optional.",
"cmake-tools.configuration.cmake.additionalBuildProblemMatchers.severity.group": "The capture group index for the severity (should capture 'error', 'warning', or 'info').",
"cmake-tools.configuration.cmake.additionalBuildProblemMatchers.severity.fixed": "A fixed severity to apply to all matches from this pattern.",
"cmake-tools.configuration.cmake.additionalBuildProblemMatchers.message": "The capture group index for the diagnostic message. Defaults to `3`.",
"cmake-tools.configuration.cmake.additionalBuildProblemMatchers.code": "The capture group index for an optional diagnostic code.",
"cmake-tools.configuration.cmake.debugConfig.description": "要在调试目标时使用的调试配置。",
"cmake-tools.configuration.cmake.debugConfig.symbolSearchPath.description": "Visual Studio 调试程序符号搜索路径。",
"cmake-tools.configuration.cmake.debugConfig.additionalSOLibSearchPath.description": "用于搜索 .so 文件的 GDB 或 LLDB 的路径。",
Expand Down Expand Up @@ -231,6 +244,7 @@
"cmake-tools.configuration.cmake.postRunCoverageTarget.description": "使用测试资源管理器运行覆盖率测试之后要生成的目标",
"cmake-tools.configuration.cmake.coverageInfoFiles.description": "使用测试资源管理器运行覆盖率测试后要处理的 LCOV 覆盖率信息文件。",
"cmake-tools.configuration.cmake.useFolderPropertyInBuildTargetDropdown.description": "控制默认生成目标下拉列表是否按 CMake 文件夹组分组。",
"cmake-tools.configuration.cmake.setBuildTargetSameAsLaunchTarget.description": "When enabled, setting the launch/debug target automatically sets the build target to match. The build target can still be changed independently.",
"cmake-tools.debugger.pipeName.description": "用于调试器通信的管道(在 Windows 上)或域套接字(在 Unix 上)的名称。",
"cmake-tools.debugger.clean.description": "在配置之前清理。",
"cmake-tools.debugger.configureAll.description": "为所有项目配置。",
Expand Down
1 change: 1 addition & 0 deletions i18n/chs/src/cmakeProject.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"generator.changed.restart.driver": "在生成器更改后重启 CMake 驱动程序。",
"preferredGenerator.changed.restart.driver": "在 preferredGenerators 更改后重启 CMake 驱动程序。",
"bad.executable": "CMake 可执行文件错误: {0}。请检查以确保它已安装,或者 {1} 设置的值包含正确的路径",
"shell.changed.restart.driver": "Restarting the CMake driver after a shell change.",
"targests.in.preset": "[预设中的目标]",
"constructing.cmakeproject": "构造新的 CMakeProject 实例",
"disposing.driver": "正在释放 CMake 驱动程序",
Expand Down
7 changes: 7 additions & 0 deletions i18n/chs/src/ctest.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@
"test.buildingPostRunCoverageTarget": "在运行覆盖率测试后为项目 {1} 生成 postRunCoverageTarget“{0}”。",
"test.postRunCoverageTargetFailure": "在 {0} 的项目上生成目标 postRunCoverageTarget 失败。跳过覆盖率数据的处理。",
"test.skip.run.build.failure": "由于生成失败而未运行测试。",
"debug.without.launch.config": "Debug without launch configuration",
"choose.debug.method": "Choose how to debug the test.",
"yes": "Yes",
"no": "No",
"never.debug.with.launch.prompt": "Would you like to always debug tests without a launch configuration in this workspace?",
"no.launch.config": "No launch configurations found.",
"choose.launch.config": "Choose a launch configuration to debug the test with.",
"test.skip.debug.build.failure": "由于生成失败而未调试测试。",
"build.failed": "生成失败",
"run.tests.profile": "运行测试",
Expand Down
1 change: 1 addition & 0 deletions i18n/chs/src/extension.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
"cmake.finished.returned.unserializable": "{0} 已完成(已返回不可序列化的值)",
"loading.extension.commands": "正在加载扩展命令",
"register.command": "注册 CMakeTools 扩展命令 {0}",
"bookmark.target.not.resolved": "Bookmark \"{0}\" could not be resolved to a target. The project may need to be reconfigured.",
"search.project.outline": "输入搜索词以筛选项目大纲",
"added.to": "已添加到",
"removed.from": "已移除自",
Expand Down
10 changes: 5 additions & 5 deletions i18n/chs/src/proc.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
{
"executing.command": "正在执行命令: {0}",
"execution.environment": " 环境为 {0}",
"process.error": "命令: {0} 失败,出现错误: {1} 堆栈: {2}",
"process.exit.with.signal": "命令: {0} 退出,出现代码: {1} 和信号: {2} 堆栈: {3}",
"process.exit": "命令: {0} 退出,出现代码: {1} 堆栈: {2}",
"process.exit.stdout": "有关标准输出的命令输出: {0} 堆栈: {1}",
"process.exit.stderr": "有关标准错误的命令输出: {0} 堆栈: {1}",
"process.error": "The command: {0} failed with error: {1}",
"process.exit.with.signal": "The command: {0} exited with code: {1} and signal: {2}",
"process.exit": "The command: {0} exited with code: {1}",
"process.exit.stdout": "Command output on standard out: {0}",
"process.exit.stderr": "Command output on standard error: {0}",
"processing.data.event.stdout": "正在处理 proc stdout 中的 {0} 事件",
"processing.data.event.stderr": "正在处理 proc stderr 中的 {0} 事件",
"resolving.close.event": "正在解析 {0} 事件上的进程"
Expand Down
Loading
Loading