mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-06 17:26:01 +02:00
Bug 540373: Cleanup: Remove trailing whitespace in properties files
Command used: # Remove space at eol in comments find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/^(#.*)[ \t]+$/\1/' {} + # Remove space at eol in blank lines find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/^[ \t]+$//' {} + # Replace escaped spaces at eol with unicode find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/([^\\])\\ $/\1\\u0020/' {} + # Replace unescaped spaces at eol with unicode find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/([^\\]) $/\1\\u0020/' {} + # Replace escaped tabs at eol with unicode find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/([^\\])\\\t$/\1\\u0009/' {} + # Replace unescaped tabs at eol with unicode find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/([^\\])\t$/\1\\u0009/' {} + # Stage all changes git add -A . # trim any remaining whitespace and then identify and fixup # manually # Only dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/MessagesForDebugVM.properties # needed this due to missing newline at end of the file find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/[ \t]+$//' {} + Change-Id: I858f16891fe001f4f7e62d5a4f904146e891cd39
This commit is contained in:
parent
be35c7327d
commit
ff75ae80fa
213 changed files with 626 additions and 627 deletions
|
@ -95,7 +95,7 @@ WizardAutotoolsNewCCProject.message.save=Saving new build options
|
|||
|
||||
|
||||
BuildTargetDialog.title.buildTarget=Build Special Targets
|
||||
BuildTargetDialog.title.makeTargetsFor=Make targets for
|
||||
BuildTargetDialog.title.makeTargetsFor=Make targets for\u0020
|
||||
BuildTargetDialog.button.build=Build
|
||||
|
||||
TargetListViewer.button.add=Add...
|
||||
|
|
|
@ -93,7 +93,7 @@ WizardAutotoolsNewCCProject.message.save=Saving new build options
|
|||
|
||||
|
||||
BuildTargetDialog.title.buildTarget=Build Special Targets
|
||||
BuildTargetDialog.title.makeTargetsFor=Make targets for
|
||||
BuildTargetDialog.title.makeTargetsFor=Make targets for\u0020
|
||||
BuildTargetDialog.button.build=Build
|
||||
|
||||
TargetListViewer.button.add=Add...
|
||||
|
|
|
@ -131,7 +131,7 @@ BuildPathInfoBlock.monitor.settingScannerInfo=Setting Scanner Info
|
|||
|
||||
BuildTargetDialog.title.buildTarget=Make Targets
|
||||
BuildTargetDialog.button.build=Build
|
||||
BuildTargetDialog.title.makeTargetsFor=Make Targets for:
|
||||
BuildTargetDialog.title.makeTargetsFor=Make Targets for:\u0020
|
||||
|
||||
MakeTargetDialog.exception.noTargetBuilderOnProject=Not target builders on the project
|
||||
MakeTargetDialog.title.createMakeTarget=Create a new Make target
|
||||
|
@ -254,14 +254,14 @@ ScannerConfigOptionsDialog.boProvider.browse.button=Browse...
|
|||
ScannerConfigOptionsDialog.boProvider.browse.openFileDialog=Build output file:
|
||||
ScannerConfigOptionsDialog.boProvider.load.button=Load
|
||||
ScannerConfigOptionsDialog.siProvider.parser.enabled.button=Enable generate scanner info command
|
||||
ScannerConfigOptionsDialog.siProvider.command.label=Compiler invocation command
|
||||
ScannerConfigOptionsDialog.siProvider.command.label=Compiler invocation command \u0020
|
||||
ScannerConfigOptionsDialog.siProvider.browse.button=Browse...
|
||||
ScannerConfigOptionsDialog.siProvider.browse.runCommandDialog='gcc' command:
|
||||
ScannerConfigOptionsDialog.siProvider.command.errorMessage=Must enter compiler invocation command
|
||||
ScannerConfigOptionsDialog.apply.progressMessage=Setting scanner configuration discovery options...
|
||||
ScannerConfigOptionsDialog.common.variables.button=Variables...
|
||||
|
||||
ScannerConfigOptionsDialog.unsavedchanges.title=Setting C/C++ Make Project Discovery Options
|
||||
ScannerConfigOptionsDialog.unsavedchanges.title=Setting C/C++ Make Project Discovery Options\u0020
|
||||
ScannerConfigOptionsDialog.unsavedchanges.message=The C/C++ Make Project Discovery Options property page contains unsaved modifications. Do you want to save changes so that other discovery related settings can be updated?
|
||||
ScannerConfigOptionsDialog.unsavedchanges.button.save=Apply
|
||||
ScannerConfigOptionsDialog.unsavedchanges.button.cancel=Cancel
|
||||
|
|
|
@ -21,7 +21,7 @@ InvokeAction.success=Command executed successfully
|
|||
InvokeAction.console.message=Invoking {0} in {1}
|
||||
|
||||
|
||||
InvokeAutoconfAction.command=Running autoconf in {0}
|
||||
InvokeAutoconfAction.command=Running autoconf in {0}\u0020
|
||||
InvokeAutoconfAction.windowTitle.stdout=Invoke Autoconf - Output
|
||||
InvokeAutoconfAction.windowTitle.stderr=Invoke Autoconf - Error
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ MakefileValidator.errorResource=Error resource
|
|||
MakefileValidator.warningInfo=Warning info
|
||||
MakefileValidator.warning=Warning
|
||||
MakefileValidator.unknown=unknown
|
||||
MakefileValidator.checkingFile=Checking file :
|
||||
MakefileValidator.checkingFile=Checking file :\u0020
|
||||
MakefileValidator.fileChecked=File checked
|
||||
MakefileValidator.error.elseMissingIfCondition=else missing if condition
|
||||
MakefileValidator.error.endifMissingIfElseCondition=Endif missing if/else condition
|
||||
|
|
|
@ -76,19 +76,19 @@ BuildPropertyPage.manage.title=Manage
|
|||
BuildPropertyPage.error.Unknown_tree_element=Unknown type of element in tree of type {0}
|
||||
BuildPropertyPage.error.version_low=The Managed Make project settings for this project are not available.
|
||||
BuildPropertyPage.defaults.title=Reset Configuration Tools
|
||||
BuildPropertyPage.defaults.message=This action will reset all of the tools in the selected configuration to their default settings.\n\nDo you want to proceed?
|
||||
BuildPropertyPage.defaults.message=This action will reset all of the tools in the selected configuration to their default settings.\n\nDo you want to proceed?\u0020
|
||||
BuildPropertyPage.changes.save.title=Apply Configuration Changes
|
||||
BuildPropertyPage.changes.save.question=You have made changes to the {0} configuration.\n\nDo you want to apply these changes before switching to the {1} configuration?
|
||||
BuildPropertyPage.changes.save.question=You have made changes to the {0} configuration.\n\nDo you want to apply these changes before switching to the {1} configuration?\u0020
|
||||
BuildPropertyPage.changes.save.error=The configuration changes could not be applied.
|
||||
BuildPropertyPage.unsupported.proj=The project support is not installed on the system
|
||||
BuildPropertyPage.unsupported.config=The configuration support is not installed on the system
|
||||
BuildPropertyPage.config.notselected=No configurations selected
|
||||
|
||||
# ----------- Managed Build Custom Wizard Page Manager Error Strings -----------
|
||||
MBSCustomPageManager.error0=Unknown element type
|
||||
MBSCustomPageManager.error1=\ for extension point
|
||||
MBSCustomPageManager.error2=Unknown child element type
|
||||
MBSCustomPageManager.error3=\ for wizardPage element in extension point
|
||||
MBSCustomPageManager.error0=Unknown element type\u0020
|
||||
MBSCustomPageManager.error1=\ for extension point\u0020
|
||||
MBSCustomPageManager.error2=Unknown child element type\u0020
|
||||
MBSCustomPageManager.error3=\ for wizardPage element in extension point\u0020
|
||||
MBSCustomPageManager.error4=Missing projectType ID
|
||||
MBSCustomPageManager.error5=Missing projectType ID
|
||||
MBSCustomPageManager.error6=Missing nature ID
|
||||
|
@ -101,7 +101,7 @@ BuildPreferencePage.apply.internal.error=An Internal error has occured please ch
|
|||
|
||||
#--------------- Resource Configuration Selection Page --------------
|
||||
ResourceBuildPropertyPage.defaults.title=Reset Resource Configuration Tool
|
||||
ResourceBuildPropertyPage.defaults.message=This action will reset all options of the tool in the current resource configuration to their default settings.\n\nDo you want to proceed?
|
||||
ResourceBuildPropertyPage.defaults.message=This action will reset all options of the tool in the current resource configuration to their default settings.\n\nDo you want to proceed?\u0020
|
||||
|
||||
# ----------- Tools Settings Block -----------
|
||||
ToolsSettingsBlock.label.Settings=Tool Settings
|
||||
|
@ -156,9 +156,9 @@ EnvironmentBlock.label.button.check.chow.parent=Show parent level variables
|
|||
EnvironmentBlock.label.user.var=User Variables
|
||||
EnvironmentBlock.label.system.var=System Variables
|
||||
EnvironmentBlock.label.delete.confirm.title=Variable deletion confirmation
|
||||
EnvironmentBlock.label.delete.confirm.message=Are you sure you want to delete the selected user variable(s)?
|
||||
EnvironmentBlock.label.delete.confirm.message=Are you sure you want to delete the selected user variable(s)?\u0020
|
||||
EnvironmentBlock.label.delete.all.confirm.title=Variable deletion confirmation
|
||||
EnvironmentBlock.label.delete.all.confirm.message=Are you sure you want to delete all user variables?
|
||||
EnvironmentBlock.label.delete.all.confirm.message=Are you sure you want to delete all user variables?\u0020
|
||||
|
||||
# ----------- New Env Var Dialog -----------
|
||||
NewEnvVarDialog.label.name=Name
|
||||
|
@ -194,7 +194,7 @@ MacrosBlock.label.button.check.chow.parent=Show parent context macros
|
|||
MacrosBlock.label.user.macros=User Macros
|
||||
MacrosBlock.label.system.macros=System Macros
|
||||
MacrosBlock.label.delete.confirm.title=Macro deletion confirmation
|
||||
MacrosBlock.label.delete.confirm.message=Are you sure you want to delete the selected user Macro(s)?
|
||||
MacrosBlock.label.delete.confirm.message=Are you sure you want to delete the selected user Macro(s)?\u0020
|
||||
MacrosBlock.label.delete.all.confirm.title=Macro deletion confirmation
|
||||
MacrosBlock.label.delete.all.confirm.message=Are you sure you want to delete all user macros?
|
||||
MacrosBlock.label.value.eclipse.dynamic=<ECLIPSE DYNAMIC VARIABLE>
|
||||
|
@ -285,7 +285,7 @@ NewConfiguration.label.description=Description:
|
|||
NewConfiguration.label.group=Copy settings from
|
||||
NewConfiguration.label.copy=Default configuration:
|
||||
NewConfiguration.label.clone=Existing configuration:
|
||||
NewConfiguration.label.showall=Show unsupported configurations
|
||||
NewConfiguration.label.showall=Show unsupported configurations\u0020
|
||||
NewConfiguration.error.duplicateName=A configuration named "{0}" already exists.
|
||||
NewConfiguration.error.caseName=A configuration name that differs only in case to "{0}" exists.
|
||||
NewConfiguration.error.invalidName=The name "{0}" is invalid.
|
||||
|
|
|
@ -15,7 +15,7 @@ CMakePreferencePage_Files=Toolchain Files
|
|||
CMakePreferencePage_Path=Toolchain File
|
||||
CMakePreferencePage_Remove=Remove
|
||||
CMakePreferencePage_Toolchain=Toolchain
|
||||
CMakePropertyPage_FailedToStartCMakeGui_Body=Failed to run the CMake GUI:
|
||||
CMakePropertyPage_FailedToStartCMakeGui_Body=Failed to run the CMake GUI:\u0020
|
||||
CMakePropertyPage_FailedToStartCMakeGui_Title=Failed to run CMake GUI
|
||||
CMakePropertyPage_FailedToGetOS_Body=Failed to get target OS for CMake project:
|
||||
CMakePropertyPage_FailedToGetOS_Title=Failed to get target OS
|
||||
|
|
|
@ -20,7 +20,7 @@ MakeBuilder.Invoking_Make_Builder=Invoking Make Builder...
|
|||
MakeBuilder.message.error.build = Internal error building project {0}
|
||||
MakeBuilder.message.undefined.build.command = Build command is null for project {0}
|
||||
|
||||
BuildInfoFactory.Missing_Builder=Missing Builder:
|
||||
BuildInfoFactory.Missing_Builder=Missing Builder:\u0020
|
||||
|
||||
MakeTargetManager.add_to_workspace_root=Cannot add make targets to workspace root
|
||||
MakeTargetManager.add_temporary_target=Cannot add temporary Target to manager.
|
||||
|
@ -30,28 +30,28 @@ MakeTargetManager.error_writing_file=Error writing target file
|
|||
|
||||
ProjectTargets.error_reading_project_targets=Error reading project targets.
|
||||
|
||||
ScannerConfigBuilder.Invoking_Builder=Invoking scanner config builder on project
|
||||
ScannerConfigBuilder.Invoking_Builder=Invoking scanner config builder on project\u0020
|
||||
ScannerConfigBuilder.0=building per-configuratin info
|
||||
ScannerConfigNature.Missing_Project=Missing or closed project
|
||||
|
||||
ScannerConfigInfoFactory.Missing_Builder=Missing Builder:
|
||||
ScannerConfigInfoFactory.Missing_Builder=Missing Builder:\u0020
|
||||
|
||||
ExternalScannerInfoProvider.Console_Name=CDT Built-in Specs Console, {0}
|
||||
ExternalScannerInfoProvider.Reading_Specs=Reading specs ...
|
||||
ExternalScannerInfoProvider.Reading_Specs=Reading specs ...\u0020
|
||||
ExternalScannerInfoProvider.Greeting=Scanner Discovery of compiler built-in settings for project {0}
|
||||
|
||||
ScannerInfoCollector.Processing=Processing discovered scanner configuration ...
|
||||
ScannerInfoCollector.Updating=Updating Scanner Configuration for project
|
||||
ScannerInfoCollector.Processing=Processing discovered scanner configuration ...\u0020
|
||||
ScannerInfoCollector.Updating=Updating Scanner Configuration for project\u0020
|
||||
|
||||
DiscoveredPathManager.File_Error_Message=Error accessing scanner config file for project
|
||||
DiscoveredPathManager.Info_Not_Serializable=Error persisting discovered scanner config
|
||||
DiscoveredPathManager.File_Error_Message=Error accessing scanner config file for project\u0020
|
||||
DiscoveredPathManager.Info_Not_Serializable=Error persisting discovered scanner config\u0020
|
||||
|
||||
GCCScannerConfigUtil.Error_Message=Error creating specs file
|
||||
|
||||
ConsoleParser.Filename_Missing_Error_Message=CDT Path Discovery is unable to determine source file name in build command:
|
||||
ConsoleParser.Ambiguous_Filepath_Error_Message=CDT Path Discovery is unable to resolve ambiguous file path:
|
||||
ConsoleParser.Filename_Missing_Error_Message=CDT Path Discovery is unable to determine source file name in build command:\u0020
|
||||
ConsoleParser.Ambiguous_Filepath_Error_Message=CDT Path Discovery is unable to resolve ambiguous file path:\u0020
|
||||
ConsoleParser.Working_Directory_Error_Message=CDT Path Discovery is unable to determine working directory of the build command
|
||||
ConsoleParser.Nonexistent_Include_Path_Error_Message=CDT Path Discovery has discovered and will ignore a non-existent include path:
|
||||
ConsoleParser.Nonexistent_Include_Path_Error_Message=CDT Path Discovery has discovered and will ignore a non-existent include path:\u0020
|
||||
|
||||
DiscoveredContainer.description=Discovered Paths
|
||||
DiscoveredContainer.ScopeErrorMessage=Invalid scanner configuration discovery profile scope
|
||||
|
|
|
@ -17,7 +17,7 @@ MakefileValidator.errorResource=Error resource
|
|||
MakefileValidator.warningInfo=Warning info
|
||||
MakefileValidator.warning=Warning
|
||||
MakefileValidator.unknown=unknown
|
||||
MakefileValidator.checkingFile=Checking file :
|
||||
MakefileValidator.checkingFile=Checking file :\u0020
|
||||
MakefileValidator.fileChecked=File checked
|
||||
MakefileValidator.error.elseMissingIfCondition=else missing if condition
|
||||
MakefileValidator.error.endifMissingIfElseCondition=Endif missing if/else condition
|
||||
|
|
|
@ -138,7 +138,7 @@ BuildPathInfoBlock.monitor.settingScannerInfo=Setting Scanner Info
|
|||
|
||||
BuildTargetDialog.title.buildTarget=Build Targets
|
||||
BuildTargetDialog.button.build=Build
|
||||
BuildTargetDialog.title.makeTargetsFor=Build Targets for:
|
||||
BuildTargetDialog.title.makeTargetsFor=Build Targets for:\u0020
|
||||
|
||||
MakeTargetDialog.exception.noTargetBuilderOnProject=Not target builders on the project
|
||||
MakeTargetDialog.title.createMakeTarget=Create Build Target
|
||||
|
@ -306,7 +306,7 @@ ScannerConfigOptionsDialog.siProvider.command.errorMessage=Must enter compiler i
|
|||
ScannerConfigOptionsDialog.apply.progressMessage=Setting scanner configuration discovery options...
|
||||
ScannerConfigOptionsDialog.common.variables.button=Variables...
|
||||
|
||||
ScannerConfigOptionsDialog.unsavedchanges.title=Setting C/C++ Make Project Discovery Options
|
||||
ScannerConfigOptionsDialog.unsavedchanges.title=Setting C/C++ Make Project Discovery Options\u0020
|
||||
ScannerConfigOptionsDialog.unsavedchanges.message=The C/C++ Make Project Discovery Options property page contains unsaved modifications. Do you want to save changes so that other discovery related settings can be updated?
|
||||
ScannerConfigOptionsDialog.unsavedchanges.button.save=Apply
|
||||
ScannerConfigOptionsDialog.unsavedchanges.button.cancel=Cancel
|
||||
|
|
|
@ -12,5 +12,5 @@
|
|||
# Intel Corporation - Initial API and implementation
|
||||
###############################################################################
|
||||
|
||||
BuildResource.0=Generated resource conflict: \ntwo resources of the same name: {0} \ngenerated by different tools \ntool1: {1} \ntool2: {2}\n
|
||||
BuildResource.0=Generated resource conflict: \ntwo resources of the same name: {0} \ngenerated by different tools \ntool1: {1} \ntool2: {2}\n\u0020
|
||||
BuildDescription.MissingArtifact=Build Artifact is missing in project ''{0}'' configuration ''{1}''
|
||||
|
|
|
@ -14,36 +14,36 @@
|
|||
###############################################################################
|
||||
|
||||
HeadlessBuilder_already_exists_in_workspace=\ already exists in the workspace\!
|
||||
HeadlessBuilder_build_failed=Couldn't BUILD project
|
||||
HeadlessBuilder_build_failed=Couldn't BUILD project\u0020
|
||||
HeadlessBuilder_building_all=Building All Projects...
|
||||
HeadlessBuilder_cant_be_found=\ can't be found\!
|
||||
HeadlessBuilder_clean_failed=Couldn't CLEAN project
|
||||
HeadlessBuilder_clean_failed=Couldn't CLEAN project\u0020
|
||||
HeadlessBuilder_cleaning_all_projects=Cleaning All Projects...
|
||||
HeadlessBuilder_completed_successfully=Headless build completed successfully
|
||||
HeadlessBuilder_CouldntLockWorkspace=Could not obtain lock for workspace location
|
||||
HeadlessBuilder_Directory=Directory:
|
||||
HeadlessBuilder_Directory=Directory:\u0020
|
||||
HeadlessBuilder_encountered_errors=Headless build encountered errors
|
||||
HeadlessBuilder_EnvVar_Append=\ \ \ -Ea {var=value} append value to environment variable when running all tools
|
||||
HeadlessBuilder_EnvVar_Prepend=\ \ \ -Ep {var=value} prepend value to environment variable when running all tools
|
||||
HeadlessBuilder_EnvVar_Remove=\ \ \ -Er {var} remove/unset the given environment variable
|
||||
HeadlessBuilder_EnvVar_Replace=\ \ \ -E {var=value} replace/add value to environment variable when running all tools
|
||||
HeadlessBuilder_Error=Error:
|
||||
HeadlessBuilder_Error=Error:\u0020
|
||||
HeadlessBuilder_help_requested=Help Requested
|
||||
HeadlessBuilder_invalid_argument=Invalid Arguments:
|
||||
HeadlessBuilder_invalid_argument=Invalid Arguments:\u0020
|
||||
HeadlessBuilder_is_not_accessible=\ is not accessible\!
|
||||
HeadlessBuilder_is_not_valid_in_workspace=\ is not valid in the workspace\!
|
||||
HeadlessBuilder_no_arguments=No arguments specified.
|
||||
HeadlessBuilder_NoConfigMatched=WARNING: No Config matched "
|
||||
HeadlessBuilder_NoProjectMatched=WARNING: No Project matched "
|
||||
HeadlessBuilder_Not_CDT_Proj=\ doesn't appear to be a CDT project. Skipping...
|
||||
HeadlessBuilder_project=Project:
|
||||
HeadlessBuilder_project=Project:\u0020
|
||||
HeadlessBuilder_Quote="
|
||||
HeadlessBuilder_RegExSyntaxError=Project/Configuration Regular Expression Syntax error:
|
||||
HeadlessBuilder_RegExSyntaxError=Project/Configuration Regular Expression Syntax error:\u0020
|
||||
HeadlessBuilder_Skipping=Skipping "
|
||||
HeadlessBuilder_Skipping2=". Skipping...
|
||||
HeadlessBuilder_unknown_argument=Unknown argument:
|
||||
HeadlessBuilder_URI=URI:
|
||||
HeadlessBuilder_usage=Usage:
|
||||
HeadlessBuilder_unknown_argument=Unknown argument:\u0020
|
||||
HeadlessBuilder_URI=URI:\u0020
|
||||
HeadlessBuilder_usage=Usage:\u0020
|
||||
HeadlessBuilder_usage_build=\ \ \ -build {project_name_reg_ex{/config_reg_ex} | all}
|
||||
HeadlessBuilder_usage_clean_build=\ \ \ -cleanBuild {project_name_reg_ex{/config_reg_ex} | all}
|
||||
HeadlessBuilder_usage_import=\ \ \ -import {[uri:/]/path/to/project}
|
||||
|
@ -60,6 +60,6 @@ HeadlessBuilder_ToolOption_Replace=\ \ \ -T {toolid} {optionid=value} r
|
|||
HeadlessBuilder_ToolOption_Append=\ \ \ -Ta {toolid} {optionid=value} append to a tool option value in each configuration built
|
||||
HeadlessBuilder_ToolOption_Prepend=\ \ \ -Tp {toolid} {optionid=value} prepend to a tool option value in each configuration built
|
||||
HeadlessBuilder_ToolOption_Remove=\ \ \ -Tr {toolid} {optionid=value} remove a tool option value in each configuration built
|
||||
HeadlessBuilder_ToolOption_Types=\ \ \ Tool option values are parsed as a string, comma separated list of strings or a boolean based on the option's type
|
||||
HeadlessBuilder_Workspace=Workspace
|
||||
HeadlessBuilder_ToolOption_Types=\ \ \ Tool option values are parsed as a string, comma separated list of strings or a boolean based on the option's type\u0020
|
||||
HeadlessBuilder_Workspace=Workspace\u0020
|
||||
HeadlessBuilder_WorkspaceInUse=Workspace already in use\!
|
||||
|
|
|
@ -41,8 +41,8 @@ ManagedMakeBuilder.message.build.finished=**** Build Finished ****
|
|||
ManagedMakeBuilder.type.clean = Clean-only build
|
||||
ManagedMakeBuider.type.incremental = Build
|
||||
ManagedMakeBuider.type.rebuild = Rebuild
|
||||
ManagedMakeBuilder.warning.unsupported.configuration=**** WARNING: The "{0}" Configuration may not build ****\n**** because it uses the "{1}" ****\n**** tool-chain that is unsupported on this system. ****\n\n**** Attempting to build... ****
|
||||
ManagedMakeBuilder.error.prefix=Error:
|
||||
ManagedMakeBuilder.warning.unsupported.configuration=**** WARNING: The "{0}" Configuration may not build ****\n**** because it uses the "{1}" ****\n**** tool-chain that is unsupported on this system. ****\n\n**** Attempting to build... ****\u0020
|
||||
ManagedMakeBuilder.error.prefix=Error:\u0020
|
||||
|
||||
# Option exception messages
|
||||
Option.error.bad_value_type=Type of option value is inconsistent with option type
|
||||
|
@ -53,7 +53,7 @@ ManagedBuildManager.error.null_owner=addTarget: null owner
|
|||
ManagedBuildManager.error.owner_not_project=addTarget: owner not project
|
||||
ManagedBuildManager.error.manifest_load_failed_title=Managed Build System Version Error
|
||||
ManagedBuildManager.error.manifest.version.error=The version number defined in the plug-in manifest file\n{0}\nis greater than the version of the Managed Build System.\nThe definitions in the manifest file will not be loaded.
|
||||
ManagedBuildManager.error.manifest.header=Managed Build system manifest file error:
|
||||
ManagedBuildManager.error.manifest.header=Managed Build system manifest file error:\u0020
|
||||
ManagedBuildManager.error.manifest.resolving=Unable to resolve the {0} identifier {1} in the {2} {3}.
|
||||
ManagedBuildManager.error.manifest.duplicate=Duplicate identifier {1} for element type {0}.
|
||||
ManagedBuildManager.error.manifest.icon=Could not load icon "{0}".
|
||||
|
@ -80,7 +80,7 @@ MakefileGenerator.message.gen.source.makefile=Generating makefile for source fol
|
|||
MakefileGenerator.message.calc.delta=Calculating the delta for project {0}
|
||||
MakefileGenerator.message.finding.sources=Finding source files in project {0}
|
||||
MakefileGenerator.comment.module.list = Every subdirectory with source files must be described here
|
||||
MakefileGenerator.comment.module.variables = Add inputs and outputs from these tool invocations to the build variables
|
||||
MakefileGenerator.comment.module.variables = Add inputs and outputs from these tool invocations to the build variables\u0020
|
||||
MakefileGenerator.comment.source.list = All of the sources participating in the build are defined here
|
||||
MakefileGenerator.comment.build.rule = Each subdirectory must supply rules for building sources it contributes
|
||||
MakefileGenerator.comment.build.toprules = Tool invocations
|
||||
|
@ -93,7 +93,7 @@ MakefileGenerator.comment.autodeps=Automatically-generated dependency list:
|
|||
MakefileGenerator.comment.header=Automatically-generated file. Do not edit!
|
||||
MakefileGenerator.error.spaces=Cannot generate makefile for folder with spaces in name
|
||||
MakeBuilder.Invoking_Make_Builder=Invoking Make Builder...
|
||||
MakeBuilder.Invoking_Command=Invoking Command:
|
||||
MakeBuilder.Invoking_Command=Invoking Command:\u0020
|
||||
MakeBuilder.Updating_project=Updating project...
|
||||
MakeBuilder.Creating_Markers=Generating markers...
|
||||
MakefileGenerator.warning.no.source=Nothing to build for project {0}
|
||||
|
@ -119,15 +119,15 @@ UserDefinedMacroSupplier.storeOutputStream.wrong.arguments=Failed to persist mac
|
|||
# BuildMacroStatus messages
|
||||
BuildMacroStatus.status.macro.undefined=Macro {0} is undefined
|
||||
GeneratedMakefileBuilder.buildingSelectedFiles=Building Selected Files
|
||||
BuildDescriptionGnuMakefileGenerator.0=IO exception occurred:
|
||||
BuildDescriptionGnuMakefileGenerator.1=IO exception occurred:
|
||||
BuildDescriptionGnuMakefileGenerator.0=IO exception occurred:\u0020
|
||||
BuildDescriptionGnuMakefileGenerator.1=IO exception occurred:\u0020
|
||||
BuildMacroStatus.status.reference.eachother=Macros {0} and {1} reference each other
|
||||
BuildMacroStatus.status.reference.incorrect=Macro {0} reference is incorrect
|
||||
BuildMacroStatus.status.macro.not.string=Macro {0} is not of String type
|
||||
BuildMacroStatus.status.macro.not.stringlist=Macro {0} is not of String-list type
|
||||
BuildMacroStatus.status.error=Error occurred
|
||||
BuildMacroStatus.value.undefined=
|
||||
BuildInfoFactory.Missing_Builder=Missing Builder:
|
||||
BuildMacroStatus.value.undefined=\u0020
|
||||
BuildInfoFactory.Missing_Builder=Missing Builder:\u0020
|
||||
|
||||
#ResourceChangeHandler messages
|
||||
ResourceChangeHandler.buildInfoSerializationJob=Build Info Serialization
|
||||
|
@ -155,7 +155,7 @@ MbsMacroSupplier.2=tool parent must be one of configuration, toolchain, or resou
|
|||
GnuLinkOutputNameProvider.0=tool parent must be one of configuration, toolchain, or resource configuration
|
||||
CommonBuilder.1=customized builder created for builder that does not support customization
|
||||
CommonBuilder.2=request for building non active configuration for the builder that does not support this
|
||||
CommonBuilder.6=Time consumed: {0} ms.
|
||||
CommonBuilder.6=Time consumed: {0} ms. \u0020
|
||||
CommonBuilder.7=Info: Parallel threads used: {0}
|
||||
CommonBuilder.0=can not clean programmatically: build workspace path is not specified
|
||||
CommonBuilder.16=can not clean programmatically: build workspace path is not the project path
|
||||
|
|
|
@ -12,13 +12,13 @@
|
|||
# Intel Corporation - Initial API and implementation
|
||||
###############################################################################
|
||||
ProjectConverter.0=failed to load the build info for the old-style project
|
||||
ProjectConverter.1=the specified project is not an old style make project, the owner ID is
|
||||
ProjectConverter.1=the specified project is not an old style make project, the owner ID is\u0020
|
||||
ProjectConverter.10=project conversion failed
|
||||
ProjectConverter.11=project conversion failed for project {0} with the following error:\n {1}
|
||||
ProjectConverter.13=failed to load the build info for the old-style project
|
||||
ProjectConverter.2=the specified project is not an old style project: the number of configurations is
|
||||
ProjectConverter.3=the specified project is not an old style project: the number of configurations is
|
||||
ProjectConverter.4=the specified project is not an old style make project: nature IDs are
|
||||
ProjectConverter.2=the specified project is not an old style project: the number of configurations is\u0020
|
||||
ProjectConverter.3=the specified project is not an old style project: the number of configurations is\u0020
|
||||
ProjectConverter.4=the specified project is not an old style make project: nature IDs are\u0020
|
||||
ProjectConverter.5=the specified project can not be converted
|
||||
ProjectConverter.6=the project conversion failed
|
||||
ProjectConverter.7=targets conversion
|
||||
|
|
|
@ -16,7 +16,7 @@ UpdateManagedProject.notice=Updating managed Project
|
|||
UpdateManagedProject20.0=Backing up the settings file for {0}
|
||||
UpdateManagedProject20.1=Updating build settings for project {0}
|
||||
UpdateManagedProject20.10=No configurations were found for project {0}
|
||||
UpdateManagedProject20.11=Build exception occurred while creating Managed Make project {0} : {1}
|
||||
UpdateManagedProject20.11=Build exception occurred while creating Managed Make project {0} : {1}\u0020
|
||||
UpdateManagedProject20.2=convertConfiguration: Configuration {0} was not found
|
||||
UpdateManagedProject20.3=convertToolRef: Tool ID attribute does not exist
|
||||
UpdateManagedProject20.4=convertToolRef: Toolchain does not contain tools
|
||||
|
@ -34,7 +34,7 @@ UpdateManagedProject12.4=option {0} not found
|
|||
UpdateManagedProject12.5=convertOptionRef: BuildException occurred: {0}
|
||||
UpdateManagedProject12.6=Project type {0} not found
|
||||
UpdateManagedProject12.7=No configurations were found for project {0}
|
||||
UpdateManagedProject12.8=Build exception occurred while creating Managed Make project {0} : {1}
|
||||
UpdateManagedProject12.8=Build exception occurred while creating Managed Make project {0} : {1}\u0020
|
||||
UpdateManagedProject12.9=Toolchain does not contain tools
|
||||
UpdateManagedProject12.10=Parent not found for tool {0}
|
||||
UpdateManagedProject12.11=tool {0} not found
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
MakeBuilder.buildError=Error launching builder ({0})
|
||||
|
||||
BuildInfoFactory.Missing_Builder=Missing Builder:
|
||||
BuildInfoFactory.Missing_Builder=Missing Builder:\u0020
|
||||
|
||||
MakeTargetManager.add_to_workspace_root=Cannot add make targets to workspace root
|
||||
MakeTargetManager.add_temporary_target=Cannot add temporary Target to manager.
|
||||
|
@ -24,29 +24,29 @@ MakeTargetManager.error_writing_file=Error writing target file
|
|||
|
||||
ProjectTargets.error_reading_project_targets=Error reading project targets.
|
||||
|
||||
ScannerConfigBuilder.Invoking_Builder=Invoking scanner config builder on project
|
||||
ScannerConfigBuilder.Invoking_Builder=Invoking scanner config builder on project\u0020
|
||||
ScannerConfigNature.Missing_Project=Missing or closed project
|
||||
|
||||
ScannerConfigInfoFactory.Missing_Builder=Missing Builder:
|
||||
ScannerConfigInfoFactory.Missing_Builder=Missing Builder:\u0020
|
||||
|
||||
ExternalScannerInfoProvider.Provider_Error=Error launching external scanner info generator ({0})
|
||||
ExternalScannerInfoProvider.Reading_Specs=Reading specs ...
|
||||
ExternalScannerInfoProvider.Invoking_Command=Invoking Command:
|
||||
ExternalScannerInfoProvider.Parsing_Output=Parsing output ...
|
||||
ExternalScannerInfoProvider.Creating_Markers=Generating markers ...
|
||||
ExternalScannerInfoProvider.Reading_Specs=Reading specs ...\u0020
|
||||
ExternalScannerInfoProvider.Invoking_Command=Invoking Command:\u0020
|
||||
ExternalScannerInfoProvider.Parsing_Output=Parsing output ...\u0020
|
||||
ExternalScannerInfoProvider.Creating_Markers=Generating markers ...\u0020
|
||||
|
||||
ScannerInfoCollector.Processing=Processing discovered scanner configuration ...
|
||||
ScannerInfoCollector.Updating=Updating Scanner Configuration for project
|
||||
ScannerInfoCollector.Processing=Processing discovered scanner configuration ...\u0020
|
||||
ScannerInfoCollector.Updating=Updating Scanner Configuration for project\u0020
|
||||
|
||||
DiscoveredPathManager.File_Error_Message=Error accessing scanner config file for project
|
||||
DiscoveredPathManager.Info_Not_Serializable=Error persisting discovered scanner config
|
||||
DiscoveredPathManager.File_Error_Message=Error accessing scanner config file for project\u0020
|
||||
DiscoveredPathManager.Info_Not_Serializable=Error persisting discovered scanner config\u0020
|
||||
|
||||
GCCScannerConfigUtil.Error_Message=Error creating specs file
|
||||
|
||||
ConsoleParser.Filename_Missing_Error_Message=CDT Path Discovery is unable to determine source file name in build command:
|
||||
ConsoleParser.Ambiguous_Filepath_Error_Message=CDT Path Discovery is unable to resolve ambiguous file path:
|
||||
ConsoleParser.Filename_Missing_Error_Message=CDT Path Discovery is unable to determine source file name in build command:\u0020
|
||||
ConsoleParser.Ambiguous_Filepath_Error_Message=CDT Path Discovery is unable to resolve ambiguous file path:\u0020
|
||||
ConsoleParser.Working_Directory_Error_Message=CDT Path Discovery is unable to determine working directory of the build command
|
||||
ConsoleParser.Nonexistent_Include_Path_Error_Message=CDT Path Discovery has discovered and will ignore a non-existent include path:
|
||||
ConsoleParser.Nonexistent_Include_Path_Error_Message=CDT Path Discovery has discovered and will ignore a non-existent include path:\u0020
|
||||
|
||||
DiscoveredContainer.description=Discovered Paths
|
||||
DiscoveredContainer.ScopeErrorMessage=Invalid scanner configuration discovery profile scope
|
||||
|
|
|
@ -19,7 +19,7 @@ BuilderSettingsTab_1=Builder &type:
|
|||
BuilderSettingsTab_2=External builder
|
||||
BuilderSettingsTab_3=Internal builder
|
||||
BuilderSettingsTab_4=&Use default build command
|
||||
BuilderSettingsTab_5=Build &command:
|
||||
BuilderSettingsTab_5=Build &command:\u0020
|
||||
BuilderSettingsTab_6=Makefile generation
|
||||
BuilderSettingsTab_7=&Generate Makefiles automatically
|
||||
BuilderSettingsTab_8=&Expand Env. Variable Refs in Makefiles
|
||||
|
@ -27,7 +27,7 @@ BuilderSettingsTab_9=Build settings
|
|||
BuilderSettingsTab_10=Stop on first build error
|
||||
BuilderSettingsTab_EnableParallelBuild=Enable parallel build
|
||||
BuilderSettingsTab_UseOptimalJobs=Use optimal jobs ({0})
|
||||
BuilderSettingsTab_UseParallelJobs=Use parallel jobs:
|
||||
BuilderSettingsTab_UseParallelJobs=Use parallel jobs:\u0020
|
||||
BuilderSettingsTab_UseUnlimitedJobs=Use unlimited jobs
|
||||
BuilderSettingsTab_14=Workbench Build Behavior
|
||||
BuilderSettingsTab_15=Workbench build type:
|
||||
|
@ -45,12 +45,12 @@ BuildStepsTab_3=Post-build steps
|
|||
BuildStepsTab_4=Resource Custom Build Step
|
||||
BuildStepsTab_5=Additional input file name(s):
|
||||
BuildStepsTab_6=Output file name(s):
|
||||
ArtifactTab_0=Artifact Type:
|
||||
ArtifactTab_1=Artifact name:
|
||||
ArtifactTab_2=Artifact extension:
|
||||
ArtifactTab_0=Artifact Type:\u0020
|
||||
ArtifactTab_1=Artifact name:\u0020
|
||||
ArtifactTab_2=Artifact extension:\u0020
|
||||
ArtifactTab_3=Output prefix:
|
||||
CPropertyVarsTab_0=Show system variables
|
||||
CPropertyVarsTab_Description=Build Variables are IDE only variables, which can be used for string substitution when defining external builder configuration, such as environment variable value or command line parameter in form of ${VAR}, internal builder may use them directly.
|
||||
CPropertyVarsTab_Description=Build Variables are IDE only variables, which can be used for string substitution when defining external builder configuration, such as environment variable value or command line parameter in form of ${VAR}, internal builder may use them directly.\u0020
|
||||
DiscoveryTab_0=Discovery profiles scope
|
||||
DiscoveryTab_1=Per Language
|
||||
DiscoveryTab_2=Configuration-wide
|
||||
|
@ -63,20 +63,20 @@ DiscoveryTab_Clear=Clear
|
|||
DiscoveryTab_ClearDisoveredEntries=Clear discovered entries now:
|
||||
DiscoveryTab_ClearEntries=Clear entries
|
||||
DiscoveryTab_DiscoveredEntriesCleared=Discovered entries cleared. Scanner discovery will re-aquire the settings when run (normally during the build).
|
||||
DiscoveryTab_ErrorClearingEntries=Error clearing entries:
|
||||
DiscoveryTab_ErrorClearingEntries=Error clearing entries:\u0020
|
||||
ToolSelectionDialog_0=Select tools
|
||||
ToolSelectionDialog_1=Available tools
|
||||
ToolSelectionDialog_2=Used tools
|
||||
ToolSelectionDialog_7=Tool conflict:
|
||||
ToolSelectionDialog_8=Tool does not support managed build \!
|
||||
ToolSelectionDialog_9=Props not defined \!
|
||||
ToolSelectionDialog_10=Props not supported \!
|
||||
ToolSelectionDialog_11=Req. props not supported \!
|
||||
ToolSelectionDialog_8=Tool does not support managed build \!\u0020
|
||||
ToolSelectionDialog_9=Props not defined \!\u0020
|
||||
ToolSelectionDialog_10=Props not supported \!\u0020
|
||||
ToolSelectionDialog_11=Req. props not supported \!\u0020
|
||||
ToolSelectionDialog_12=Add tool -->
|
||||
ToolSelectionDialog_13=<-- Remove tool
|
||||
ToolSelectionDialog_14=<<- Replace ->>
|
||||
ToolSelectionDialog_15=Allow all changes
|
||||
ToolSelectionDialog_16=This tool can replace
|
||||
ToolSelectionDialog_16=This tool can replace\u0020
|
||||
ToolChainEditTab_0=Display compatible toolchains only
|
||||
ToolChainEditTab_1=Current toolchain:
|
||||
ToolChainEditTab_10=builder
|
||||
|
@ -92,8 +92,8 @@ ToolChainEditTab_3=Used tools
|
|||
ToolChainEditTab_4=Select Tools...
|
||||
ToolChainEditTab_5=Select tool
|
||||
ToolChainEditTab_6=-- NO TOOL --
|
||||
ToolChainEditTab_7=incompatibility with
|
||||
ToolChainEditTab_8=source extension conflict with
|
||||
ToolChainEditTab_7=incompatibility with\u0020
|
||||
ToolChainEditTab_8=source extension conflict with\u0020
|
||||
ToolChainEditTab_9=toolchain
|
||||
ToolChainEditTab_OrphanedBuilder=Orphaned builder {0} ({1})
|
||||
ToolChainEditTab_OrphanedToolchain=Orphaned toolchain {0} ({1})
|
||||
|
@ -109,7 +109,7 @@ WizardDefaultsTab_1=Group old-style toolchains to <Others> folder
|
|||
PreferredToolchainsTab_0=Preferred toolchain will be selected by default in Wizard
|
||||
PreferredToolchainsTab_1=Make toolchain(s) preferred
|
||||
PreferredToolchainsTab_2=Make toolchain(s) not preferred
|
||||
PreferredToolchainsTab_3=Preferred toolchain(s):
|
||||
PreferredToolchainsTab_3=Preferred toolchain(s):\u0020
|
||||
ToolSettingsTab_0=Hover over an option to display its tooltip
|
||||
BuildOptionSettingsUI_0=No tooltip is available for this option
|
||||
ScannerConfigOptionsDialog_scGroup_enabled_button=Automate discovery of paths and symbols
|
||||
|
@ -154,10 +154,10 @@ NewMakeProjFromExistingPage_DirReadOnlyError=Directory is read-only
|
|||
BuildPropertyPage_error_Unknown_tree_element=Unknown type of element in tree of type {0}
|
||||
|
||||
# ----------- Managed Build Custom Wizard Page Manager Error Strings -----------
|
||||
MBSCustomPageManager_error0=Unknown element type
|
||||
MBSCustomPageManager_error1=\ for extension point
|
||||
MBSCustomPageManager_error2=Unknown child element type
|
||||
MBSCustomPageManager_error3=\ for wizardPage element in extension point
|
||||
MBSCustomPageManager_error0=Unknown element type\u0020
|
||||
MBSCustomPageManager_error1=\ for extension point\u0020
|
||||
MBSCustomPageManager_error2=Unknown child element type\u0020
|
||||
MBSCustomPageManager_error3=\ for wizardPage element in extension point\u0020
|
||||
MBSCustomPageManager_error4=Missing projectType ID
|
||||
MBSCustomPageManager_error5=Missing toolchain ID
|
||||
MBSCustomPageManager_error6=Missing nature ID
|
||||
|
@ -168,7 +168,7 @@ MacrosBlock_label_header_name=Name
|
|||
MacrosBlock_label_header_type=Type
|
||||
MacrosBlock_label_header_value=Value
|
||||
MacrosBlock_label_delete_confirm_title=Build Variable Deletion Confirmation
|
||||
MacrosBlock_label_delete_confirm_message=Are you sure you want to delete the selected user Build Variable(s)?
|
||||
MacrosBlock_label_delete_confirm_message=Are you sure you want to delete the selected user Build Variable(s)?\u0020
|
||||
MacrosBlock_label_delete_all_confirm_title=Build Variables Deletion Confirmation
|
||||
MacrosBlock_label_delete_all_confirm_message=Are you sure you want to delete all user Build Variables?
|
||||
MacrosBlock_label_value_eclipse_dynamic=<ECLIPSE DYNAMIC VARIABLE>
|
||||
|
@ -231,7 +231,7 @@ NewConfiguration_label_description=Description:
|
|||
NewConfiguration_label_group=Copy settings from
|
||||
NewConfiguration_label_copy=Default configuration:
|
||||
NewConfiguration_label_clone=Existing configuration:
|
||||
NewConfiguration_label_warning=Note: The configuration name will be used as a directory name in the file system. Please ensure that it is valid for your platform.
|
||||
NewConfiguration_label_warning=Note: The configuration name will be used as a directory name in the file system. Please ensure that it is valid for your platform.\u0020
|
||||
NewConfiguration_error_duplicateName=A configuration named "{0}" already exists.
|
||||
NewConfiguration_error_caseName=A configuration name that differs only in case to "{0}" exists.
|
||||
NewConfiguration_error_invalidName=Special characters are not allowed in the name.
|
||||
|
@ -277,12 +277,12 @@ CConfigWizardPage_0=Select Configurations
|
|||
CConfigWizardPage_1=Select platforms and configurations you wish to deploy on
|
||||
CConfigWizardPage_4=Project type:
|
||||
CConfigWizardPage_5=Toolchains:
|
||||
CConfigWizardPage_6=Configurations:
|
||||
CConfigWizardPage_6=Configurations:\u0020
|
||||
CConfigWizardPage_7=Select all
|
||||
CConfigWizardPage_8=Deselect all
|
||||
CConfigWizardPage_10=At least one configuration should be available. Project cannot be created.
|
||||
CConfigWizardPage_11=At least one configuration should be selected. Please check needed configurations.
|
||||
CConfigWizardPage_12=Use "Advanced settings" button to edit project's properties.\n\nAdditional configurations can be added after project creation.\nUse "Manage configurations" buttons either on toolbar or on property pages.
|
||||
CConfigWizardPage_12=Use "Advanced settings" button to edit project's properties.\n\nAdditional configurations can be added after project creation.\nUse "Manage configurations" buttons either on toolbar or on property pages.\u0020
|
||||
CConfigWizardPage_13=Advanced settings...
|
||||
CMainWizardPage_0=Project type:
|
||||
CDTConfigWizardPage_0=Select configurations
|
||||
|
|
|
@ -28,7 +28,7 @@ MesonPreferencePage_Files=Toolchain Files
|
|||
MesonPreferencePage_Path=Toolchain File
|
||||
MesonPreferencePage_Remove=Remove
|
||||
MesonPreferencePage_Toolchain=Toolchain
|
||||
MesonPropertyPage_FailedToStartMesonGui_Body=Failed to run the Meson GUI:
|
||||
MesonPropertyPage_FailedToStartMesonGui_Body=Failed to run the Meson GUI:\u0020
|
||||
MesonPropertyPage_FailedToStartMesonGui_Title=Failed to run Meson GUI
|
||||
MesonPropertyPage_LaunchMesonGui=Launch Meson GUI...
|
||||
NewMesonProjectWizard_Description=Specify properties of new Meson project.
|
||||
|
|
|
@ -49,7 +49,7 @@ problem.description.NoReturn = No return statement in a function which is declar
|
|||
problem.messagePattern.NoReturn = No return, in function returning non-void
|
||||
problem.name.NoReturn = No return
|
||||
checker.name.FormatString = Format String
|
||||
problem.description.FormatString = Finds statements lead to format string vulnerability (e.g. 'char[5] str; scanf("%10s", str);'
|
||||
problem.description.FormatString = Finds statements lead to format string vulnerability (e.g. 'char[5] str; scanf("%10s", str);'\u0020
|
||||
problem.messagePattern.FormatString = Format string vulnerability in ''{0}''
|
||||
problem.name.FormatString = Format String Vulnerability
|
||||
checker.name.AssignmentToItself = Assignment to itself
|
||||
|
@ -59,7 +59,7 @@ problem.description.AssignmentToItself = Finds expression where left and right s
|
|||
checker.name.ReturnStyle = Return with parenthesis
|
||||
problem.name.ReturnStyle = Return with parenthesis
|
||||
problem.messagePattern.ReturnStyle = Return statement has invalid style. Return value should be surrounded by parenthesis
|
||||
problem.description.ReturnStyle = Checks for return statements that do no return the value in parenthesis. For example 'return 0;'
|
||||
problem.description.ReturnStyle = Checks for return statements that do no return the value in parenthesis. For example 'return 0;' \u0020
|
||||
checker.name.SuspiciousSemicolon = Suspicious semicolon
|
||||
problem.name.SuspiciousSemicolon = Suspicious semicolon
|
||||
problem.messagePattern.SuspiciousSemicolon = Suspicious semicolon
|
||||
|
@ -112,12 +112,12 @@ problem.messagePattern.12 = Field ''{0}'' could not be resolved
|
|||
problem.name.12 = Field cannot be resolved
|
||||
checker.name.AbstractClassCreation = Abstract class cannot be instantiated
|
||||
problem.name.AbstractClassCreation = Abstract class cannot be instantiated
|
||||
problem.messagePattern.AbstractClassCreation = The type ''{0}'' must implement the inherited pure virtual method ''{1}''
|
||||
problem.messagePattern.AbstractClassCreation = The type ''{0}'' must implement the inherited pure virtual method ''{1}''\u0020
|
||||
problem.description.AbstractClassCreation = All inherited pure virtual methods must be implemented to allow instantiation of the class
|
||||
checker.name.ClassMembersInitialization = Class members should be properly initialized
|
||||
problem.name.ClassMembersInitialization = Class members should be properly initialized
|
||||
problem.messagePattern.ClassMembersInitialization = Member ''{0}'' was not initialized in this constructor
|
||||
problem.description.ClassMembersInitialization = Class members should be properly initialized to avoid random behavior
|
||||
problem.messagePattern.ClassMembersInitialization = Member ''{0}'' was not initialized in this constructor\u0020
|
||||
problem.description.ClassMembersInitialization = Class members should be properly initialized to avoid random behavior \u0020
|
||||
|
||||
checker.name.UnusedSymbolInFileScopeChecker = Unused symbols and declarations in file scope
|
||||
problem.description.UnusedVariableDeclarationProblem = Finds unused global variable declarations in file scope
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
# Contributors:
|
||||
# Alena Laskavaia - initial API and implementation
|
||||
###############################################################################
|
||||
CaseBreakChecker_DefaultNoBreakCommentDescription=Comment text to suppress the problem (or regular expression):
|
||||
CaseBreakChecker_DefaultNoBreakCommentDescription=Comment text to suppress the problem (or regular expression):\u0020
|
||||
CaseBreakChecker_EmptyCaseDescription=Check also empty 'case' statement (except if last)
|
||||
CaseBreakChecker_LastCaseDescription=Check also the last 'case' statement
|
||||
CaseBreakChecker_EnableFallthroughQuickfixDescription=Enable quick fix to add fallthrough attribute (C++17)
|
||||
|
|
|
@ -14,10 +14,10 @@
|
|||
# Sergey Prigogin (Google)
|
||||
###############################################################################
|
||||
CodanApplication_Error_ProjectDoesNotExists=Error: project {0} does not exist
|
||||
CodanApplication_LogRunProject=Running code analysis on project
|
||||
CodanApplication_LogRunProject=Running code analysis on project\u0020
|
||||
CodanApplication_LogRunWorkspace=Running code analysis on workspace
|
||||
CodanApplication_Usage=Usage: [options] <project1> <project2> ...
|
||||
CodanApplication_Options=Options:
|
||||
CodanApplication_all_option= -all - run on all projects in workspace
|
||||
CodanApplication_verbose_option= -verbose - print verbose build information
|
||||
CodanApplication_verbose_option= -verbose - print verbose build information\u0020
|
||||
CodanRunner_Code_analysis_on=Code analysis on {0}
|
||||
|
|
|
@ -16,7 +16,7 @@ Bundle-Vendor = Eclipse CDT
|
|||
Bundle-Name = Code Analysis UI
|
||||
CodeAnalysisAction.label = Run Code Analysis
|
||||
CodeAnalysisProperties.name = Code Analysis
|
||||
CodeAnalysisPreferences.name = Code Analysis
|
||||
CodeAnalysisPreferences.name = Code Analysis\u0020
|
||||
CodeAnalysisPreferencesBuild.name = Launching
|
||||
category.name = Code Analysis
|
||||
command.name = Run Code Analysis
|
||||
|
|
|
@ -45,7 +45,7 @@ ProblemsTreeEditor_ToolTip=Sample Message:
|
|||
OverlayPage_Use_Workspace_Settings=Use &workspace settings
|
||||
OverlayPage_Use_Project_Settings=Use pr&oject settings
|
||||
OverlayPage_Configure_Workspace_Settings=&Configure Workspace Settings...
|
||||
PropertyStore_Cannot_write_resource_property=Cannot write resource property
|
||||
PropertyStore_Cannot_write_resource_property=Cannot write resource property\u0020
|
||||
|
||||
# ------- ExclusionInclusionDialog -------
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
KindBasedStore.0=illegal kind
|
||||
KindBasedStore.1=illegal kind
|
||||
PathEntryTranslator.0=illegal kind
|
||||
PathEntryTranslator.1=illegal type
|
||||
PathEntryTranslator.1=illegal type\u0020
|
||||
PathEntryTranslator.2=PathEntryTranslator: failed to apply output entries: Build Data is null, ignoring..
|
||||
CDataSerializer.20=no id attribute for configuration
|
||||
CDataSerializer.21=failed to create configuration
|
||||
|
|
|
@ -73,9 +73,9 @@ PathEntryManager.1=Workspace include path inaccessible ({0})
|
|||
PathEntryManager.7=Workspace library path inaccessible ({0})
|
||||
|
||||
CElementLabels.anonymous=(anonymous)
|
||||
CElementLabels.concat_string=\ -\
|
||||
CElementLabels.comma_string=,\
|
||||
CElementLabels.declseparator_string=\ :\
|
||||
CElementLabels.concat_string=\ -\u0020
|
||||
CElementLabels.comma_string=,\u0020
|
||||
CElementLabels.declseparator_string=\ :\u0020
|
||||
|
||||
CModelManager.LanguageSettingsChangeEventNotifications=Language settings change notifications
|
||||
|
||||
|
|
|
@ -15,9 +15,9 @@
|
|||
CConfigurationDataProviderDescriptor.1=illegal provider implementation
|
||||
CConfigurationDataProviderDescriptor.2=no provider defined
|
||||
CConfigurationDescription.0=data was not created
|
||||
CConfigurationDescription.1=expected proxy of type ICFileDescription, but was
|
||||
CConfigurationDescription.1=expected proxy of type ICFileDescription, but was\u0020
|
||||
CConfigurationDescription.2=data was not created
|
||||
CConfigurationDescription.3=expected proxy of type ICFolderDescription, but was
|
||||
CConfigurationDescription.3=expected proxy of type ICFolderDescription, but was\u0020
|
||||
CConfigurationDescriptionCache.0=description is read only
|
||||
CConfigurationStatus.1=configurations settings invalid
|
||||
CProjectConverterDesciptor.0=illegal provider implementation
|
||||
|
@ -34,20 +34,20 @@ CProjectDescriptionManager.9=invalid project file format
|
|||
CProjectDescriptionManager.0=Initiating resource change handling..
|
||||
CProjectDescriptionManager.10=invalid project file format
|
||||
CProjectDescriptionManager.11=storage file not found
|
||||
CProjectDescriptionManager.12=Serializing CDT Project settings..
|
||||
CProjectDescriptionManager.12=Serializing CDT Project settings..\u0020
|
||||
CProjectDescriptionManager.13=Refreshing the project settings
|
||||
CProjectDescriptionManager.14=workspace info element does not exist
|
||||
CProjectDescriptionManager.15=Preference Configuration
|
||||
CProjectDescriptionManager.16=attempt to set description for a project which does not exist or not open
|
||||
CProjectDescriptionManager.17=unable to apply the invalid project description for project
|
||||
CProjectDescriptionManager.17=unable to apply the invalid project description for project\u0020
|
||||
CProjectDescriptionManager.cfgIDAlreadyExists=Configuration with ID: {0} already exists in passed in settings storage
|
||||
CProjectDescriptionManager.FailedToGetStorage=Failed to get storage for project:
|
||||
CProjectDescriptionManager.illegalDeltaKind=Illegal delta kind
|
||||
CProjectDescriptionManager.wrongTypeOfResourceDescription=Wrong type of resource description:
|
||||
CProjectDescriptionManager.FailedToGetStorage=Failed to get storage for project:\u0020
|
||||
CProjectDescriptionManager.illegalDeltaKind=Illegal delta kind\u0020
|
||||
CProjectDescriptionManager.wrongTypeOfResourceDescription=Wrong type of resource description:\u0020
|
||||
CFolderDescription.0=data was not created
|
||||
CFolderDescription.1=expected proxy of type ICLanguageSetting, but was
|
||||
CFolderDescription.1=expected proxy of type ICLanguageSetting, but was\u0020
|
||||
CFolderDescription.2=data was not created
|
||||
CFolderDescription.3=expected proxy of type ICLanguageSetting, but was
|
||||
CFolderDescription.3=expected proxy of type ICLanguageSetting, but was\u0020
|
||||
CExternalSettingsManager.3=writable ref info is requested for the read only config
|
||||
CfgExportSettingContainerFactory.2=invalid id: project name not specified
|
||||
ExtensionContainerFactory.4=invalid setting provider class specified
|
||||
|
|
|
@ -28,23 +28,23 @@ ScannerProblemFactory.error.preproc.circularInclusion=Circular inclusion for fil
|
|||
ScannerProblemFactory.error.preproc.invalidDirective=Invalid preprocessor directive: {0}
|
||||
ScannerProblemFactory.error.preproc.macroPasting=Invalid use of macro pasting in macro: {0}
|
||||
ScannerProblemFactory.error.preproc.missingRParen=missing '')'' in parameter list of macro: {0}
|
||||
ScannerProblemFactory.error.preproc.invalidVaArgs=__VA_ARGS__ can only appear in the expansion of a variadic macro
|
||||
ScannerProblemFactory.error.preproc.invalidVaArgs=__VA_ARGS__ can only appear in the expansion of a variadic macro\u0020
|
||||
ScannerProblemFactory.error.preproc.multipleUserDefinedLiteralSuffixesOnStringLiteral=Multiple user-defined suffixes found when concatenating string literals
|
||||
|
||||
ScannerProblemFactory.error.scanner.invalidEscapeChar=Invalid escape character encountered
|
||||
ScannerProblemFactory.error.scanner.unboundedString=Unbounded string encountered
|
||||
ScannerProblemFactory.error.scanner.badFloatingPoint=Invalid floating point format encountered
|
||||
ScannerProblemFactory.error.scanner.badBinaryFormat=Invalid binary format encountered
|
||||
ScannerProblemFactory.error.scanner.badHexFormat=Invalid hexadecimal format encountered
|
||||
ScannerProblemFactory.error.scanner.badOctalFormat=Invalid octal format encountered
|
||||
ScannerProblemFactory.error.scanner.badDecimalFormat=Invalid decimal format encountered
|
||||
ScannerProblemFactory.error.scanner.assignmentNotAllowed=Assignment not allowed
|
||||
ScannerProblemFactory.error.scanner.divideByZero=Division by zero not allowed
|
||||
ScannerProblemFactory.error.scanner.missingRParen=Missing right parenthesis )
|
||||
ScannerProblemFactory.error.scanner.expressionSyntaxError=Expression syntax error
|
||||
ScannerProblemFactory.error.scanner.illegalIdentifier=Illegal identifier in defined()
|
||||
ScannerProblemFactory.error.scanner.badConditionalExpression=Bad conditional expression
|
||||
ScannerProblemFactory.error.scanner.unexpectedEOF=Unexpected End Of File encountered
|
||||
ScannerProblemFactory.error.scanner.invalidEscapeChar=Invalid escape character encountered\u0020
|
||||
ScannerProblemFactory.error.scanner.unboundedString=Unbounded string encountered\u0020
|
||||
ScannerProblemFactory.error.scanner.badFloatingPoint=Invalid floating point format encountered\u0020
|
||||
ScannerProblemFactory.error.scanner.badBinaryFormat=Invalid binary format encountered\u0020
|
||||
ScannerProblemFactory.error.scanner.badHexFormat=Invalid hexadecimal format encountered\u0020
|
||||
ScannerProblemFactory.error.scanner.badOctalFormat=Invalid octal format encountered\u0020
|
||||
ScannerProblemFactory.error.scanner.badDecimalFormat=Invalid decimal format encountered\u0020
|
||||
ScannerProblemFactory.error.scanner.assignmentNotAllowed=Assignment not allowed\u0020
|
||||
ScannerProblemFactory.error.scanner.divideByZero=Division by zero not allowed\u0020
|
||||
ScannerProblemFactory.error.scanner.missingRParen=Missing right parenthesis )\u0020
|
||||
ScannerProblemFactory.error.scanner.expressionSyntaxError=Expression syntax error\u0020
|
||||
ScannerProblemFactory.error.scanner.illegalIdentifier=Illegal identifier in defined()\u0020
|
||||
ScannerProblemFactory.error.scanner.badConditionalExpression=Bad conditional expression\u0020
|
||||
ScannerProblemFactory.error.scanner.unexpectedEOF=Unexpected End Of File encountered\u0020
|
||||
ScannerProblemFactory.error.scanner.badCharacter=Bad character sequence encountered: {0}
|
||||
ScannerProblemFactory.error.scanner.constantWithBadSuffix=Constant "{0}" has an invalid suffix
|
||||
ScannerProblemFactory.error.scanner.floatWithBadPrefix=Floating constant "{0}" has an invalid prefix
|
||||
|
@ -58,7 +58,7 @@ BaseProblemFactory.problemPattern={0} in file: {1}:{2, number, integer}
|
|||
ISemanticProblem.BINDING_NOT_FOUND=Attempt to use symbol failed: {0}
|
||||
ISemanticProblem.BINDING_AMBIGUOUS_LOOKUP=Ambiguity encountered during lookup: {0}
|
||||
ISemanticProblem.BINDING_BAD_SCOPE=A scope could not be created to represent the name {0}
|
||||
ISemanticProblem.BINDING_INVALID_TYPE=Invalid type encountered in: {0}
|
||||
ISemanticProblem.BINDING_INVALID_TYPE=Invalid type encountered in: {0}\u0020
|
||||
ISemanticProblem.BINDING_CIRCULAR_INHERITANCE=Circular inheritance encountered in {0}
|
||||
ISemanticProblem.BINDING_INVALID_OVERLOAD=Invalid overload of the name: {0}
|
||||
ISemanticProblem.BINDING_INVALID_USING=Invalid using directive/declaration: {0}
|
||||
|
|
|
@ -11,5 +11,5 @@
|
|||
# Contributors:
|
||||
# Symbian Software Limited - initial API and implementation
|
||||
###############################################################################
|
||||
PDOMFile.toInternalProblem=Unable to translate location to internal format:
|
||||
PDOMFile.toExternalProblem=Unable to translate from internal format for
|
||||
PDOMFile.toInternalProblem=Unable to translate location to internal format:\u0020
|
||||
PDOMFile.toExternalProblem=Unable to translate from internal format for\u0020
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
# Martin Oberhuber (Wind River) - [303083] Split out the Spawner
|
||||
###############################################################################
|
||||
ACBuilder.ProblemsView.Location=line {0}, external location: {1}
|
||||
CBuilder.build_error= Build Error
|
||||
CBuilder.build_error= Build Error\u0009
|
||||
CoreModel.BinaryRunner.Binary_Search_Thread=Searching for Binaries
|
||||
CoreModel.CModelBuilder.Parser_Construction_Failure=Parser/Scanner construction failure.
|
||||
CoreModel.CModelBuilder.Parse_Failure=Parse failure
|
||||
|
@ -79,7 +79,7 @@ DOMIndexerMarker.EmptyScannerInfo=File not indexed because it was not built
|
|||
dom.languageError=Language not found
|
||||
indexer.notFound = Indexer not found
|
||||
|
||||
pdom.DatabaseTooLarge=PDOM Database has grown too large (> {1} bytes): {0}
|
||||
pdom.DatabaseTooLarge=PDOM Database has grown too large (> {1} bytes): {0}\u0020
|
||||
pdom.indexer.name=C/C++ Indexer
|
||||
pdom.indexer.task=Indexing
|
||||
PDOMIndexerJob.updateMonitorJob=Update Monitor
|
||||
|
|
|
@ -11,24 +11,24 @@
|
|||
# Contributors:
|
||||
# Bala Torati (Symbian) - Initial API and implementation
|
||||
###############################################################################
|
||||
TemplateEngine.internalError=Internal Error:
|
||||
TemplateEngine.internalError=Internal Error:\u0020
|
||||
TemplateEngine.templateEngine=Template Engine
|
||||
ProjectCreatedActions.InsufficientInformation=Insufficient information to create new project
|
||||
|
||||
ConditionalProcessGroup.notExecuting=Condition block not executing:
|
||||
ConditionalProcessGroup.unexpandableMacro=Condition has an unexpandable macro:
|
||||
Process.argument=Argument
|
||||
Process.expandableMacro=\ has an unexpandable macro:
|
||||
Process.error=-->Error:
|
||||
Process.success=-->Success:
|
||||
Process.info=-->Info:
|
||||
Process.unknownProcess=Unknown process:
|
||||
Process.executedSuccessfully=Executed successfully with args:
|
||||
ConditionalProcessGroup.notExecuting=Condition block not executing:\u0020
|
||||
ConditionalProcessGroup.unexpandableMacro=Condition has an unexpandable macro:\u0020
|
||||
Process.argument=Argument\u0020
|
||||
Process.expandableMacro=\ has an unexpandable macro:\u0020
|
||||
Process.error=-->Error:\u0020
|
||||
Process.success=-->Success:\u0020
|
||||
Process.info=-->Info:\u0020
|
||||
Process.unknownProcess=Unknown process:\u0020
|
||||
Process.executedSuccessfully=Executed successfully with args:\u0020
|
||||
ProcessRunner.unexpectedArguments=Unexpected arguments found.
|
||||
ProcessRunner.missingArguments=Missing arguments.
|
||||
ProcessRunner.argumentsMismatch=Argument type mismatch:
|
||||
ProcessRunner.error=-->Error:
|
||||
ProcessRunner.success=-->Success:
|
||||
ProcessRunner.info=-->Info:
|
||||
ProcessRunner.argumentsMismatch=Argument type mismatch:\u0020
|
||||
ProcessRunner.error=-->Error:\u0020
|
||||
ProcessRunner.success=-->Success:\u0020
|
||||
ProcessRunner.info=-->Info:\u0020
|
||||
ProcessHelper.fileNotFound=File not found: ''{0}''
|
||||
ProcessRunner_missingArg = ILanguageSettingsProvider failure: argument {0} not found
|
||||
|
|
|
@ -12,51 +12,51 @@
|
|||
# Bala Torati (Symbian) - Initial API and implementation
|
||||
###############################################################################
|
||||
|
||||
AddFiles.1=Add Files failure: template source not found:
|
||||
AddFiles.2=Add Files failure: template source not found:
|
||||
AddFiles.3=Add Files failure: cannot read template source:
|
||||
AddFiles.4=Add Files failure: cannot read template source:
|
||||
AddFiles.1=Add Files failure: template source not found:\u0020
|
||||
AddFiles.2=Add Files failure: template source not found:\u0020
|
||||
AddFiles.3=Add Files failure: cannot read template source:\u0020
|
||||
AddFiles.4=Add Files failure: cannot read template source:\u0020
|
||||
AddFiles.5=Add Files failure: File already exists.
|
||||
AddFiles.6=Add Files failure:
|
||||
AddFiles.7=Add Files failure:
|
||||
AddFiles.6=Add Files failure:\u0020
|
||||
AddFiles.7=Add Files failure:\u0020
|
||||
AddFiles.8=Add Files failure: projectName not specified
|
||||
AddFiles.9=Add Files failure: No files
|
||||
AddFile.0=Add File failure: template source not found:
|
||||
AddFile.1=Add File failure: template source not found:
|
||||
AddFile.2=Add File failure: cannot read template source:
|
||||
AddFile.3=Add File failure: cannot read template source:
|
||||
AddFile.4=Add File failure:
|
||||
AddLink.0=Add Link failure:
|
||||
SetMBSBooleanOptionValue.0=SetMBSBooleanOptionValue failure:
|
||||
SetMBSBooleanOptionValue.3=SetMBSBooleanOptionValue failure: No such file exists:
|
||||
SetMBSStringOptionValue.0=SetMBSStringOptionValue failure:
|
||||
SetMBSStringOptionValue.3=SetMBSStringOptionValue failure: No such file exists:
|
||||
SetMBSStringListOptionValues.0=SetMBSStringListOptionValues failure:
|
||||
SetMBSStringListOptionValues.3=SetMBSStringListOptionValues failure: No such file exists:
|
||||
NewManagedProject.3=New Project failure:
|
||||
NewManagedProject.4=New Project failure: No Configurations specified for
|
||||
AddFile.0=Add File failure: template source not found:\u0020
|
||||
AddFile.1=Add File failure: template source not found:\u0020
|
||||
AddFile.2=Add File failure: cannot read template source:\u0020
|
||||
AddFile.3=Add File failure: cannot read template source:\u0020
|
||||
AddFile.4=Add File failure:\u0020
|
||||
AddLink.0=Add Link failure:\u0020
|
||||
SetMBSBooleanOptionValue.0=SetMBSBooleanOptionValue failure:\u0020
|
||||
SetMBSBooleanOptionValue.3=SetMBSBooleanOptionValue failure: No such file exists:\u0020
|
||||
SetMBSStringOptionValue.0=SetMBSStringOptionValue failure:\u0020
|
||||
SetMBSStringOptionValue.3=SetMBSStringOptionValue failure: No such file exists:\u0020
|
||||
SetMBSStringListOptionValues.0=SetMBSStringListOptionValues failure:\u0020
|
||||
SetMBSStringListOptionValues.3=SetMBSStringListOptionValues failure: No such file exists:\u0020
|
||||
NewManagedProject.3=New Project failure:\u0020
|
||||
NewManagedProject.4=New Project failure: No Configurations specified for\u0020
|
||||
#NewManagedProject.5=New Project failure: project already existing in work space:
|
||||
AppendCreate.1=Add File failure: template source not found:
|
||||
AppendCreate.2=Append failure: template source not found:
|
||||
AppendCreate.3=Append failure: cannot read template source:
|
||||
AppendCreate.1=Add File failure: template source not found:\u0020
|
||||
AppendCreate.2=Append failure: template source not found:\u0020
|
||||
AppendCreate.3=Append failure: cannot read template source:\u0020
|
||||
AppendCreate.4=Append failure: failed while trying to append contents.
|
||||
AppendToMBSStringOptionValue.0=AppendToMBSStringOptionValue failure:
|
||||
AppendToMBSStringOptionValue.3=AppendToMBSStringOptionValue failure: No such file exists:
|
||||
AppendToMBSStringListOptionValues.0=AppendToMBSStringListOptionValues failure:
|
||||
AppendToMBSStringListOptionValues.3=AppendToMBSStringListOptionValues failure: No such file exists:
|
||||
CreateSourceFolder.0=Create Folder failure: project does not exist:
|
||||
CreateSourceFolder.1=Create Folder failure:
|
||||
CreateSourceFolder.2=Create Source Folder failure:
|
||||
CreateIncludeFolder.3=Create Include Folder failure: while setting include path:
|
||||
AppendToMBSStringOptionValue.0=AppendToMBSStringOptionValue failure:\u0020
|
||||
AppendToMBSStringOptionValue.3=AppendToMBSStringOptionValue failure: No such file exists:\u0020
|
||||
AppendToMBSStringListOptionValues.0=AppendToMBSStringListOptionValues failure:\u0020
|
||||
AppendToMBSStringListOptionValues.3=AppendToMBSStringListOptionValues failure: No such file exists:\u0020
|
||||
CreateSourceFolder.0=Create Folder failure: project does not exist:\u0020
|
||||
CreateSourceFolder.1=Create Folder failure:\u0020
|
||||
CreateSourceFolder.2=Create Source Folder failure:\u0020
|
||||
CreateIncludeFolder.3=Create Include Folder failure: while setting include path:\u0020
|
||||
ExcludeResources.0=ExcludeResources can only process CDT Managed projects
|
||||
Copy.0=Add File failure: template source not found:
|
||||
Copy.1=Copy failure: template source not found:
|
||||
Copy.3=Copy failure: cannot read template source:
|
||||
Copy.0=Add File failure: template source not found:\u0020
|
||||
Copy.1=Copy failure: template source not found:\u0020
|
||||
Copy.3=Copy failure: cannot read template source:\u0020
|
||||
Copy.4=Copy failure: failed while copying contents.
|
||||
Copy.5=Copy failure: failed while copying contents.
|
||||
Append.0=Add File failure: template source not found:
|
||||
Append.1=Copy failure: template source not found:
|
||||
Append.3=Copy failure: cannot read template source:
|
||||
Append.0=Add File failure: template source not found:\u0020
|
||||
Append.1=Copy failure: template source not found:\u0020
|
||||
Append.3=Copy failure: cannot read template source:\u0020
|
||||
Append.4=Append failure: failed while trying to append contents.
|
||||
AddNature.noProject=Add nature failure: projectName not specified
|
||||
AddNature.noNature=Add nature failure: nature not specified
|
||||
|
|
|
@ -35,5 +35,5 @@ TypeSelectionDialog_filterMacros=M&acro
|
|||
TypeSelectionDialog_filterLowLevelTypes=Show &low-level elements (names beginning with '_')
|
||||
|
||||
TypeInfoLabelProvider_globalScope=(global)
|
||||
TypeInfoLabelProvider_dash=\ -\
|
||||
TypeInfoLabelProvider_colon=:\
|
||||
TypeInfoLabelProvider_dash=\ -\u0020
|
||||
TypeInfoLabelProvider_colon=:\u0020
|
||||
|
|
|
@ -159,17 +159,17 @@ refactoringExtractLocalVariable.label = Extract Local Variable...
|
|||
refactoringHideMethod.label = Hide Member Function...
|
||||
|
||||
|
||||
ActionDefinition.renameElement.name= Rename - Refactoring
|
||||
ActionDefinition.renameElement.name= Rename - Refactoring\u0020
|
||||
ActionDefinition.renameElement.description= Renames the selected element
|
||||
ActionDefinition.extractConstant.name= Extract Constant - Refactoring
|
||||
ActionDefinition.extractConstant.name= Extract Constant - Refactoring\u0020
|
||||
ActionDefinition.extractConstant.description= Extracts a constant for the selected expression
|
||||
ActionDefinition.extractLocalVariable.name= Extract Local Variable - Refactoring
|
||||
ActionDefinition.extractLocalVariable.name= Extract Local Variable - Refactoring\u0020
|
||||
ActionDefinition.extractLocalVariable.description= Extracts a local variable for the selected expression
|
||||
ActionDefinition.extractFunction.name= Extract Function - Refactoring
|
||||
ActionDefinition.extractFunction.name= Extract Function - Refactoring\u0020
|
||||
ActionDefinition.extractFunction.description= Extracts a function for the selected list of expressions or statements
|
||||
ActionDefinition.toggleFunction.name= Toggle Function - Refactoring
|
||||
ActionDefinition.toggleFunction.name= Toggle Function - Refactoring\u0020
|
||||
ActionDefinition.toggleFunction.description= Toggles the implementation between header and implementation file
|
||||
ActionDefinition.implementMethod.name= Implement Method - Source Generation
|
||||
ActionDefinition.implementMethod.name= Implement Method - Source Generation\u0020
|
||||
ActionDefinition.implementMethod.description= Implements a method for a selected method declaration
|
||||
ActionDefinition.gettersAndSetters.name = Generate Getters and Setters...
|
||||
ActionDefinition.gettersAndSetters.description = Generates getters and setters for a selected field
|
||||
|
@ -600,8 +600,8 @@ preferenceKeywords.indexer=index skip references type macro search build configu
|
|||
|
||||
preferenceKeywords.ceditor=editor appearance navigation colors smart caret positioning highlight matching bracket inactive code foreground background save trailing whitespace newline doxygen format formatting statement
|
||||
preferenceKeywords.contentassist=editor content code assist complete completion insert overwrite single proposal common prefix automatically auto activation trigger category categories separate specific word hippie template
|
||||
preferenceKeywords.saveactions=editor save trailing whitespace white space end file newline
|
||||
preferenceKeywords.scalability=editor mode large file lines disable performance
|
||||
preferenceKeywords.saveactions=editor save trailing whitespace white space end file newline\u0020
|
||||
preferenceKeywords.scalability=editor mode large file lines disable performance\u0020
|
||||
preferenceKeywords.hover=editor hover annotation key modifier combined variable problem string source documentation
|
||||
preferenceKeywords.syntaxcoloring=editor colors semantic coloring highlighting multi line single line comment task tag class struct union function method static field constant keywords local variable operators brackets strings type variable inherited method declaration
|
||||
preferenceKeywords.templates=editor templates snippet macros
|
||||
|
@ -664,7 +664,7 @@ transfer.EditorAppearance.name = C/C++ Editor Appearance
|
|||
transfer.EditorAppearance.description = Preferences related to how the editor presents the edited code to the user (including colors, fonts, hovers, foldings, etc...)
|
||||
transfer.EditorBehavior.name = C/C++ Editor Behavior
|
||||
transfer.EditorBehavior.description = Preferences related to how the editor deals with the edited code (typing, save action, etc...)
|
||||
transfer.CodeStyle.name = C/C++ Code Style
|
||||
transfer.CodeStyle.name = C/C++ Code Style\u0020
|
||||
transfer.CodeStyle.description = C/C++ > Code Style preferences
|
||||
|
||||
# Refresh Exclusion Contributors
|
||||
|
|
|
@ -216,7 +216,7 @@ LexicalSortingAction.tooltip.off=Sort
|
|||
|
||||
# ------- ClearOutputAction------------
|
||||
ClearOutputAction.label=Clea&r Console
|
||||
ClearOutputAction.tooltip=Clear Console
|
||||
ClearOutputAction.tooltip=Clear Console\u0020
|
||||
|
||||
# ------- New menu items to overwrite superclass ----------
|
||||
CreateFileAction.text = &File
|
||||
|
|
|
@ -30,15 +30,15 @@ CopyLog_ActionTooltip=Copy Build Log
|
|||
CopyLog_BuildNotLogged=No build was logged. Build the project or/and check the Logging page in project properties.
|
||||
CopyLog_ChooseDestination=Choose Log File Destination
|
||||
CopyLog_ErrorCopyingFile=Error Copying a File
|
||||
CopyLog_ErrorWhileCopyingLog=Error while copying working log file:
|
||||
CopyLog_InvalidDestination=Destination is not valid:
|
||||
CopyLog_ErrorWhileCopyingLog=Error while copying working log file:\u0020
|
||||
CopyLog_InvalidDestination=Destination is not valid:\u0020
|
||||
CopyLog_LogFileIsNotAvailable=Working log file is not available.
|
||||
CopyLog_UnableToAccess=Unable to access build log at
|
||||
CopyLog_UnableToAccess=Unable to access build log at\u0020
|
||||
CopyLog_UnavailableLog=Unavailable Log
|
||||
|
||||
ScrollLockAction_Scroll_Lock_1=Scroll Lock
|
||||
|
||||
NextErrorAction_Tooltip=Next Error
|
||||
PreviousErrorAction_Tooltip=Previous Error
|
||||
PreviousErrorAction_Tooltip=Previous Error\u0020
|
||||
ShowErrorAction_Tooltip=Show Error In Editor
|
||||
WrapLinesAction_WrapLines=Wrap Lines
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
# Sergey Prigogin (Google) - initial API and implementation
|
||||
###############################################################################
|
||||
FormattingScopeDialog_title=Select Formatting Scope
|
||||
FormattingScopeDialog_format_file=The entire &file
|
||||
FormattingScopeDialog_format_file=The entire &file\u0020
|
||||
FormattingScopeDialog_format_statement=The &statement on the current line
|
||||
FormattingScopeDialog_message=No code is selected. Choose the scope of formatting.
|
||||
FormattingScopeDialog_do_not_ask_again=&Remember this choice and do not ask again
|
|
@ -34,7 +34,7 @@ OrganizeIncludes_error_title=Error Organizing Includes
|
|||
OrganizeIncludes_insertion_failed=Adding include statements failed
|
||||
OrganizeIncludes_help_provider_error=Help provider error
|
||||
OrganizeIncludes_failed=Organize Includes operation failed
|
||||
OrganizeIncludes_choose_header=Choose a header file to include for symbol ''{0}''
|
||||
OrganizeIncludes_choose_header=Choose a header file to include for symbol ''{0}''\u0020
|
||||
OrganizeIncludesOperation_description=Organizing include statements
|
||||
|
||||
ShowInCView_description=Show the current resource in the C/C++ Projects view
|
||||
|
@ -53,8 +53,8 @@ OverrideIndicatorManager_shadows=Shadows
|
|||
OverrideIndicatorManager_via=via
|
||||
|
||||
DefaultBinaryFileEditor_TruncateMessage=Truncated, result is too large, use command line objdump
|
||||
DefaultCEditorTextHover_html_name=<b>Name:</b>
|
||||
DefaultCEditorTextHover_html_prototype=<br><b>Prototype:</b>
|
||||
DefaultCEditorTextHover_html_name=<b>Name:</b>\u0020
|
||||
DefaultCEditorTextHover_html_prototype=<br><b>Prototype:</b>\u0020
|
||||
DefaultCEditorTextHover_html_description=<br><b>Description:</b><br>
|
||||
DefaultCEditorTextHover_html_includes=<br><b>Header files:</b><br>
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ BrowseEntryDialog_fs_dir_dlg_msg=Select a folder from file system:
|
|||
NewConfiguration_label_name=Name:
|
||||
NewConfiguration_label_description=Description:
|
||||
NewConfiguration_label_group=Copy settings from
|
||||
NewConfiguration_label_warning=Note: The configuration name will be used as a directory name in the file system. Please ensure that it is valid for your platform.
|
||||
NewConfiguration_label_warning=Note: The configuration name will be used as a directory name in the file system. Please ensure that it is valid for your platform.\u0020
|
||||
NewConfiguration_error_duplicateName=A configuration named "{0}" already exists.
|
||||
NewConfiguration_error_caseName=A configuration name that differs only in case to "{0}" exists.
|
||||
NewConfiguration_error_invalidName=The name "{0}" is invalid.
|
||||
|
@ -41,7 +41,7 @@ NewConfiguration_error_invalidName=The name "{0}" is invalid.
|
|||
# ----------- Rename Configuration -----------
|
||||
RenameConfiguration_label_name=Name:
|
||||
RenameConfiguration_label_description=Description:
|
||||
RenameConfiguration_label_warning=Note: The configuration name will be used as a directory name in the file system. Please ensure that it is valid for your platform.
|
||||
RenameConfiguration_label_warning=Note: The configuration name will be used as a directory name in the file system. Please ensure that it is valid for your platform.\u0020
|
||||
RenameConfiguration_error_duplicateName=A configuration named "{0}" already exists.
|
||||
RenameConfiguration_error_caseName=A configuration name that differs only in case to "{0}" exists.
|
||||
RenameConfiguration_error_invalidName=The name "{0}" is invalid.
|
||||
|
@ -87,17 +87,17 @@ AbstractCPropertyTab_1=Variables...
|
|||
AbstractCPropertyTab_2=This tab is not supported in multi-configuration mode
|
||||
AbstractPage_0=Unknown element selected
|
||||
AbstractPage_12=Manage Configurations...
|
||||
AbstractPage_11=setProjectDescription:
|
||||
AbstractPage_10=Cannot create resource configuration for
|
||||
AbstractPage_13=Cannot load
|
||||
AbstractPage_14=Cannot create page:
|
||||
AbstractPage_11=setProjectDescription:\u0020
|
||||
AbstractPage_10=Cannot create resource configuration for\u0020
|
||||
AbstractPage_13=Cannot load\u0020
|
||||
AbstractPage_14=Cannot create page:\u0020
|
||||
AbstractPage_15=element not initialized.
|
||||
AbstractPage_16=[ Active ]
|
||||
AbstractPage_2=This project is not a CDT project
|
||||
AbstractPage_3=Error while accessing new configuration. <Apply> cannot work. Use <OK>.
|
||||
AbstractPage_4=[ All configurations ]
|
||||
AbstractPage_5=[ Multiple configurations...]
|
||||
AbstractPage_6=Configuration:
|
||||
AbstractPage_6=Configuration:\u0020
|
||||
AbstractPage_7=Exclude resource from build
|
||||
AbstractPage_8=Cannot apply
|
||||
AbstractPage_9=Internal error
|
||||
|
@ -123,7 +123,7 @@ AbstractExportTab_2=Create...
|
|||
AbstractExportTab_3=Edit...
|
||||
CLocationTab_0=Filter (empty)
|
||||
CLocationTab_1=Filter (
|
||||
CLocationTab_2=,
|
||||
CLocationTab_2=,\u0020
|
||||
CLocationTab_3=)
|
||||
CLocationTab_4=Add Folder...
|
||||
CLocationTab_5=Link Folder...
|
||||
|
@ -147,11 +147,11 @@ EnvironmentTab_15=Current String List DISPLAY mode. Double-click to change
|
|||
EnvironmentTab_16=Origin
|
||||
EnvironmentTab_17=CONJ.
|
||||
EnvironmentTab_18=DISJ.
|
||||
EnvironmentTab_19=DISPL mode:
|
||||
EnvironmentTab_19=DISPL mode:\u0020
|
||||
EnvironmentTab_2=Value
|
||||
EnvironmentTab_20=<UNDEFINED>
|
||||
EnvironmentTab_20=<UNDEFINED>\u0020
|
||||
EnvironmentTab_21=REPLACE
|
||||
EnvironmentTab_22=WRITE mode:
|
||||
EnvironmentTab_22=WRITE mode:\u0020
|
||||
EnvironmentTab_23=Current String List WRITE mode. Double-click to change
|
||||
EnvironmentTab_24=MODIFY
|
||||
EnvironmentTab_3=Append variables to native environment
|
||||
|
@ -171,7 +171,7 @@ IncludeDialog_0=Directory:
|
|||
IncludeDialog_1=File:
|
||||
IncludeDialog_2=Add to all configurations
|
||||
IncludeDialog_3=Add to all languages
|
||||
LanguageSettingEntryDialog_Add=Add
|
||||
LanguageSettingEntryDialog_Add=Add\u0020
|
||||
LanguageSettingEntryDialog_BuiltInFlag=Treat as built-in
|
||||
LanguageSettingEntryDialog_ContainsSystemHeaders=Contains system headers
|
||||
LanguageSettingEntryDialog_Directory=Directory:
|
||||
|
@ -221,13 +221,13 @@ RefsTab_ExpandAll=Expand All
|
|||
RefsTab_CollapseAll=Collapse All
|
||||
RefsTab_Active=Active
|
||||
RefsTab_ProjectsList=Projects list
|
||||
RefsTab_ConfigurationsAccessError=Internal error trying access configurations of project
|
||||
RefsTab_ConfigurationsAccessError=Internal error trying access configurations of project\u0020
|
||||
SymbolTab_0=Symbol
|
||||
SymbolTab_1=Value
|
||||
SymbolTab_2=Add symbol
|
||||
SymbolTab_3=Change symbol
|
||||
ExpDialog_0=To all configurations
|
||||
ExpDialog_1=Save to:
|
||||
ExpDialog_1=Save to:\u0020
|
||||
ExpDialog_2=Languages
|
||||
ExpDialog_3=Content types
|
||||
ExpDialog_4=Is a workspace path
|
||||
|
@ -257,11 +257,11 @@ ErrorParsTab_Reset=Reset
|
|||
ErrorParsTab_title_Add=Add Regex Error Parser
|
||||
ErrorParsTab_title_ConfirmReset=Confirm Resetting Error Parsers
|
||||
ErrorParsTab_title_Edit=Edit Regex Error Parser name
|
||||
StructureTreeTab_0=Level:
|
||||
StructureTreeTab_0=Level:\u0020
|
||||
StructureTreeTab_1=Maximal tree nesting
|
||||
StructureTreeTab_2=Long
|
||||
StructureTreeTab_3=String
|
||||
StructureTreeTab_4=Object to view:
|
||||
StructureTreeTab_4=Object to view:\u0020
|
||||
StructureTreeTab_5=Expand all
|
||||
StructureTreeTab_6=Expand level...
|
||||
StructureTreeTab_7=Collapse all
|
||||
|
@ -274,7 +274,7 @@ CMainWizardPage_0=Project type:
|
|||
CMainWizardPage_1=Show project types and toolchains only if they are supported on the platform
|
||||
CMainWizardPage_10=A project with that name already exists in the workspace.
|
||||
CMainWizardPage_3=No project types available. Project cannot be created
|
||||
CMainWizardPage_5=Cannot create ICProjectTypeHandler:
|
||||
CMainWizardPage_5=Cannot create ICProjectTypeHandler:\u0020
|
||||
CMainWizardPage_6=File with specified name already exists.
|
||||
CMainWizardPage_7=Directory with specified name already exists.
|
||||
CMainWizardPage_DirReadOnlyError=Directory with specified name already exists and is read-only.
|
||||
|
@ -318,7 +318,7 @@ CProjectWizard_0=Add C Project Nature
|
|||
CCProjectWizard_0=Add CC Project Nature
|
||||
GeneralMessages_InternalError_ReportLogToCdtTeam=Internal error happened, report application log to CDT team.
|
||||
GeneralMessages_NonAccessibleID=[ Not accessible id={0} ]
|
||||
WorkingSetConfigAction_21=Building project
|
||||
WorkingSetConfigAction_21=Building project\u0020
|
||||
WorkingSetConfigAction_22=Build error
|
||||
IncludeTab_export=Export Settings...
|
||||
IncludeTab_import=Import Settings...
|
||||
|
|
|
@ -108,7 +108,7 @@ CEditorPreferencePage_behaviorPage_matchingBrackets=Highlight &matching brackets
|
|||
CEditorPreferencePage_behaviorPage_subWordNavigation=Smart &caret positioning in identifiers
|
||||
CEditorPreferencePage_behaviorPage_inactiveCode=Highlight &inactive code
|
||||
CEditorPreferencePage_behaviorPage_formattingWithEmptySelection=When formatting code with an empty selection:
|
||||
CEditorPreferencePage_behaviorPage_formatFile=Format the entire &file
|
||||
CEditorPreferencePage_behaviorPage_formatFile=Format the entire &file\u0020
|
||||
CEditorPreferencePage_behaviorPage_formatStatement=Format the &statement on the current line
|
||||
CEditorPreferencePage_behaviorPage_confirmFormattingScope=&Ask for confirmation
|
||||
CEditorPreferencePage_behaviorPage_appearanceColorOptions=Appearance color options:
|
||||
|
@ -523,7 +523,7 @@ IncludeCategoriesBlock_user_defined_categories_node= User-defined Categories
|
|||
IncludeCategoriesBlock_user_defined_categories_node_description= Categories of header files defined by the user
|
||||
IncludeCategoriesBlock_header_categories= &Header File Categories
|
||||
IncludeGroupStyleBlock_keep_includes_together= &Keep include statements together
|
||||
IncludeGroupStyleBlock_blank_line_before= Separate from previous includes by a &blank line
|
||||
IncludeGroupStyleBlock_blank_line_before= Separate from previous includes by a &blank line\u0020
|
||||
IncludeGroupStyleBlock_use_relative_path= Use path &relative to the including file
|
||||
IncludeGroupStyleBlock_use_angle_brackets= Use &angle brackets
|
||||
IncludeOrderBlock_up= &Up
|
||||
|
@ -531,7 +531,7 @@ IncludeOrderBlock_down= D&own
|
|||
IncludeOrderBlock_order_of_includes= O&rder of Include Statements:
|
||||
|
||||
IncludePragmasPreferencePage_title= Include Pragmas
|
||||
IncludePragmasBlock_description=Include pragmas are special comments that affect behavior of Organize Includes command. A description of include pragmas can be found in <a href="https://github.com/include-what-you-use/include-what-you-use/blob/master/docs/IWYUPragmas.md">IWYU Pragmas</a>. Include patterns can be customized by defining regular expressions matching each of the pragmas.
|
||||
IncludePragmasBlock_description=Include pragmas are special comments that affect behavior of Organize Includes command. A description of include pragmas can be found in <a href="https://github.com/include-what-you-use/include-what-you-use/blob/master/docs/IWYUPragmas.md">IWYU Pragmas</a>. Include patterns can be customized by defining regular expressions matching each of the pragmas.\u0020
|
||||
IncludePragmasBlock_link_tooltip=Wiki page describing include-what-you-use pragmas
|
||||
IncludePragmasBlock_export_pattern= E&xport:
|
||||
IncludePragmasBlock_begin_exports_pattern= &Begin Exports:
|
||||
|
@ -543,15 +543,15 @@ NameStylePreferencePage_title=Name Style
|
|||
NameStyleBlock_code_node=Code
|
||||
NameStyleBlock_files_node=Files
|
||||
NameStyleBlock_constant_node=Constant
|
||||
NameStyleBlock_constant_node_description=Constant name
|
||||
NameStyleBlock_constant_node_description=Constant name\u0020
|
||||
NameStyleBlock_variable_node=Variable
|
||||
NameStyleBlock_variable_node_description=Variable name
|
||||
NameStyleBlock_variable_node_description=Variable name\u0020
|
||||
NameStyleBlock_field_node=Class Field
|
||||
NameStyleBlock_field_node_description=Class field name
|
||||
NameStyleBlock_field_node_description=Class field name\u0020
|
||||
NameStyleBlock_method_node=Class Method
|
||||
NameStyleBlock_method_node_description=Class method name
|
||||
NameStyleBlock_method_node_description=Class method name\u0020
|
||||
NameStyleBlock_getter_node=Getter Method
|
||||
NameStyleBlock_getter_node_description=Getter name based on the field name
|
||||
NameStyleBlock_getter_node_description=Getter name based on the field name\u0020
|
||||
NameStyleBlock_setter_node=Setter Method
|
||||
NameStyleBlock_setter_node_description=Setter name based on the field name
|
||||
NameStyleBlock_include_guard_node=Include Guard
|
||||
|
@ -635,7 +635,7 @@ ScalabilityPreferencePage_detection_group_label= Scalability mode detection
|
|||
ScalabilityPreferencePage_detection_label= Alert me when scalability mode will be turned on
|
||||
ScalabilityPreferencePage_trigger_lines_label= Enable scalability mode when the number of lines in the file is more than:
|
||||
ScalabilityPreferencePage_error=Value must be an integer between {0} and {1}.
|
||||
ScalabilityPreferencePage_scalabilityMode_group_label= Scalability mode settings
|
||||
ScalabilityPreferencePage_scalabilityMode_group_label= Scalability mode settings\u0020
|
||||
ScalabilityPreferencePage_scalabilityMode_label= Enable all scalability mode options
|
||||
ScalabilityPreferencePage_reconciler_label= Disable editor live parsing (Outline view, semantic highlighting and folding will also be disabled)
|
||||
ScalabilityPreferencePage_syntaxColor_label= Disable syntax coloring in editor
|
||||
|
|
|
@ -17,7 +17,7 @@ GenerateGettersAndSettersInputPage_Header=Select getters and setters to create:
|
|||
GenerateGettersAndSettersInputPage_LinkDescription=The names of getters and setters may be configured on the <a>Name Style</a> preference page.
|
||||
GenerateGettersAndSettersInputPage_LinkTooltip=Show the name style preferences.
|
||||
GenerateGettersAndSettersInputPage_Name=Generate Getters and Setters
|
||||
GenerateGettersAndSettersInputPage_SeparateDefinition=Definition separate from declaration
|
||||
GenerateGettersAndSettersInputPage_SeparateDefinition=Definition separate from declaration\u0020
|
||||
GenerateGettersAndSettersInputPage_SelectAll=Select All
|
||||
GenerateGettersAndSettersInputPage_SelectGetters=Select Getters
|
||||
GenerateGettersAndSettersInputPage_SelectSetters=Select Setters
|
||||
|
|
|
@ -17,7 +17,7 @@ ASTManager_error_macro_name_conflict=''{0}'' conflicts with the name of an exist
|
|||
ASTManager_subtask_analyzing=Analyzing {0} files
|
||||
ASTManager_task_analyze=Analyzing source code
|
||||
ASTManager_task_generateAst=Generating AST
|
||||
ASTManager_warning_parsingError_detailed=Parsing error - {0} -
|
||||
ASTManager_warning_parsingError_detailed=Parsing error - {0} -\u0020
|
||||
ASTManager_warning_parsingError_withFile={0} in file ''{1}''
|
||||
ASTManager_warning_parsingError_withFileAndLine={0} in file ''{1}'' at line ''{2}''
|
||||
ASTManager_warning_parsingError=Parsing error
|
||||
|
@ -75,7 +75,7 @@ CRenameRefactoringInputPage_button_relatedProjects=Related projects
|
|||
CRenameRefactoringInputPage_button_workspace=All projects
|
||||
CRenameRefactoringInputPage_button_workingSet=Working set:
|
||||
CRenameRefactoringInputPage_errorInvalidIdentifier=''{0}'' is not a valid identifier
|
||||
CRenameRefactoringInputPage_label_newName=New Name:
|
||||
CRenameRefactoringInputPage_label_newName=New Name:\u0020
|
||||
CRenameRefactoringInputPage_label_updateWithin=Update occurrences in:
|
||||
CRenameRefactoringInputPage_renameBaseAndDerivedMethods=Rename virtual methods in base and derived classes, also (if any).
|
||||
CRenameTopProcessor_enumerator=enumerator
|
||||
|
|
|
@ -14,6 +14,6 @@
|
|||
EditorOpener_fileDoesNotExist=File ''{0}'' no longer exists
|
||||
IndexedFilesCache_jobName=Initialize C/C++ Index Label Provider
|
||||
IndexUI_infoNotInSource=The element ''{0}'' does not belong to a source file.
|
||||
IndexUI_infoNotInIndex=The file ''{0}'' is currently not part of the index.
|
||||
IndexUI_infoNotInIndex=The file ''{0}'' is currently not part of the index.\u0020
|
||||
IndexUI_infoSelectIndexAllFiles=For headers that are never included, or sources that are not part of the build, consider selecting the preference 'Index all files'.
|
||||
SelectionListenerWithASTManager_jobName=Notifying selection listeners
|
||||
|
|
|
@ -16,7 +16,7 @@ CRefactoringActionGroup_menu=Refactor
|
|||
CRenameAction_label=Rename...
|
||||
ExtractConstantAction_label=Extract Constant...
|
||||
ExtractLocalVariableAction_label=Extract Local Variable...
|
||||
GettersAndSetters_label=Generate Getters and Setters...
|
||||
GettersAndSetters_label=Generate Getters and Setters...\u0020
|
||||
ImplementMethodAction_label=Implement Method...
|
||||
HideMethodAction_label=Hide Method...
|
||||
ExtractFunctionAction_label=Extract Function...
|
||||
|
|
|
@ -46,6 +46,6 @@ UISelectWidget_ErrorNoneSelected0=Please choose a value for {0}
|
|||
UITextWidget.0=\ Project already exists in workspace.
|
||||
SimpleElementException.0=This Operation not supported on InputUIElement
|
||||
TemplateEngineMessage.Error=CDT New Project Wizard Template Engine Error
|
||||
TemplateEngine.internalError=Internal Error:
|
||||
TemplateEngine.internalError=Internal Error:\u0020
|
||||
TemplateEngine.templateEngine=Template Engine
|
||||
|
||||
|
|
|
@ -12,5 +12,5 @@
|
|||
# Marc-Andre Laperle - Initial API and implementation
|
||||
###############################################################################
|
||||
|
||||
OpenFiles_CannotOpen_error=Open file failure: Cannot open file:
|
||||
OpenFiles_FileNotExist_error=Open file failure: No such file exists:
|
||||
OpenFiles_CannotOpen_error=Open file failure: Cannot open file:\u0020
|
||||
OpenFiles_FileNotExist_error=Open file failure: No such file exists:\u0020
|
||||
|
|
|
@ -48,7 +48,7 @@ RemoteCMainTab_Remote_Path_Browse_Button=Browse...
|
|||
RemoteCMainTab_Connection=Connection:
|
||||
RemoteCMainTab_New=New...
|
||||
RemoteCMainTab_New_title=Create a new connection
|
||||
RemoteCMainTab_New_conntype_combo_label=Choose connection type:
|
||||
RemoteCMainTab_New_conntype_combo_label=Choose connection type:\u0020
|
||||
RemoteCMainTab_Edit=Edit...
|
||||
Gdbserver_Settings_Tab_Name=Gdbserver Settings
|
||||
Gdbserver_name_textfield_label=Gdbserver path:
|
||||
|
|
|
@ -30,13 +30,13 @@ LaunchInterruptedError=Debug launch has been interrupted
|
|||
LaunchMissingError=Previous launch configuration cannot be found
|
||||
DebuggerInitializingProblem=Problem occurred in start-up
|
||||
|
||||
GdbDebugNewExecutableCommand_Arguments=Arguments:
|
||||
GdbDebugExecutableCommand_Binary=Binary:
|
||||
GdbDebugExecutableCommand_Binary_Optional=Binary (optional):
|
||||
GdbDebugNewExecutableCommand_Arguments=Arguments:\u0020
|
||||
GdbDebugExecutableCommand_Binary=Binary:\u0020
|
||||
GdbDebugExecutableCommand_Binary_Optional=Binary (optional):\u0020
|
||||
GdbDebugNewExecutableCommand_Binary_file_does_not_exist=Binary does not exist
|
||||
GdbDebugNewExecutableCommand_Binary_must_be_specified=Binary must be specified
|
||||
GdbDebugNewExecutableCommand_Binary_on_host=Binary on host:
|
||||
GdbDebugNewExecutableCommand_Binary_on_target=Binary on target:
|
||||
GdbDebugNewExecutableCommand_Binary_on_host=Binary on host:\u0020
|
||||
GdbDebugNewExecutableCommand_Binary_on_target=Binary on target:\u0020
|
||||
GdbDebugExecutableCommand_BuildLog=Build Log path (optional):
|
||||
GdbDebugNewExecutableCommand_Binary_on_target_must_be_specified=Binary on target must be specified
|
||||
GdbDebugExecutableCommand_Browse=Browse...
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
# Contributors:
|
||||
# QNX Software Systems - initial API and implementation
|
||||
###############################################################################
|
||||
CDebugTarget.Unable_to_get_globals_1=Unable to get globals. Reason:
|
||||
CDebugTarget.Unable_to_get_globals_1=Unable to get globals. Reason:\u0020
|
||||
CArrayPartition.0=Type is not available.
|
||||
CArrayPartition.1=Qualified name is not available.
|
||||
CDebugTarget.1=Execution is suspended because of error.
|
||||
|
@ -22,7 +22,7 @@ CModificationVariable.1=Unable to set value.
|
|||
CStackFrame.0={0} at {1}: {2}
|
||||
CThread.0=Stack is not available: {0}.
|
||||
CThread.1=Stack is not available: {0}.
|
||||
CValue.0=not available: {0}
|
||||
CValue.0=not available: {0}\u0020
|
||||
CVariable.0=not available: {0}
|
||||
CVariable.1=not available: {0}
|
||||
CVariable.2=Variable does not support value modification.
|
||||
|
|
|
@ -59,7 +59,7 @@ BreakpointPropertiesAction.label=P&roperties...
|
|||
AddExpressionAction.label=Add Watch Expression...
|
||||
RunToLineAction.label=Run to &Line
|
||||
ResumeAtLineAction.label=Resume at Li&ne
|
||||
MoveToLineAction.label=&Move to Line
|
||||
MoveToLineAction.label=&Move to Line\u0020
|
||||
GlobalResumeAtLineAction.label=Resume at Li&ne (C/C++)
|
||||
GlobalMoveToLineAction.label=Move to Line (C/C++)
|
||||
ShowFullPathsAction.label=Show Full &Paths
|
||||
|
@ -116,7 +116,7 @@ DebugPresentation.label=C/C++ Debug Appearance
|
|||
DisassemblyCategory.name = Disassembly
|
||||
DisassemblyCategory.description = Category for disassembly commands
|
||||
OpenDisassembly.name = Open Disassembly
|
||||
OpenDisassembly.description = Open disassembly window
|
||||
OpenDisassembly.description = Open disassembly window\u0020
|
||||
OpenDisassembly.label = Open Disassembly
|
||||
OpenDisassembly.tooltip = Open disassembly window
|
||||
DisassemblyEditor.name = Disassembly
|
||||
|
@ -251,11 +251,11 @@ TracepointActionSet.label=C/C++ Tracepoints
|
|||
TracingCategory.description=Category for Tracing Commands
|
||||
TracingCategory.name=Tracing Commands
|
||||
StartTracing.description=Start Tracing Experiment
|
||||
StartTracing.name=Start Tracing
|
||||
StartTracing.name=Start Tracing\u0020
|
||||
StopTracing.description=Stop Tracing Experiment
|
||||
StopTracing.name=Stop Tracing
|
||||
StopTracing.name=Stop Tracing\u0020
|
||||
SaveTraceData.description=Save Trace Data to File
|
||||
SaveTraceData.name=Save Trace Data
|
||||
SaveTraceData.name=Save Trace Data\u0020
|
||||
|
||||
sourceNotFoundEditor.name = C/C++ Source Not Found Editor
|
||||
CastingCategory.description = Set of commands for displaying variables and expressions as other types or arrays.
|
||||
|
|
|
@ -40,7 +40,7 @@ ToggleBreakpointAdapter.Empty_editor_2=Empty editor
|
|||
ToggleWatchpointActionDelegate.Error_1=Error
|
||||
ToggleBreakpointAdapter.Missing_document_2=Missing document
|
||||
ToggleBreakpointAdapter.Missing_resource_2=Missing resource
|
||||
ToggleBreakpointAdapter.Invalid_expression_1=Invalid expression:
|
||||
ToggleBreakpointAdapter.Invalid_expression_1=Invalid expression:\u0020
|
||||
RunToLineAdapter.Operation_is_not_supported_1=Operation is not supported.
|
||||
EnableDisableBreakpointRulerAction.Enable_Breakpoint_1=&Enable Breakpoint
|
||||
EnableDisableBreakpointRulerAction.Enabling_disabling_breakpoints_1=Enabling/disabling breakpoints
|
||||
|
|
|
@ -20,19 +20,19 @@ CBreakpointPropertyPage.0=Ignore count must be a nonnegative integer
|
|||
CBreakpointPropertyPage.file_system_button=File S&ystem...
|
||||
CBreakpointPropertyPage.fileName_errorMessage=Enter the absolute path to an existing file:
|
||||
CBreakpointPropertyPage.function_valueNotAvailable_label=Not available
|
||||
CBreakpointPropertyPage.function_label=Function name:
|
||||
CBreakpointPropertyPage.function_label=Function name:\u0020
|
||||
CBreakpointPropertyPage.function_value_errorMessage=Enter a function expression:
|
||||
CBreakpointPropertyPage.breakpointType_function_label=C/C++ Function Breakpoint
|
||||
CBreakpointPropertyPage.address_valueNotAvailable_label=Not available
|
||||
CBreakpointPropertyPage.address_label=Address:
|
||||
CBreakpointPropertyPage.address_label=Address:\u0020
|
||||
CBreakpointPropertyPage.breakpointType_address_label=C/C++ Address Breakpoint
|
||||
CBreakpointPropertyPage.sourceHandle_label=File:
|
||||
CBreakpointPropertyPage.sourceHandle_label=File:\u0020
|
||||
CBreakpointPropertyPage.breakpointType_line_label=C/C++ Line Breakpoint
|
||||
CBreakpointPropertyPage.lineNumber_errorMessage=Enter a line number greater than 0
|
||||
CBreakpointPropertyPage.lineNumber_label=Line number:
|
||||
CBreakpointPropertyPage.lineNumber_label=Line number:\u0020
|
||||
CBreakpointPropertyPage.breakpoint_already_exists_errorMessage=Breakpoint exists at this location
|
||||
CBreakpointPropertyPage.breakpointType_event_label=C/C++ Event Breakpoint
|
||||
CBreakpointPropertyPage.project_label=Project:
|
||||
CBreakpointPropertyPage.breakpointType_event_label=C/C++ Event Breakpoint \u0020
|
||||
CBreakpointPropertyPage.project_label=Project:\u0020
|
||||
CBreakpointPropertyPage.breakpointType_watchpoint_label=C/C++ Watchpoint
|
||||
CBreakpointPropertyPage.breakpointType_watchpoint_read_label=C/C++ Read Watchpoint
|
||||
CBreakpointPropertyPage.breakpointType_watchpoint_access_label=C/C++ Access Watchpoint
|
||||
|
@ -44,7 +44,7 @@ CBreakpointPropertyPage.watchpoint_range_label=Range:
|
|||
CBreakpointPropertyPage.workspace_button=W&orkspace...
|
||||
CBreakpointPropertyPage.condition_label=&Condition:
|
||||
CBreakpointPropertyPage.condition_invalidValue_message=Invalid condition.
|
||||
CBreakpointPropertyPage.ignoreCount_label=&Ignore count:
|
||||
CBreakpointPropertyPage.ignoreCount_label=&Ignore count:\u0020
|
||||
CBreakpointPropertyPage.breakpointType_label=Class:
|
||||
CBreakpointPropertyPage.enabled_label=Enabled
|
||||
CBreakpointPropertyPage.eventType_label=Event Type
|
||||
|
|
|
@ -20,7 +20,7 @@ CDebugPreferencePage.8=Variables:
|
|||
CDebugPreferencePage.9=Expressions:
|
||||
CDebugPreferencePage.10=Registers:
|
||||
CDebugPreferencePage.11=Disassembly options
|
||||
CDebugPreferencePage.12=Maximum number of displayed instructions:
|
||||
CDebugPreferencePage.12=Maximum number of displayed instructions:\u0020
|
||||
CDebugPreferencePage.13=Value must be an integer between {0} and {1}.
|
||||
CDebugPreferencePage.15=Show source files in binaries
|
||||
CDebugPreferencePage.16=Wide character encoding
|
||||
|
|
|
@ -47,7 +47,7 @@ PathMappingDialog_16=Path Mappings
|
|||
PathMappingDialog_MappingWithBackendEnabled=Resolve path mappings using debugger backend.
|
||||
PathMappingDialog_MappingWithBackendEnabledTooltip=Allow the mapping to be performed with the debugger backend where supported. This allows any direct interaction with the backend (for example via the console) to have a consistent view of file names.
|
||||
RemoveAction_0=Re&move
|
||||
SourceContainerWorkbenchAdapter_0=Path Mapping:
|
||||
SourceContainerWorkbenchAdapter_0=Path Mapping:\u0020
|
||||
UpAction_0=U&p
|
||||
CSourceNotFoundEditor_0=Can''t find a source file at \"{0}\" \nLocate the file or edit the source lookup path to include its location.
|
||||
CSourceNotFoundEditor_1=Locate File...
|
||||
|
|
|
@ -23,7 +23,7 @@ ExecutablesView_ExeName=Executable Name
|
|||
ExecutablesView_ExeProject=Executable Project
|
||||
ExecutablesView_ExeSize=Executable Size
|
||||
ExecutablesView_ExeType=Executable Type
|
||||
ExecutablesView_Finding_Sources_Job_Name=Finding source files in
|
||||
ExecutablesView_Finding_Sources_Job_Name=Finding source files in\u0020
|
||||
ExecutablesView_Import=Import
|
||||
ExecutablesView_ImportExe=Import an executable file
|
||||
ExecutablesView_ImportExecutables=Import Executables
|
||||
|
@ -48,9 +48,9 @@ ExecutablesViewer_Project=Project
|
|||
ExecutablesViewer_RefreshExecutablesView=Refresh Executables View
|
||||
ExecutablesViewer_Size=Size
|
||||
ExecutablesViewer_Type=Type
|
||||
SourceFilesContentProvider_NoFilesFound=No source files found in
|
||||
SourceFilesContentProvider_ReadingDebugSymbolInformationLabel=Reading Debug Symbol Information:
|
||||
SourceFilesContentProvider_Refreshing=Refreshing...
|
||||
SourceFilesContentProvider_NoFilesFound=No source files found in\u0020
|
||||
SourceFilesContentProvider_ReadingDebugSymbolInformationLabel=Reading Debug Symbol Information:\u0020
|
||||
SourceFilesContentProvider_Refreshing=Refreshing...\u0020
|
||||
SourceFilesContentProvider_Canceled=Parse canceled. Hit refresh to restart.
|
||||
SourceFilesViewer_RefreshSourceFiles=Refresh Source Files
|
||||
SourceFilesViewer_Location=Location
|
||||
|
|
|
@ -13,16 +13,16 @@
|
|||
# Wind River Systems - adapted to work with platform Modules view (bug 210558)
|
||||
###############################################################################
|
||||
ModulesView.1=executable
|
||||
ModulesView.10=Size:
|
||||
ModulesView.10=Size:\u0020
|
||||
ModulesView.11=\ (symbols loaded)
|
||||
ModulesView.12=(symbols not loaded)
|
||||
ModulesView.13=Select &All
|
||||
ModulesView.16=&Copy
|
||||
ModulesView.2=shared library
|
||||
ModulesView.3=Type:
|
||||
ModulesView.4=Symbols:
|
||||
ModulesView.3=Type:\u0020
|
||||
ModulesView.4=Symbols:\u0020
|
||||
ModulesView.5=loaded
|
||||
ModulesView.6=not loaded
|
||||
ModulesView.7=Symbols file:
|
||||
ModulesView.8=CPU:
|
||||
ModulesView.9=Base address:
|
||||
ModulesView.7=Symbols file:\u0020
|
||||
ModulesView.8=CPU:\u0020
|
||||
ModulesView.9=Base address:\u0020
|
||||
|
|
|
@ -58,12 +58,12 @@ ExternalToolAction.error.1=Could not launch "{0}".
|
|||
ExternalToolAction.TypeName=External Tool Action
|
||||
ResumeAction.UntitledName=Untitled Resume Action
|
||||
ResumeAction.SummaryImmediately=Resume immediately
|
||||
ResumeActionComposite.ResumeAfterLabel=Resume after
|
||||
ResumeActionComposite.ResumeAfterLabel=Resume after\u0020
|
||||
ResumeAction.SummaryResumeTime=Resume after {0} seconds
|
||||
ResumeActionComposite.Seconds=seconds
|
||||
ResumeAction.TypeName=Resume Action
|
||||
ResumeAction.error.0=IResumeActionEnabler not registered in context.
|
||||
ResumeAction.error.1=Could not resume.
|
||||
ResumeAction.error.1=Could not resume.\u0020
|
||||
|
||||
ReverseDebugAction.UntitledName=Untitled Rev Debug Action
|
||||
ReverseDebugAction.TypeName=Reverse Debug Action
|
||||
|
|
|
@ -46,5 +46,5 @@ ImportExecutablePageOne_NoteAnEXE=Not an executable file.
|
|||
ImportExecutablePageOne_SelectAll=Select All
|
||||
ImportExecutablePageOne_Searching=Searching:
|
||||
AbstractImportExecutableWizard_windowTitle=Import Executable
|
||||
AbstractImportExecutableWizard_ErrorImporting=Error importing:
|
||||
AbstractImportExecutableWizard_ErrorImporting=Error importing:\u0020
|
||||
AbstractImportExecutableWizard_CreateLaunchConfiguration=Create Launch Configuration
|
||||
|
|
|
@ -48,7 +48,7 @@ MulticoreVisualizer.actions.PinToDebugSession.description=Pin this view to the c
|
|||
MulticoreVisualizer.actions.ShowDebugToolbar.text=Show Debug Toolbar
|
||||
MulticoreVisualizer.actions.ShowDebugToolbar.description=Shows/hides the debug actions from the visualizer toolbar
|
||||
|
||||
MulticoreVisualizer.view.CanvasFilter.Active.text=Filter Active:
|
||||
MulticoreVisualizer.view.CanvasFilter.Active.text=Filter Active:\u0020
|
||||
MulticoreVisualizer.view.CanvasFilter.cpu.text=CPUs:
|
||||
MulticoreVisualizer.view.CanvasFilter.core.text=Cores:
|
||||
MulticoreVisualizer.view.CanvasFilter.thread.text=Threads:
|
||||
|
|
|
@ -33,7 +33,7 @@ breakpoints.property.filter=Filter
|
|||
tracepoints.property.common=Common
|
||||
tracepoints.property.actions=Actions
|
||||
tracepoints.action.page.label=Actions
|
||||
tracepointActionsPrefPage.name=Tracepoint Actions
|
||||
tracepointActionsPrefPage.name=Tracepoint Actions\u0020
|
||||
dynamicPrintf.property.common=Common
|
||||
action.addDynamicPrintf.label=Add Dynamic-Printf...
|
||||
|
||||
|
|
|
@ -19,15 +19,15 @@ ToggleTracepointsTargetFactory_name=C/C++ Tracepoints
|
|||
|
||||
PropertyPage_integer_negative=Count must be a nonnegative integer
|
||||
PropertyPage_NotAvailable=Not available
|
||||
PropertyPage_FunctionName=Function name:
|
||||
PropertyPage_Address=Address:
|
||||
PropertyPage_File=File:
|
||||
PropertyPage_LineNumber=Line number:
|
||||
PropertyPage_Project=Project:
|
||||
PropertyPage_FunctionName=Function name:\u0020
|
||||
PropertyPage_Address=Address:\u0020
|
||||
PropertyPage_File=File:\u0020
|
||||
PropertyPage_LineNumber=Line number:\u0020
|
||||
PropertyPage_Project=Project:\u0020
|
||||
PropertyPage_Condition=&Condition:
|
||||
PropertyPage_InvalidCondition=Invalid condition.
|
||||
PropertyPage_IgnoreCount=&Ignore count:
|
||||
TracepointPropertyPage_PassCount=&Pass count:
|
||||
TracepointPropertyPage_PassCount=&Pass count:\u0020
|
||||
PropertyPage_Class=Class:
|
||||
PropertyPage_Enabled=Enabled
|
||||
PropertyPage_function_value_errorMessage=Enter a function expression:
|
||||
|
|
|
@ -12,12 +12,12 @@
|
|||
# Mentor Graphics - Initial API and implementation
|
||||
###############################################################################
|
||||
|
||||
GdbDebugNewExecutableCommand_Arguments=Arguments:
|
||||
GdbDebugNewExecutableCommand_Binary=Binary:
|
||||
GdbDebugNewExecutableCommand_Arguments=Arguments:\u0020
|
||||
GdbDebugNewExecutableCommand_Binary=Binary:\u0020
|
||||
GdbDebugNewExecutableCommand_Binary_file_does_not_exist=Binary file does not exist
|
||||
GdbDebugNewExecutableCommand_Binary_must_be_specified=Binary must be specified
|
||||
GdbDebugNewExecutableCommand_Binary_on_host=Binary on host:
|
||||
GdbDebugNewExecutableCommand_Binary_on_target=Binary on target:
|
||||
GdbDebugNewExecutableCommand_Binary_on_host=Binary on host:\u0020
|
||||
GdbDebugNewExecutableCommand_Binary_on_target=Binary on target:\u0020
|
||||
GdbDebugNewExecutableCommand_Binary_on_target_must_be_specified=Binary on target must be specified
|
||||
GdbDebugNewExecutableCommand_Browse=Browse...
|
||||
GdbDebugNewExecutableCommand_Debug_New_Executable=Debug New Executable
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
##########################################################################
|
||||
|
||||
ConsoleMessages_trace_console_name=gdb traces
|
||||
ConsoleMessages_console_terminated=<terminated>
|
||||
ConsoleMessages_console_terminated=<terminated>\u0020
|
||||
|
||||
ConsoleMessages_save_action_tooltip=Save console content
|
||||
ConsoleMessages_save_confirm_overwrite_title=Confirm overwrite
|
||||
|
|
|
@ -61,7 +61,7 @@ GDBServerDebuggerPage.5=GDB Debugger
|
|||
GDBServerDebuggerPage.6=GDB command file:
|
||||
GDBServerDebuggerPage.7=B&rowse...
|
||||
GDBServerDebuggerPage.8=GDB Command File
|
||||
GDBServerDebuggerPage.9=Type:
|
||||
GDBServerDebuggerPage.9=Type:\u0020
|
||||
GDBServerDebuggerPage.10=Connection
|
||||
GDBServerDebuggerPage.11=Remote timeout (seconds):
|
||||
GDBServerDebuggerPage.12=Timeout for the remote target to respond. If unchecked, uses GDB default value. See GDB's help for "set remotetimeout num".
|
||||
|
@ -69,8 +69,8 @@ GDBServerDebuggerPage.13=The "Remote timeout (seconds)" field can not be empty.
|
|||
GDBSolibBlock.0=Load shared library symbols automatically
|
||||
GDBSolibBlock.1=Stop on shared library events
|
||||
GDBSolibBlock.2=Use shared library symbols for debugged applications
|
||||
SerialPortSettingsBlock.0=Device:
|
||||
SerialPortSettingsBlock.1=Speed:
|
||||
SerialPortSettingsBlock.0=Device:\u0020
|
||||
SerialPortSettingsBlock.1=Speed:\u0020
|
||||
SerialPortSettingsBlock.2=Device must be specified.
|
||||
SerialPortSettingsBlock.3=Invalid device.
|
||||
SerialPortSettingsBlock.4=Speed must be specified.
|
||||
|
@ -85,8 +85,8 @@ SolibSearchPathBlock.7=Select Libraries
|
|||
SolibSearchPathBlock.8=Select libraries to load symbols automatically.
|
||||
SolibSearchPathBlock.9=No libraries found.
|
||||
SolibSearchPathBlock.Add_Directory=Add Directory
|
||||
TCPSettingsBlock.0=Host name or IP address:
|
||||
TCPSettingsBlock.1=Port number:
|
||||
TCPSettingsBlock.0=Host name or IP address:\u0020
|
||||
TCPSettingsBlock.1=Port number:\u0020
|
||||
TCPSettingsBlock.2=Host name or IP address must be specified.
|
||||
TCPSettingsBlock.3=Invalid host name or IP address.
|
||||
TCPSettingsBlock.4=Port number must be specified.
|
||||
|
@ -104,9 +104,9 @@ AbstractCLaunchDelegate.Project_NAME_does_not_exist=Project {0} does not exist.
|
|||
AbstractCLaunchDelegate.Project_NAME_is_closed=Project {0} is closed
|
||||
AbstractCLaunchDelegate.Debugger_Process=Debugger Process
|
||||
AbstractCLaunchDelegate.building_projects=Building prerequisite project list
|
||||
AbstractCLaunchDelegate.building=Building
|
||||
AbstractCLaunchDelegate.building=Building\u0020
|
||||
AbstractCLaunchDelegate.searching_for_errors=Searching for compile errors
|
||||
AbstractCLaunchDelegate.searching_for_errors_in=Searching for compile errors in
|
||||
AbstractCLaunchDelegate.searching_for_errors_in=Searching for compile errors in\u0020
|
||||
AbstractCLaunchDelegate.20=Building prerequisite project list
|
||||
AbstractCLaunchDelegate.Program_is_not_a_recognized_executable=Program is not a recognized executable.
|
||||
|
||||
|
@ -218,7 +218,7 @@ WorkingDirectoryBlock.10=Working directory does not exist
|
|||
WorkingDirectoryBlock.Use_default=Use de&fault
|
||||
WorkingDirectoryBlock.17=Variabl&es...
|
||||
WorkingDirectoryBlock.1=File S&ystem...
|
||||
WorkingDirectoryBlock.Exception_occurred_reading_configuration___15=Exception occurred reading configuration:
|
||||
WorkingDirectoryBlock.Exception_occurred_reading_configuration___15=Exception occurred reading configuration:\u0020
|
||||
|
||||
Launch.common.Exception_occurred_reading_configuration_EXCEPTION=Exception occurred reading configuration {0}
|
||||
Launch.common.DebuggerColon=Debugger:
|
||||
|
@ -243,4 +243,4 @@ ProcessPrompter.Core=core
|
|||
ProcessPrompter.Cores=cores
|
||||
ProcessPrompter.PromptJob=Prompt for Process
|
||||
ProcessPrompter.ErrProcessConected=Process {0} already connected
|
||||
ProcessPrompterDialog.TitlePrefix=Choose binary for process:
|
||||
ProcessPrompterDialog.TitlePrefix=Choose binary for process:\u0020
|
||||
|
|
|
@ -40,12 +40,12 @@ TraceControlView_trace_status_visualization=Examining trace
|
|||
TraceControlView_trace_status_stopped=Trace data available
|
||||
TraceControlView_trace_status_no_debug_session=Debug session is not selected or started
|
||||
|
||||
TraceControlView_trace_status_secondary_stopped={0}trace{1}, stopped {2} on {3}
|
||||
TraceControlView_trace_status_secondary_stopped={0}trace{1}, stopped {2} on {3}\u0020
|
||||
# {1} is the user name if set provided by binding TraceControlView_trace_status_secondary_user
|
||||
# {2} is the last refresh time if auto-refresh is not enabled, provided by binding TraceControlView_trace_status_secondary_refresh_time
|
||||
TraceControlView_trace_status_secondary_running=started {0}{1}{2}
|
||||
# {1} is the user name if set provided by binding TraceControlView_trace_status_secondary_user
|
||||
TraceControlView_trace_status_secondary_offline=Tracing was started {0}{1}, stopped {2} on {3}
|
||||
TraceControlView_trace_status_secondary_offline=Tracing was started {0}{1}, stopped {2} on {3} \u0020
|
||||
TraceControlView_trace_status_secondary_user=\ by {0}
|
||||
# Note: TraceControlView.updateUIRefreshStatusOnly relies on the exact content of this field,
|
||||
# mind when change it
|
||||
|
@ -56,19 +56,19 @@ TraceControlView_action_stop=Stop
|
|||
TraceControlView_action_finish_visualization=End
|
||||
TraceControlView_action_restart=Restart
|
||||
|
||||
TraceControlView_date_days=\ days\
|
||||
TraceControlView_date_hours=\ hours\
|
||||
TraceControlView_date_minutes=\ minutes\
|
||||
TraceControlView_date_seconds=\ seconds\
|
||||
TraceControlView_date_zero=0 seconds\
|
||||
TraceControlView_date_days=\ days\u0020
|
||||
TraceControlView_date_hours=\ hours\u0020
|
||||
TraceControlView_date_minutes=\ minutes\u0020
|
||||
TraceControlView_date_seconds=\ seconds\u0020
|
||||
TraceControlView_date_zero=0 seconds\u0020
|
||||
|
||||
TraceControlView_date_short_days=d\
|
||||
TraceControlView_date_short_hours=h\
|
||||
TraceControlView_date_short_minutes=m\
|
||||
TraceControlView_date_short_seconds=s\
|
||||
TraceControlView_date_short_zero=0s\
|
||||
TraceControlView_date_short_days=d\u0020
|
||||
TraceControlView_date_short_hours=h\u0020
|
||||
TraceControlView_date_short_minutes=m\u0020
|
||||
TraceControlView_date_short_seconds=s\u0020
|
||||
TraceControlView_date_short_zero=0s\u0020
|
||||
|
||||
TraceControlView_tracing_stopped_at={0},
|
||||
TraceControlView_tracing_stopped_at={0},\u0020
|
||||
TraceControlView_tracing_stopped_user_request=user request
|
||||
TraceControlView_tracing_stopped_passcount=passcount
|
||||
TraceControlView_tracing_stopped_tracepoint_number=passcount of tracepoint {0}
|
||||
|
@ -91,7 +91,7 @@ TraceControlView_trace_notes_save_tooltip=Save notes
|
|||
TraceControlView_frame_label=Current selected trace frame:
|
||||
TraceControlView_frame_not_looking =n/a
|
||||
TraceControlView_frame_looking={0}, tracepoint {1}
|
||||
TraceControlView_frame_dragging={0}
|
||||
TraceControlView_frame_dragging={0} \u0020
|
||||
|
||||
TraceControlView_today={0} today
|
||||
TraceControlView_yesterday={0} yesterday
|
||||
|
|
|
@ -27,9 +27,9 @@ AbstractCLaunchDelegate.Project_NAME_does_not_exist=Project {0} does not exist
|
|||
AbstractCLaunchDelegate.Project_NAME_is_closed=Project {0} is closed
|
||||
AbstractCLaunchDelegate.Debugger_Process=Debugger Process
|
||||
AbstractCLaunchDelegate.building_projects=Building prerequisite project list
|
||||
AbstractCLaunchDelegate.building=Building
|
||||
AbstractCLaunchDelegate.building=Building\u0020
|
||||
AbstractCLaunchDelegate.searching_for_errors=Searching for compile errors
|
||||
AbstractCLaunchDelegate.searching_for_errors_in=Searching for compile errors in
|
||||
AbstractCLaunchDelegate.searching_for_errors_in=Searching for compile errors in\u0020
|
||||
AbstractCLaunchDelegate.20=Building prerequisite project list
|
||||
AbstractCLaunchDelegate.Program_is_not_a_recognized_executable=Program is not a recognized executable.
|
||||
|
||||
|
@ -157,7 +157,7 @@ WorkingDirectoryBlock.10=Working directory does not exist
|
|||
WorkingDirectoryBlock.Use_default=Use de&fault
|
||||
WorkingDirectoryBlock.17=Variabl&es...
|
||||
WorkingDirectoryBlock.1=File S&ystem...
|
||||
WorkingDirectoryBlock.Exception_occurred_reading_configuration___15=Exception occurred reading configuration:
|
||||
WorkingDirectoryBlock.Exception_occurred_reading_configuration___15=Exception occurred reading configuration:\u0020
|
||||
|
||||
Launch.common.Exception_occurred_reading_configuration_EXCEPTION=Exception occurred reading configuration {0}
|
||||
Launch.common.DebuggerColon=Debugger:
|
||||
|
@ -181,4 +181,4 @@ LocalCDILaunchDelegate.10=Failed to set program arguments, environment or workin
|
|||
ServicesLaunchSequence_0=Initializing debugger services
|
||||
ServicesLaunchSequence_1=Aborting debugger services initialization
|
||||
|
||||
InferiorRuntimeProcess_ExitValue=(exit value: {0})
|
||||
InferiorRuntimeProcess_ExitValue=(exit value: {0})\u0020
|
||||
|
|
|
@ -23,7 +23,7 @@ featureName=C/C++ Multicore Visualizer
|
|||
providerName=Eclipse CDT
|
||||
|
||||
# "description" property - description of the feature
|
||||
description=Multicore Visualizer which displays the debug session graphically in the Visualizer view.
|
||||
description=Multicore Visualizer which displays the debug session graphically in the Visualizer view. \u0020
|
||||
|
||||
# copyright
|
||||
copyright=\
|
||||
|
|
|
@ -55,7 +55,7 @@ action.refresh.label=Refresh
|
|||
|
||||
popup.addExpression.label=Add Watch Expression...
|
||||
popup.resumeAtLine.label=Resume At Li&ne
|
||||
popup.moveToLine.label=&Move To Line
|
||||
popup.moveToLine.label=&Move To Line\u0020
|
||||
popup.runToLine.label=Run To &Line
|
||||
|
||||
menu.addGroup.label=Add Expression Group
|
||||
|
@ -69,11 +69,11 @@ command.refreshAll.description=Refresh all data in debug views
|
|||
|
||||
# Preferences
|
||||
|
||||
StaleData.foreground.label=Stale data foreground color
|
||||
StaleData.foreground.description=This color is used to indicate that a given element of data in a view is stale. User should refresh the view to see current data. The foreground color is used only when the view is showing data in columns.
|
||||
StaleData.foreground.label=Stale data foreground color\u0020
|
||||
StaleData.foreground.description=This color is used to indicate that a given element of data in a view is stale. User should refresh the view to see current data. The foreground color is used only when the view is showing data in columns.\u0020
|
||||
|
||||
StaleData.background.label=Stale data background color
|
||||
StaleData.background.description=This color is used to indicate that a given element of data in a view is stale. User should refresh the view to see current data. The background color is used only when the view is in no-columns mode.
|
||||
StaleData.background.label=Stale data background color\u0020
|
||||
StaleData.background.description=This color is used to indicate that a given element of data in a view is stale. User should refresh the view to see current data. The background color is used only when the view is in no-columns mode.\u0020
|
||||
|
||||
debugUpdateModes.label = Debug Update Modes
|
||||
|
||||
|
|
|
@ -45,8 +45,8 @@ Disassembly_Error_Dialog_ok_button=OK
|
|||
Disassembly_message_notConnected=No debug context
|
||||
|
||||
Disassembly_log_error_expression_eval=Expression does not evaluate to an address
|
||||
Disassembly_log_error_locateFile=Unable to locate file:\
|
||||
Disassembly_log_error_readFile=Cannot read source file:\
|
||||
Disassembly_log_error_locateFile=Unable to locate file:\u0020
|
||||
Disassembly_log_error_readFile=Cannot read source file:\u0020
|
||||
|
||||
DisassemblyPart_showRulerColumn_label=Show {0}
|
||||
DisassemblyPreferencePage_addressFormatTooltip=Use this format for the instruction address
|
||||
|
|
|
@ -13,8 +13,8 @@
|
|||
###############################################################################
|
||||
|
||||
NumberFormatDetailPane_format_separator__label= :
|
||||
NumberFormatDetailPane_Name_label=Name :
|
||||
NumberFormatDetailPane_Name_label=Name :\u0020
|
||||
NumberFormatDetailPane_Spaces_label=\t
|
||||
NumberFormatDetailPane_CarriageReturn_label=\n
|
||||
NumberFormatDetailPane_DotDotDot_label=...
|
||||
NumberFormatDetailPane__End_parentheses=)
|
||||
NumberFormatDetailPane__End_parentheses=)\u0020
|
||||
|
|
|
@ -17,4 +17,4 @@ ErrorLabelText__text_format=Error: {0}
|
|||
|
||||
# If multiple errors are shown in the combined error message, this
|
||||
# string is used as a separator between them.
|
||||
ErrorLabelText_Error_message__text_page_break_delimiter= \\
|
||||
ErrorLabelText_Error_message__text_page_break_delimiter= \\\u0020
|
||||
|
|
|
@ -14,14 +14,14 @@
|
|||
###############################################################################
|
||||
ModulesView.Executable=executable
|
||||
ModulesView.SharedLibrary=shared library
|
||||
ModulesView.Type=Type:
|
||||
ModulesView.Symbols=Symbols:
|
||||
ModulesView.Type=Type:\u0020
|
||||
ModulesView.Symbols=Symbols:\u0020
|
||||
ModulesView.Loaded=loaded
|
||||
ModulesView.NotLoaded=not loaded
|
||||
ModulesView.SymbolsFile=Symbols file:
|
||||
ModulesView.CPU=CPU:
|
||||
ModulesView.BaseAddress=Base address:
|
||||
ModulesView.Size=Size:
|
||||
ModulesView.SymbolsFile=Symbols file:\u0020
|
||||
ModulesView.CPU=CPU:\u0020
|
||||
ModulesView.BaseAddress=Base address:\u0020
|
||||
ModulesView.Size=Size:\u0020
|
||||
ModulesView.SymbolsLoaded=\ (symbols loaded)
|
||||
ModulesView.SymbolsNotLoaded=(symbols not loaded)
|
||||
ModulesView.SelectAll=Select &All
|
||||
|
|
|
@ -16,7 +16,7 @@ GDBJtagDebugger.0=Starting debug session
|
|||
GDBJtagDebugger.1=Error getting debug target
|
||||
GDBJtagDebugger.18=Executing run commands
|
||||
GDBJtagDebugger.2=Connecting to remote
|
||||
GDBJtagDebugger.21=GDB command:
|
||||
GDBJtagDebugger.21=GDB command:\u0020
|
||||
GDBJtagDebugger.22=Failed command
|
||||
GDBJtagDebugger.3=Executing init commands
|
||||
GDBJtagDebugger.loading_image=Loading image
|
||||
|
@ -24,7 +24,7 @@ GDBJtagDebugger.loading_symbols=Loading symbolics
|
|||
src.common.No_answer=No answer
|
||||
|
||||
GDBJtagDebugger.err_no_sym_file=Symbolics loading was requested but file was not specified or not found.
|
||||
GDBJtagDebugger.err_no_img_file=Image loading was requested but file was not specified or not found.
|
||||
GDBJtagDebugger.err_no_img_file=Image loading was requested but file was not specified or not found.\u0020
|
||||
GDBJtagDebugger.delay_not_defined=Delay command not defined for device '%s'
|
||||
GDBJtagDebugger.halt_not_defined=Halt command not defined for device '%s'
|
||||
GDBJtagDebugger.reset_not_defined=Reset command not defined for device '%s'
|
||||
|
|
|
@ -40,7 +40,7 @@ ContainerTab_Ports_Group_Name=Ports
|
|||
ContainerTab_Specify_Ports_Label=Manually specify ports and only publish selected entries to the host:
|
||||
ContainerTab_Publish_All_Ports_Label=Publish all default exposed ports for image to random ports on the host
|
||||
ContainerTab_Option_Group_Name=Additional Options
|
||||
ContainerTab_Connection_Selector_Label=Connection:
|
||||
ContainerTab_Connection_Selector_Label=Connection:\u0020
|
||||
ContainerTab_Image_Selector_Label=Image:
|
||||
ContainerTab_Port_Column=Container Port
|
||||
ContainerTab_Type_Column=Type
|
||||
|
|
|
@ -30,12 +30,12 @@ AbstractCLaunchDelegate_Project_NAME_does_not_exist=Project {0} does not exist.
|
|||
AbstractCLaunchDelegate_Project_NAME_is_closed=Project {0} is closed
|
||||
AbstractCLaunchDelegate_Debugger_Process=Debugger Process
|
||||
AbstractCLaunchDelegate_building_projects=Building prerequisite project list
|
||||
AbstractCLaunchDelegate_building=Building
|
||||
AbstractCLaunchDelegate_building=Building\u0020
|
||||
AbstractCLaunchDelegate_searching_for_errors=Searching for compile errors
|
||||
AbstractCLaunchDelegate_searching_for_errors_in=Searching for compile errors in
|
||||
AbstractCLaunchDelegate_searching_for_errors_in=Searching for compile errors in\u0020
|
||||
AbstractCLaunchDelegate_20=Building prerequisite project list
|
||||
AbstractCLaunchDelegate_Program_is_not_a_recognized_executable=Program is not a recognized executable.
|
||||
AbstractCLaunchDelegate_BuildBeforeLaunch=Build before launch -
|
||||
AbstractCLaunchDelegate_BuildBeforeLaunch=Build before launch -\u0020
|
||||
AbstractCLaunchDelegate_PerformingBuild=Performing required build...
|
||||
AbstractCLaunchDelegate_PerformingIncrementalBuild=Performing incremental workspace build...
|
||||
AbstractCLaunchDelegate_Refresh=Refresh
|
||||
|
@ -166,7 +166,7 @@ WorkingDirectoryBlock_10=Working directory does not exist
|
|||
WorkingDirectoryBlock_Use_default=Use de&fault
|
||||
WorkingDirectoryBlock_17=Variabl&es...
|
||||
WorkingDirectoryBlock_1=File S&ystem...
|
||||
WorkingDirectoryBlock_Exception_occurred_reading_configuration_15=Exception occurred reading configuration:
|
||||
WorkingDirectoryBlock_Exception_occurred_reading_configuration_15=Exception occurred reading configuration:\u0020
|
||||
|
||||
Launch_common_Exception_occurred_reading_configuration_EXCEPTION=Exception occurred reading configuration {0}
|
||||
Launch_common_DebuggerColon=Debugger:
|
||||
|
@ -187,7 +187,7 @@ LocalCDILaunchDelegate_7=Core file does not exist or is not readable.
|
|||
LocalCDILaunchDelegate_8=Error starting process.
|
||||
LocalCDILaunchDelegate_9=Eclipse runtime does not support working directory.
|
||||
LocalCDILaunchDelegate_10=Failed to set program arguments, environment or working directory.
|
||||
MultiLaunchConfigurationDelegate_0=Launching
|
||||
MultiLaunchConfigurationDelegate_0=Launching\u0020
|
||||
MultiLaunchConfigurationDelegate_Cannot=Cannot launch ''{0}'' in the ''{1}'' mode
|
||||
MultiLaunchConfigurationDelegate_Loop=Infinite loop detected for ''{0}'' configuration
|
||||
MultiLaunchConfigurationDelegate_Action_None=None
|
||||
|
|
|
@ -32,7 +32,7 @@ ToolChainName.llvm.jit.linux=LLVM with JIT/Interpreter (Linux)
|
|||
ToolChainName.llvm.jit.macosx=LLVM with JIT/Interpreter (MacOSX)
|
||||
ToolChainName.llvm.jit.win32=LLVM with JIT/Interpreter (Windows)
|
||||
ToolChainName.llvm.clang=LLVM with Clang
|
||||
ToolChainName.llvm.clang.win32.mingw=LLVM with Clang (Windows) (MinGW)
|
||||
ToolChainName.llvm.clang.win32.mingw=LLVM with Clang (Windows) (MinGW)\u0020
|
||||
ToolChainName.llvm.clang.win32.cygwin=LLVM with Clang (Windows) (Cygwin)
|
||||
ToolChainName.llvm.linux=LLVM with Clang (Linux)
|
||||
ToolChainName.llvm.macosx=LLVM with Clang (MacOSX)
|
||||
|
|
|
@ -18,14 +18,14 @@ FindReplaceDialog.ButtonReplaceFind=Replace/Find
|
|||
FindReplaceDialog.ButtonReplace=Replace
|
||||
FindReplaceDialog.ButtonReplaceAll=Replace All
|
||||
FindReplaceDialog.Close=Close
|
||||
FindReplaceDialog.LabelFind=Find:
|
||||
FindReplaceDialog.LabelReplaceWith=Replace With:
|
||||
FindReplaceDialog.LabelFind=Find:\u0020
|
||||
FindReplaceDialog.LabelReplaceWith=Replace With:\u0020
|
||||
FindReplaceDialog.LabelDirection=Direction
|
||||
FindReplaceDialog.ButtonForward=Forward
|
||||
FindReplaceDialog.ButtonBackward=Backward
|
||||
FindReplaceDialog.LabelRange=Range
|
||||
FindReplaceDialog.LabelStartAddress=Start address:
|
||||
FindReplaceDialog.LabelEndAddress=End address:
|
||||
FindReplaceDialog.LabelStartAddress=Start address:\u0020
|
||||
FindReplaceDialog.LabelEndAddress=End address:\u0020
|
||||
FindReplaceDialog.LabelFormat=Format
|
||||
FindReplaceDialog.ButtonASCII=ASCII String
|
||||
FindReplaceDialog.ButtonHexadecimal=Hexadecimal
|
||||
|
@ -39,6 +39,6 @@ FindReplaceDialog.ButtonCaseInsensitive=Case Insensitive
|
|||
FindReplaceDialog.MemoryReadFailed=Memory Read Failed
|
||||
FindReplaceDialog.MemorySearchFailure=Memory Search Failure
|
||||
FindReplaceDialog.RepositioningMemoryViewFailed=Repositioning Memory View Failed
|
||||
FindReplaceDialog.SearchingMemoryFor=Searching memory for
|
||||
FindReplaceDialog.SearchingMemoryFor=Searching memory for\u0020
|
||||
MemorySearchResultsPage.LabelMemorySearch=Memory Search
|
||||
MemorySearchResultsPage.RepositioningMemoryViewFailed=Repositioning Memory View Failed
|
||||
|
|
|
@ -13,11 +13,11 @@
|
|||
# Teodor Madan (Freescale) -
|
||||
###############################################################################
|
||||
|
||||
ExportMemoryDialog.Format=Format:
|
||||
ExportMemoryDialog.Format=Format:\u0020
|
||||
ExportMemoryDialog.Title=Export Memory
|
||||
|
||||
ImportMemoryDialog.ErrRepositioningRendering=Could not reposition rendering to address 0x{0}.
|
||||
ImportMemoryDialog.Format=Format:
|
||||
ImportMemoryDialog.Format=Format:\u0020
|
||||
ImportMemoryDialog.Title=Import Memory
|
||||
|
||||
Exporter.AllFiles=All Files
|
||||
|
@ -25,7 +25,7 @@ Exporter.Browse=Browse...
|
|||
Exporter.ErrFile=Could not write to file.
|
||||
Exporter.ErrReadTarget=Could not read from target.
|
||||
Exporter.Falure=Failure exporting memory
|
||||
Exporter.FileName=File name:
|
||||
Exporter.FileName=File name:\u0020
|
||||
Exporter.Progress=Transferring %s bytes at address 0x%s
|
||||
Exporter.ProgressTitle=Transferring Data
|
||||
|
||||
|
@ -34,31 +34,31 @@ Importer.Browse=Browse...
|
|||
Importer.ErrReadFile=Could not read from file.
|
||||
Importer.ErrWriteTarget=Could not write to target.
|
||||
Importer.FalureImporting=Failure importing from file
|
||||
Importer.File=File name:
|
||||
Importer.File=File name:\u0020
|
||||
Importer.ProgressTitle=Transferring Data
|
||||
|
||||
PlainTextExporter.ChooseFile=Choose memory export file
|
||||
PlainTextExporter.EndAddress=End address:
|
||||
PlainTextExporter.Length=Length:
|
||||
PlainTextExporter.EndAddress=End address:\u0020
|
||||
PlainTextExporter.Length=Length:\u0020
|
||||
PlainTextExporter.Name=Plain Text
|
||||
PlainTextExporter.StartAddress=Start address:
|
||||
PlainTextExporter.StartAddress=Start address:\u0020
|
||||
|
||||
PlainTextImporter.ChooseFile=Choose memory import file
|
||||
PlainTextImporter.ErrInvalidFormat=Invalid file format. Expected integer at line %d
|
||||
PlainTextImporter.Name=Plain Text
|
||||
PlainTextImporter.RestoreAddress=Restore to address:
|
||||
PlainTextImporter.RestoreAddress=Restore to address:\u0020
|
||||
PlainTextImporter.ScrollToStart=Scroll to restore address
|
||||
|
||||
SRecordExporter.ChooseFile=Choose memory export file
|
||||
SRecordExporter.EndAddress=End address:
|
||||
SRecordExporter.Length=Length:
|
||||
SRecordExporter.EndAddress=End address:\u0020
|
||||
SRecordExporter.Length=Length:\u0020
|
||||
SRecordExporter.Name=SRecord
|
||||
SRecordExporter.StartAddress=Start address:
|
||||
SRecordExporter.StartAddress=Start address:\u0020
|
||||
SRecordExporter.32BitLimitationMessage=SRecord format only supports 32-bit address spaces.
|
||||
|
||||
SRecordImporter.ChecksumFalure=Checksum failure of line =
|
||||
SRecordImporter.ChecksumFalure=Checksum failure of line =\u0020
|
||||
SRecordImporter.ChooseFile=Choose memory import file
|
||||
SRecordImporter.CustomAddressRestore=Restore to this address:
|
||||
SRecordImporter.CustomAddressRestore=Restore to this address:\u0020
|
||||
SRecordImporter.FileAddressRestore=Restore to address specified in the file
|
||||
SRecordImporter.InvalidAddress=Invalid file format. Invalid address at line %d
|
||||
SRecordImporter.InvalidChecksum=Invalid file format. Invalid checksum format at line %d
|
||||
|
@ -69,12 +69,12 @@ SRecordImporter.ScrollToStart=Scroll to restore address
|
|||
SRecordImporter.32BitLimitationMessage=SRecord format only supports 32-bit address spaces.
|
||||
|
||||
RAWBinaryExporter.ChooseFile=Choose memory export file
|
||||
RAWBinaryExporter.EndAddress=End address:
|
||||
RAWBinaryExporter.Length=Length:
|
||||
RAWBinaryExporter.EndAddress=End address:\u0020
|
||||
RAWBinaryExporter.Length=Length:\u0020
|
||||
RAWBinaryExporter.Name=RAW Binary
|
||||
RAWBinaryExporter.StartAddress=Start address:
|
||||
RAWBinaryExporter.StartAddress=Start address:\u0020
|
||||
|
||||
RAWBinaryImporter.ChooseFile=Choose memory import file
|
||||
RAWBinaryImporter.Name=RAW Binary
|
||||
RAWBinaryImporter.RestoreAddress=Restore to address:
|
||||
RAWBinaryImporter.RestoreAddress=Restore to address:\u0020
|
||||
RAWBinaryImporter.ScrollToStart=Scroll to restore address
|
||||
|
|
|
@ -12,12 +12,12 @@
|
|||
# Anton Gorenkov - Initial implementation
|
||||
###############################################################################
|
||||
GoogleTestsRunner_error_format={0}: {1}
|
||||
GoogleTestsRunner_io_error_prefix=I/O Error:
|
||||
GoogleTestsRunner_io_error_prefix=I/O Error:\u0020
|
||||
OutputHandler_getparam_message=Instantiated with GetParam() = {0}
|
||||
OutputHandler_unexpected_case_end=End of test case "{0}" is not expected, because the last started case is "{1}".
|
||||
OutputHandler_unexpected_output=Unexpected test module output.
|
||||
OutputHandler_unexpected_suite_end=End of test suite "{0}" is not expected, because the last started suite is "{1}".
|
||||
OutputHandler_unknown_error_prefix=Unknown error during parsing Google Test module output:
|
||||
OutputHandler_unknown_error_prefix=Unknown error during parsing Google Test module output:\u0020
|
||||
OutputHandler_unknown_location_format=Unknown location format.
|
||||
OutputHandler_unknown_test_status=Test status value "{0}" is unknown.
|
||||
OutputHandler_wrong_groups_count=State with pattern "{0}" should has {1} groups but has {2}.
|
||||
|
|
|
@ -12,9 +12,9 @@
|
|||
# Anton Gorenkov - Initial implementation
|
||||
###############################################################################
|
||||
QtTestsRunner_error_format={0}: {1}
|
||||
QtTestsRunner_io_error_prefix=I/O Error:
|
||||
QtTestsRunner_io_error_prefix=I/O Error:\u0020
|
||||
QtTestsRunner_no_test_cases_to_rerun=There is no test cases to rerun (initialization and finalization test cases are not taken into account)
|
||||
QtTestsRunner_xml_error_prefix=XML parse error:
|
||||
QtTestsRunner_xml_error_prefix=XML parse error:\u0020
|
||||
QtXmlLogHandler_benchmark_result_message={0,number,\#.\#\#\#\#} {1} per iteration (total: {2}, iterations: {3})
|
||||
QtXmlLogHandler_datatag_format=({0})
|
||||
QtXmlLogHandler_metrics_unit_events=events
|
||||
|
|
|
@ -11,12 +11,12 @@
|
|||
# Contributors:
|
||||
# Anton Gorenkov - Initial implementation
|
||||
###############################################################################
|
||||
CounterPanel_tests_erred=Errors:
|
||||
CounterPanel_tests_failed=Failures:
|
||||
CounterPanel_tests_run=Runs:
|
||||
CounterPanel_tests_erred=Errors:\u0020
|
||||
CounterPanel_tests_failed=Failures:\u0020
|
||||
CounterPanel_tests_run=Runs:\u0020
|
||||
CounterPanel_tests_skipped={0} ({1} ignored)
|
||||
MessagesPanel_label=Messages
|
||||
MessagesViewer_location_format={0}({1}):
|
||||
MessagesViewer_location_format={0}({1}):\u0020
|
||||
MessagesViewer_message_format={0}{1}: {2}
|
||||
ResultsView_layout_menu_text=&Layout
|
||||
TestsHierarchyViewer_test_path_format=\ - {0}
|
||||
|
|
|
@ -27,7 +27,7 @@ LibrariesPropertyPage_desc=Select libraries to use in your project and click OK
|
|||
If necessary the library will be installed. By adding libraries you agree to the licenses of those \
|
||||
libraries. For more information, see http://arduino.cc
|
||||
ArduinoPreferencePage_desc=Enter URLs for package_index.json files one per line.
|
||||
PlatformDetailsDialog_0=Platform:
|
||||
PlatformDetailsDialog_0=Platform:\u0020
|
||||
PlatformDetailsDialog_1=Supports boards:\n
|
||||
ArduinoTerminalSettingsPage_BoardName=Board Name:
|
||||
ArduinoTerminalSettingsPage_SerialPort=Serial Port:
|
||||
|
|
|
@ -23,7 +23,7 @@ featureName=C/C++ Visualizer Framework
|
|||
providerName=Eclipse CDT
|
||||
|
||||
# "description" property - description of the feature
|
||||
description=Visualizer View and Framework that allows to build custom visualizers.
|
||||
description=Visualizer View and Framework that allows to build custom visualizers. \u0020
|
||||
|
||||
# copyright
|
||||
copyright=\
|
||||
|
|
|
@ -14,6 +14,6 @@
|
|||
ProblemCountVisualizer_Name=ProblemCounter
|
||||
ProblemCountVisualizer_DisplayName=Problem Count
|
||||
ProblemCountVisualizer_Description=Visualizer displaying the count of errors/warnings/info
|
||||
ProblemCountVisualizer_Errors=Errors:
|
||||
ProblemCountVisualizer_Warnings=Warnings:
|
||||
ProblemCountVisualizer_Infos=Infos:
|
||||
ProblemCountVisualizer_Errors=Errors:\u0020
|
||||
ProblemCountVisualizer_Warnings=Warnings:\u0020
|
||||
ProblemCountVisualizer_Infos=Infos:\u0020
|
||||
|
|
|
@ -23,4 +23,3 @@ bin.includes = META-INF/,\
|
|||
icons/,\
|
||||
plugin.xml
|
||||
src.includes = about.html
|
||||
|
|
@ -13,5 +13,5 @@
|
|||
###############################################################################
|
||||
PerFileXLCScannerInfoCollector.0=Updating discovered includes and macros
|
||||
PerFileXLCScannerInfoCollector.1=Error updating discovered info.
|
||||
ScannerInfoCollector.Processing=Processing discovered scanner configuration ...
|
||||
ScannerInfoCollector.Updating=Updating Scanner Configuration for project
|
||||
ScannerInfoCollector.Processing=Processing discovered scanner configuration ...\u0020
|
||||
ScannerInfoCollector.Updating=Updating Scanner Configuration for project\u0020
|
||||
|
|
|
@ -117,7 +117,7 @@ Option.sourcetype.assembler = assembler
|
|||
Option.stdframework = Search standard framework directories (-qstdframework)
|
||||
Option.frameworkdirs = Specify additional framework directories (-qframeworkdir)
|
||||
Option.Input = Don't search the default search path directories (-qnostdinc)
|
||||
Option.Warn.Syntax =Perform syntax checking without generating an object file(-qsyntaxonly)
|
||||
Option.Warn.Syntax =Perform syntax checking without generating an object file(-qsyntaxonly)\u0020
|
||||
Option.Trigraph=Recognize tri-graph key combinations
|
||||
Option.Utf=Enable recognition of UTF literal syntax (-qutf)
|
||||
Option.plus = Compile any file as a C++ file (-+)
|
||||
|
@ -134,7 +134,7 @@ Option.PreprocOnly=Preprocess the source files and create an output preprocessed
|
|||
Option.PreprocRemoveComments=Remove comments from preprocessed output (-C!)
|
||||
Option.M=Create an output file that contains targets for the make command (-M)
|
||||
Option.ma=Substitute inline code for calls to alloca (-ma)
|
||||
Option.o=Specify an output location for the files created by the compiler (-o)
|
||||
Option.o=Specify an output location for the files created by the compiler (-o)\u0020
|
||||
Option.P=Preprocess the source files and create an output preprocessed source file for each source file(-P)
|
||||
Option.Assem=Generate an assembler language file for each source file(-S)
|
||||
Option.Strip=Strip symbol table, line number information and relocation information from source file(-s)
|
||||
|
@ -166,7 +166,7 @@ Option.Pic.Small=Small
|
|||
Option.Pic.Large=Large
|
||||
Option.noro=Do not place string literals in read only storage (-qnoro)
|
||||
Option.noroconst=Do not place constant values in read only storage (-qnoroconst)
|
||||
Option.roptr=Place constant pointers in read only storage (-qroptr)
|
||||
Option.roptr=Place constant pointers in read only storage (-qroptr)\u0020
|
||||
Option.Statsym=Generate symbols for static variables (-qstatsym )
|
||||
Option.xcall=Generate code to treat static functions as external functions (-qxcall )
|
||||
Option.funcsect=Place instructions for each function in a separate object file control section or csect (-qfuncsect)
|
||||
|
@ -257,7 +257,7 @@ Option.ignerrno = Perform optimizations which assume errno is not modified by sy
|
|||
Option.optimization.inline = Attempt to inline functions (-qinline=)
|
||||
Option.optimization.ipa = Customize interprocedural analysis optimizations(-qipa=)
|
||||
Option.optimization.isolatedcall = Functions in source file that have no side effects (-qisolated_call=name1:name2:...:nameN)
|
||||
Option.optimization.keepinlines =
|
||||
Option.optimization.keepinlines =\u0020
|
||||
Option.largepage = Exploit large page heaps available on POWER4(TM) systems running AIX(R) 5.1D or later (-qlargepage)
|
||||
Option.libansi = Assume all functions in the name of ansi C function are system functions (-qlibansi)
|
||||
Option.pdf1 = Tune optimizations through Profile Directed Feedback: first run (-qpdf1)
|
||||
|
@ -291,7 +291,7 @@ Option.optimization.qprefetch = Insert prefetch instructions automatically where
|
|||
Option.Linking.b = Control how shared objects are processed by the editor (-b)
|
||||
Option.linking.brtl = Enable runtime linking for the output file (-brtl)
|
||||
Option.Linking.e = Set the entry name for the shared executable(-e )
|
||||
Option.Linking.f =
|
||||
Option.Linking.f =\u0020
|
||||
Option.linking.G = Create a shared object enabled for runtime linking (-G)
|
||||
Option.Linking.L = Search the path directory for the library files specified by the -lkey option (-L)
|
||||
Option.Linking.l = Search the specified library file(-l)
|
||||
|
|
Loading…
Add table
Reference in a new issue