1
0
Fork 0
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:
Jonah Graham 2018-11-22 23:46:49 +00:00
parent be35c7327d
commit ff75ae80fa
213 changed files with 626 additions and 627 deletions

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Red Hat Incorporated - initial API and implementation # Red Hat Incorporated - initial API and implementation
# IBM Rational Software - ManagedMakeMessages copied to AutotoolsMakefileBuilder # IBM Rational Software - ManagedMakeMessages copied to AutotoolsMakefileBuilder
@ -95,7 +95,7 @@ WizardAutotoolsNewCCProject.message.save=Saving new build options
BuildTargetDialog.title.buildTarget=Build Special Targets BuildTargetDialog.title.buildTarget=Build Special Targets
BuildTargetDialog.title.makeTargetsFor=Make targets for BuildTargetDialog.title.makeTargetsFor=Make targets for\u0020
BuildTargetDialog.button.build=Build BuildTargetDialog.button.build=Build
TargetListViewer.button.add=Add... TargetListViewer.button.add=Add...

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Red Hat Incorporated - initial API and implementation # Red Hat Incorporated - initial API and implementation
################################################################################ ################################################################################
@ -105,7 +105,7 @@ Option.configure.autogenOpts.tip=Specify any additional options required
Tool.command=Command Tool.command=Command
Tool.allopts=All Options Tool.allopts=All Options
Configure.Error.AlreadyExists="A configuration named {0} already exists" Configure.Error.AlreadyExists="A configuration named {0} already exists"
Configure.Error.NoProjectToSave="Project: {0} does not exist at time of saving configuration" Configure.Error.NoProjectToSave="Project: {0} does not exist at time of saving configuration"

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Red Hat Incorporated - initial API and implementation # Red Hat Incorporated - initial API and implementation
# IBM Rational Software - ManagedMakeMessages copied to AutotoolsMakefileBuilder # IBM Rational Software - ManagedMakeMessages copied to AutotoolsMakefileBuilder
@ -93,7 +93,7 @@ WizardAutotoolsNewCCProject.message.save=Saving new build options
BuildTargetDialog.title.buildTarget=Build Special Targets BuildTargetDialog.title.buildTarget=Build Special Targets
BuildTargetDialog.title.makeTargetsFor=Make targets for BuildTargetDialog.title.makeTargetsFor=Make targets for\u0020
BuildTargetDialog.button.build=Build BuildTargetDialog.button.build=Build
TargetListViewer.button.add=Add... TargetListViewer.button.add=Add...

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Red Hat Incorporated - initial API and implementation # Red Hat Incorporated - initial API and implementation
# Nokia Inc - refactoring # Nokia Inc - refactoring

View file

@ -131,7 +131,7 @@ BuildPathInfoBlock.monitor.settingScannerInfo=Setting Scanner Info
BuildTargetDialog.title.buildTarget=Make Targets BuildTargetDialog.title.buildTarget=Make Targets
BuildTargetDialog.button.build=Build 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.exception.noTargetBuilderOnProject=Not target builders on the project
MakeTargetDialog.title.createMakeTarget=Create a new Make target MakeTargetDialog.title.createMakeTarget=Create a new Make target
@ -190,16 +190,16 @@ ContentAssistProposal.label=Content Assist@Ctrl+SPACE
ContentAssistProposal.tooltip=Content Assist ContentAssistProposal.tooltip=Content Assist
ContentAssistProposal.image= ContentAssistProposal.image=
ContentAssistProposal.description=Content Assist ContentAssistProposal.description=Content Assist
ContentAssistTip.label=Content Tip@Ctrl+SHIFT+SPACE ContentAssistTip.label=Content Tip@Ctrl+SHIFT+SPACE
ContentAssistTip.tooltip=Content Tip ContentAssistTip.tooltip=Content Tip
ContentAssistTip.image= ContentAssistTip.image=
ContentAssistTip.description=Content Tip ContentAssistTip.description=Content Tip
TogglePresentation.label=Show Source of Selected Element Only TogglePresentation.label=Show Source of Selected Element Only
TogglePresentation.tooltip=Show Source of Selected Element Only TogglePresentation.tooltip=Show Source of Selected Element Only
TogglePresentation.description=Enable/Disable Segmented Source Viewer TogglePresentation.description=Enable/Disable Segmented Source Viewer
Comment.label=&Comment Comment.label=&Comment
Comment.tooltip=Comment the Selected Lines Comment.tooltip=Comment the Selected Lines
Comment.description=Turn the selected lines into # style comments Comment.description=Turn the selected lines into # style comments
@ -213,7 +213,7 @@ OpenDeclarationAction.description=Open an editor on the referenced element
OpenDeclarationAction.tooltip=Open an editor on the referenced element OpenDeclarationAction.tooltip=Open an editor on the referenced element
# ------- LexicalSortingAction------------ # ------- LexicalSortingAction------------
LexicalSortingAction.label=Sort LexicalSortingAction.label=Sort
LexicalSortingAction.description=Sorts the elements in the outliner LexicalSortingAction.description=Sorts the elements in the outliner
LexicalSortingAction.tooltip=Sort LexicalSortingAction.tooltip=Sort
@ -254,14 +254,14 @@ ScannerConfigOptionsDialog.boProvider.browse.button=Browse...
ScannerConfigOptionsDialog.boProvider.browse.openFileDialog=Build output file: ScannerConfigOptionsDialog.boProvider.browse.openFileDialog=Build output file:
ScannerConfigOptionsDialog.boProvider.load.button=Load ScannerConfigOptionsDialog.boProvider.load.button=Load
ScannerConfigOptionsDialog.siProvider.parser.enabled.button=Enable generate scanner info command 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.button=Browse...
ScannerConfigOptionsDialog.siProvider.browse.runCommandDialog='gcc' command: ScannerConfigOptionsDialog.siProvider.browse.runCommandDialog='gcc' command:
ScannerConfigOptionsDialog.siProvider.command.errorMessage=Must enter compiler invocation command ScannerConfigOptionsDialog.siProvider.command.errorMessage=Must enter compiler invocation command
ScannerConfigOptionsDialog.apply.progressMessage=Setting scanner configuration discovery options... ScannerConfigOptionsDialog.apply.progressMessage=Setting scanner configuration discovery options...
ScannerConfigOptionsDialog.common.variables.button=Variables... 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.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.save=Apply
ScannerConfigOptionsDialog.unsavedchanges.button.cancel=Cancel ScannerConfigOptionsDialog.unsavedchanges.button.cancel=Cancel

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Red Hat Incorporated - initial API and implementation # Red Hat Incorporated - initial API and implementation
################################################################################# #################################################################################
@ -21,7 +21,7 @@ InvokeAction.success=Command executed successfully
InvokeAction.console.message=Invoking {0} in {1} 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.stdout=Invoke Autoconf - Output
InvokeAutoconfAction.windowTitle.stderr=Invoke Autoconf - Error InvokeAutoconfAction.windowTitle.stderr=Invoke Autoconf - Error

View file

@ -17,7 +17,7 @@ MakefileValidator.errorResource=Error resource
MakefileValidator.warningInfo=Warning info MakefileValidator.warningInfo=Warning info
MakefileValidator.warning=Warning MakefileValidator.warning=Warning
MakefileValidator.unknown=unknown MakefileValidator.unknown=unknown
MakefileValidator.checkingFile=Checking file : MakefileValidator.checkingFile=Checking file :\u0020
MakefileValidator.fileChecked=File checked MakefileValidator.fileChecked=File checked
MakefileValidator.error.elseMissingIfCondition=else missing if condition MakefileValidator.error.elseMissingIfCondition=else missing if condition
MakefileValidator.error.endifMissingIfElseCondition=Endif missing if/else condition MakefileValidator.error.endifMissingIfElseCondition=Endif missing if/else condition

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Red Hat Incorporated - initial API and implementation # Red Hat Incorporated - initial API and implementation
################################################################################# #################################################################################

View file

@ -13,7 +13,7 @@
# Red Hat - Copy to AutotoolsWizardMessages.properties # Red Hat - Copy to AutotoolsWizardMessages.properties
############################################################################### ###############################################################################
# ------- Project Update Messages ------- # ------- Project Update Messages -------
ManagedBuilderStartup.update.20x.title=Update Managed Make Project ManagedBuilderStartup.update.20x.title=Update Managed Make Project
ManagedBuilderStartup.update.20x.message=The project {0} has been detected in your workspace.\n Its build settings are stored in a format that is no longer supported.\n Would you like to convert them now? ManagedBuilderStartup.update.20x.message=The project {0} has been detected in your workspace.\n Its build settings are stored in a format that is no longer supported.\n Would you like to convert them now?
@ -21,7 +21,7 @@ AutotoolsBuildWizard.0=GNU Autotools project
AutotoolsBuildWizard.1=Others AutotoolsBuildWizard.1=Others
AutotoolsBuildWizard.2=Empty Project AutotoolsBuildWizard.2=Empty Project
# ------- NewProjectCreationPluginPage------- # ------- NewProjectCreationPluginPage-------
MngMakeProjectWizard.op_error=Managed Make Error MngMakeProjectWizard.op_error=Managed Make Error
MngMakeProjectWizard.title=Managed Make Project MngMakeProjectWizard.title=Managed Make Project
MngMakeProjectWizard.description=Create a new Managed Make project. MngMakeProjectWizard.description=Create a new Managed Make project.
@ -76,19 +76,19 @@ BuildPropertyPage.manage.title=Manage
BuildPropertyPage.error.Unknown_tree_element=Unknown type of element in tree of type {0} 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.error.version_low=The Managed Make project settings for this project are not available.
BuildPropertyPage.defaults.title=Reset Configuration Tools 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.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.changes.save.error=The configuration changes could not be applied.
BuildPropertyPage.unsupported.proj=The project support is not installed on the system 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.unsupported.config=The configuration support is not installed on the system
BuildPropertyPage.config.notselected=No configurations selected BuildPropertyPage.config.notselected=No configurations selected
# ----------- Managed Build Custom Wizard Page Manager Error Strings ----------- # ----------- Managed Build Custom Wizard Page Manager Error Strings -----------
MBSCustomPageManager.error0=Unknown element type MBSCustomPageManager.error0=Unknown element type\u0020
MBSCustomPageManager.error1=\ for extension point MBSCustomPageManager.error1=\ for extension point\u0020
MBSCustomPageManager.error2=Unknown child element type MBSCustomPageManager.error2=Unknown child element type\u0020
MBSCustomPageManager.error3=\ for wizardPage element in extension point MBSCustomPageManager.error3=\ for wizardPage element in extension point\u0020
MBSCustomPageManager.error4=Missing projectType ID MBSCustomPageManager.error4=Missing projectType ID
MBSCustomPageManager.error5=Missing projectType ID MBSCustomPageManager.error5=Missing projectType ID
MBSCustomPageManager.error6=Missing nature 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 -------------- #--------------- Resource Configuration Selection Page --------------
ResourceBuildPropertyPage.defaults.title=Reset Resource Configuration Tool 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 ----------- # ----------- Tools Settings Block -----------
ToolsSettingsBlock.label.Settings=Tool Settings 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.user.var=User Variables
EnvironmentBlock.label.system.var=System Variables EnvironmentBlock.label.system.var=System Variables
EnvironmentBlock.label.delete.confirm.title=Variable deletion confirmation 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.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 ----------- # ----------- New Env Var Dialog -----------
NewEnvVarDialog.label.name=Name 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.user.macros=User Macros
MacrosBlock.label.system.macros=System Macros MacrosBlock.label.system.macros=System Macros
MacrosBlock.label.delete.confirm.title=Macro deletion confirmation 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.title=Macro deletion confirmation
MacrosBlock.label.delete.all.confirm.message=Are you sure you want to delete all user macros? MacrosBlock.label.delete.all.confirm.message=Are you sure you want to delete all user macros?
MacrosBlock.label.value.eclipse.dynamic=<ECLIPSE DYNAMIC VARIABLE> MacrosBlock.label.value.eclipse.dynamic=<ECLIPSE DYNAMIC VARIABLE>
@ -285,7 +285,7 @@ NewConfiguration.label.description=Description:
NewConfiguration.label.group=Copy settings from NewConfiguration.label.group=Copy settings from
NewConfiguration.label.copy=Default configuration: NewConfiguration.label.copy=Default configuration:
NewConfiguration.label.clone=Existing 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.duplicateName=A configuration named "{0}" already exists.
NewConfiguration.error.caseName=A configuration name that differs only in case to "{0}" exists. NewConfiguration.error.caseName=A configuration name that differs only in case to "{0}" exists.
NewConfiguration.error.invalidName=The name "{0}" is invalid. NewConfiguration.error.invalidName=The name "{0}" is invalid.

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Red Hat Incorporated - Initial implementation # Red Hat Incorporated - Initial implementation
# #

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# IBM Corporation - initial API and implementation # IBM Corporation - initial API and implementation
############################################################################### ###############################################################################

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Bala Torati (Symbian) - initial API and implementation # Bala Torati (Symbian) - initial API and implementation
# Red Hat Inc - modification to use with Autotools project # Red Hat Inc - modification to use with Autotools project

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Bala Torati (Symbian) - initial API and implementation # Bala Torati (Symbian) - initial API and implementation
# Red Hat Inc - modification to use with Autotools project # Red Hat Inc - modification to use with Autotools project

View file

@ -15,7 +15,7 @@ CMakePreferencePage_Files=Toolchain Files
CMakePreferencePage_Path=Toolchain File CMakePreferencePage_Path=Toolchain File
CMakePreferencePage_Remove=Remove CMakePreferencePage_Remove=Remove
CMakePreferencePage_Toolchain=Toolchain 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_FailedToStartCMakeGui_Title=Failed to run CMake GUI
CMakePropertyPage_FailedToGetOS_Body=Failed to get target OS for CMake project: CMakePropertyPage_FailedToGetOS_Body=Failed to get target OS for CMake project:
CMakePropertyPage_FailedToGetOS_Title=Failed to get target OS CMakePropertyPage_FailedToGetOS_Title=Failed to get target OS

View file

@ -7,6 +7,6 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
############################################################################### ###############################################################################
NewAutotoolsProjectWizard_Description=Specify properties of new Autotools project. NewAutotoolsProjectWizard_Description=Specify properties of new Autotools project.
NewAutotoolsProjectWizard_Title=New Autotools Project NewAutotoolsProjectWizard_Title=New Autotools Project

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Wind River Systems - initial API and implementation # Wind River Systems - initial API and implementation
# IBM Corporation # IBM Corporation

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# IBM Corporation - initial API and implementation # IBM Corporation - initial API and implementation
############################################################################### ###############################################################################

View file

@ -20,7 +20,7 @@ MakeBuilder.Invoking_Make_Builder=Invoking Make Builder...
MakeBuilder.message.error.build = Internal error building project {0} MakeBuilder.message.error.build = Internal error building project {0}
MakeBuilder.message.undefined.build.command = Build command is null for 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_to_workspace_root=Cannot add make targets to workspace root
MakeTargetManager.add_temporary_target=Cannot add temporary Target to manager. 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. 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 ScannerConfigBuilder.0=building per-configuratin info
ScannerConfigNature.Missing_Project=Missing or closed project 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.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} ExternalScannerInfoProvider.Greeting=Scanner Discovery of compiler built-in settings for project {0}
ScannerInfoCollector.Processing=Processing discovered scanner configuration ... ScannerInfoCollector.Processing=Processing discovered scanner configuration ...\u0020
ScannerInfoCollector.Updating=Updating Scanner Configuration for project ScannerInfoCollector.Updating=Updating Scanner Configuration for project\u0020
DiscoveredPathManager.File_Error_Message=Error accessing scanner config file for project DiscoveredPathManager.File_Error_Message=Error accessing scanner config file for project\u0020
DiscoveredPathManager.Info_Not_Serializable=Error persisting discovered scanner config DiscoveredPathManager.Info_Not_Serializable=Error persisting discovered scanner config\u0020
GCCScannerConfigUtil.Error_Message=Error creating specs file 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.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: 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.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.description=Discovered Paths
DiscoveredContainer.ScopeErrorMessage=Invalid scanner configuration discovery profile scope DiscoveredContainer.ScopeErrorMessage=Invalid scanner configuration discovery profile scope

