vscode-cmake-tools/package.nls.json

97 строки
9.7 KiB
JSON

{
"cmake-tools.command.cmake.viewLog.title": "Open the CMake Tools Log File",
"cmake-tools.command.cmake.editKits.title": "Edit User-Local CMake Kits",
"cmake-tools.command.cmake.scanForKits.title": "Scan for Kits",
"cmake-tools.command.cmake.selectKit.title": "Select a Kit",
"cmake-tools.command.cmake.setVariant.title": "Select Variant",
"cmake-tools.command.cmake.configure.title": "Configure",
"cmake-tools.command.cmake.build.title": "Build",
"cmake-tools.command.cmake.buildNamedTarget.title": "(Internal) Build a Target by Name",
"cmake-tools.command.cmake.compileFile.title": "Compile Active File",
"cmake-tools.command.cmake.outline.compileFile.title": "Compile File",
"cmake-tools.command.cmake.install.title": "Install",
"cmake-tools.command.cmake.buildWithTarget.title": "Build Target",
"cmake-tools.command.cmake.setDefaultTarget.title": "Set Build Target",
"cmake-tools.command.cmake.cleanConfigure.title": "Delete Cached and Reconfigure",
"cmake-tools.command.cmake.outline.cleanConfigure.title": "Clean Reconfigure",
"cmake-tools.command.cmake.clean.title": "Clean",
"cmake-tools.command.cmake.cleanRebuild.title": "Clean Rebuild",
"cmake-tools.command.cmake.ctest.title": "Run Tests",
"cmake-tools.command.cmake.editCache.title": "Edit CMake Cache",
"cmake-tools.command.cmake.quickStart.title": "Quick Start",
"cmake-tools.command.cmake.debugTarget.title": "Debug Target",
"cmake-tools.command.cmake.launchTarget.title": "Run Without Debugging",
"cmake-tools.command.cmake.selectLaunchTarget.title": "Set Debug Target",
"cmake-tools.command.cmake.stop.title": "Cancel All Tasks",
"cmake-tools.command.cmake.outline.stop.title": "Cancel Build",
"cmake-tools.command.cmake.resetState.title": "Reset CMake Tools Extension State (For troubleshooting)",
"cmake-tools.command.cmake.outline.runUtilityTarget.title": "Run Utility",
"cmake-tools.command.cmake.outline.debugTarget.title": "Run with Debugger",
"cmake-tools.command.cmake.outline.launchTarget.title": "Run in Terminal",
"cmake-tools.command.cmake.outline.setDefaultTarget.title": "Set as Default Target",
"cmake-tools.command.cmake.outline.setLaunchTarget.title": "Set as Launch/Debug Target",
"cmake-tools.command.cmake.outline.revealInCMakeLists.title": "Open CMakeLists.txt",
"cmake-tools.configuration.title": "CMake Tools configuration",
"cmake-tools.configuration.cmake.cmakePath.description": "Name/path of the CMake executable to use.",
"cmake-tools.configuration.cmake.buildDirectory.description": "The directory where CMake build files will go.",
"cmake-tools.configuration.cmake.installPrefix.description": "The directory where CMake installed files will go.",
"cmake-tools.configuration.cmake.sourceDirectory.description": "The directory of the root CMakeLists.txt file.",
"cmake-tools.configuration.cmake.saveBeforeBuild.description": "Save open files before building.",
"cmake-tools.configuration.cmake.buildBeforeRun.description": "Build the target before running it.",
"cmake-tools.configuration.cmake.clearOutputBeforeBuild.description": "Clear build output before each build.",
"cmake-tools.configuration.cmake.configureSettings.description": "CMake variables to set on the command line.",
"cmake-tools.configuration.cmake.cacheInit.string.description": "Path to a cache-initializing CMake file.",
"cmake-tools.configuration.cmake.cacheInit.array.description": "List of cache initializer files.",
"cmake-tools.configuration.cmake.cacheInit.array.string.description": "A cache initializing CMake file.",
"cmake-tools.configuration.cmake.preferredGenerators.description": "The preferred CMake generator(s) to use when configuring (tried in order of listing).",
"cmake-tools.configuration.cmake.generator.description": "The CMake generator to use.",
"cmake-tools.configuration.cmake.toolset.description": "The CMake toolset to use when configuring.",
"cmake-tools.configuration.cmake.platform.description": "The CMake platform to use when configuring.",
"cmake-tools.configuration.cmake.configureArgs.description": "Additional arguments to pass to CMake when configuring.",
"cmake-tools.configuration.cmake.buildArgs.description": "Additional arguments to pass to CMake when building.",
"cmake-tools.configuration.cmake.buildToolArgs.description": "Additional arguments to pass to the underlying build tool when building.",
"cmake-tools.configuration.cmake.parallelJobs.description": "The number of parallel build jobs. Use zero to automatically detect the number of CPUs.",
"cmake-tools.configuration.cmake.ctestPath.description": "Path to CTest executable. If null, will be inferred from cmake.cmakePath (recommended to leave null).",
"cmake-tools.configuration.cmake.ctest.parallelJobs.description": "The number of parallel test jobs. Use zero to use the value of cmake.parallelJobs.",
"cmake-tools.configuration.cmake.parseBuildDiagnostics.description": "Parse compiler output for warnings and errors.",
"cmake-tools.configuration.cmake.enabledOutputParsers.description": "Output parsers to use. Supported parsers 'cmake', 'gcc', 'gnuld' for GNULD-style inker output, 'msvc' for Microsoft Visual C++, and 'ghs' for the Green Hills compiler with --no_wrap_diagnostics --brief_diagnostics.",
"cmake-tools.configuration.cmake.debugConfig.description": "The debug configuration to use when debugging a target.",
"cmake-tools.configuration.cmake.debugConfig.symbolSearchPath.description": "Visual Studio debugger symbol search paths.",
"cmake-tools.configuration.cmake.debugConfig.additionalSOLibSearchPath.description": "Paths for GDB or LLDB to search for .so files.",
"cmake-tools.configuration.cmake.debugConfig.externalConsole.description": "Launch an external console for the program.",
"cmake-tools.configuration.cmake.debugConfig.logging.description": "Tell what types of messages should be logged to the console.",
"cmake-tools.configuration.cmake.debugConfig.visualizerFile.description": ".natvis file to be used when debugging.",
"cmake-tools.configuration.cmake.debugConfig.args.description": "Arguments to pass to program command line.",
"cmake-tools.configuration.cmake.debugConfig.cwd.description": "Set the working directory for the program.",
"cmake-tools.configuration.cmake.debugConfig.environment.name.description": "Name of environment variable.",
"cmake-tools.configuration.cmake.debugConfig.environment.value.description": "Value for the environment variable.",
"cmake-tools.configuration.cmake.debugConfig.miDebuggerPath.description": "Path to gdb or lldb debugger.",
"cmake-tools.configuration.cmake.debugConfig.stopAtEntry.description": "Stop at the entry point of the target.",
"cmake-tools.configuration.cmake.debugConfig.setupCommands.description": "Command to set up gdb or lldb.",
"cmake-tools.configuration.cmake.debugConfig.setupCommands.text.description": "Command to run.",
"cmake-tools.configuration.cmake.debugConfig.setupCommands.description.description": "Description of the command.",
"cmake-tools.configuration.cmake.defaultVariants.buildType.description": "The build type.",
"cmake-tools.configuration.cmake.defaultVariants.buildType.debug.long": "Disable optimizations - include debug information.",
"cmake-tools.configuration.cmake.defaultVariants.buildType.release.long": "Optimize for speed - exclude debug information.",
"cmake-tools.configuration.cmake.defaultVariants.buildType.minsize.long": "Optimize for smallest binary size - exclude debug information.",
"cmake-tools.configuration.cmake.defaultVariants.buildType.reldeb.long": "Optimize for speed - include debug information.",
"cmake-tools.configuration.cmake.ctestArgs.description": "Arguments to pass to CTest.",
"cmake-tools.configuration.cmake.environment.description": "Environment variables to set when running CMake commands.",
"cmake-tools.configuration.cmake.environment.additionalProperties.description": "Value for the environment variable.",
"cmake-tools.configuration.cmake.configureEnvironment.description": "Environment variables to pass to CMake during configure.",
"cmake-tools.configuration.cmake.buildEnvironment.description": "Environment variables to pass to CMake during build.",
"cmake-tools.configuration.cmake.testEnvironment.description": "Environment variables to pass to CTest.",
"cmake-tools.configuration.cmake.mingwSearchDirs.description": "Directories where MinGW may be installed.",
"cmake-tools.configuration.cmake.searchDirs.items.description": "Path to a directory.",
"cmake-tools.configuration.cmake.emscriptenSearchDirs.description": "Directories where Emscripten may be installed.",
"cmake-tools.configuration.cmake.copyCompileCommands.description": "Copy compile_commands.json to this location after a successful configure.",
"cmake-tools.configuration.cmake.configureOnOpen.description": "Automatically configure CMake project directories when they are opened.",
"cmake-tools.configuration.cmake.useCMakeServer.description": "Enable CMake server.",
"cmake-tools.configuration.cmake.ignoreKitEnv.description": "Do not use the kit environment variables when running CMake commands.",
"cmake-tools.configuration.cmake.buildTask.description": "Build using tasks.json instead of internal process.",
"cmake-tools.configuration.cmake.outputLogEncoding.description": "Encoding of the output from external commands (eg.cmake -- build).",
"cmake-tools.configuration.cmake.enableTraceLogging.description": "Enable trace logging to file and console (very noisy).",
"cmake-tools.configuration.views.cmake.folders.description": "Folders",
"cmake-tools.configuration.views.cmake.outline.description": "Project Outline"
}