Skip to content

Commit

Permalink
Localization - Translated Strings
Browse files Browse the repository at this point in the history
  • Loading branch information
csigs committed Jun 30, 2024
1 parent c1c2412 commit 9ed77f0
Show file tree
Hide file tree
Showing 65 changed files with 286 additions and 26 deletions.
2 changes: 2 additions & 0 deletions i18n/chs/package.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@
"cmake-tools.configuration.cmake.ctest.parallelJobs.markdownDescription": "并行测试作业的数量。使用零可以使用 `#cmake.parallelJobs#` 的值。这仅适用于 `#cmake.ctest.allowParallelJobs#` 设置为 `true` 的情况。",
"cmake-tools.configuration.cmake.ctest.allowParallelJobs.description": "允许并行运行 ctest,但结果输出可能会因此而乱码,并且测试资源管理器可能无法准确地反映测试进度。",
"cmake-tools.configuration.cmake.ctest.testExplorerIntegrationEnabled.description": "是否启用与测试资源管理器的集成。如果希望使用其他扩展进行测试集成,这有助于禁用。",
"cmake-tools.configuration.cmake.ctest.testSuiteDelimiter.markdownDescription": "Optional delimiter used to separate test suite names and group tests hierarchically in the Test Explorer. This string is used in a Regular Expression, so some delimiters may need escaping. Examples: `-` ( One delimiter: `-`), `\\.|::` (Two delimiters: `.` or `::`. Note that `.` needs to be escaped.)",
"cmake-tools.configuration.cmake.parseBuildDiagnostics.description": "分析编译器输出以查找警告和错误。",
"cmake-tools.configuration.cmake.enabledOutputParsers.description": "要使用的输出分析程序。支持的分析程序 `cmake`、`gcc`、`gnuld`(适用于 GNULD 样式的 inker 输出)、`msvc`(适用于 Microsoft Visual C++)、`ghs`(适用于 Green Hills 编译器,具有 --no_wrap_diagnostics --brief_diagnostics),以及 `diab`(适用于 Wind River Diab 编译器)。",
"cmake-tools.configuration.cmake.debugConfig.description": "要在调试目标时使用的调试配置。",
Expand Down Expand Up @@ -153,6 +154,7 @@
"cmake-tools.configuration.cmake.copyCompileCommands.description": "成功配置后将 compile_commands.json 复制到此位置。",
"cmake-tools.configuration.cmake.configureOnOpen.description": "在 CMake 项目目录打开时自动对其进行配置。",
"cmake-tools.configuration.cmake.configureOnEdit.description": "保存 cmake.sourceDirectory 或 CMakeLists.txt 内容时,自动配置 CMake 项目目录。",
"cmake-tools.configuration.cmake.deleteBuildDirOnCleanConfigure.description": "Delete the entire build directory when a clean configure is invoked.",
"cmake-tools.configuration.cmake.setBuildTypeOnMultiConfig.description": "在多配置生成器上也设置 CMAKE_BUILD_TYPE。",
"cmake-tools.configuration.cmake.skipConfigureIfCachePresent.description": "如果存在缓存,则跳过配置进程。",
"cmake-tools.configuration.cmake.cmakeCommunicationMode": "用于在扩展和 CMake 之间进行通信的协议。",
Expand Down
8 changes: 8 additions & 0 deletions i18n/chs/src/cmake/cmakeExecutable.i18n.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"cmake.exe.not.found.in.cache": "CMake executable not found in cache. Checking again."
}
2 changes: 1 addition & 1 deletion i18n/chs/src/ctest.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
"no.project.found": "找不到文件夹的项目 {0}",
"no.driver.found": "找不到文件夹 {0} 的驱动程序",
"ctest.args.not.found": "无法获取测试参数",
"test.results.not.found": "找不到测试结果。",
"test.failed.with.exit.code": "测试{0}失败,退出代码 {1}。",
"test.failed.with.completion.status": "测试{0}失败,完成状态为 \"{1}\"",
"test.failed": "测试{0}失败。有关详细信息,请检查输出。",
"test.results.not.found": "找不到测试结果。",
"ctest.run.terminated": "CTest 运行已终止",
"ctest.finished.with.code": "CTest 已完成,返回代码 {0}",
"folder.not.found.in.test.explorer": "在测试资源管理器中找不到文件夹: {0}",
Expand Down
3 changes: 3 additions & 0 deletions i18n/chs/src/presetsController.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@
"user.cancelled.compiler.selection": "用户已取消编译器选择",
"user.selected.compiler": "用户已选择编译器 {0}",
"select.one.or.more.config.preset.placeholder": "选择一个或多个配置预设",
"custom.configure.preset.toolchain.file": "Configure preset using toolchain file",
"description.custom.configure.preset": "Sets Ninja generator, build and install directory",
"custom.configure.preset": "Custom configure preset",
"user.selected.config.preset": "用户已选择配置预设 {0}",
"yes": "",
"no": "",
Expand Down
9 changes: 8 additions & 1 deletion i18n/chs/src/projectStatus.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,15 @@
"Launch": "启动",
"Folder": "文件夹",
"active.folder": "活动文件夹",
"configPreset.change": "Change Configure Preset",
"buildPreset.change": "Change Build Preset",
"testPreset.change": "Change Test Preset",
"packagePreset.change": "Change Package Preset",
"workflowPreset.change": "Change Workflow Preset",
"kit.change": "Change Kit",
"set.build.target": "设置生成目标",
"set.debug.target": "设置调试目标",
"set.launch.target": "设置启动目标",
"select.active.folder": "选择活动文件夹"
"select.active.folder": "选择活动文件夹",
"set.variant": "Set variant"
}
2 changes: 2 additions & 0 deletions i18n/cht/package.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@
"cmake-tools.configuration.cmake.ctest.parallelJobs.markdownDescription": "平行測試工作的數量。使用零以使用 `#cmake.parallelJobs#` 的值。這僅適用於 `#cmake.ctest.allowParallelJobs#` 設定為 `true` 的情况。",
"cmake-tools.configuration.cmake.ctest.allowParallelJobs.description": "允許 ctest 平行執行,但結果輸出可能因此而出現亂碼,且測試總管可能無法精確反映測試進度。",
"cmake-tools.configuration.cmake.ctest.testExplorerIntegrationEnabled.description": "是否已啟用與測試總管的整合。如果您偏好使用不同的延伸模組進行測試整合,這有助於停用。",
"cmake-tools.configuration.cmake.ctest.testSuiteDelimiter.markdownDescription": "Optional delimiter used to separate test suite names and group tests hierarchically in the Test Explorer. This string is used in a Regular Expression, so some delimiters may need escaping. Examples: `-` ( One delimiter: `-`), `\\.|::` (Two delimiters: `.` or `::`. Note that `.` needs to be escaped.)",
"cmake-tools.configuration.cmake.parseBuildDiagnostics.description": "剖析警告與錯誤的編譯器輸出。",
"cmake-tools.configuration.cmake.enabledOutputParsers.description": "要使用的輸出剖析器。支援的剖析器為 `cmake`、`gcc`、`gnuld` (若為 GNULD 樣式的連結器輸出)、`msvc` (若為 Microsoft Visual C++)、`ghs` (若為具有 --no_wrap_diagnostics --brief_diagnostics 的 Green Hills 編譯器) 及 `diab` (若為 Wind River Diab 編譯器)。",
"cmake-tools.configuration.cmake.debugConfig.description": "偵錯目標時,要使用的偵錯組態。",
Expand Down Expand Up @@ -153,6 +154,7 @@
"cmake-tools.configuration.cmake.copyCompileCommands.description": "組態成功之後,將 compile_commands.json 複製到此位置。",
"cmake-tools.configuration.cmake.configureOnOpen.description": "開啟 CMake 專案目錄時自動進行組態。",
"cmake-tools.configuration.cmake.configureOnEdit.description": "在儲存 cmake.sourceDirectory 或 CMakeLists.txt 內容後,自動設定 CMake 專案目錄。",
"cmake-tools.configuration.cmake.deleteBuildDirOnCleanConfigure.description": "Delete the entire build directory when a clean configure is invoked.",
"cmake-tools.configuration.cmake.setBuildTypeOnMultiConfig.description": "也在多個組態產生器上設定 CMAKE_BUILD_TYPE。",
"cmake-tools.configuration.cmake.skipConfigureIfCachePresent.description": "如果有快取,則跳過設定流程。",
"cmake-tools.configuration.cmake.cmakeCommunicationMode": "用於在延伸模組與 CMake 之間通訊的通訊協定。",
Expand Down
8 changes: 8 additions & 0 deletions i18n/cht/src/cmake/cmakeExecutable.i18n.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"cmake.exe.not.found.in.cache": "CMake executable not found in cache. Checking again."
}
2 changes: 1 addition & 1 deletion i18n/cht/src/ctest.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
"no.project.found": "找不到資料夾 {0} 的專案",
"no.driver.found": "找不到資料夾 {0} 的驅動程式",
"ctest.args.not.found": "無法取得測試引數",
"test.results.not.found": "找不到測試結果。",
"test.failed.with.exit.code": "測試 {0} 失敗,結束代碼為 {1}。",
"test.failed.with.completion.status": "測試 {0} 失敗,完成狀態為「{1}」。",
"test.failed": "測試 {0} 失敗。如需詳細資訊,請檢查輸出。",
"test.results.not.found": "找不到測試結果。",
"ctest.run.terminated": "已終止 CTest 執行",
"ctest.finished.with.code": "CTest 已完成。傳回碼: {0}",
"folder.not.found.in.test.explorer": "在測試總管中找不到資料夾: {0}",
Expand Down
3 changes: 3 additions & 0 deletions i18n/cht/src/presetsController.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@
"user.cancelled.compiler.selection": "使用者已取消選取編譯器",
"user.selected.compiler": "使用者選取的編譯器 {0}",
"select.one.or.more.config.preset.placeholder": "選取一或多個設定預設",
"custom.configure.preset.toolchain.file": "Configure preset using toolchain file",
"description.custom.configure.preset": "Sets Ninja generator, build and install directory",
"custom.configure.preset": "Custom configure preset",
"user.selected.config.preset": "使用者選取的設定預設{0}",
"yes": "",
"no": "",
Expand Down
9 changes: 8 additions & 1 deletion i18n/cht/src/projectStatus.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,15 @@
"Launch": "啟動",
"Folder": "資料夾",
"active.folder": "作用中資料夾",
"configPreset.change": "Change Configure Preset",
"buildPreset.change": "Change Build Preset",
"testPreset.change": "Change Test Preset",
"packagePreset.change": "Change Package Preset",
"workflowPreset.change": "Change Workflow Preset",
"kit.change": "Change Kit",
"set.build.target": "設定組建目標",
"set.debug.target": "設定偵錯目標",
"set.launch.target": "設定啟動目標",
"select.active.folder": "選取作用中資料夾"
"select.active.folder": "選取作用中資料夾",
"set.variant": "Set variant"
}
2 changes: 2 additions & 0 deletions i18n/csy/package.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@
"cmake-tools.configuration.cmake.ctest.parallelJobs.markdownDescription": "Počet paralelních testovacích úloh. Pokud chcete použít hodnotu `#cmake.parallelJobs#`, použijte nulu. Toto platí pouze v případě, že je hodnota `#cmake.ctest.allowParallelJobs#` nastavená na `true`.",
"cmake-tools.configuration.cmake.ctest.allowParallelJobs.description": "Umožňuje paralelní spouštění ctestů, avšak výstup výsledků může být v důsledku toho zkreslený a Průzkumník testů nemusí přesně odrážet průběh testu.",
"cmake-tools.configuration.cmake.ctest.testExplorerIntegrationEnabled.description": "Určuje, jestli je povolená integrace s průzkumníkem testů. To je užitečné zakázat, pokud upřednostňujete použití jiného rozšíření pro integraci testů.",
"cmake-tools.configuration.cmake.ctest.testSuiteDelimiter.markdownDescription": "Optional delimiter used to separate test suite names and group tests hierarchically in the Test Explorer. This string is used in a Regular Expression, so some delimiters may need escaping. Examples: `-` ( One delimiter: `-`), `\\.|::` (Two delimiters: `.` or `::`. Note that `.` needs to be escaped.)",
"cmake-tools.configuration.cmake.parseBuildDiagnostics.description": "Analyzovat výstup kompilátoru z hlediska upozornění a chyb",
"cmake-tools.configuration.cmake.enabledOutputParsers.description": "Výstupní analyzátory, které se mají použít. Podporované jsou analyzátory `cmake`, `gcc` a `gnuld` pro výstup linkeru ve stylu GNULD, `msvc` pro Microsoft Visual C++, `ghs` pro kompilátor Green Hills s parametry --no_wrap_diagnostics nebo --brief_diagnostics a `diab` pro kompilátor Wind River Diab.",
"cmake-tools.configuration.cmake.debugConfig.description": "Konfigurace ladění, která se má použít při ladění cíle",
Expand Down Expand Up @@ -153,6 +154,7 @@
"cmake-tools.configuration.cmake.copyCompileCommands.description": "Po úspěšné konfiguraci zkopírovat soubor compile_commands.json do tohoto umístění",
"cmake-tools.configuration.cmake.configureOnOpen.description": "Automaticky konfigurovat adresáře projektu CMake při jejich otevření",
"cmake-tools.configuration.cmake.configureOnEdit.description": "Automaticky nakonfigurovat adresáře projektu CMake, když se uloží obsah cmake.sourceDirectory nebo CMakeLists.txt",
"cmake-tools.configuration.cmake.deleteBuildDirOnCleanConfigure.description": "Delete the entire build directory when a clean configure is invoked.",
"cmake-tools.configuration.cmake.setBuildTypeOnMultiConfig.description": "Nastavte CMAKE_BUILD_TYPE i pro generátory více konfigurací.",
"cmake-tools.configuration.cmake.skipConfigureIfCachePresent.description": "Přeskočit proces konfigurace, pokud je k dispozici mezipaměť",
"cmake-tools.configuration.cmake.cmakeCommunicationMode": "Protokol, pomocí kterého se komunikuje mezi rozšířením a nástrojem CMake.",
Expand Down
8 changes: 8 additions & 0 deletions i18n/csy/src/cmake/cmakeExecutable.i18n.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"cmake.exe.not.found.in.cache": "CMake executable not found in cache. Checking again."
}
2 changes: 1 addition & 1 deletion i18n/csy/src/ctest.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
"no.project.found": "Pro složku {0} se nenašel žádný projekt.",
"no.driver.found": "Pro složku {0} se nenašel žádný ovladač.",
"ctest.args.not.found": "Nepovedlo se získat argumenty testu.",
"test.results.not.found": "Výsledky testu se nenašly.",
"test.failed.with.exit.code": "Test {0} byl neúspěšný s ukončovacím kódem {1}.",
"test.failed.with.completion.status": "Test {0} byl neúspěšný se stavem dokončení {1}.",
"test.failed": "Test {0} byl neúspěšný. Další informace najdete ve výstupu.",
"test.results.not.found": "Výsledky testu se nenašly.",
"ctest.run.terminated": "Běh CTestu se ukončil.",
"ctest.finished.with.code": "CTest skončil s návratovým kódem {0}.",
"folder.not.found.in.test.explorer": "Složka se nenašla v Průzkumníkovi testů: {0}",
Expand Down
3 changes: 3 additions & 0 deletions i18n/csy/src/presetsController.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@
"user.cancelled.compiler.selection": "Uživatel zrušil výběr kompilátoru.",
"user.selected.compiler": "Uživatel vybral kompilátor {0}.",
"select.one.or.more.config.preset.placeholder": "Vyberte alespoň jednu předvolbu konfigurace.",
"custom.configure.preset.toolchain.file": "Configure preset using toolchain file",
"description.custom.configure.preset": "Sets Ninja generator, build and install directory",
"custom.configure.preset": "Custom configure preset",
"user.selected.config.preset": "Uživatel vybral předvolbu konfigurace {0}.",
"yes": "Ano",
"no": "Ne",
Expand Down
9 changes: 8 additions & 1 deletion i18n/csy/src/projectStatus.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,15 @@
"Launch": "Spustit",
"Folder": "Složka",
"active.folder": "Aktivní složka",
"configPreset.change": "Change Configure Preset",
"buildPreset.change": "Change Build Preset",
"testPreset.change": "Change Test Preset",
"packagePreset.change": "Change Package Preset",
"workflowPreset.change": "Change Workflow Preset",
"kit.change": "Change Kit",
"set.build.target": "Nastavit cíl sestavení",
"set.debug.target": "Nastavit cíl ladění",
"set.launch.target": "Nastavit cíl spuštění",
"select.active.folder": "Vybrat aktivní složku"
"select.active.folder": "Vybrat aktivní složku",
"set.variant": "Set variant"
}
2 changes: 2 additions & 0 deletions i18n/deu/package.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@
"cmake-tools.configuration.cmake.ctest.parallelJobs.markdownDescription": "Die Anzahl paralleler Testaufträge. Verwenden Sie 0, um den Wert `#cmake.parallelJobs#` zu verwenden. Das gilt nur, wenn `#cmake.ctest.allowParallelJobs#` auf `true` festgelegt ist.",
"cmake-tools.configuration.cmake.ctest.allowParallelJobs.description": "Ermöglicht die parallele Ausführung von ctests. Die Ergebnisausgabe ist jedoch möglicherweise dadurch unverständlich, und der Test-Explorer spiegelt den Teststatus möglicherweise nicht exakt wider.",
"cmake-tools.configuration.cmake.ctest.testExplorerIntegrationEnabled.description": "Gibt an, ob die Integration in den Test-Explorer aktiviert ist. Es ist hilfreich diese zu deaktivieren, wenn Sie lieber eine andere Erweiterung für die Testintegration verwenden.",
"cmake-tools.configuration.cmake.ctest.testSuiteDelimiter.markdownDescription": "Optional delimiter used to separate test suite names and group tests hierarchically in the Test Explorer. This string is used in a Regular Expression, so some delimiters may need escaping. Examples: `-` ( One delimiter: `-`), `\\.|::` (Two delimiters: `.` or `::`. Note that `.` needs to be escaped.)",
"cmake-tools.configuration.cmake.parseBuildDiagnostics.description": "Hiermit wird Compilerausgabe auf Warnungen und Fehler analysiert.",
"cmake-tools.configuration.cmake.enabledOutputParsers.description": "Zu verwendende Ausgabeparser. Unterstützte Parser `cmake`, `gcc`, `gnuld` für die Linkerausgabe im GNULD-Format, `msvc` für Microsoft Visual C++, `ghs` für den Green Hills-Compiler mit --no_wrap_diagnostics --brief_diagnostics und `diab` für den Wind River Diab-Compiler.",
"cmake-tools.configuration.cmake.debugConfig.description": "Die Debugkonfiguration, die beim Debuggen eines Ziels verwendet werden soll.",
Expand Down Expand Up @@ -153,6 +154,7 @@
"cmake-tools.configuration.cmake.copyCompileCommands.description": "Hiermit wird \"compile_commands.json\" nach erfolgreicher Konfiguration an diesen Speicherort kopiert.",
"cmake-tools.configuration.cmake.configureOnOpen.description": "Hiermit werden CMake-Projektverzeichnisse beim Öffnen automatisch konfiguriert.",
"cmake-tools.configuration.cmake.configureOnEdit.description": "Hiermit werden CMake-Projektverzeichnisse automatisch konfiguriert, wenn cmake.sourceDirectory- oder CMakeLists.txt-Inhalte gespeichert werden.",
"cmake-tools.configuration.cmake.deleteBuildDirOnCleanConfigure.description": "Delete the entire build directory when a clean configure is invoked.",
"cmake-tools.configuration.cmake.setBuildTypeOnMultiConfig.description": "CMAKE_BUILD_TYPE auch für Generatoren für mehrere Konfigurationen festlegen.",
"cmake-tools.configuration.cmake.skipConfigureIfCachePresent.description": "Hiermit wird der Konfigurationsprozess übersprungen, wenn der Cache vorhanden ist.",
"cmake-tools.configuration.cmake.cmakeCommunicationMode": "Das für die Kommunikation zwischen der Erweiterung und CMake verwendete Protokoll.",
Expand Down
8 changes: 8 additions & 0 deletions i18n/deu/src/cmake/cmakeExecutable.i18n.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"cmake.exe.not.found.in.cache": "CMake executable not found in cache. Checking again."
}
Loading

0 comments on commit 9ed77f0

Please sign in to comment.