View file

@ -17,7 +17,7 @@ MakefileValidator.errorResource=Error resource
MakefileValidator.warningInfo=Warning info MakefileValidator.warningInfo=Warning info
MakefileValidator.warning=Warning MakefileValidator.warning=Warning
MakefileValidator.unknown=unknown MakefileValidator.unknown=unknown
MakefileValidator.checkingFile=Checking file : MakefileValidator.checkingFile=Checking file :\u0020
MakefileValidator.fileChecked=File checked MakefileValidator.fileChecked=File checked
MakefileValidator.error.elseMissingIfCondition=else missing if condition MakefileValidator.error.elseMissingIfCondition=else missing if condition
MakefileValidator.error.endifMissingIfElseCondition=Endif missing if/else condition MakefileValidator.error.endifMissingIfElseCondition=Endif missing if/else condition

View file

@ -61,19 +61,19 @@ ViewCatagoryMake.name=Make
ActionSetMake.label=Make Actions ActionSetMake.label=Make Actions
ActionSetUpdateMake.label=Update Make Projects ActionSetUpdateMake.label=Update Make Projects
# Scope and Key Commands # Scope and Key Commands
scope.makefileEditor.name=Makefile Editor scope.makefileEditor.name=Makefile Editor
makefileEditor.description=Editor for makefiles makefileEditor.description=Editor for makefiles
category.source.name=Makefile Source category.source.name=Makefile Source
category.source.description= Makefile Source Actions category.source.description= Makefile Source Actions
ActionDefinition.toggle.comment.name= Toggle Comment ActionDefinition.toggle.comment.name= Toggle Comment
ActionDefinition.toggle.comment.description= Comment/uncomment selected lines with # style comments ActionDefinition.toggle.comment.description= Comment/uncomment selected lines with # style comments
ActionDefinition.opendecl.name= Open declaration ActionDefinition.opendecl.name= Open declaration
ActionDefinition.opendecl.description=Follow to the directive definition ActionDefinition.opendecl.description=Follow to the directive definition
MakefileEditor.name=Makefile Editor MakefileEditor.name=Makefile Editor
IncludeSymbolProperties.name=C/C++ Include Paths and Symbols IncludeSymbolProperties.name=C/C++ Include Paths and Symbols

View file

@ -12,7 +12,7 @@
# QNX Software Systems - initial API and implementation # QNX Software Systems - initial API and implementation
# Wind River Systems - fix for bugzilla 135150 and 194198 # Wind River Systems - fix for bugzilla 135150 and 194198
# Tianchao Li (tianchao.li@gmail.com) - arbitrary build directory (bug #136136) # Tianchao Li (tianchao.li@gmail.com) - arbitrary build directory (bug #136136)
# IBM Corporation # IBM Corporation
############################################################################### ###############################################################################
MakeCWizard.title=C/Make Project MakeCWizard.title=C/Make Project
@ -138,7 +138,7 @@ BuildPathInfoBlock.monitor.settingScannerInfo=Setting Scanner Info
BuildTargetDialog.title.buildTarget=Build Targets BuildTargetDialog.title.buildTarget=Build Targets
BuildTargetDialog.button.build=Build 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.exception.noTargetBuilderOnProject=Not target builders on the project
MakeTargetDialog.title.createMakeTarget=Create Build Target MakeTargetDialog.title.createMakeTarget=Create Build Target
@ -233,16 +233,16 @@ ContentAssistProposal.label=Content Assist@Ctrl+SPACE
ContentAssistProposal.tooltip=Content Assist ContentAssistProposal.tooltip=Content Assist
ContentAssistProposal.image= ContentAssistProposal.image=
ContentAssistProposal.description=Content Assist ContentAssistProposal.description=Content Assist
ContentAssistTip.label=Content Tip@Ctrl+SHIFT+SPACE ContentAssistTip.label=Content Tip@Ctrl+SHIFT+SPACE
ContentAssistTip.tooltip=Content Tip ContentAssistTip.tooltip=Content Tip
ContentAssistTip.image= ContentAssistTip.image=
ContentAssistTip.description=Content Tip ContentAssistTip.description=Content Tip
TogglePresentation.label=Show Source of Selected Element Only TogglePresentation.label=Show Source of Selected Element Only
TogglePresentation.tooltip=Show Source of Selected Element Only TogglePresentation.tooltip=Show Source of Selected Element Only
TogglePresentation.description=Enable/Disable Segmented Source Viewer TogglePresentation.description=Enable/Disable Segmented Source Viewer
Comment.label=&Comment Comment.label=&Comment
Comment.tooltip=Comment the Selected Lines Comment.tooltip=Comment the Selected Lines
Comment.description=Turn the selected lines into # style comments Comment.description=Turn the selected lines into # style comments
@ -256,7 +256,7 @@ OpenDeclarationAction.description=Open an editor on the referenced element
OpenDeclarationAction.tooltip=Open an editor on the referenced element OpenDeclarationAction.tooltip=Open an editor on the referenced element
# ------- LexicalSortingAction------------ # ------- LexicalSortingAction------------
LexicalSortingAction.label=Sort LexicalSortingAction.label=Sort
LexicalSortingAction.description=Sorts the elements in the outliner LexicalSortingAction.description=Sorts the elements in the outliner
LexicalSortingAction.tooltip=Sort LexicalSortingAction.tooltip=Sort
@ -306,7 +306,7 @@ ScannerConfigOptionsDialog.siProvider.command.errorMessage=Must enter compiler i
ScannerConfigOptionsDialog.apply.progressMessage=Setting scanner configuration discovery options... ScannerConfigOptionsDialog.apply.progressMessage=Setting scanner configuration discovery options...
ScannerConfigOptionsDialog.common.variables.button=Variables... 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.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.save=Apply
ScannerConfigOptionsDialog.unsavedchanges.button.cancel=Cancel ScannerConfigOptionsDialog.unsavedchanges.button.cancel=Cancel

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# IBM Corporation - initial API and implementation # IBM Corporation - initial API and implementation
############################################################################### ###############################################################################

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# IBM Corporation - initial API and implementation # IBM Corporation - initial API and implementation
############################################################################### ###############################################################################

View file

@ -12,5 +12,5 @@
# Intel Corporation - Initial API and implementation # 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}'' BuildDescription.MissingArtifact=Build Artifact is missing in project ''{0}'' configuration ''{1}''

View file

@ -14,36 +14,36 @@
############################################################################### ###############################################################################
HeadlessBuilder_already_exists_in_workspace=\ already exists in the workspace\! 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_building_all=Building All Projects...
HeadlessBuilder_cant_be_found=\ can't be found\! 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_cleaning_all_projects=Cleaning All Projects...
HeadlessBuilder_completed_successfully=Headless build completed successfully HeadlessBuilder_completed_successfully=Headless build completed successfully
HeadlessBuilder_CouldntLockWorkspace=Could not obtain lock for workspace location HeadlessBuilder_CouldntLockWorkspace=Could not obtain lock for workspace location
HeadlessBuilder_Directory=Directory: HeadlessBuilder_Directory=Directory:\u0020
HeadlessBuilder_encountered_errors=Headless build encountered errors HeadlessBuilder_encountered_errors=Headless build encountered errors
HeadlessBuilder_EnvVar_Append=\ \ \ -Ea {var=value} append value to environment variable when running all tools 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_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_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_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_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_accessible=\ is not accessible\!
HeadlessBuilder_is_not_valid_in_workspace=\ is not valid in the workspace\! HeadlessBuilder_is_not_valid_in_workspace=\ is not valid in the workspace\!
HeadlessBuilder_no_arguments=No arguments specified. HeadlessBuilder_no_arguments=No arguments specified.
HeadlessBuilder_NoConfigMatched=WARNING: No Config matched " HeadlessBuilder_NoConfigMatched=WARNING: No Config matched "
HeadlessBuilder_NoProjectMatched=WARNING: No Project matched " HeadlessBuilder_NoProjectMatched=WARNING: No Project matched "
HeadlessBuilder_Not_CDT_Proj=\ doesn't appear to be a CDT project. Skipping... HeadlessBuilder_Not_CDT_Proj=\ doesn't appear to be a CDT project. Skipping...
HeadlessBuilder_project=Project: HeadlessBuilder_project=Project:\u0020
HeadlessBuilder_Quote=" HeadlessBuilder_Quote="
HeadlessBuilder_RegExSyntaxError=Project/Configuration Regular Expression Syntax error: HeadlessBuilder_RegExSyntaxError=Project/Configuration Regular Expression Syntax error:\u0020
HeadlessBuilder_Skipping=Skipping " HeadlessBuilder_Skipping=Skipping "
HeadlessBuilder_Skipping2=". Skipping... HeadlessBuilder_Skipping2=". Skipping...
HeadlessBuilder_unknown_argument=Unknown argument: HeadlessBuilder_unknown_argument=Unknown argument:\u0020
HeadlessBuilder_URI=URI: HeadlessBuilder_URI=URI:\u0020
HeadlessBuilder_usage=Usage: HeadlessBuilder_usage=Usage:\u0020
HeadlessBuilder_usage_build=\ \ \ -build {project_name_reg_ex{/config_reg_ex} | all} 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_clean_build=\ \ \ -cleanBuild {project_name_reg_ex{/config_reg_ex} | all}
HeadlessBuilder_usage_import=\ \ \ -import {[uri:/]/path/to/project} 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_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_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_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_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 HeadlessBuilder_Workspace=Workspace\u0020
HeadlessBuilder_WorkspaceInUse=Workspace already in use\! HeadlessBuilder_WorkspaceInUse=Workspace already in use\!

View file

@ -41,8 +41,8 @@ ManagedMakeBuilder.message.build.finished=**** Build Finished ****
ManagedMakeBuilder.type.clean = Clean-only build ManagedMakeBuilder.type.clean = Clean-only build
ManagedMakeBuider.type.incremental = Build ManagedMakeBuider.type.incremental = Build
ManagedMakeBuider.type.rebuild = Rebuild 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.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: ManagedMakeBuilder.error.prefix=Error:\u0020
# Option exception messages # Option exception messages
Option.error.bad_value_type=Type of option value is inconsistent with option type 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.owner_not_project=addTarget: owner not project
ManagedBuildManager.error.manifest_load_failed_title=Managed Build System Version Error 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.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.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.duplicate=Duplicate identifier {1} for element type {0}.
ManagedBuildManager.error.manifest.icon=Could not load icon "{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.calc.delta=Calculating the delta for project {0}
MakefileGenerator.message.finding.sources=Finding source files in 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.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.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.rule = Each subdirectory must supply rules for building sources it contributes
MakefileGenerator.comment.build.toprules = Tool invocations 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.comment.header=Automatically-generated file. Do not edit!
MakefileGenerator.error.spaces=Cannot generate makefile for folder with spaces in name MakefileGenerator.error.spaces=Cannot generate makefile for folder with spaces in name
MakeBuilder.Invoking_Make_Builder=Invoking Make Builder... MakeBuilder.Invoking_Make_Builder=Invoking Make Builder...
MakeBuilder.Invoking_Command=Invoking Command: MakeBuilder.Invoking_Command=Invoking Command:\u0020
MakeBuilder.Updating_project=Updating project... MakeBuilder.Updating_project=Updating project...
MakeBuilder.Creating_Markers=Generating markers... MakeBuilder.Creating_Markers=Generating markers...
MakefileGenerator.warning.no.source=Nothing to build for project {0} 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 messages
BuildMacroStatus.status.macro.undefined=Macro {0} is undefined BuildMacroStatus.status.macro.undefined=Macro {0} is undefined
GeneratedMakefileBuilder.buildingSelectedFiles=Building Selected Files GeneratedMakefileBuilder.buildingSelectedFiles=Building Selected Files
BuildDescriptionGnuMakefileGenerator.0=IO exception occurred: BuildDescriptionGnuMakefileGenerator.0=IO exception occurred:\u0020
BuildDescriptionGnuMakefileGenerator.1=IO exception occurred: BuildDescriptionGnuMakefileGenerator.1=IO exception occurred:\u0020
BuildMacroStatus.status.reference.eachother=Macros {0} and {1} reference each other BuildMacroStatus.status.reference.eachother=Macros {0} and {1} reference each other
BuildMacroStatus.status.reference.incorrect=Macro {0} reference is incorrect 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.string=Macro {0} is not of String type
BuildMacroStatus.status.macro.not.stringlist=Macro {0} is not of String-list type BuildMacroStatus.status.macro.not.stringlist=Macro {0} is not of String-list type
BuildMacroStatus.status.error=Error occurred BuildMacroStatus.status.error=Error occurred
BuildMacroStatus.value.undefined= BuildMacroStatus.value.undefined=\u0020
BuildInfoFactory.Missing_Builder=Missing Builder: BuildInfoFactory.Missing_Builder=Missing Builder:\u0020
#ResourceChangeHandler messages #ResourceChangeHandler messages
ResourceChangeHandler.buildInfoSerializationJob=Build Info Serialization 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 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.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.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.7=Info: Parallel threads used: {0}
CommonBuilder.0=can not clean programmatically: build workspace path is not specified 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 CommonBuilder.16=can not clean programmatically: build workspace path is not the project path

View file

@ -12,13 +12,13 @@
# Intel Corporation - Initial API and implementation # Intel Corporation - Initial API and implementation
############################################################################### ###############################################################################
ProjectConverter.0=failed to load the build info for the old-style project 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.10=project conversion failed
ProjectConverter.11=project conversion failed for project {0} with the following error:\n {1} 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.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.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 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 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.5=the specified project can not be converted
ProjectConverter.6=the project conversion failed ProjectConverter.6=the project conversion failed
ProjectConverter.7=targets conversion ProjectConverter.7=targets conversion

View file

@ -16,7 +16,7 @@ UpdateManagedProject.notice=Updating managed Project
UpdateManagedProject20.0=Backing up the settings file for {0} UpdateManagedProject20.0=Backing up the settings file for {0}
UpdateManagedProject20.1=Updating build settings for project {0} UpdateManagedProject20.1=Updating build settings for project {0}
UpdateManagedProject20.10=No configurations were found 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.2=convertConfiguration: Configuration {0} was not found
UpdateManagedProject20.3=convertToolRef: Tool ID attribute does not exist UpdateManagedProject20.3=convertToolRef: Tool ID attribute does not exist
UpdateManagedProject20.4=convertToolRef: Toolchain does not contain tools 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.5=convertOptionRef: BuildException occurred: {0}
UpdateManagedProject12.6=Project type {0} not found UpdateManagedProject12.6=Project type {0} not found
UpdateManagedProject12.7=No configurations were found for project {0} 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.9=Toolchain does not contain tools
UpdateManagedProject12.10=Parent not found for tool {0} UpdateManagedProject12.10=Parent not found for tool {0}
UpdateManagedProject12.11=tool {0} not found UpdateManagedProject12.11=tool {0} not found

