vscode-makefile-tools/package.nls.json

74 строки
8.9 KiB
JSON

{
"makefile-tools.command.makefile.buildTarget.title": "Makefile: Build the current target",
"makefile-tools.command.makefile.buildCleanTarget.title": "Makefile: Build clean the current target",
"makefile-tools.command.makefile.buildAll.title": "Makefile: Build the target ALL",
"makefile-tools.command.makefile.buildCleanAll.title": "Makefile: Build clean the target ALL",
"makefile-tools.command.makefile.launchDebug.title": "Makefile: Debug the selected binary target",
"makefile-tools.command.makefile.launchRun.title": "Makefile: Run the selected binary target in the terminal",
"makefile-tools.command.makefile.setBuildConfiguration.title": "Makefile: Set the current build configuration",
"makefile-tools.command.makefile.setBuildTarget.title": "Makefile: Set the target to be built by make",
"makefile-tools.command.makefile.setLaunchConfiguration.title": "Makefile: Set the make launch configuration",
"makefile-tools.command.makefile.openMakefilePathSetting.title": "Makefile: Open Makefile Path Setting",
"makefile-tools.command.makefile.openMakePathSetting.title": "Makefile: Open Make Path Setting",
"makefile-tools.command.makefile.openBuildLogSetting.title": "Makefile: Open Build Log Setting",
"makefile-tools.command.makefile.openBuildLogFile.title": "Makefile: Open Build Log File",
"makefile-tools.command.makefile.openMakefileFile.title": "Makefile: Open Makefile File",
"workbench.action.openWorkspaceSettings.title": "Preferences: Open Workspace Settings",
"makefile-tools.command.makefile.configure.title": "Makefile: Configure",
"makefile-tools.command.makefile.cleanConfigure.title": "Makefile: Clean Configure",
"makefile-tools.command.makefile.preConfigure.title": "Makefile: Pre-Configure",
"makefile-tools.command.makefile.postConfigure.title": "Makefile: Post-Configure",
"makefile-tools.command.makefile.resetState.title": "Makefile: Reset the Makefile Tools Extension workspace state (For troubleshooting)",
"makefile-tools.configuration.views.makefile.outline.description": "Project Outline",
"makefile-tools.configuration.makefile.makePath.description": "The path to the make tool",
"makefile-tools.configuration.makefile.configurations.description": "The user defined makefile configurations",
"makefile-tools.configuration.makefile.configurations.name.description": "The name of the makefile configuration",
"makefile-tools.configuration.makefile.configurations.makefilePath.description": "File path to the makefile",
"makefile-tools.configuration.makefile.configurations.makePath.description": "File path to the make command",
"makefile-tools.configuration.makefile.configurations.makeDirectory.description": "Folder path passed to make via the -C switch",
"makefile-tools.configuration.makefile.configurations.makeArgs.description": "Arguments to pass to the make command",
"makefile-tools.configuration.makefile.configurations.problemMatchers.description": "Problem matcher names to use when building the current target",
"makefile-tools.configuration.makefile.configurations.buildLog.description": "File path to the build log used instead of dry-run output",
"makefile-tools.configuration.makefile.defaultLaunchConfiguration.description": "Various global debugger settings",
"makefile-tools.configuration.makefile.defaultLaunchConfiguration.MIMode.description": "The non VS debugger type: gdb or lldb",
"makefile-tools.configuration.makefile.defaultLaunchConfiguration.miDebuggerPath.description": "Path to the non VS debugger (gdb or lldb)",
"makefile-tools.configuration.makefile.defaultLaunchConfiguration.stopAtEntry.description": "Stop at the entry point of the target",
"makefile-tools.configuration.makefile.defaultLaunchConfiguration.symbolSearchPath.description": "The path to the symbols",
"makefile-tools.configuration.makefile.launchConfigurations.description": "The user defined launch (debug/run) configurations",
"makefile-tools.configuration.makefile.launchConfigurations.binaryPath.description": "The full path to the binary to run or debug",
"makefile-tools.configuration.makefile.launchConfigurations.binaryArgs.description": "Arguments to pass to program command line",
"makefile-tools.configuration.makefile.launchConfigurations.cwd.description": "Set the working directory for the program",
"makefile-tools.configuration.makefile.launchConfigurations.MIMode.description": "The non VS debugger type: gdb or lldb",
"makefile-tools.configuration.makefile.launchConfigurations.miDebuggerPath.description": "Path to the non VS debugger (gdb or lldb)",
"makefile-tools.configuration.makefile.launchConfigurations.stopAtEntry.description": "Stop at the entry point of the target",
"makefile-tools.configuration.makefile.launchConfigurations.symbolSearchPath.description": "The path to the symbols",
"makefile-tools.configuration.makefile.loggingLevel.description": "The logging level for the makefile tools extension",
"makefile-tools.configuration.makefile.makeDirectory.description": "The folder path to be passed to make via the switch -C",
"makefile-tools.configuration.makefile.makefilePath.description": "The path to the makefile of the project",
"makefile-tools.configuration.makefile.buildLog.description": "The path to the build log that is read to bypass a dry-run",
"makefile-tools.configuration.makefile.extensionOutputFolder.description": "The path to various output files produced by the extension. Defaults to the VS Code workspace storage location.",
"makefile-tools.configuration.makefile.extensionLog.description": "The path to an output file storing all content from the Makefile output channel. Defaults to the value of the 'makefile.extensionOutputFolder' setting.",
"makefile-tools.configuration.makefile.configurationCachePath.description": "The path to a cache file storing the output of the last dry-run make command. When unset, a file named 'configurationCache.log' is stored at the path specified by the 'makefile.extensionOutputFolder' setting.",
"makefile-tools.configuration.makefile.dryrunSwitches.description": "Arguments to pass to the dry-run make invocation",
"makefile-tools.configuration.makefile.additionalCompilerNames.description": "Names of compiler tools to be added to the extension known list",
"makefile-tools.configuration.makefile.excludeCompilerNames.description": "Names of compiler tools to be excluded from the extension known list",
"makefile-tools.configuration.makefile.configureOnOpen.description": "Automatically configure Makefile project directories when they are opened",
"makefile-tools.configuration.makefile.configureOnEdit.description": "Automatically configure Makefile project directories when any relevant makefiles and/or settings are changed",
"makefile-tools.configuration.makefile.configureAfterCommand.description": "Automatically configure Makefile project directories after relevant operations, like change build configuration or makefile target",
"makefile-tools.configuration.makefile.preConfigureScript.description": "The path to the script that needs to be run at least once before configure",
"makefile-tools.configuration.makefile.preConfigureArgs.description": "Arguments to pass to the pre-configure script",
"makefile-tools.configuration.makefile.postConfigureScript.description": "The path to the script that needs to be run at least once after configure",
"makefile-tools.configuration.makefile.postConfigureArgs.description": "Arguments to pass to the post-configure script",
"makefile-tools.configuration.makefile.alwaysPreConfigure.description": "Always run the pre-configure script before configure",
"makefile-tools.configuration.makefile.alwaysPostConfigure.description": "Always run the post-configure script after configure",
"makefile-tools.configuration.makefile.ignoreDirectoryCommands.description": "Don't analyze directory changing commands like cd, push, pop.",
"makefile-tools.configuration.makefile.phonyOnlyTargets.description": "Display only the phony targets",
"makefile-tools.configuration.makefile.saveBeforeBuildOrConfigure.description": "Save opened files before building or configuring",
"makefile-tools.configuration.makefile.buildBeforeLaunch.description": "Build the current target before launch (debug/run)",
"makefile-tools.configuration.makefile.clearOutputBeforeBuild.description": "Clear the output channel at the beginning of a build",
"makefile-tools.configuration.makefile.compileCommandsPath.description": "The path to the compilation database file",
"makefile-tools.configuration.makefile.panel.visibility.debug.description": "Enable debugging locally (in this host) images built by this extension",
"makefile-tools.configuration.makefile.panel.visibility.run.description": "Enable running locally (in this host) images built by this extension",
"makefile-tools.configuration.makefile.panel.visibility.description": "Modify this setting to control the visibility setting in the Makefile Project Outline panel."
}