View file

@ -14,7 +14,7 @@
MakeBuilder.buildError=Error launching builder ({0}) 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_to_workspace_root=Cannot add make targets to workspace root
MakeTargetManager.add_temporary_target=Cannot add temporary Target to manager. 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. 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 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.Provider_Error=Error launching external scanner info generator ({0})
ExternalScannerInfoProvider.Reading_Specs=Reading specs ... ExternalScannerInfoProvider.Reading_Specs=Reading specs ...\u0020
ExternalScannerInfoProvider.Invoking_Command=Invoking Command: ExternalScannerInfoProvider.Invoking_Command=Invoking Command:\u0020
ExternalScannerInfoProvider.Parsing_Output=Parsing output ... ExternalScannerInfoProvider.Parsing_Output=Parsing output ...\u0020
ExternalScannerInfoProvider.Creating_Markers=Generating markers ... ExternalScannerInfoProvider.Creating_Markers=Generating markers ...\u0020
ScannerInfoCollector.Processing=Processing discovered scanner configuration ... ScannerInfoCollector.Processing=Processing discovered scanner configuration ...\u0020
ScannerInfoCollector.Updating=Updating Scanner Configuration for project ScannerInfoCollector.Updating=Updating Scanner Configuration for project\u0020
DiscoveredPathManager.File_Error_Message=Error accessing scanner config file for project DiscoveredPathManager.File_Error_Message=Error accessing scanner config file for project\u0020
DiscoveredPathManager.Info_Not_Serializable=Error persisting discovered scanner config DiscoveredPathManager.Info_Not_Serializable=Error persisting discovered scanner config\u0020
GCCScannerConfigUtil.Error_Message=Error creating specs file 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.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: 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.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.description=Discovered Paths
DiscoveredContainer.ScopeErrorMessage=Invalid scanner configuration discovery profile scope DiscoveredContainer.ScopeErrorMessage=Invalid scanner configuration discovery profile scope

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Texas Instruments Inc. - initial API and implementation # Texas Instruments Inc. - initial API and implementation
# IBM Corporation # IBM Corporation

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# IBM Corporation - initial API and implementation # IBM Corporation - initial API and implementation
############################################################################### ###############################################################################

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Bala Torati (Symbian) - initial API and implementation # Bala Torati (Symbian) - initial API and implementation
############################################################################### ###############################################################################

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Bala Torati (Symbian) - initial API and implementation # Bala Torati (Symbian) - initial API and implementation
############################################################################### ###############################################################################

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Bala Torati (Symbian) - initial API and implementation # Bala Torati (Symbian) - initial API and implementation
############################################################################### ###############################################################################

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Texas Instruments - initial API and implementation # Texas Instruments - initial API and implementation
############################################################################### ###############################################################################

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# IBM Corporation - initial API and implementation # IBM Corporation - initial API and implementation
############################################################################### ###############################################################################

View file

@ -19,7 +19,7 @@ BuilderSettingsTab_1=Builder &type:
BuilderSettingsTab_2=External builder BuilderSettingsTab_2=External builder
BuilderSettingsTab_3=Internal builder BuilderSettingsTab_3=Internal builder
BuilderSettingsTab_4=&Use default build command BuilderSettingsTab_4=&Use default build command
BuilderSettingsTab_5=Build &command: BuilderSettingsTab_5=Build &command:\u0020
BuilderSettingsTab_6=Makefile generation BuilderSettingsTab_6=Makefile generation
BuilderSettingsTab_7=&Generate Makefiles automatically BuilderSettingsTab_7=&Generate Makefiles automatically
BuilderSettingsTab_8=&Expand Env. Variable Refs in Makefiles BuilderSettingsTab_8=&Expand Env. Variable Refs in Makefiles
@ -27,7 +27,7 @@ BuilderSettingsTab_9=Build settings
BuilderSettingsTab_10=Stop on first build error BuilderSettingsTab_10=Stop on first build error
BuilderSettingsTab_EnableParallelBuild=Enable parallel build BuilderSettingsTab_EnableParallelBuild=Enable parallel build
BuilderSettingsTab_UseOptimalJobs=Use optimal jobs ({0}) BuilderSettingsTab_UseOptimalJobs=Use optimal jobs ({0})
BuilderSettingsTab_UseParallelJobs=Use parallel jobs: BuilderSettingsTab_UseParallelJobs=Use parallel jobs:\u0020
BuilderSettingsTab_UseUnlimitedJobs=Use unlimited jobs BuilderSettingsTab_UseUnlimitedJobs=Use unlimited jobs
BuilderSettingsTab_14=Workbench Build Behavior BuilderSettingsTab_14=Workbench Build Behavior
BuilderSettingsTab_15=Workbench build type: BuilderSettingsTab_15=Workbench build type:
@ -45,12 +45,12 @@ BuildStepsTab_3=Post-build steps
BuildStepsTab_4=Resource Custom Build Step BuildStepsTab_4=Resource Custom Build Step
BuildStepsTab_5=Additional input file name(s): BuildStepsTab_5=Additional input file name(s):
BuildStepsTab_6=Output file name(s): BuildStepsTab_6=Output file name(s):
ArtifactTab_0=Artifact Type: ArtifactTab_0=Artifact Type:\u0020
ArtifactTab_1=Artifact name: ArtifactTab_1=Artifact name:\u0020
ArtifactTab_2=Artifact extension: ArtifactTab_2=Artifact extension:\u0020
ArtifactTab_3=Output prefix: ArtifactTab_3=Output prefix:
CPropertyVarsTab_0=Show system variables 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_0=Discovery profiles scope
DiscoveryTab_1=Per Language DiscoveryTab_1=Per Language
DiscoveryTab_2=Configuration-wide DiscoveryTab_2=Configuration-wide
@ -63,20 +63,20 @@ DiscoveryTab_Clear=Clear
DiscoveryTab_ClearDisoveredEntries=Clear discovered entries now: DiscoveryTab_ClearDisoveredEntries=Clear discovered entries now:
DiscoveryTab_ClearEntries=Clear entries DiscoveryTab_ClearEntries=Clear entries
DiscoveryTab_DiscoveredEntriesCleared=Discovered entries cleared. Scanner discovery will re-aquire the settings when run (normally during the build). 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_0=Select tools
ToolSelectionDialog_1=Available tools ToolSelectionDialog_1=Available tools
ToolSelectionDialog_2=Used tools ToolSelectionDialog_2=Used tools
ToolSelectionDialog_7=Tool conflict: ToolSelectionDialog_7=Tool conflict:
ToolSelectionDialog_8=Tool does not support managed build \! ToolSelectionDialog_8=Tool does not support managed build \!\u0020
ToolSelectionDialog_9=Props not defined \! ToolSelectionDialog_9=Props not defined \!\u0020
ToolSelectionDialog_10=Props not supported \! ToolSelectionDialog_10=Props not supported \!\u0020
ToolSelectionDialog_11=Req. props not supported \! ToolSelectionDialog_11=Req. props not supported \!\u0020
ToolSelectionDialog_12=Add tool --> ToolSelectionDialog_12=Add tool -->
ToolSelectionDialog_13=<-- Remove tool ToolSelectionDialog_13=<-- Remove tool
ToolSelectionDialog_14=<<- Replace ->> ToolSelectionDialog_14=<<- Replace ->>
ToolSelectionDialog_15=Allow all changes 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_0=Display compatible toolchains only
ToolChainEditTab_1=Current toolchain: ToolChainEditTab_1=Current toolchain:
ToolChainEditTab_10=builder ToolChainEditTab_10=builder
@ -92,8 +92,8 @@ ToolChainEditTab_3=Used tools
ToolChainEditTab_4=Select Tools... ToolChainEditTab_4=Select Tools...
ToolChainEditTab_5=Select tool ToolChainEditTab_5=Select tool
ToolChainEditTab_6=-- NO TOOL -- ToolChainEditTab_6=-- NO TOOL --
ToolChainEditTab_7=incompatibility with ToolChainEditTab_7=incompatibility with\u0020
ToolChainEditTab_8=source extension conflict with ToolChainEditTab_8=source extension conflict with\u0020
ToolChainEditTab_9=toolchain ToolChainEditTab_9=toolchain
ToolChainEditTab_OrphanedBuilder=Orphaned builder {0} ({1}) ToolChainEditTab_OrphanedBuilder=Orphaned builder {0} ({1})
ToolChainEditTab_OrphanedToolchain=Orphaned toolchain {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_0=Preferred toolchain will be selected by default in Wizard
PreferredToolchainsTab_1=Make toolchain(s) preferred PreferredToolchainsTab_1=Make toolchain(s) preferred
PreferredToolchainsTab_2=Make toolchain(s) not 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 ToolSettingsTab_0=Hover over an option to display its tooltip
BuildOptionSettingsUI_0=No tooltip is available for this option BuildOptionSettingsUI_0=No tooltip is available for this option
ScannerConfigOptionsDialog_scGroup_enabled_button=Automate discovery of paths and symbols 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} BuildPropertyPage_error_Unknown_tree_element=Unknown type of element in tree of type {0}
# ----------- Managed Build Custom Wizard Page Manager Error Strings ----------- # ----------- Managed Build Custom Wizard Page Manager Error Strings -----------
MBSCustomPageManager_error0=Unknown element type MBSCustomPageManager_error0=Unknown element type\u0020
MBSCustomPageManager_error1=\ for extension point MBSCustomPageManager_error1=\ for extension point\u0020
MBSCustomPageManager_error2=Unknown child element type MBSCustomPageManager_error2=Unknown child element type\u0020
MBSCustomPageManager_error3=\ for wizardPage element in extension point MBSCustomPageManager_error3=\ for wizardPage element in extension point\u0020
MBSCustomPageManager_error4=Missing projectType ID MBSCustomPageManager_error4=Missing projectType ID
MBSCustomPageManager_error5=Missing toolchain ID MBSCustomPageManager_error5=Missing toolchain ID
MBSCustomPageManager_error6=Missing nature ID MBSCustomPageManager_error6=Missing nature ID
@ -168,7 +168,7 @@ MacrosBlock_label_header_name=Name
MacrosBlock_label_header_type=Type MacrosBlock_label_header_type=Type
MacrosBlock_label_header_value=Value MacrosBlock_label_header_value=Value
MacrosBlock_label_delete_confirm_title=Build Variable Deletion Confirmation 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_title=Build Variables Deletion Confirmation
MacrosBlock_label_delete_all_confirm_message=Are you sure you want to delete all user Build Variables? 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> MacrosBlock_label_value_eclipse_dynamic=<ECLIPSE DYNAMIC VARIABLE>
@ -231,7 +231,7 @@ NewConfiguration_label_description=Description:
NewConfiguration_label_group=Copy settings from NewConfiguration_label_group=Copy settings from
NewConfiguration_label_copy=Default configuration: NewConfiguration_label_copy=Default configuration:
NewConfiguration_label_clone=Existing 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_duplicateName=A configuration named "{0}" already exists.
NewConfiguration_error_caseName=A configuration name that differs only in case to "{0}" 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. 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_1=Select platforms and configurations you wish to deploy on
CConfigWizardPage_4=Project type: CConfigWizardPage_4=Project type:
CConfigWizardPage_5=Toolchains: CConfigWizardPage_5=Toolchains:
CConfigWizardPage_6=Configurations: CConfigWizardPage_6=Configurations:\u0020
CConfigWizardPage_7=Select all CConfigWizardPage_7=Select all
CConfigWizardPage_8=Deselect all CConfigWizardPage_8=Deselect all
CConfigWizardPage_10=At least one configuration should be available. Project cannot be created. 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_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... CConfigWizardPage_13=Advanced settings...
CMainWizardPage_0=Project type: CMainWizardPage_0=Project type:
CDTConfigWizardPage_0=Select configurations CDTConfigWizardPage_0=Select configurations

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Red Hat Inc. - initial implementation # Red Hat Inc. - initial implementation
################################################################################ ################################################################################
@ -28,7 +28,7 @@ MesonPreferencePage_Files=Toolchain Files
MesonPreferencePage_Path=Toolchain File MesonPreferencePage_Path=Toolchain File
MesonPreferencePage_Remove=Remove MesonPreferencePage_Remove=Remove
MesonPreferencePage_Toolchain=Toolchain 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_FailedToStartMesonGui_Title=Failed to run Meson GUI
MesonPropertyPage_LaunchMesonGui=Launch Meson GUI... MesonPropertyPage_LaunchMesonGui=Launch Meson GUI...
NewMesonProjectWizard_Description=Specify properties of new Meson project. NewMesonProjectWizard_Description=Specify properties of new Meson project.

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Red Hat Inc. - Initial Contribution # Red Hat Inc. - Initial Contribution
################################################################################ ################################################################################

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Red Hat Inc. - initial implementation # Red Hat Inc. - initial implementation
################################################################################ ################################################################################

View file

@ -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.messagePattern.NoReturn = No return, in function returning non-void
problem.name.NoReturn = No return problem.name.NoReturn = No return
checker.name.FormatString = Format String 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.messagePattern.FormatString = Format string vulnerability in ''{0}''
problem.name.FormatString = Format String Vulnerability problem.name.FormatString = Format String Vulnerability
checker.name.AssignmentToItself = Assignment to itself 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 checker.name.ReturnStyle = Return with parenthesis
problem.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.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 checker.name.SuspiciousSemicolon = Suspicious semicolon
problem.name.SuspiciousSemicolon = Suspicious semicolon problem.name.SuspiciousSemicolon = Suspicious semicolon
problem.messagePattern.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 problem.name.12 = Field cannot be resolved
checker.name.AbstractClassCreation = Abstract class cannot be instantiated checker.name.AbstractClassCreation = Abstract class cannot be instantiated
problem.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 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 checker.name.ClassMembersInitialization = Class members should be properly initialized
problem.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.messagePattern.ClassMembersInitialization = Member ''{0}'' was not initialized in this constructor\u0020
problem.description.ClassMembersInitialization = Class members should be properly initialized to avoid random behavior problem.description.ClassMembersInitialization = Class members should be properly initialized to avoid random behavior \u0020
checker.name.UnusedSymbolInFileScopeChecker = Unused symbols and declarations in file scope checker.name.UnusedSymbolInFileScopeChecker = Unused symbols and declarations in file scope
problem.description.UnusedVariableDeclarationProblem = Finds unused global variable declarations in file scope problem.description.UnusedVariableDeclarationProblem = Finds unused global variable declarations in file scope

View file

@ -11,7 +11,7 @@
# Contributors: # Contributors:
# Alena Laskavaia - initial API and implementation # 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_EmptyCaseDescription=Check also empty 'case' statement (except if last)
CaseBreakChecker_LastCaseDescription=Check also the last 'case' statement CaseBreakChecker_LastCaseDescription=Check also the last 'case' statement
CaseBreakChecker_EnableFallthroughQuickfixDescription=Enable quick fix to add fallthrough attribute (C++17) CaseBreakChecker_EnableFallthroughQuickfixDescription=Enable quick fix to add fallthrough attribute (C++17)

View file

@ -14,10 +14,10 @@
# Sergey Prigogin (Google) # Sergey Prigogin (Google)
############################################################################### ###############################################################################
CodanApplication_Error_ProjectDoesNotExists=Error: project {0} does not exist 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_LogRunWorkspace=Running code analysis on workspace
CodanApplication_Usage=Usage: [options] <project1> <project2> ... CodanApplication_Usage=Usage: [options] <project1> <project2> ...
CodanApplication_Options=Options: CodanApplication_Options=Options:
CodanApplication_all_option= -all - run on all projects in workspace 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} CodanRunner_Code_analysis_on=Code analysis on {0}

View file

@ -16,7 +16,7 @@ Bundle-Vendor = Eclipse CDT
Bundle-Name = Code Analysis UI Bundle-Name = Code Analysis UI
CodeAnalysisAction.label = Run Code Analysis CodeAnalysisAction.label = Run Code Analysis
CodeAnalysisProperties.name = Code Analysis CodeAnalysisProperties.name = Code Analysis
CodeAnalysisPreferences.name = Code Analysis CodeAnalysisPreferences.name = Code Analysis\u0020
CodeAnalysisPreferencesBuild.name = Launching CodeAnalysisPreferencesBuild.name = Launching
category.name = Code Analysis category.name = Code Analysis
command.name = Run Code Analysis command.name = Run Code Analysis

View file

@ -45,7 +45,7 @@ ProblemsTreeEditor_ToolTip=Sample Message:
OverlayPage_Use_Workspace_Settings=Use &workspace settings OverlayPage_Use_Workspace_Settings=Use &workspace settings
OverlayPage_Use_Project_Settings=Use pr&oject settings OverlayPage_Use_Project_Settings=Use pr&oject settings
OverlayPage_Configure_Workspace_Settings=&Configure Workspace 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 ------- # ------- ExclusionInclusionDialog -------

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# IBM Corporation - initial API and implementation # IBM Corporation - initial API and implementation
############################################################################### ###############################################################################

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# IBM Corporation - initial API and implementation # IBM Corporation - initial API and implementation
# Martin Oberhuber (Wind River) - [303083] Split out the Spawner # Martin Oberhuber (Wind River) - [303083] Split out the Spawner

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# IBM Corporation - initial API and implementation # IBM Corporation - initial API and implementation
############################################################################### ###############################################################################
@ -33,4 +33,4 @@ source.. = model/,\
javacProjectSettings=true javacProjectSettings=true
src.includes = about.html src.includes = about.html

View file

@ -22,5 +22,5 @@
#outputFile = Z:\\CDT\\reportRTS.txt #outputFile = Z:\\CDT\\reportRTS.txt
#source = Z:/V651/Release/C++/TargetRTS, cpp #source = Z:/V651/Release/C++/TargetRTS, cpp
#source = D:/temp/test, cpp #source = D:/temp/test, cpp

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# IBM Corporation - initial API and implementation # IBM Corporation - initial API and implementation
# Martin Oberhuber (Wind River) - [303083] Split out the Spawner # Martin Oberhuber (Wind River) - [303083] Split out the Spawner

View file

@ -14,7 +14,7 @@
KindBasedStore.0=illegal kind KindBasedStore.0=illegal kind
KindBasedStore.1=illegal kind KindBasedStore.1=illegal kind
PathEntryTranslator.0=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.. PathEntryTranslator.2=PathEntryTranslator: failed to apply output entries: Build Data is null, ignoring..
CDataSerializer.20=no id attribute for configuration CDataSerializer.20=no id attribute for configuration
CDataSerializer.21=failed to create configuration CDataSerializer.21=failed to create configuration

View file

@ -73,9 +73,9 @@ PathEntryManager.1=Workspace include path inaccessible ({0})
PathEntryManager.7=Workspace library path inaccessible ({0}) PathEntryManager.7=Workspace library path inaccessible ({0})
CElementLabels.anonymous=(anonymous) CElementLabels.anonymous=(anonymous)
CElementLabels.concat_string=\ -\ CElementLabels.concat_string=\ -\u0020
CElementLabels.comma_string=,\ CElementLabels.comma_string=,\u0020
CElementLabels.declseparator_string=\ :\ CElementLabels.declseparator_string=\ :\u0020
CModelManager.LanguageSettingsChangeEventNotifications=Language settings change notifications CModelManager.LanguageSettingsChangeEventNotifications=Language settings change notifications

View file

@ -15,9 +15,9 @@
CConfigurationDataProviderDescriptor.1=illegal provider implementation CConfigurationDataProviderDescriptor.1=illegal provider implementation
CConfigurationDataProviderDescriptor.2=no provider defined CConfigurationDataProviderDescriptor.2=no provider defined
CConfigurationDescription.0=data was not created 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.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 CConfigurationDescriptionCache.0=description is read only
CConfigurationStatus.1=configurations settings invalid CConfigurationStatus.1=configurations settings invalid
CProjectConverterDesciptor.0=illegal provider implementation CProjectConverterDesciptor.0=illegal provider implementation
@ -34,20 +34,20 @@ CProjectDescriptionManager.9=invalid project file format
CProjectDescriptionManager.0=Initiating resource change handling.. CProjectDescriptionManager.0=Initiating resource change handling..
CProjectDescriptionManager.10=invalid project file format CProjectDescriptionManager.10=invalid project file format
CProjectDescriptionManager.11=storage file not found 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.13=Refreshing the project settings
CProjectDescriptionManager.14=workspace info element does not exist CProjectDescriptionManager.14=workspace info element does not exist
CProjectDescriptionManager.15=Preference Configuration CProjectDescriptionManager.15=Preference Configuration
CProjectDescriptionManager.16=attempt to set description for a project which does not exist or not open 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.cfgIDAlreadyExists=Configuration with ID: {0} already exists in passed in settings storage
CProjectDescriptionManager.FailedToGetStorage=Failed to get storage for project: CProjectDescriptionManager.FailedToGetStorage=Failed to get storage for project:\u0020
CProjectDescriptionManager.illegalDeltaKind=Illegal delta kind CProjectDescriptionManager.illegalDeltaKind=Illegal delta kind\u0020
CProjectDescriptionManager.wrongTypeOfResourceDescription=Wrong type of resource description: CProjectDescriptionManager.wrongTypeOfResourceDescription=Wrong type of resource description:\u0020
CFolderDescription.0=data was not created 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.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 CExternalSettingsManager.3=writable ref info is requested for the read only config
CfgExportSettingContainerFactory.2=invalid id: project name not specified CfgExportSettingContainerFactory.2=invalid id: project name not specified
ExtensionContainerFactory.4=invalid setting provider class specified ExtensionContainerFactory.4=invalid setting provider class specified

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# IBM Rational Software - Initial API and implementation # IBM Rational Software - Initial API and implementation
# Anton Leherbauer (Wind River Systems) # Anton Leherbauer (Wind River Systems)
@ -28,23 +28,23 @@ ScannerProblemFactory.error.preproc.circularInclusion=Circular inclusion for fil
ScannerProblemFactory.error.preproc.invalidDirective=Invalid preprocessor directive: {0} ScannerProblemFactory.error.preproc.invalidDirective=Invalid preprocessor directive: {0}
ScannerProblemFactory.error.preproc.macroPasting=Invalid use of macro pasting in macro: {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.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.preproc.multipleUserDefinedLiteralSuffixesOnStringLiteral=Multiple user-defined suffixes found when concatenating string literals
ScannerProblemFactory.error.scanner.invalidEscapeChar=Invalid escape character encountered ScannerProblemFactory.error.scanner.invalidEscapeChar=Invalid escape character encountered\u0020
ScannerProblemFactory.error.scanner.unboundedString=Unbounded string encountered ScannerProblemFactory.error.scanner.unboundedString=Unbounded string encountered\u0020
ScannerProblemFactory.error.scanner.badFloatingPoint=Invalid floating point format encountered ScannerProblemFactory.error.scanner.badFloatingPoint=Invalid floating point format encountered\u0020
ScannerProblemFactory.error.scanner.badBinaryFormat=Invalid binary format encountered ScannerProblemFactory.error.scanner.badBinaryFormat=Invalid binary format encountered\u0020
ScannerProblemFactory.error.scanner.badHexFormat=Invalid hexadecimal format encountered ScannerProblemFactory.error.scanner.badHexFormat=Invalid hexadecimal format encountered\u0020
ScannerProblemFactory.error.scanner.badOctalFormat=Invalid octal format encountered ScannerProblemFactory.error.scanner.badOctalFormat=Invalid octal format encountered\u0020
ScannerProblemFactory.error.scanner.badDecimalFormat=Invalid decimal format encountered ScannerProblemFactory.error.scanner.badDecimalFormat=Invalid decimal format encountered\u0020
ScannerProblemFactory.error.scanner.assignmentNotAllowed=Assignment not allowed ScannerProblemFactory.error.scanner.assignmentNotAllowed=Assignment not allowed\u0020
ScannerProblemFactory.error.scanner.divideByZero=Division by zero not allowed ScannerProblemFactory.error.scanner.divideByZero=Division by zero not allowed\u0020
ScannerProblemFactory.error.scanner.missingRParen=Missing right parenthesis ) ScannerProblemFactory.error.scanner.missingRParen=Missing right parenthesis )\u0020
ScannerProblemFactory.error.scanner.expressionSyntaxError=Expression syntax error ScannerProblemFactory.error.scanner.expressionSyntaxError=Expression syntax error\u0020
ScannerProblemFactory.error.scanner.illegalIdentifier=Illegal identifier in defined() ScannerProblemFactory.error.scanner.illegalIdentifier=Illegal identifier in defined()\u0020
ScannerProblemFactory.error.scanner.badConditionalExpression=Bad conditional expression ScannerProblemFactory.error.scanner.badConditionalExpression=Bad conditional expression\u0020
ScannerProblemFactory.error.scanner.unexpectedEOF=Unexpected End Of File encountered ScannerProblemFactory.error.scanner.unexpectedEOF=Unexpected End Of File encountered\u0020
ScannerProblemFactory.error.scanner.badCharacter=Bad character sequence encountered: {0} ScannerProblemFactory.error.scanner.badCharacter=Bad character sequence encountered: {0}
ScannerProblemFactory.error.scanner.constantWithBadSuffix=Constant "{0}" has an invalid suffix ScannerProblemFactory.error.scanner.constantWithBadSuffix=Constant "{0}" has an invalid suffix
ScannerProblemFactory.error.scanner.floatWithBadPrefix=Floating constant "{0}" has an invalid prefix 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_NOT_FOUND=Attempt to use symbol failed: {0}
ISemanticProblem.BINDING_AMBIGUOUS_LOOKUP=Ambiguity encountered during lookup: {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_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_CIRCULAR_INHERITANCE=Circular inheritance encountered in {0}
ISemanticProblem.BINDING_INVALID_OVERLOAD=Invalid overload of the name: {0} ISemanticProblem.BINDING_INVALID_OVERLOAD=Invalid overload of the name: {0}
ISemanticProblem.BINDING_INVALID_USING=Invalid using directive/declaration: {0} ISemanticProblem.BINDING_INVALID_USING=Invalid using directive/declaration: {0}

View file

@ -11,5 +11,5 @@
# Contributors: # Contributors:
# Symbian Software Limited - initial API and implementation # Symbian Software Limited - initial API and implementation
############################################################################### ###############################################################################
PDOMFile.toInternalProblem=Unable to translate location to internal format: PDOMFile.toInternalProblem=Unable to translate location to internal format:\u0020
PDOMFile.toExternalProblem=Unable to translate from internal format for PDOMFile.toExternalProblem=Unable to translate from internal format for\u0020

View file

@ -16,7 +16,7 @@
# Martin Oberhuber (Wind River) - [303083] Split out the Spawner # Martin Oberhuber (Wind River) - [303083] Split out the Spawner
############################################################################### ###############################################################################
ACBuilder.ProblemsView.Location=line {0}, external location: {1} 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.BinaryRunner.Binary_Search_Thread=Searching for Binaries
CoreModel.CModelBuilder.Parser_Construction_Failure=Parser/Scanner construction failure. CoreModel.CModelBuilder.Parser_Construction_Failure=Parser/Scanner construction failure.
CoreModel.CModelBuilder.Parse_Failure=Parse 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 dom.languageError=Language not found
indexer.notFound = Indexer 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.name=C/C++ Indexer
pdom.indexer.task=Indexing pdom.indexer.task=Indexing
PDOMIndexerJob.updateMonitorJob=Update Monitor PDOMIndexerJob.updateMonitorJob=Update Monitor

View file

@ -11,24 +11,24 @@
# Contributors: # Contributors:
# Bala Torati (Symbian) - Initial API and implementation # Bala Torati (Symbian) - Initial API and implementation
############################################################################### ###############################################################################
TemplateEngine.internalError=Internal Error: TemplateEngine.internalError=Internal Error:\u0020
TemplateEngine.templateEngine=Template Engine TemplateEngine.templateEngine=Template Engine
ProjectCreatedActions.InsufficientInformation=Insufficient information to create new project ProjectCreatedActions.InsufficientInformation=Insufficient information to create new project
ConditionalProcessGroup.notExecuting=Condition block not executing: ConditionalProcessGroup.notExecuting=Condition block not executing:\u0020
ConditionalProcessGroup.unexpandableMacro=Condition has an unexpandable macro: ConditionalProcessGroup.unexpandableMacro=Condition has an unexpandable macro:\u0020
Process.argument=Argument Process.argument=Argument\u0020
Process.expandableMacro=\ has an unexpandable macro: Process.expandableMacro=\ has an unexpandable macro:\u0020
Process.error=-->Error: Process.error=-->Error:\u0020
Process.success=-->Success: Process.success=-->Success:\u0020
Process.info=-->Info: Process.info=-->Info:\u0020
Process.unknownProcess=Unknown process: Process.unknownProcess=Unknown process:\u0020
Process.executedSuccessfully=Executed successfully with args: Process.executedSuccessfully=Executed successfully with args:\u0020
ProcessRunner.unexpectedArguments=Unexpected arguments found. ProcessRunner.unexpectedArguments=Unexpected arguments found.
ProcessRunner.missingArguments=Missing arguments. ProcessRunner.missingArguments=Missing arguments.
ProcessRunner.argumentsMismatch=Argument type mismatch: ProcessRunner.argumentsMismatch=Argument type mismatch:\u0020
ProcessRunner.error=-->Error: ProcessRunner.error=-->Error:\u0020
ProcessRunner.success=-->Success: ProcessRunner.success=-->Success:\u0020
ProcessRunner.info=-->Info: ProcessRunner.info=-->Info:\u0020
ProcessHelper.fileNotFound=File not found: ''{0}'' ProcessHelper.fileNotFound=File not found: ''{0}''
ProcessRunner_missingArg = ILanguageSettingsProvider failure: argument {0} not found ProcessRunner_missingArg = ILanguageSettingsProvider failure: argument {0} not found

View file

@ -12,51 +12,51 @@
# Bala Torati (Symbian) - Initial API and implementation # Bala Torati (Symbian) - Initial API and implementation
############################################################################### ###############################################################################
AddFiles.1=Add Files failure: template source not found: AddFiles.1=Add Files failure: template source not found:\u0020
AddFiles.2=Add Files failure: template source not found: AddFiles.2=Add Files failure: template source not found:\u0020
AddFiles.3=Add Files failure: cannot read template source: AddFiles.3=Add Files failure: cannot read template source:\u0020
AddFiles.4=Add Files failure: cannot read template source: AddFiles.4=Add Files failure: cannot read template source:\u0020
AddFiles.5=Add Files failure: File already exists. AddFiles.5=Add Files failure: File already exists.
AddFiles.6=Add Files failure: AddFiles.6=Add Files failure:\u0020
AddFiles.7=Add Files failure: AddFiles.7=Add Files failure:\u0020
AddFiles.8=Add Files failure: projectName not specified AddFiles.8=Add Files failure: projectName not specified
AddFiles.9=Add Files failure: No files AddFiles.9=Add Files failure: No files
AddFile.0=Add File failure: template source not found: AddFile.0=Add File failure: template source not found:\u0020
AddFile.1=Add File failure: template source not found: AddFile.1=Add File failure: template source not found:\u0020
AddFile.2=Add File failure: cannot read template source: AddFile.2=Add File failure: cannot read template source:\u0020
AddFile.3=Add File failure: cannot read template source: AddFile.3=Add File failure: cannot read template source:\u0020
AddFile.4=Add File failure: AddFile.4=Add File failure:\u0020
AddLink.0=Add Link failure: AddLink.0=Add Link failure:\u0020
SetMBSBooleanOptionValue.0=SetMBSBooleanOptionValue failure: SetMBSBooleanOptionValue.0=SetMBSBooleanOptionValue failure:\u0020
SetMBSBooleanOptionValue.3=SetMBSBooleanOptionValue failure: No such file exists: SetMBSBooleanOptionValue.3=SetMBSBooleanOptionValue failure: No such file exists:\u0020
SetMBSStringOptionValue.0=SetMBSStringOptionValue failure: SetMBSStringOptionValue.0=SetMBSStringOptionValue failure:\u0020
SetMBSStringOptionValue.3=SetMBSStringOptionValue failure: No such file exists: SetMBSStringOptionValue.3=SetMBSStringOptionValue failure: No such file exists:\u0020
SetMBSStringListOptionValues.0=SetMBSStringListOptionValues failure: SetMBSStringListOptionValues.0=SetMBSStringListOptionValues failure:\u0020
SetMBSStringListOptionValues.3=SetMBSStringListOptionValues failure: No such file exists: SetMBSStringListOptionValues.3=SetMBSStringListOptionValues failure: No such file exists:\u0020
NewManagedProject.3=New Project failure: NewManagedProject.3=New Project failure:\u0020
NewManagedProject.4=New Project failure: No Configurations specified for NewManagedProject.4=New Project failure: No Configurations specified for\u0020
#NewManagedProject.5=New Project failure: project already existing in work space: #NewManagedProject.5=New Project failure: project already existing in work space:
AppendCreate.1=Add File failure: template source not found: AppendCreate.1=Add File failure: template source not found:\u0020
AppendCreate.2=Append failure: template source not found: AppendCreate.2=Append failure: template source not found:\u0020
AppendCreate.3=Append failure: cannot read template source: AppendCreate.3=Append failure: cannot read template source:\u0020
AppendCreate.4=Append failure: failed while trying to append contents. AppendCreate.4=Append failure: failed while trying to append contents.
AppendToMBSStringOptionValue.0=AppendToMBSStringOptionValue failure: AppendToMBSStringOptionValue.0=AppendToMBSStringOptionValue failure:\u0020
AppendToMBSStringOptionValue.3=AppendToMBSStringOptionValue failure: No such file exists: AppendToMBSStringOptionValue.3=AppendToMBSStringOptionValue failure: No such file exists:\u0020
AppendToMBSStringListOptionValues.0=AppendToMBSStringListOptionValues failure: AppendToMBSStringListOptionValues.0=AppendToMBSStringListOptionValues failure:\u0020
AppendToMBSStringListOptionValues.3=AppendToMBSStringListOptionValues failure: No such file exists: AppendToMBSStringListOptionValues.3=AppendToMBSStringListOptionValues failure: No such file exists:\u0020
CreateSourceFolder.0=Create Folder failure: project does not exist: CreateSourceFolder.0=Create Folder failure: project does not exist:\u0020
CreateSourceFolder.1=Create Folder failure: CreateSourceFolder.1=Create Folder failure:\u0020
CreateSourceFolder.2=Create Source Folder failure: CreateSourceFolder.2=Create Source Folder failure:\u0020
CreateIncludeFolder.3=Create Include Folder failure: while setting include path: CreateIncludeFolder.3=Create Include Folder failure: while setting include path:\u0020
ExcludeResources.0=ExcludeResources can only process CDT Managed projects ExcludeResources.0=ExcludeResources can only process CDT Managed projects
Copy.0=Add File failure: template source not found: Copy.0=Add File failure: template source not found:\u0020
Copy.1=Copy failure: template source not found: Copy.1=Copy failure: template source not found:\u0020
Copy.3=Copy failure: cannot read template source: Copy.3=Copy failure: cannot read template source:\u0020
Copy.4=Copy failure: failed while copying contents. Copy.4=Copy failure: failed while copying contents.
Copy.5=Copy failure: failed while copying contents. Copy.5=Copy failure: failed while copying contents.
Append.0=Add File failure: template source not found: Append.0=Add File failure: template source not found:\u0020
Append.1=Copy failure: template source not found: Append.1=Copy failure: template source not found:\u0020
Append.3=Copy failure: cannot read template source: Append.3=Copy failure: cannot read template source:\u0020
Append.4=Append failure: failed while trying to append contents. Append.4=Append failure: failed while trying to append contents.
AddNature.noProject=Add nature failure: projectName not specified AddNature.noProject=Add nature failure: projectName not specified
AddNature.noNature=Add nature failure: nature not specified AddNature.noNature=Add nature failure: nature not specified

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# IBM Corporation - initial API and implementation # IBM Corporation - initial API and implementation
############################################################################### ###############################################################################

View file

@ -35,5 +35,5 @@ TypeSelectionDialog_filterMacros=M&acro
TypeSelectionDialog_filterLowLevelTypes=Show &low-level elements (names beginning with '_') TypeSelectionDialog_filterLowLevelTypes=Show &low-level elements (names beginning with '_')
TypeInfoLabelProvider_globalScope=(global) TypeInfoLabelProvider_globalScope=(global)
TypeInfoLabelProvider_dash=\ -\ TypeInfoLabelProvider_dash=\ -\u0020
TypeInfoLabelProvider_colon=:\ TypeInfoLabelProvider_colon=:\u0020

View file

@ -70,9 +70,9 @@ NewTypeDropDownAction.tooltip=New C++ Class
NewWizards.class = Class NewWizards.class = Class
NewWizards.class.description = Create a new C++ class NewWizards.class.description = Create a new C++ class
# Editor # Editor
# Scope and Key Commands # Scope and Key Commands
scope.cEditor.name=C/C++ Editor scope.cEditor.name=C/C++ Editor
cEditor.description=Editor for C/C++ Source Files cEditor.description=Editor for C/C++ Source Files
@ -159,17 +159,17 @@ refactoringExtractLocalVariable.label = Extract Local Variable...
refactoringHideMethod.label = Hide Member Function... refactoringHideMethod.label = Hide Member Function...
ActionDefinition.renameElement.name= Rename - Refactoring ActionDefinition.renameElement.name= Rename - Refactoring\u0020
ActionDefinition.renameElement.description= Renames the selected element 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.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.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.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.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.implementMethod.description= Implements a method for a selected method declaration
ActionDefinition.gettersAndSetters.name = Generate Getters and Setters... ActionDefinition.gettersAndSetters.name = Generate Getters and Setters...
ActionDefinition.gettersAndSetters.description = Generates getters and setters for a selected field 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.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.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.saveactions=editor save trailing whitespace white space end file newline\u0020
preferenceKeywords.scalability=editor mode large file lines disable performance preferenceKeywords.scalability=editor mode large file lines disable performance\u0020
preferenceKeywords.hover=editor hover annotation key modifier combined variable problem string source documentation 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.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 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.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.name = C/C++ Editor Behavior
transfer.EditorBehavior.description = Preferences related to how the editor deals with the edited code (typing, save action, etc...) 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 transfer.CodeStyle.description = C/C++ > Code Style preferences
# Refresh Exclusion Contributors # Refresh Exclusion Contributors

View file

@ -18,8 +18,8 @@
# ------- CView ----------------- # ------- CView -----------------
CView.make_edit_action =Project properties CView.make_edit_action =Project properties
# ------- Preference Page ------- # ------- Preference Page -------
ConsolePreferencePage.clearConsole.label=Always clear console before building ConsolePreferencePage.clearConsole.label=Always clear console before building
ConsolePreferencePage.autoOpenConsole.label=Open console when building ConsolePreferencePage.autoOpenConsole.label=Open console when building
ConsolePreferencePage.consoleOnTop.label=Bring console to top when building (if present) ConsolePreferencePage.consoleOnTop.label=Bring console to top when building (if present)
@ -60,7 +60,7 @@ BaseIndexerBlock.comboLabel=Indexer Options
ReferenceBlock.label= Projects ReferenceBlock.label= Projects
ReferenceBlock.desc= Referenced C/C++ Projects ReferenceBlock.desc= Referenced C/C++ Projects
# ------- ProjectConfigurationBlock------- # ------- ProjectConfigurationBlock-------
ProjectConfigurationBlock.buildCmdText.label=The build command is an executable program which will be used by the builder to build your C project. If the build command is not on the current system environment path, you have to enter an absolute path name. If the build command is make then it will use the makefile which is located in the project folder ProjectConfigurationBlock.buildCmdText.label=The build command is an executable program which will be used by the builder to build your C project. If the build command is not on the current system environment path, you have to enter an absolute path name. If the build command is make then it will use the makefile which is located in the project folder
ProjectConfigurationBlock.buildArgsText.label=Build can be either incremental or full. You can specify different build arguments\nfor the two kinds. ProjectConfigurationBlock.buildArgsText.label=Build can be either incremental or full. You can specify different build arguments\nfor the two kinds.
@ -71,7 +71,7 @@ ProjectConfigurationBlock.buildLocation.button=Browse...
ProjectConfigurationBlock.fullBuildArguments.label=Full Build Arguments: ProjectConfigurationBlock.fullBuildArguments.label=Full Build Arguments:
ProjectConfigurationBlock.incrBuildArguments.label=Incremental Build Arguments: ProjectConfigurationBlock.incrBuildArguments.label=Incremental Build Arguments:
ProjectConfigurationBlock.error.InvalidBuildCommand=Invalid build command ProjectConfigurationBlock.error.InvalidBuildCommand=Invalid build command
# --- The new wizards ---- # --- The new wizards ----
# FIXME: Remove the properties above when satisfy with wizards. # FIXME: Remove the properties above when satisfy with wizards.
@ -161,12 +161,12 @@ TabFolderPage=Tab Folder Page
TabFolderPage.title=Project TabFolderPage.title=Project
TabFolderPage.desc=Project Settings TabFolderPage.desc=Project Settings
# ------- CProjectPropertyPage------- # ------- CProjectPropertyPage-------
CProjectPropertyPage.nocproject=Not a C builder CProjectPropertyPage.nocproject=Not a C builder
CProjectPropertyPage.closedproject=C information is not available for a closed project CProjectPropertyPage.closedproject=C information is not available for a closed project
# ------- Building ------- # ------- Building -------
BuildConsole.name=CDT Build Console BuildConsole.name=CDT Build Console
CBuilder.build_error=Could not execute builder "{0}" configured in the project property page. CBuilder.build_error=Could not execute builder "{0}" configured in the project property page.
@ -216,7 +216,7 @@ LexicalSortingAction.tooltip.off=Sort
# ------- ClearOutputAction------------ # ------- ClearOutputAction------------
ClearOutputAction.label=Clea&r Console ClearOutputAction.label=Clea&r Console
ClearOutputAction.tooltip=Clear Console ClearOutputAction.tooltip=Clear Console\u0020
# ------- New menu items to overwrite superclass ---------- # ------- New menu items to overwrite superclass ----------
CreateFileAction.text = &File CreateFileAction.text = &File

View 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_BuildNotLogged=No build was logged. Build the project or/and check the Logging page in project properties.
CopyLog_ChooseDestination=Choose Log File Destination CopyLog_ChooseDestination=Choose Log File Destination
CopyLog_ErrorCopyingFile=Error Copying a File CopyLog_ErrorCopyingFile=Error Copying a File
CopyLog_ErrorWhileCopyingLog=Error while copying working log file: CopyLog_ErrorWhileCopyingLog=Error while copying working log file:\u0020
CopyLog_InvalidDestination=Destination is not valid: CopyLog_InvalidDestination=Destination is not valid:\u0020
CopyLog_LogFileIsNotAvailable=Working log file is not available. 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 CopyLog_UnavailableLog=Unavailable Log
ScrollLockAction_Scroll_Lock_1=Scroll Lock ScrollLockAction_Scroll_Lock_1=Scroll Lock
NextErrorAction_Tooltip=Next Error NextErrorAction_Tooltip=Next Error
PreviousErrorAction_Tooltip=Previous Error PreviousErrorAction_Tooltip=Previous Error\u0020
ShowErrorAction_Tooltip=Show Error In Editor ShowErrorAction_Tooltip=Show Error In Editor
WrapLinesAction_WrapLines=Wrap Lines WrapLinesAction_WrapLines=Wrap Lines

View file

@ -12,7 +12,7 @@
# Sergey Prigogin (Google) - initial API and implementation # Sergey Prigogin (Google) - initial API and implementation
############################################################################### ###############################################################################
FormattingScopeDialog_title=Select Formatting Scope 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_format_statement=The &statement on the current line
FormattingScopeDialog_message=No code is selected. Choose the scope of formatting. FormattingScopeDialog_message=No code is selected. Choose the scope of formatting.
FormattingScopeDialog_do_not_ask_again=&Remember this choice and do not ask again FormattingScopeDialog_do_not_ask_again=&Remember this choice and do not ask again

View file

@ -34,7 +34,7 @@ OrganizeIncludes_error_title=Error Organizing Includes
OrganizeIncludes_insertion_failed=Adding include statements failed OrganizeIncludes_insertion_failed=Adding include statements failed
OrganizeIncludes_help_provider_error=Help provider error OrganizeIncludes_help_provider_error=Help provider error
OrganizeIncludes_failed=Organize Includes operation failed 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 OrganizeIncludesOperation_description=Organizing include statements
ShowInCView_description=Show the current resource in the C/C++ Projects view ShowInCView_description=Show the current resource in the C/C++ Projects view
@ -53,8 +53,8 @@ OverrideIndicatorManager_shadows=Shadows
OverrideIndicatorManager_via=via OverrideIndicatorManager_via=via
DefaultBinaryFileEditor_TruncateMessage=Truncated, result is too large, use command line objdump DefaultBinaryFileEditor_TruncateMessage=Truncated, result is too large, use command line objdump
DefaultCEditorTextHover_html_name=<b>Name:</b> DefaultCEditorTextHover_html_name=<b>Name:</b>\u0020
DefaultCEditorTextHover_html_prototype=<br><b>Prototype:</b> DefaultCEditorTextHover_html_prototype=<br><b>Prototype:</b>\u0020
DefaultCEditorTextHover_html_description=<br><b>Description:</b><br> DefaultCEditorTextHover_html_description=<br><b>Description:</b><br>
DefaultCEditorTextHover_html_includes=<br><b>Header files:</b><br> DefaultCEditorTextHover_html_includes=<br><b>Header files:</b><br>

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# IBM Corporation - initial API and implementation # IBM Corporation - initial API and implementation
# QNX Software System # QNX Software System

View file

@ -33,7 +33,7 @@ BrowseEntryDialog_fs_dir_dlg_msg=Select a folder from file system:
NewConfiguration_label_name=Name: NewConfiguration_label_name=Name:
NewConfiguration_label_description=Description: NewConfiguration_label_description=Description:
NewConfiguration_label_group=Copy settings from 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_duplicateName=A configuration named "{0}" already exists.
NewConfiguration_error_caseName=A configuration name that differs only in case to "{0}" exists. NewConfiguration_error_caseName=A configuration name that differs only in case to "{0}" exists.
NewConfiguration_error_invalidName=The name "{0}" is invalid. NewConfiguration_error_invalidName=The name "{0}" is invalid.
@ -41,7 +41,7 @@ NewConfiguration_error_invalidName=The name "{0}" is invalid.
# ----------- Rename Configuration ----------- # ----------- Rename Configuration -----------
RenameConfiguration_label_name=Name: RenameConfiguration_label_name=Name:
RenameConfiguration_label_description=Description: 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_duplicateName=A configuration named "{0}" already exists.
RenameConfiguration_error_caseName=A configuration name that differs only in case to "{0}" exists. RenameConfiguration_error_caseName=A configuration name that differs only in case to "{0}" exists.
RenameConfiguration_error_invalidName=The name "{0}" is invalid. 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 AbstractCPropertyTab_2=This tab is not supported in multi-configuration mode
AbstractPage_0=Unknown element selected AbstractPage_0=Unknown element selected
AbstractPage_12=Manage Configurations... AbstractPage_12=Manage Configurations...
AbstractPage_11=setProjectDescription: AbstractPage_11=setProjectDescription:\u0020
AbstractPage_10=Cannot create resource configuration for AbstractPage_10=Cannot create resource configuration for\u0020
AbstractPage_13=Cannot load AbstractPage_13=Cannot load\u0020
AbstractPage_14=Cannot create page: AbstractPage_14=Cannot create page:\u0020
AbstractPage_15=element not initialized. AbstractPage_15=element not initialized.
AbstractPage_16=[ Active ] AbstractPage_16=[ Active ]
AbstractPage_2=This project is not a CDT project AbstractPage_2=This project is not a CDT project
AbstractPage_3=Error while accessing new configuration. <Apply> cannot work. Use <OK>. AbstractPage_3=Error while accessing new configuration. <Apply> cannot work. Use <OK>.
AbstractPage_4=[ All configurations ] AbstractPage_4=[ All configurations ]
AbstractPage_5=[ Multiple configurations...] AbstractPage_5=[ Multiple configurations...]
AbstractPage_6=Configuration: AbstractPage_6=Configuration:\u0020
AbstractPage_7=Exclude resource from build AbstractPage_7=Exclude resource from build
AbstractPage_8=Cannot apply AbstractPage_8=Cannot apply
AbstractPage_9=Internal error AbstractPage_9=Internal error
@ -123,7 +123,7 @@ AbstractExportTab_2=Create...
AbstractExportTab_3=Edit... AbstractExportTab_3=Edit...
CLocationTab_0=Filter (empty) CLocationTab_0=Filter (empty)
CLocationTab_1=Filter ( CLocationTab_1=Filter (
CLocationTab_2=, CLocationTab_2=,\u0020
CLocationTab_3=) CLocationTab_3=)
CLocationTab_4=Add Folder... CLocationTab_4=Add Folder...
CLocationTab_5=Link Folder... CLocationTab_5=Link Folder...
@ -147,11 +147,11 @@ EnvironmentTab_15=Current String List DISPLAY mode. Double-click to change
EnvironmentTab_16=Origin EnvironmentTab_16=Origin
EnvironmentTab_17=CONJ. EnvironmentTab_17=CONJ.
EnvironmentTab_18=DISJ. EnvironmentTab_18=DISJ.
EnvironmentTab_19=DISPL mode: EnvironmentTab_19=DISPL mode:\u0020
EnvironmentTab_2=Value EnvironmentTab_2=Value
EnvironmentTab_20=<UNDEFINED> EnvironmentTab_20=<UNDEFINED>\u0020
EnvironmentTab_21=REPLACE EnvironmentTab_21=REPLACE
EnvironmentTab_22=WRITE mode: EnvironmentTab_22=WRITE mode:\u0020
EnvironmentTab_23=Current String List WRITE mode. Double-click to change EnvironmentTab_23=Current String List WRITE mode. Double-click to change
EnvironmentTab_24=MODIFY EnvironmentTab_24=MODIFY
EnvironmentTab_3=Append variables to native environment EnvironmentTab_3=Append variables to native environment
@ -171,7 +171,7 @@ IncludeDialog_0=Directory:
IncludeDialog_1=File: IncludeDialog_1=File:
IncludeDialog_2=Add to all configurations IncludeDialog_2=Add to all configurations
IncludeDialog_3=Add to all languages IncludeDialog_3=Add to all languages
LanguageSettingEntryDialog_Add=Add LanguageSettingEntryDialog_Add=Add\u0020
LanguageSettingEntryDialog_BuiltInFlag=Treat as built-in LanguageSettingEntryDialog_BuiltInFlag=Treat as built-in
LanguageSettingEntryDialog_ContainsSystemHeaders=Contains system headers LanguageSettingEntryDialog_ContainsSystemHeaders=Contains system headers
LanguageSettingEntryDialog_Directory=Directory: LanguageSettingEntryDialog_Directory=Directory:
@ -221,13 +221,13 @@ RefsTab_ExpandAll=Expand All
RefsTab_CollapseAll=Collapse All RefsTab_CollapseAll=Collapse All
RefsTab_Active=Active RefsTab_Active=Active
RefsTab_ProjectsList=Projects list 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_0=Symbol
SymbolTab_1=Value SymbolTab_1=Value
SymbolTab_2=Add symbol SymbolTab_2=Add symbol
SymbolTab_3=Change symbol SymbolTab_3=Change symbol
ExpDialog_0=To all configurations ExpDialog_0=To all configurations
ExpDialog_1=Save to: ExpDialog_1=Save to:\u0020
ExpDialog_2=Languages ExpDialog_2=Languages
ExpDialog_3=Content types ExpDialog_3=Content types
ExpDialog_4=Is a workspace path ExpDialog_4=Is a workspace path
@ -257,11 +257,11 @@ ErrorParsTab_Reset=Reset
ErrorParsTab_title_Add=Add Regex Error Parser ErrorParsTab_title_Add=Add Regex Error Parser
ErrorParsTab_title_ConfirmReset=Confirm Resetting Error Parsers ErrorParsTab_title_ConfirmReset=Confirm Resetting Error Parsers
ErrorParsTab_title_Edit=Edit Regex Error Parser name ErrorParsTab_title_Edit=Edit Regex Error Parser name
StructureTreeTab_0=Level: StructureTreeTab_0=Level:\u0020
StructureTreeTab_1=Maximal tree nesting StructureTreeTab_1=Maximal tree nesting
StructureTreeTab_2=Long StructureTreeTab_2=Long
StructureTreeTab_3=String StructureTreeTab_3=String
StructureTreeTab_4=Object to view: StructureTreeTab_4=Object to view:\u0020
StructureTreeTab_5=Expand all StructureTreeTab_5=Expand all
StructureTreeTab_6=Expand level... StructureTreeTab_6=Expand level...
StructureTreeTab_7=Collapse all 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_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_10=A project with that name already exists in the workspace.
CMainWizardPage_3=No project types available. Project cannot be created 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_6=File with specified name already exists.
CMainWizardPage_7=Directory 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. 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 CCProjectWizard_0=Add CC Project Nature
GeneralMessages_InternalError_ReportLogToCdtTeam=Internal error happened, report application log to CDT team. GeneralMessages_InternalError_ReportLogToCdtTeam=Internal error happened, report application log to CDT team.
GeneralMessages_NonAccessibleID=[ Not accessible id={0} ] GeneralMessages_NonAccessibleID=[ Not accessible id={0} ]
WorkingSetConfigAction_21=Building project WorkingSetConfigAction_21=Building project\u0020
WorkingSetConfigAction_22=Build error WorkingSetConfigAction_22=Build error
IncludeTab_export=Export Settings... IncludeTab_export=Export Settings...
IncludeTab_import=Import Settings... IncludeTab_import=Import Settings...

View file

@ -54,7 +54,7 @@ CEditorPreferencePage_ContentAssistPage_displayParametersWithDefaultArgument=Dis
CEditorPreferencePage_ContentAssistPage_displayDefaultArguments=Display default arguments CEditorPreferencePage_ContentAssistPage_displayDefaultArguments=Display default arguments
CEditorPreferencePage_sourceHoverBackgroundColor=Source hover background CEditorPreferencePage_sourceHoverBackgroundColor=Source hover background
# {0} will be replaced by the keyboard shortcut for the command (e.g. "Ctrl+Space", or "no shortcut") # {0} will be replaced by the keyboard shortcut for the command (e.g. "Ctrl+Space", or "no shortcut")
CodeAssistAdvancedConfigurationBlock_page_description=Configure the behavior of the content assist ({0}) command. CodeAssistAdvancedConfigurationBlock_page_description=Configure the behavior of the content assist ({0}) command.
# stand-in text if there is no keyboard shortcut in above statement # stand-in text if there is no keyboard shortcut in above statement
CodeAssistAdvancedConfigurationBlock_no_shortcut=no shortcut CodeAssistAdvancedConfigurationBlock_no_shortcut=no shortcut
@ -92,7 +92,7 @@ CEditorColoringConfigurationBlock_coloring_category_preprocessor=Preprocessor
CEditorColoringConfigurationBlock_coloring_category_assembly=Assembly CEditorColoringConfigurationBlock_coloring_category_assembly=Assembly
CEditorColoringConfigurationBlock_coloring_category_doxygen=Doxygen CEditorColoringConfigurationBlock_coloring_category_doxygen=Doxygen
CEditorColoringConfigurationBlock_coloring_element=Element: CEditorColoringConfigurationBlock_coloring_element=Element:
# DO NOT TRANSLATE "org.eclipse.ui.preferencePages.GeneralTextEditor" and "org.eclipse.ui.preferencePages.ColorsAndFonts" # DO NOT TRANSLATE "org.eclipse.ui.preferencePages.GeneralTextEditor" and "org.eclipse.ui.preferencePages.ColorsAndFonts"
CEditorColoringConfigurationBlock_link=Default colors and font can be configured on the <a href=\"org.eclipse.ui.preferencePages.GeneralTextEditor\">Text Editors</a> and on the <a href=\"org.eclipse.ui.preferencePages.ColorsAndFonts\">Colors and Fonts</a> preference page. CEditorColoringConfigurationBlock_link=Default colors and font can be configured on the <a href=\"org.eclipse.ui.preferencePages.GeneralTextEditor\">Text Editors</a> and on the <a href=\"org.eclipse.ui.preferencePages.ColorsAndFonts\">Colors and Fonts</a> preference page.
CEditorColoringConfigurationBlock_enable_semantic_highlighting=Enable semantic highlighting CEditorColoringConfigurationBlock_enable_semantic_highlighting=Enable semantic highlighting
CEditorColoringConfigurationBlock_enable=Enab&le CEditorColoringConfigurationBlock_enable=Enab&le
@ -108,7 +108,7 @@ CEditorPreferencePage_behaviorPage_matchingBrackets=Highlight &matching brackets
CEditorPreferencePage_behaviorPage_subWordNavigation=Smart &caret positioning in identifiers CEditorPreferencePage_behaviorPage_subWordNavigation=Smart &caret positioning in identifiers
CEditorPreferencePage_behaviorPage_inactiveCode=Highlight &inactive code CEditorPreferencePage_behaviorPage_inactiveCode=Highlight &inactive code
CEditorPreferencePage_behaviorPage_formattingWithEmptySelection=When formatting code with an empty selection: 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_formatStatement=Format the &statement on the current line
CEditorPreferencePage_behaviorPage_confirmFormattingScope=&Ask for confirmation CEditorPreferencePage_behaviorPage_confirmFormattingScope=&Ask for confirmation
CEditorPreferencePage_behaviorPage_appearanceColorOptions=Appearance color options: CEditorPreferencePage_behaviorPage_appearanceColorOptions=Appearance color options:
@ -215,7 +215,7 @@ SmartTypingConfigurationBlock_autoindent_title=Automatically indent
SmartTypingConfigurationBlock_tabs_title=Tabulators SmartTypingConfigurationBlock_tabs_title=Tabulators
# The argument will be replaced by the tab display size # The argument will be replaced by the tab display size
SmartTypingConfigurationBlock_tabs_message_tab_text=The tab display value (currently {0}) and whether spaces are used to indent lines are configured on the <a>code style preference page</a>. The current indentation mode uses tabs. SmartTypingConfigurationBlock_tabs_message_tab_text=The tab display value (currently {0}) and whether spaces are used to indent lines are configured on the <a>code style preference page</a>. The current indentation mode uses tabs.
# The first argument will be replaced by the tab display size, the second by the indent size and the third by the NLSed string of 'SmartTypingConfigurationBlock_tabs_message_spaces' or 'SmartTypingConfigurationBlock_tabs_message_tabs' (see below) # The first argument will be replaced by the tab display size, the second by the indent size and the third by the NLSed string of 'SmartTypingConfigurationBlock_tabs_message_spaces' or 'SmartTypingConfigurationBlock_tabs_message_tabs' (see below)
SmartTypingConfigurationBlock_tabs_message_others_text=The tab display value (currently {0}) and whether spaces are used to indent lines are configured on the <a>code style preference page</a>. The current indentation size is {1}, using {2}. SmartTypingConfigurationBlock_tabs_message_others_text=The tab display value (currently {0}) and whether spaces are used to indent lines are configured on the <a>code style preference page</a>. The current indentation size is {1}, using {2}.
SmartTypingConfigurationBlock_tabs_message_tooltip=Go to the code style preference page SmartTypingConfigurationBlock_tabs_message_tooltip=Go to the code style preference page
SmartTypingConfigurationBlock_tabs_message_spaces=spaces SmartTypingConfigurationBlock_tabs_message_spaces=spaces
@ -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_user_defined_categories_node_description= Categories of header files defined by the user
IncludeCategoriesBlock_header_categories= &Header File Categories IncludeCategoriesBlock_header_categories= &Header File Categories
IncludeGroupStyleBlock_keep_includes_together= &Keep include statements together 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_relative_path= Use path &relative to the including file
IncludeGroupStyleBlock_use_angle_brackets= Use &angle brackets IncludeGroupStyleBlock_use_angle_brackets= Use &angle brackets
IncludeOrderBlock_up= &Up IncludeOrderBlock_up= &Up
@ -531,7 +531,7 @@ IncludeOrderBlock_down= D&own
IncludeOrderBlock_order_of_includes= O&rder of Include Statements: IncludeOrderBlock_order_of_includes= O&rder of Include Statements:
IncludePragmasPreferencePage_title= Include Pragmas 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_link_tooltip=Wiki page describing include-what-you-use pragmas
IncludePragmasBlock_export_pattern= E&xport: IncludePragmasBlock_export_pattern= E&xport:
IncludePragmasBlock_begin_exports_pattern= &Begin Exports: IncludePragmasBlock_begin_exports_pattern= &Begin Exports:
@ -543,15 +543,15 @@ NameStylePreferencePage_title=Name Style
NameStyleBlock_code_node=Code NameStyleBlock_code_node=Code
NameStyleBlock_files_node=Files NameStyleBlock_files_node=Files
NameStyleBlock_constant_node=Constant NameStyleBlock_constant_node=Constant
NameStyleBlock_constant_node_description=Constant name NameStyleBlock_constant_node_description=Constant name\u0020
NameStyleBlock_variable_node=Variable 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=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=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=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=Setter Method
NameStyleBlock_setter_node_description=Setter name based on the field name NameStyleBlock_setter_node_description=Setter name based on the field name
NameStyleBlock_include_guard_node=Include Guard 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_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_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_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_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_reconciler_label= Disable editor live parsing (Outline view, semantic highlighting and folding will also be disabled)
ScalabilityPreferencePage_syntaxColor_label= Disable syntax coloring in editor ScalabilityPreferencePage_syntaxColor_label= Disable syntax coloring in editor

View file

@ -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_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_LinkTooltip=Show the name style preferences.
GenerateGettersAndSettersInputPage_Name=Generate Getters and Setters GenerateGettersAndSettersInputPage_Name=Generate Getters and Setters
GenerateGettersAndSettersInputPage_SeparateDefinition=Definition separate from declaration GenerateGettersAndSettersInputPage_SeparateDefinition=Definition separate from declaration\u0020
GenerateGettersAndSettersInputPage_SelectAll=Select All GenerateGettersAndSettersInputPage_SelectAll=Select All
GenerateGettersAndSettersInputPage_SelectGetters=Select Getters GenerateGettersAndSettersInputPage_SelectGetters=Select Getters
GenerateGettersAndSettersInputPage_SelectSetters=Select Setters GenerateGettersAndSettersInputPage_SelectSetters=Select Setters

View file

@ -17,7 +17,7 @@ ASTManager_error_macro_name_conflict=''{0}'' conflicts with the name of an exist
ASTManager_subtask_analyzing=Analyzing {0} files ASTManager_subtask_analyzing=Analyzing {0} files
ASTManager_task_analyze=Analyzing source code ASTManager_task_analyze=Analyzing source code
ASTManager_task_generateAst=Generating AST 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_withFile={0} in file ''{1}''
ASTManager_warning_parsingError_withFileAndLine={0} in file ''{1}'' at line ''{2}'' ASTManager_warning_parsingError_withFileAndLine={0} in file ''{1}'' at line ''{2}''
ASTManager_warning_parsingError=Parsing error ASTManager_warning_parsingError=Parsing error
@ -75,7 +75,7 @@ CRenameRefactoringInputPage_button_relatedProjects=Related projects
CRenameRefactoringInputPage_button_workspace=All projects CRenameRefactoringInputPage_button_workspace=All projects
CRenameRefactoringInputPage_button_workingSet=Working set: CRenameRefactoringInputPage_button_workingSet=Working set:
CRenameRefactoringInputPage_errorInvalidIdentifier=''{0}'' is not a valid identifier 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_label_updateWithin=Update occurrences in:
CRenameRefactoringInputPage_renameBaseAndDerivedMethods=Rename virtual methods in base and derived classes, also (if any). CRenameRefactoringInputPage_renameBaseAndDerivedMethods=Rename virtual methods in base and derived classes, also (if any).
CRenameTopProcessor_enumerator=enumerator CRenameTopProcessor_enumerator=enumerator

View file

@ -1,17 +1,17 @@
############################################################################### ###############################################################################
# Copyright (c) 2011 Institute for Software, HSR Hochschule fuer Technik # Copyright (c) 2011 Institute for Software, HSR Hochschule fuer Technik
# Rapperswil, University of applied sciences and others. # Rapperswil, University of applied sciences and others.
# #
# This program and the accompanying materials # This program and the accompanying materials
# are made available under the terms of the Eclipse Public License 2.0 # are made available under the terms of the Eclipse Public License 2.0
# which accompanies this distribution, and is available at # which accompanies this distribution, and is available at
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Martin Schwab & Thomas Kallenberg - initial API and implementation # Martin Schwab & Thomas Kallenberg - initial API and implementation
# Sergey Prigogin (Google) # Sergey Prigogin (Google)
# Thomas Corbat (IFS) # Thomas Corbat (IFS)
############################################################################### ###############################################################################
DeclaratorFinder_NestedFunction=Nested function declarations not supported DeclaratorFinder_NestedFunction=Nested function declarations not supported

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# IBM Corporation - initial API and implementation # IBM Corporation - initial API and implementation
# Anton Leherbauer (Wind River Systems) # Anton Leherbauer (Wind River Systems)

View file

@ -47,7 +47,7 @@ ContentAssistProcessor_defaultProposalCategory=Default Proposals
# {0} will be replaced by a keyboard shortcut (accelerator) # {0} will be replaced by a keyboard shortcut (accelerator)
ContentAssistProcessor_toggle_affordance_press_gesture=Press ''{0}'' ContentAssistProcessor_toggle_affordance_press_gesture=Press ''{0}''
ContentAssistProcessor_toggle_affordance_click_gesture=Click ContentAssistProcessor_toggle_affordance_click_gesture=Click
# {0} will be replaced by a title describing the displayed proposal category, {1} by either the press_gesture or click_gesture message above, {2} by the name of the next proposal category # {0} will be replaced by a title describing the displayed proposal category, {1} by either the press_gesture or click_gesture message above, {2} by the name of the next proposal category
ContentAssistProcessor_toggle_affordance_update_message={1} to show {2} ContentAssistProcessor_toggle_affordance_update_message={1} to show {2}
# {0} will be replaced by a title describing the displayed proposal category # {0} will be replaced by a title describing the displayed proposal category
ContentAssistProcessor_empty_message= No {0} ContentAssistProcessor_empty_message= No {0}

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# IBM Corporation - initial API and implementation # IBM Corporation - initial API and implementation
# Sergey Prigogin (Google) # Sergey Prigogin (Google)

View file

@ -7,13 +7,13 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Markus Schorn - initial API and implementation # Markus Schorn - initial API and implementation
################################################################################ ################################################################################
EditorOpener_fileDoesNotExist=File ''{0}'' no longer exists EditorOpener_fileDoesNotExist=File ''{0}'' no longer exists
IndexedFilesCache_jobName=Initialize C/C++ Index Label Provider IndexedFilesCache_jobName=Initialize C/C++ Index Label Provider
IndexUI_infoNotInSource=The element ''{0}'' does not belong to a source file. 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'. 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 SelectionListenerWithASTManager_jobName=Notifying selection listeners

View file

@ -16,7 +16,7 @@ CRefactoringActionGroup_menu=Refactor
CRenameAction_label=Rename... CRenameAction_label=Rename...
ExtractConstantAction_label=Extract Constant... ExtractConstantAction_label=Extract Constant...
ExtractLocalVariableAction_label=Extract Local Variable... ExtractLocalVariableAction_label=Extract Local Variable...
GettersAndSetters_label=Generate Getters and Setters... GettersAndSetters_label=Generate Getters and Setters...\u0020
ImplementMethodAction_label=Implement Method... ImplementMethodAction_label=Implement Method...
HideMethodAction_label=Hide Method... HideMethodAction_label=Hide Method...
ExtractFunctionAction_label=Extract Function... ExtractFunctionAction_label=Extract Function...

View file

@ -46,6 +46,6 @@ UISelectWidget_ErrorNoneSelected0=Please choose a value for {0}
UITextWidget.0=\ Project already exists in workspace. UITextWidget.0=\ Project already exists in workspace.
SimpleElementException.0=This Operation not supported on InputUIElement SimpleElementException.0=This Operation not supported on InputUIElement
TemplateEngineMessage.Error=CDT New Project Wizard Template Engine Error TemplateEngineMessage.Error=CDT New Project Wizard Template Engine Error
TemplateEngine.internalError=Internal Error: TemplateEngine.internalError=Internal Error:\u0020
TemplateEngine.templateEngine=Template Engine TemplateEngine.templateEngine=Template Engine

View file

@ -12,5 +12,5 @@
# Marc-Andre Laperle - Initial API and implementation # Marc-Andre Laperle - Initial API and implementation
############################################################################### ###############################################################################
OpenFiles_CannotOpen_error=Open file failure: Cannot open file: OpenFiles_CannotOpen_error=Open file failure: Cannot open file:\u0020
OpenFiles_FileNotExist_error=Open file failure: No such file exists: OpenFiles_FileNotExist_error=Open file failure: No such file exists:\u0020

View file

@ -14,7 +14,7 @@
############################################################################### ###############################################################################
## NOTE TO TRANSLATORS: ## NOTE TO TRANSLATORS:
## The following code words should not be translated: for, do while, switch case, ## The following code words should not be translated: for, do while, switch case,
## if, if else, else if, else, try catch, catch, main, class, using, namespace, author ## if, if else, else if, else, try catch, catch, main, class, using, namespace, author
forLoop = for loop forLoop = for loop

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# IBM Corporation - initial API and implementation # IBM Corporation - initial API and implementation
############################################################################### ###############################################################################

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Wind River Systems - initial API and implementation # Wind River Systems - initial API and implementation
############################################################################### ###############################################################################

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Doug Schaefer - initial API and implementation # Doug Schaefer - initial API and implementation
############################################################################### ###############################################################################

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Wind River Systems - initial API and implementation # Wind River Systems - initial API and implementation
############################################################################### ###############################################################################

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# IBM Corporation - initial API and implementation # IBM Corporation - initial API and implementation
############################################################################### ###############################################################################

View file

@ -1,17 +1,17 @@
##################################################################################### #####################################################################################
# Copyright (c) 2006, 2009 PalmSource, Inc. and others. # Copyright (c) 2006, 2009 PalmSource, Inc. and others.
# #
# This program and the accompanying materials # This program and the accompanying materials
# are made available under the terms of the Eclipse Public License 2.0 # are made available under the terms of the Eclipse Public License 2.0
# which accompanies this distribution, and is available at # which accompanies this distribution, and is available at
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Ewa Matejska (PalmSource) # Ewa Matejska (PalmSource)
# Martin Oberhuber (Wind River) - fix 158529: Migrate docs to HTML / TOC format # Martin Oberhuber (Wind River) - fix 158529: Migrate docs to HTML / TOC format
# Martin Oberhuber (Wind River) - add help contexts # Martin Oberhuber (Wind River) - add help contexts
##################################################################################### #####################################################################################
source.. = src/ source.. = src/

View file

@ -1,16 +1,16 @@
################################################################################ ################################################################################
# Copyright (c) 2006, 2010 Wind River Systems, Inc. and others. # Copyright (c) 2006, 2010 Wind River Systems, Inc. and others.
# #
# This program and the accompanying materials # This program and the accompanying materials
# are made available under the terms of the Eclipse Public License 2.0 # are made available under the terms of the Eclipse Public License 2.0
# which accompanies this distribution, and is available at # which accompanies this distribution, and is available at
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Martin Oberhuber - initial API and implementation # Martin Oberhuber - initial API and implementation
# Anna Dushistova (Mentor Graphics) - [314659] added launch delegate for dsf # Anna Dushistova (Mentor Graphics) - [314659] added launch delegate for dsf
################################################################################ ################################################################################
pluginName=C/C++ Remote Debug Launcher pluginName=C/C++ Remote Debug Launcher

View file

@ -1,14 +1,14 @@
################################################################################ ################################################################################
# Copyright (c) 2006, 2018 Wind River Systems, Inc. and others. # Copyright (c) 2006, 2018 Wind River Systems, Inc. and others.
# #
# This program and the accompanying materials # This program and the accompanying materials
# are made available under the terms of the Eclipse Public License 2.0 # are made available under the terms of the Eclipse Public License 2.0
# which accompanies this distribution, and is available at # which accompanies this distribution, and is available at
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Martin Oberhuber (Wind River) - externalized strings # Martin Oberhuber (Wind River) - externalized strings
# Ewa Matejska (PalmSource) - [158783] browse button for cdt remote path # Ewa Matejska (PalmSource) - [158783] browse button for cdt remote path
# Johann Draschwandtner (Wind River) - [231827][remotecdt]Auto-compute default for Remote path # Johann Draschwandtner (Wind River) - [231827][remotecdt]Auto-compute default for Remote path
@ -48,7 +48,7 @@ RemoteCMainTab_Remote_Path_Browse_Button=Browse...
RemoteCMainTab_Connection=Connection: RemoteCMainTab_Connection=Connection:
RemoteCMainTab_New=New... RemoteCMainTab_New=New...
RemoteCMainTab_New_title=Create a new connection 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... RemoteCMainTab_Edit=Edit...
Gdbserver_Settings_Tab_Name=Gdbserver Settings Gdbserver_Settings_Tab_Name=Gdbserver Settings
Gdbserver_name_textfield_label=Gdbserver path: Gdbserver_name_textfield_label=Gdbserver path:

View file

@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/ # https://www.eclipse.org/legal/epl-2.0/
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
# #
# Contributors: # Contributors:
# Red Hat Incorporated - initial API and implementation # Red Hat Incorporated - initial API and implementation
############################################################################### ###############################################################################

View file

@ -30,13 +30,13 @@ LaunchInterruptedError=Debug launch has been interrupted
LaunchMissingError=Previous launch configuration cannot be found LaunchMissingError=Previous launch configuration cannot be found
DebuggerInitializingProblem=Problem occurred in start-up DebuggerInitializingProblem=Problem occurred in start-up
GdbDebugNewExecutableCommand_Arguments=Arguments: GdbDebugNewExecutableCommand_Arguments=Arguments:\u0020
GdbDebugExecutableCommand_Binary=Binary: GdbDebugExecutableCommand_Binary=Binary:\u0020
GdbDebugExecutableCommand_Binary_Optional=Binary (optional): GdbDebugExecutableCommand_Binary_Optional=Binary (optional):\u0020
GdbDebugNewExecutableCommand_Binary_file_does_not_exist=Binary does not exist GdbDebugNewExecutableCommand_Binary_file_does_not_exist=Binary does not exist
GdbDebugNewExecutableCommand_Binary_must_be_specified=Binary must be specified GdbDebugNewExecutableCommand_Binary_must_be_specified=Binary must be specified
GdbDebugNewExecutableCommand_Binary_on_host=Binary on host: GdbDebugNewExecutableCommand_Binary_on_host=Binary on host:\u0020
GdbDebugNewExecutableCommand_Binary_on_target=Binary on target: GdbDebugNewExecutableCommand_Binary_on_target=Binary on target:\u0020
GdbDebugExecutableCommand_BuildLog=Build Log path (optional): GdbDebugExecutableCommand_BuildLog=Build Log path (optional):
GdbDebugNewExecutableCommand_Binary_on_target_must_be_specified=Binary on target must be specified GdbDebugNewExecutableCommand_Binary_on_target_must_be_specified=Binary on target must be specified
GdbDebugExecutableCommand_Browse=Browse... GdbDebugExecutableCommand_Browse=Browse...

View file

@ -10,11 +10,11 @@
# #
# Contributors: # Contributors:
# QNX Software Systems - Initial API and implementation # QNX Software Systems - Initial API and implementation
# Ken Ryall (Nokia) - Added support for AbsoluteSourceContainer( 159833 ) # Ken Ryall (Nokia) - Added support for AbsoluteSourceContainer( 159833 )
# Ken Ryall (Nokia) - Added support for breakpoint problems( 170027 ) # Ken Ryall (Nokia) - Added support for breakpoint problems( 170027 )
# Ken Ryall (Nokia) - Added support for Breakpoint Actions ( 118308 ) # Ken Ryall (Nokia) - Added support for Breakpoint Actions ( 118308 )
# IBM Corporation # IBM Corporation
# Texas Instruments - added extension point for source container type (279473) # Texas Instruments - added extension point for source container type (279473)
# Ericsson - Added support for Tracepoints (284286) # Ericsson - Added support for Tracepoints (284286)
# Sergey Prigogin (Google) # Sergey Prigogin (Google)
# Marc Khouzam (Ericsson) - Support for Dynamic printf (400628) # Marc Khouzam (Ericsson) - Support for Dynamic printf (400628)

View file

@ -14,44 +14,44 @@
# Marc Khouzam (Ericsson) - Added support for dynamic printf (400628) # Marc Khouzam (Ericsson) - Added support for dynamic printf (400628)
############################################################################### ###############################################################################
# The marker message of an address breakpoint. # The marker message of an address breakpoint.
CAddressBreakpoint.0=Address breakpoint: {0} CAddressBreakpoint.0=Address breakpoint: {0}
# The marker message of an address tracepoint. # The marker message of an address tracepoint.
CAddressTracepoint.0=Address tracepoint: {0} CAddressTracepoint.0=Address tracepoint: {0}
# The marker message of an address dynamic printf. # The marker message of an address dynamic printf.
CAddressDynamicPrintf.0=Address dynamic printf: {0} CAddressDynamicPrintf.0=Address dynamic printf: {0}
CBreakpoint.1=\ [ignore count: {0}] CBreakpoint.1=\ [ignore count: {0}]
CBreakpoint.2=\ if {0} CBreakpoint.2=\ if {0}
# The marker message of a function breakpoint. # The marker message of a function breakpoint.
CFunctionBreakpoint.0=Function breakpoint: {0} CFunctionBreakpoint.0=Function breakpoint: {0}
# The marker message of a function tracepoint. # The marker message of a function tracepoint.
CFunctionTracepoint.0=Function tracepoint: {0} CFunctionTracepoint.0=Function tracepoint: {0}
# The marker message of a function dynamic printf. # The marker message of a function dynamic printf.
CFunctionDynamicPrintf.0=Function dynamic printf: {0} CFunctionDynamicPrintf.0=Function dynamic printf: {0}
# The marker message of a line breakpoint. # The marker message of a line breakpoint.
CLineBreakpoint.0=Line breakpoint: {0} CLineBreakpoint.0=Line breakpoint: {0}
# The marker message of a relocated line breakpoint. # The marker message of a relocated line breakpoint.
CLineBreakpoint.1=Line breakpoint (relocated): {0} CLineBreakpoint.1=Line breakpoint (relocated): {0}
# The marker message of a line tracepoint. # The marker message of a line tracepoint.
CLineTracepoint.0=Line tracepoint: {0} CLineTracepoint.0=Line tracepoint: {0}
# The marker message of a line dynamic printf. # The marker message of a line dynamic printf.
CLineDynamicPrintf.0=Line dynamic printf: {0} CLineDynamicPrintf.0=Line dynamic printf: {0}
# The marker message of a relocated line breakpoint. # The marker message of a relocated line breakpoint.
CLineDynamicPrintf.1=Line dynamic printf (relocated): {0} CLineDynamicPrintf.1=Line dynamic printf (relocated): {0}
# The marker message of a write watchpoint. # The marker message of a write watchpoint.
CWatchpoint.0=Write watchpoint: {0} CWatchpoint.0=Write watchpoint: {0}
# The marker message of a read watchpoint. # The marker message of a read watchpoint.
CWatchpoint.1=Read watchpoint: {0} CWatchpoint.1=Read watchpoint: {0}
# The marker message of an access watchpoint. # The marker message of an access watchpoint.
CWatchpoint.2=Access watchpoint: {0} CWatchpoint.2=Access watchpoint: {0}
# The marker message of a watchpoint. # The marker message of a watchpoint.
CWatchpoint.3=Watchpoint: {0} CWatchpoint.3=Watchpoint: {0}
BreakpointProblems_Moved=Breakpoint could not be set at line {0}, moved to line {1} BreakpointProblems_Moved=Breakpoint could not be set at line {0}, moved to line {1}
BreakpointProblems_Unresolved=Unresolved breakpoint BreakpointProblems_Unresolved=Unresolved breakpoint

View file

@ -11,7 +11,7 @@
# Contributors: # Contributors:
# QNX Software Systems - initial API and implementation # 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.0=Type is not available.
CArrayPartition.1=Qualified name is not available. CArrayPartition.1=Qualified name is not available.
CDebugTarget.1=Execution is suspended because of error. CDebugTarget.1=Execution is suspended because of error.
@ -22,7 +22,7 @@ CModificationVariable.1=Unable to set value.
CStackFrame.0={0} at {1}: {2} CStackFrame.0={0} at {1}: {2}
CThread.0=Stack is not available: {0}. CThread.0=Stack is not available: {0}.
CThread.1=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.0=not available: {0}
CVariable.1=not available: {0} CVariable.1=not available: {0}
CVariable.2=Variable does not support value modification. CVariable.2=Variable does not support value modification.

View file

@ -59,7 +59,7 @@ BreakpointPropertiesAction.label=P&roperties...
AddExpressionAction.label=Add Watch Expression... AddExpressionAction.label=Add Watch Expression...
RunToLineAction.label=Run to &Line RunToLineAction.label=Run to &Line
ResumeAtLineAction.label=Resume at Li&ne 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++) GlobalResumeAtLineAction.label=Resume at Li&ne (C/C++)
GlobalMoveToLineAction.label=Move to Line (C/C++) GlobalMoveToLineAction.label=Move to Line (C/C++)
ShowFullPathsAction.label=Show Full &Paths ShowFullPathsAction.label=Show Full &Paths
@ -116,7 +116,7 @@ DebugPresentation.label=C/C++ Debug Appearance
DisassemblyCategory.name = Disassembly DisassemblyCategory.name = Disassembly
DisassemblyCategory.description = Category for disassembly commands DisassemblyCategory.description = Category for disassembly commands
OpenDisassembly.name = Open Disassembly OpenDisassembly.name = Open Disassembly
OpenDisassembly.description = Open disassembly window OpenDisassembly.description = Open disassembly window\u0020
OpenDisassembly.label = Open Disassembly OpenDisassembly.label = Open Disassembly
OpenDisassembly.tooltip = Open disassembly window OpenDisassembly.tooltip = Open disassembly window
DisassemblyEditor.name = Disassembly DisassemblyEditor.name = Disassembly
@ -234,7 +234,7 @@ Connect.description = Connect to a process
Connect.label = Connect... Connect.label = Connect...
Connect.tooltip = Connect to a process Connect.tooltip = Connect to a process
# Debug View layout # Debug View layout
DebugViewLayoutActionSet.label = Debug View Layout DebugViewLayoutActionSet.label = Debug View Layout
DebugViewLayoutCategory.name = Debug View Layout Commands DebugViewLayoutCategory.name = Debug View Layout Commands
DebugViewLayoutCategory.description = Set of commands for controlling the Debug View Layout DebugViewLayoutCategory.description = Set of commands for controlling the Debug View Layout
@ -251,11 +251,11 @@ TracepointActionSet.label=C/C++ Tracepoints
TracingCategory.description=Category for Tracing Commands TracingCategory.description=Category for Tracing Commands
TracingCategory.name=Tracing Commands TracingCategory.name=Tracing Commands
StartTracing.description=Start Tracing Experiment StartTracing.description=Start Tracing Experiment
StartTracing.name=Start Tracing StartTracing.name=Start Tracing\u0020
StopTracing.description=Stop Tracing Experiment StopTracing.description=Stop Tracing Experiment
StopTracing.name=Stop Tracing StopTracing.name=Stop Tracing\u0020
SaveTraceData.description=Save Trace Data to File 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 sourceNotFoundEditor.name = C/C++ Source Not Found Editor
CastingCategory.description = Set of commands for displaying variables and expressions as other types or arrays. CastingCategory.description = Set of commands for displaying variables and expressions as other types or arrays.

View file

@ -40,7 +40,7 @@ ToggleBreakpointAdapter.Empty_editor_2=Empty editor
ToggleWatchpointActionDelegate.Error_1=Error ToggleWatchpointActionDelegate.Error_1=Error
ToggleBreakpointAdapter.Missing_document_2=Missing document ToggleBreakpointAdapter.Missing_document_2=Missing document
ToggleBreakpointAdapter.Missing_resource_2=Missing resource 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. RunToLineAdapter.Operation_is_not_supported_1=Operation is not supported.
EnableDisableBreakpointRulerAction.Enable_Breakpoint_1=&Enable Breakpoint EnableDisableBreakpointRulerAction.Enable_Breakpoint_1=&Enable Breakpoint
EnableDisableBreakpointRulerAction.Enabling_disabling_breakpoints_1=Enabling/disabling breakpoints EnableDisableBreakpointRulerAction.Enabling_disabling_breakpoints_1=Enabling/disabling breakpoints

View file

@ -13,7 +13,7 @@
####################################################################################### #######################################################################################
# We use %d in the below string on purpose to show the user that it is possible # We use %d in the below string on purpose to show the user that it is possible
# Don't use %s with an in-line string, as it crashes GDB 7.5 and 7.6 # Don't use %s with an in-line string, as it crashes GDB 7.5 and 7.6
# http://sourceware.org/bugzilla/show_bug.cgi?id=15433 # http://sourceware.org/bugzilla/show_bug.cgi?id=15433
Default_LineDynamicPrintf_String="Hit line %d of {0}\\n",{1} Default_LineDynamicPrintf_String="Hit line %d of {0}\\n",{1}
Default_FunctionDynamicPrintf_String="Entered function: {1} of {0}\\n" Default_FunctionDynamicPrintf_String="Entered function: {1} of {0}\\n"

View file

@ -20,19 +20,19 @@ CBreakpointPropertyPage.0=Ignore count must be a nonnegative integer
CBreakpointPropertyPage.file_system_button=File S&ystem... CBreakpointPropertyPage.file_system_button=File S&ystem...
CBreakpointPropertyPage.fileName_errorMessage=Enter the absolute path to an existing file: CBreakpointPropertyPage.fileName_errorMessage=Enter the absolute path to an existing file:
CBreakpointPropertyPage.function_valueNotAvailable_label=Not available 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.function_value_errorMessage=Enter a function expression:
CBreakpointPropertyPage.breakpointType_function_label=C/C++ Function Breakpoint CBreakpointPropertyPage.breakpointType_function_label=C/C++ Function Breakpoint
CBreakpointPropertyPage.address_valueNotAvailable_label=Not available CBreakpointPropertyPage.address_valueNotAvailable_label=Not available
CBreakpointPropertyPage.address_label=Address: CBreakpointPropertyPage.address_label=Address:\u0020
CBreakpointPropertyPage.breakpointType_address_label=C/C++ Address Breakpoint 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.breakpointType_line_label=C/C++ Line Breakpoint
CBreakpointPropertyPage.lineNumber_errorMessage=Enter a line number greater than 0 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.breakpoint_already_exists_errorMessage=Breakpoint exists at this location
CBreakpointPropertyPage.breakpointType_event_label=C/C++ Event Breakpoint CBreakpointPropertyPage.breakpointType_event_label=C/C++ Event Breakpoint \u0020
CBreakpointPropertyPage.project_label=Project: CBreakpointPropertyPage.project_label=Project:\u0020
CBreakpointPropertyPage.breakpointType_watchpoint_label=C/C++ Watchpoint CBreakpointPropertyPage.breakpointType_watchpoint_label=C/C++ Watchpoint
CBreakpointPropertyPage.breakpointType_watchpoint_read_label=C/C++ Read Watchpoint CBreakpointPropertyPage.breakpointType_watchpoint_read_label=C/C++ Read Watchpoint
CBreakpointPropertyPage.breakpointType_watchpoint_access_label=C/C++ Access 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.workspace_button=W&orkspace...
CBreakpointPropertyPage.condition_label=&Condition: CBreakpointPropertyPage.condition_label=&Condition:
CBreakpointPropertyPage.condition_invalidValue_message=Invalid condition. CBreakpointPropertyPage.condition_invalidValue_message=Invalid condition.
CBreakpointPropertyPage.ignoreCount_label=&Ignore count: CBreakpointPropertyPage.ignoreCount_label=&Ignore count:\u0020
CBreakpointPropertyPage.breakpointType_label=Class: CBreakpointPropertyPage.breakpointType_label=Class:
CBreakpointPropertyPage.enabled_label=Enabled CBreakpointPropertyPage.enabled_label=Enabled
CBreakpointPropertyPage.eventType_label=Event Type CBreakpointPropertyPage.eventType_label=Event Type

View file

@ -20,7 +20,7 @@ CDebugPreferencePage.8=Variables:
CDebugPreferencePage.9=Expressions: CDebugPreferencePage.9=Expressions:
CDebugPreferencePage.10=Registers: CDebugPreferencePage.10=Registers:
CDebugPreferencePage.11=Disassembly options 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.13=Value must be an integer between {0} and {1}.
CDebugPreferencePage.15=Show source files in binaries CDebugPreferencePage.15=Show source files in binaries
CDebugPreferencePage.16=Wide character encoding CDebugPreferencePage.16=Wide character encoding

View file

@ -47,7 +47,7 @@ PathMappingDialog_16=Path Mappings
PathMappingDialog_MappingWithBackendEnabled=Resolve path mappings using debugger backend. 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. 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 RemoveAction_0=Re&move
SourceContainerWorkbenchAdapter_0=Path Mapping: SourceContainerWorkbenchAdapter_0=Path Mapping:\u0020
UpAction_0=U&p 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_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... CSourceNotFoundEditor_1=Locate File...

View file

@ -8,7 +8,7 @@
# #
# SPDX-License-Identifier: EPL-2.0 # SPDX-License-Identifier: EPL-2.0
########################################################################## ##########################################################################
ConsoleMessages_no_console=No console to display at this time. ConsoleMessages_no_console=No console to display at this time.
ConsoleDropDownAction_name=Select Console ConsoleDropDownAction_name=Select Console

View file

@ -23,7 +23,7 @@ ExecutablesView_ExeName=Executable Name
ExecutablesView_ExeProject=Executable Project ExecutablesView_ExeProject=Executable Project
ExecutablesView_ExeSize=Executable Size ExecutablesView_ExeSize=Executable Size
ExecutablesView_ExeType=Executable Type 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_Import=Import
ExecutablesView_ImportExe=Import an executable file ExecutablesView_ImportExe=Import an executable file
ExecutablesView_ImportExecutables=Import Executables ExecutablesView_ImportExecutables=Import Executables
@ -48,9 +48,9 @@ ExecutablesViewer_Project=Project
ExecutablesViewer_RefreshExecutablesView=Refresh Executables View ExecutablesViewer_RefreshExecutablesView=Refresh Executables View
ExecutablesViewer_Size=Size ExecutablesViewer_Size=Size
ExecutablesViewer_Type=Type ExecutablesViewer_Type=Type
SourceFilesContentProvider_NoFilesFound=No source files found in SourceFilesContentProvider_NoFilesFound=No source files found in\u0020
SourceFilesContentProvider_ReadingDebugSymbolInformationLabel=Reading Debug Symbol Information: SourceFilesContentProvider_ReadingDebugSymbolInformationLabel=Reading Debug Symbol Information:\u0020
SourceFilesContentProvider_Refreshing=Refreshing... SourceFilesContentProvider_Refreshing=Refreshing...\u0020
SourceFilesContentProvider_Canceled=Parse canceled. Hit refresh to restart. SourceFilesContentProvider_Canceled=Parse canceled. Hit refresh to restart.
SourceFilesViewer_RefreshSourceFiles=Refresh Source Files SourceFilesViewer_RefreshSourceFiles=Refresh Source Files
SourceFilesViewer_Location=Location SourceFilesViewer_Location=Location

Some files were not shown because too many files have changed in this diff Show more