Skip to main content
summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorJonah Graham2018-11-22 23:46:49 +0000
committerJonah Graham2018-11-23 07:52:26 +0000
commitff75ae80fa44dfc925064f7ca0169ac80997bc77 (patch)
tree7db3666d26eeae703d9bc650d5d4540bc71406fb /build
parentbe35c7327d2a6168718afea45181a058a7d414fa (diff)
downloadorg.eclipse.cdt-ff75ae80fa44dfc925064f7ca0169ac80997bc77.tar.gz
org.eclipse.cdt-ff75ae80fa44dfc925064f7ca0169ac80997bc77.tar.xz
org.eclipse.cdt-ff75ae80fa44dfc925064f7ca0169ac80997bc77.zip
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
Diffstat (limited to 'build')
-rw-r--r--build/org.eclipse.cdt.autotools.core/src/org/eclipse/cdt/autotools/core/Resources.properties4
-rw-r--r--build/org.eclipse.cdt.autotools.core/src/org/eclipse/cdt/internal/autotools/core/configure/ConfigureMessages.properties4
-rw-r--r--build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/autotools/ui/Resources.properties4
-rw-r--r--build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/autotools/ui/editors/AutoconfEditorMessages.properties2
-rw-r--r--build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/MakeUIMessages.properties14
-rw-r--r--build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/actions/InvokeMessages.properties4
-rw-r--r--build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/editors/automake/MakeFileMessages.properties2
-rw-r--r--build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/text/hover/HoverMessages.properties2
-rw-r--r--build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/wizards/AutotoolsWizardMessages.properties26
-rw-r--r--build/org.eclipse.cdt.autotools.ui/templates/projecttemplates/AutotoolsSharedLibraryProject/template.properties2
-rw-r--r--build/org.eclipse.cdt.autotools.ui/templates/projecttemplates/EmptyProject/template.properties2
-rw-r--r--build/org.eclipse.cdt.autotools.ui/templates/projecttemplates/HelloWorldCAutotoolsProject/template.properties2
-rw-r--r--build/org.eclipse.cdt.autotools.ui/templates/projecttemplates/HelloWorldCPPAutotoolsProject/template.properties2
-rw-r--r--build/org.eclipse.cdt.cmake.ui/src/org/eclipse/cdt/cmake/ui/internal/messages.properties2
-rw-r--r--build/org.eclipse.cdt.core.autotools.ui/src/org/eclipse/cdt/core/autotools/ui/internal/messages.properties2
-rw-r--r--build/org.eclipse.cdt.gnu.build-feature/build.properties2
-rw-r--r--build/org.eclipse.cdt.make.core.tests/build.properties2
-rw-r--r--build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/MakeMessages.properties22
-rw-r--r--build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/makefile/MakeFileResources.properties2
-rw-r--r--build/org.eclipse.cdt.make.ui/plugin.properties8
-rw-r--r--build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/MakeResources.properties14
-rw-r--r--build/org.eclipse.cdt.managedbuilder.core.tests/build.properties2
-rw-r--r--build/org.eclipse.cdt.managedbuilder.core/build.properties2
-rw-r--r--build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/internal/buildmodel/BuildModelMessages.properties2
-rw-r--r--build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/internal/core/HeadlessBuildMessages.properties24
-rw-r--r--build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/internal/core/PluginResources.properties20
-rw-r--r--build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/internal/dataprovider/DataProviderMessages.properties8
-rw-r--r--build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/projectconverter/PluginResources.properties4
-rw-r--r--build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/newmake/internal/core/MakeMessages.properties28
-rw-r--r--build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.properties2
-rw-r--r--build/org.eclipse.cdt.managedbuilder.gnu.ui/templates/projecttemplates/EmptyProject/template.properties2
-rw-r--r--build/org.eclipse.cdt.managedbuilder.gnu.ui/templates/projecttemplates/HelloWorldCAnsiProject/template.properties2
-rw-r--r--build/org.eclipse.cdt.managedbuilder.gnu.ui/templates/projecttemplates/HelloWorldCCProject/template.properties2
-rw-r--r--build/org.eclipse.cdt.managedbuilder.gnu.ui/templates/projecttemplates/MakefileHelloWorldCCProject/template.properties2
-rw-r--r--build/org.eclipse.cdt.managedbuilder.ui.tests/build.properties2
-rw-r--r--build/org.eclipse.cdt.managedbuilder.ui/build.properties2
-rw-r--r--build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/internal/ui/Messages.properties46
-rw-r--r--build/org.eclipse.cdt.meson.ui/src/org/eclipse/cdt/internal/meson/ui/messages.properties4
-rw-r--r--build/org.eclipse.cdt.meson.ui/src/org/eclipse/cdt/internal/meson/ui/wizards/wizardmessages.properties2
-rw-r--r--build/org.eclipse.cdt.meson.ui/src/org/eclipse/cdt/meson/ui/properties/messages.properties2
40 files changed, 141 insertions, 141 deletions
diff --git a/build/org.eclipse.cdt.autotools.core/src/org/eclipse/cdt/autotools/core/Resources.properties b/build/org.eclipse.cdt.autotools.core/src/org/eclipse/cdt/autotools/core/Resources.properties
index 4bcbeb35b26..a64f67e9264 100644
--- a/build/org.eclipse.cdt.autotools.core/src/org/eclipse/cdt/autotools/core/Resources.properties
+++ b/build/org.eclipse.cdt.autotools.core/src/org/eclipse/cdt/autotools/core/Resources.properties
@@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
-#
+#
# Contributors:
# Red Hat Incorporated - initial API and implementation
# 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.makeTargetsFor=Make targets for
+BuildTargetDialog.title.makeTargetsFor=Make targets for\u0020
BuildTargetDialog.button.build=Build
TargetListViewer.button.add=Add...
diff --git a/build/org.eclipse.cdt.autotools.core/src/org/eclipse/cdt/internal/autotools/core/configure/ConfigureMessages.properties b/build/org.eclipse.cdt.autotools.core/src/org/eclipse/cdt/internal/autotools/core/configure/ConfigureMessages.properties
index 408471a8926..272903190a6 100644
--- a/build/org.eclipse.cdt.autotools.core/src/org/eclipse/cdt/internal/autotools/core/configure/ConfigureMessages.properties
+++ b/build/org.eclipse.cdt.autotools.core/src/org/eclipse/cdt/internal/autotools/core/configure/ConfigureMessages.properties
@@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
-#
+#
# Contributors:
# Red Hat Incorporated - initial API and implementation
################################################################################
@@ -105,7 +105,7 @@ Option.configure.autogenOpts.tip=Specify any additional options required
Tool.command=Command
Tool.allopts=All Options
-
+
Configure.Error.AlreadyExists="A configuration named {0} already exists"
Configure.Error.NoProjectToSave="Project: {0} does not exist at time of saving configuration"
diff --git a/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/autotools/ui/Resources.properties b/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/autotools/ui/Resources.properties
index 6b435ee5d41..515b0a8056c 100644
--- a/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/autotools/ui/Resources.properties
+++ b/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/autotools/ui/Resources.properties
@@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
-#
+#
# Contributors:
# Red Hat Incorporated - initial API and implementation
# 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.makeTargetsFor=Make targets for
+BuildTargetDialog.title.makeTargetsFor=Make targets for\u0020
BuildTargetDialog.button.build=Build
TargetListViewer.button.add=Add...
diff --git a/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/autotools/ui/editors/AutoconfEditorMessages.properties b/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/autotools/ui/editors/AutoconfEditorMessages.properties
index 0a7bea9b36d..8516bacf09d 100644
--- a/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/autotools/ui/editors/AutoconfEditorMessages.properties
+++ b/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/autotools/ui/editors/AutoconfEditorMessages.properties
@@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
-#
+#
# Contributors:
# Red Hat Incorporated - initial API and implementation
# Nokia Inc - refactoring
diff --git a/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/MakeUIMessages.properties b/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/MakeUIMessages.properties
index 7d83df4e29d..15f29572e62 100644
--- a/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/MakeUIMessages.properties
+++ b/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/MakeUIMessages.properties
@@ -131,7 +131,7 @@ BuildPathInfoBlock.monitor.settingScannerInfo=Setting Scanner Info
BuildTargetDialog.title.buildTarget=Make Targets
BuildTargetDialog.button.build=Build
-BuildTargetDialog.title.makeTargetsFor=Make Targets for:
+BuildTargetDialog.title.makeTargetsFor=Make Targets for:\u0020
MakeTargetDialog.exception.noTargetBuilderOnProject=Not target builders on the project
MakeTargetDialog.title.createMakeTarget=Create a new Make target
@@ -190,16 +190,16 @@ ContentAssistProposal.label=Content Assist@Ctrl+SPACE
ContentAssistProposal.tooltip=Content Assist
ContentAssistProposal.image=
ContentAssistProposal.description=Content Assist
-
+
ContentAssistTip.label=Content Tip@Ctrl+SHIFT+SPACE
ContentAssistTip.tooltip=Content Tip
ContentAssistTip.image=
ContentAssistTip.description=Content Tip
-
+
TogglePresentation.label=Show Source of Selected Element Only
TogglePresentation.tooltip=Show Source of Selected Element Only
TogglePresentation.description=Enable/Disable Segmented Source Viewer
-
+
Comment.label=&Comment
Comment.tooltip=Comment the Selected Lines
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
# ------- LexicalSortingAction------------
-
+
LexicalSortingAction.label=Sort
LexicalSortingAction.description=Sorts the elements in the outliner
LexicalSortingAction.tooltip=Sort
@@ -254,14 +254,14 @@ ScannerConfigOptionsDialog.boProvider.browse.button=Browse...
ScannerConfigOptionsDialog.boProvider.browse.openFileDialog=Build output file:
ScannerConfigOptionsDialog.boProvider.load.button=Load
ScannerConfigOptionsDialog.siProvider.parser.enabled.button=Enable generate scanner info command
-ScannerConfigOptionsDialog.siProvider.command.label=Compiler invocation command
+ScannerConfigOptionsDialog.siProvider.command.label=Compiler invocation command \u0020
ScannerConfigOptionsDialog.siProvider.browse.button=Browse...
ScannerConfigOptionsDialog.siProvider.browse.runCommandDialog='gcc' command:
ScannerConfigOptionsDialog.siProvider.command.errorMessage=Must enter compiler invocation command
ScannerConfigOptionsDialog.apply.progressMessage=Setting scanner configuration discovery options...
ScannerConfigOptionsDialog.common.variables.button=Variables...
-ScannerConfigOptionsDialog.unsavedchanges.title=Setting C/C++ Make Project Discovery Options
+ScannerConfigOptionsDialog.unsavedchanges.title=Setting C/C++ Make Project Discovery Options\u0020
ScannerConfigOptionsDialog.unsavedchanges.message=The C/C++ Make Project Discovery Options property page contains unsaved modifications. Do you want to save changes so that other discovery related settings can be updated?
ScannerConfigOptionsDialog.unsavedchanges.button.save=Apply
ScannerConfigOptionsDialog.unsavedchanges.button.cancel=Cancel
diff --git a/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/actions/InvokeMessages.properties b/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/actions/InvokeMessages.properties
index d564fe3c5fa..1b744633aeb 100644
--- a/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/actions/InvokeMessages.properties
+++ b/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/actions/InvokeMessages.properties
@@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
-#
+#
# Contributors:
# Red Hat Incorporated - initial API and implementation
#################################################################################
@@ -21,7 +21,7 @@ InvokeAction.success=Command executed successfully
InvokeAction.console.message=Invoking {0} in {1}
-InvokeAutoconfAction.command=Running autoconf in {0}
+InvokeAutoconfAction.command=Running autoconf in {0}\u0020
InvokeAutoconfAction.windowTitle.stdout=Invoke Autoconf - Output
InvokeAutoconfAction.windowTitle.stderr=Invoke Autoconf - Error
diff --git a/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/editors/automake/MakeFileMessages.properties b/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/editors/automake/MakeFileMessages.properties
index 1bb2f426e35..bcf18c415b9 100644
--- a/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/editors/automake/MakeFileMessages.properties
+++ b/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/editors/automake/MakeFileMessages.properties
@@ -17,7 +17,7 @@ MakefileValidator.errorResource=Error resource
MakefileValidator.warningInfo=Warning info
MakefileValidator.warning=Warning
MakefileValidator.unknown=unknown
-MakefileValidator.checkingFile=Checking file :
+MakefileValidator.checkingFile=Checking file :\u0020
MakefileValidator.fileChecked=File checked
MakefileValidator.error.elseMissingIfCondition=else missing if condition
MakefileValidator.error.endifMissingIfElseCondition=Endif missing if/else condition
diff --git a/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/text/hover/HoverMessages.properties b/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/text/hover/HoverMessages.properties
index e3b60fad55c..96e7b0917f2 100644
--- a/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/text/hover/HoverMessages.properties
+++ b/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/text/hover/HoverMessages.properties
@@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
-#
+#
# Contributors:
# Red Hat Incorporated - initial API and implementation
#################################################################################
diff --git a/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/wizards/AutotoolsWizardMessages.properties b/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/wizards/AutotoolsWizardMessages.properties
index fd73d2e2cc2..9781f7c8ec5 100644
--- a/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/wizards/AutotoolsWizardMessages.properties
+++ b/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/wizards/AutotoolsWizardMessages.properties
@@ -13,7 +13,7 @@
# Red Hat - Copy to AutotoolsWizardMessages.properties
###############################################################################
-# ------- Project Update Messages -------
+# ------- Project Update Messages -------
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?
@@ -21,7 +21,7 @@ AutotoolsBuildWizard.0=GNU Autotools project
AutotoolsBuildWizard.1=Others
AutotoolsBuildWizard.2=Empty Project
-# ------- NewProjectCreationPluginPage-------
+# ------- NewProjectCreationPluginPage-------
MngMakeProjectWizard.op_error=Managed Make Error
MngMakeProjectWizard.title=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.version_low=The Managed Make project settings for this project are not available.
BuildPropertyPage.defaults.title=Reset Configuration Tools
-BuildPropertyPage.defaults.message=This action will reset all of the tools in the selected configuration to their default settings.\n\nDo you want to proceed?
+BuildPropertyPage.defaults.message=This action will reset all of the tools in the selected configuration to their default settings.\n\nDo you want to proceed?\u0020
BuildPropertyPage.changes.save.title=Apply Configuration Changes
-BuildPropertyPage.changes.save.question=You have made changes to the {0} configuration.\n\nDo you want to apply these changes before switching to the {1} configuration?
+BuildPropertyPage.changes.save.question=You have made changes to the {0} configuration.\n\nDo you want to apply these changes before switching to the {1} configuration?\u0020
BuildPropertyPage.changes.save.error=The configuration changes could not be applied.
BuildPropertyPage.unsupported.proj=The project support is not installed on the system
BuildPropertyPage.unsupported.config=The configuration support is not installed on the system
BuildPropertyPage.config.notselected=No configurations selected
# ----------- Managed Build Custom Wizard Page Manager Error Strings -----------
-MBSCustomPageManager.error0=Unknown element type
-MBSCustomPageManager.error1=\ for extension point
-MBSCustomPageManager.error2=Unknown child element type
-MBSCustomPageManager.error3=\ for wizardPage element in extension point
+MBSCustomPageManager.error0=Unknown element type\u0020
+MBSCustomPageManager.error1=\ for extension point\u0020
+MBSCustomPageManager.error2=Unknown child element type\u0020
+MBSCustomPageManager.error3=\ for wizardPage element in extension point\u0020
MBSCustomPageManager.error4=Missing projectType ID
MBSCustomPageManager.error5=Missing projectType ID
MBSCustomPageManager.error6=Missing nature ID
@@ -101,7 +101,7 @@ BuildPreferencePage.apply.internal.error=An Internal error has occured please ch
#--------------- Resource Configuration Selection Page --------------
ResourceBuildPropertyPage.defaults.title=Reset Resource Configuration Tool
-ResourceBuildPropertyPage.defaults.message=This action will reset all options of the tool in the current resource configuration to their default settings.\n\nDo you want to proceed?
+ResourceBuildPropertyPage.defaults.message=This action will reset all options of the tool in the current resource configuration to their default settings.\n\nDo you want to proceed?\u0020
# ----------- Tools Settings Block -----------
ToolsSettingsBlock.label.Settings=Tool Settings
@@ -156,9 +156,9 @@ EnvironmentBlock.label.button.check.chow.parent=Show parent level variables
EnvironmentBlock.label.user.var=User Variables
EnvironmentBlock.label.system.var=System Variables
EnvironmentBlock.label.delete.confirm.title=Variable deletion confirmation
-EnvironmentBlock.label.delete.confirm.message=Are you sure you want to delete the selected user variable(s)?
+EnvironmentBlock.label.delete.confirm.message=Are you sure you want to delete the selected user variable(s)?\u0020
EnvironmentBlock.label.delete.all.confirm.title=Variable deletion confirmation
-EnvironmentBlock.label.delete.all.confirm.message=Are you sure you want to delete all user variables?
+EnvironmentBlock.label.delete.all.confirm.message=Are you sure you want to delete all user variables?\u0020
# ----------- New Env Var Dialog -----------
NewEnvVarDialog.label.name=Name
@@ -194,7 +194,7 @@ MacrosBlock.label.button.check.chow.parent=Show parent context macros
MacrosBlock.label.user.macros=User Macros
MacrosBlock.label.system.macros=System Macros
MacrosBlock.label.delete.confirm.title=Macro deletion confirmation
-MacrosBlock.label.delete.confirm.message=Are you sure you want to delete the selected user Macro(s)?
+MacrosBlock.label.delete.confirm.message=Are you sure you want to delete the selected user Macro(s)?\u0020
MacrosBlock.label.delete.all.confirm.title=Macro deletion confirmation
MacrosBlock.label.delete.all.confirm.message=Are you sure you want to delete all user macros?
MacrosBlock.label.value.eclipse.dynamic=<ECLIPSE DYNAMIC VARIABLE>
@@ -285,7 +285,7 @@ NewConfiguration.label.description=Description:
NewConfiguration.label.group=Copy settings from
NewConfiguration.label.copy=Default configuration:
NewConfiguration.label.clone=Existing configuration:
-NewConfiguration.label.showall=Show unsupported configurations
+NewConfiguration.label.showall=Show unsupported configurations\u0020
NewConfiguration.error.duplicateName=A configuration named "{0}" already exists.
NewConfiguration.error.caseName=A configuration name that differs only in case to "{0}" exists.
NewConfiguration.error.invalidName=The name "{0}" is invalid.
diff --git a/build/org.eclipse.cdt.autotools.ui/templates/projecttemplates/AutotoolsSharedLibraryProject/template.properties b/build/org.eclipse.cdt.autotools.ui/templates/projecttemplates/AutotoolsSharedLibraryProject/template.properties
index 6e691100660..03c77436c13 100644
--- a/build/org.eclipse.cdt.autotools.ui/templates/projecttemplates/AutotoolsSharedLibraryProject/template.properties
+++ b/build/org.eclipse.cdt.autotools.ui/templates/projecttemplates/AutotoolsSharedLibraryProject/template.properties
@@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
-#
+#
# Contributors:
# Red Hat Incorporated - Initial implementation
#
diff --git a/build/org.eclipse.cdt.autotools.ui/templates/projecttemplates/EmptyProject/template.properties b/build/org.eclipse.cdt.autotools.ui/templates/projecttemplates/EmptyProject/template.properties
index 8f14926a969..42a6173af0a 100644
--- a/build/org.eclipse.cdt.autotools.ui/templates/projecttemplates/EmptyProject/template.properties
+++ b/build/org.eclipse.cdt.autotools.ui/templates/projecttemplates/EmptyProject/template.properties
@@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
-#
+#
# Contributors:
# IBM Corporation - initial API and implementation
###############################################################################
diff --git a/build/org.eclipse.cdt.autotools.ui/templates/projecttemplates/HelloWorldCAutotoolsProject/template.properties b/build/org.eclipse.cdt.autotools.ui/templates/projecttemplates/HelloWorldCAutotoolsProject/template.properties
index f7c14251151..42232a4480a 100644
--- a/build/org.eclipse.cdt.autotools.ui/templates/projecttemplates/HelloWorldCAutotoolsProject/template.properties
+++ b/build/org.eclipse.cdt.autotools.ui/templates/projecttemplates/HelloWorldCAutotoolsProject/template.properties
@@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
-#
+#
# Contributors:
# Bala Torati (Symbian) - initial API and implementation
# Red Hat Inc - modification to use with Autotools project
diff --git a/build/org.eclipse.cdt.autotools.ui/templates/projecttemplates/HelloWorldCPPAutotoolsProject/template.properties b/build/org.eclipse.cdt.autotools.ui/templates/projecttemplates/HelloWorldCPPAutotoolsProject/template.properties
index f7c14251151..42232a4480a 100644
--- a/build/org.eclipse.cdt.autotools.ui/templates/projecttemplates/HelloWorldCPPAutotoolsProject/template.properties
+++ b/build/org.eclipse.cdt.autotools.ui/templates/projecttemplates/HelloWorldCPPAutotoolsProject/template.properties
@@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
-#
+#
# Contributors:
# Bala Torati (Symbian) - initial API and implementation
# Red Hat Inc - modification to use with Autotools project
diff --git a/build/org.eclipse.cdt.cmake.ui/src/org/eclipse/cdt/cmake/ui/internal/messages.properties b/build/org.eclipse.cdt.cmake.ui/src/org/eclipse/cdt/cmake/ui/internal/messages.properties
index 18d2b21e705..c1588d15a4f 100644
--- a/build/org.eclipse.cdt.cmake.ui/src/org/eclipse/cdt/cmake/ui/internal/messages.properties
+++ b/build/org.eclipse.cdt.cmake.ui/src/org/eclipse/cdt/cmake/ui/internal/messages.properties
@@ -15,7 +15,7 @@ CMakePreferencePage_Files=Toolchain Files
CMakePreferencePage_Path=Toolchain File
CMakePreferencePage_Remove=Remove
CMakePreferencePage_Toolchain=Toolchain
-CMakePropertyPage_FailedToStartCMakeGui_Body=Failed to run the CMake GUI:
+CMakePropertyPage_FailedToStartCMakeGui_Body=Failed to run the CMake GUI:\u0020
CMakePropertyPage_FailedToStartCMakeGui_Title=Failed to run CMake GUI
CMakePropertyPage_FailedToGetOS_Body=Failed to get target OS for CMake project:
CMakePropertyPage_FailedToGetOS_Title=Failed to get target OS
diff --git a/build/org.eclipse.cdt.core.autotools.ui/src/org/eclipse/cdt/core/autotools/ui/internal/messages.properties b/build/org.eclipse.cdt.core.autotools.ui/src/org/eclipse/cdt/core/autotools/ui/internal/messages.properties
index 18ef2bbb598..a3e2423bbed 100644
--- a/build/org.eclipse.cdt.core.autotools.ui/src/org/eclipse/cdt/core/autotools/ui/internal/messages.properties
+++ b/build/org.eclipse.cdt.core.autotools.ui/src/org/eclipse/cdt/core/autotools/ui/internal/messages.properties
@@ -7,6 +7,6 @@
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
-###############################################################################
+###############################################################################
NewAutotoolsProjectWizard_Description=Specify properties of new Autotools project.
NewAutotoolsProjectWizard_Title=New Autotools Project
diff --git a/build/org.eclipse.cdt.gnu.build-feature/build.properties b/build/org.eclipse.cdt.gnu.build-feature/build.properties
index 94c40fe7962..8f62630ce13 100644
--- a/build/org.eclipse.cdt.gnu.build-feature/build.properties
+++ b/build/org.eclipse.cdt.gnu.build-feature/build.properties
@@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
-#
+#
# Contributors:
# Wind River Systems - initial API and implementation
# IBM Corporation
diff --git a/build/org.eclipse.cdt.make.core.tests/build.properties b/build/org.eclipse.cdt.make.core.tests/build.properties
index e5253454b88..1eb4b524a16 100644
--- a/build/org.eclipse.cdt.make.core.tests/build.properties
+++ b/build/org.eclipse.cdt.make.core.tests/build.properties
@@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
-#
+#
# Contributors:
# IBM Corporation - initial API and implementation
###############################################################################
diff --git a/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/MakeMessages.properties b/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/MakeMessages.properties
index a973bbae8db..0c63ad49826 100644
--- a/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/MakeMessages.properties
+++ b/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/MakeMessages.properties
@@ -20,7 +20,7 @@ MakeBuilder.Invoking_Make_Builder=Invoking Make Builder...
MakeBuilder.message.error.build = Internal error building project {0}
MakeBuilder.message.undefined.build.command = Build command is null for project {0}
-BuildInfoFactory.Missing_Builder=Missing Builder:
+BuildInfoFactory.Missing_Builder=Missing Builder:\u0020
MakeTargetManager.add_to_workspace_root=Cannot add make targets to workspace root
MakeTargetManager.add_temporary_target=Cannot add temporary Target to manager.
@@ -30,28 +30,28 @@ MakeTargetManager.error_writing_file=Error writing target file
ProjectTargets.error_reading_project_targets=Error reading project targets.
-ScannerConfigBuilder.Invoking_Builder=Invoking scanner config builder on project
+ScannerConfigBuilder.Invoking_Builder=Invoking scanner config builder on project\u0020
ScannerConfigBuilder.0=building per-configuratin info
ScannerConfigNature.Missing_Project=Missing or closed project
-ScannerConfigInfoFactory.Missing_Builder=Missing Builder:
+ScannerConfigInfoFactory.Missing_Builder=Missing Builder:\u0020
ExternalScannerInfoProvider.Console_Name=CDT Built-in Specs Console, {0}
-ExternalScannerInfoProvider.Reading_Specs=Reading specs ...
+ExternalScannerInfoProvider.Reading_Specs=Reading specs ...\u0020
ExternalScannerInfoProvider.Greeting=Scanner Discovery of compiler built-in settings for project {0}
-ScannerInfoCollector.Processing=Processing discovered scanner configuration ...
-ScannerInfoCollector.Updating=Updating Scanner Configuration for project
+ScannerInfoCollector.Processing=Processing discovered scanner configuration ...\u0020
+ScannerInfoCollector.Updating=Updating Scanner Configuration for project\u0020
-DiscoveredPathManager.File_Error_Message=Error accessing scanner config file for project
-DiscoveredPathManager.Info_Not_Serializable=Error persisting discovered scanner config
+DiscoveredPathManager.File_Error_Message=Error accessing scanner config file for project\u0020
+DiscoveredPathManager.Info_Not_Serializable=Error persisting discovered scanner config\u0020
GCCScannerConfigUtil.Error_Message=Error creating specs file
-ConsoleParser.Filename_Missing_Error_Message=CDT Path Discovery is unable to determine source file name in build command:
-ConsoleParser.Ambiguous_Filepath_Error_Message=CDT Path Discovery is unable to resolve ambiguous file path:
+ConsoleParser.Filename_Missing_Error_Message=CDT Path Discovery is unable to determine source file name in build command:\u0020
+ConsoleParser.Ambiguous_Filepath_Error_Message=CDT Path Discovery is unable to resolve ambiguous file path:\u0020
ConsoleParser.Working_Directory_Error_Message=CDT Path Discovery is unable to determine working directory of the build command
-ConsoleParser.Nonexistent_Include_Path_Error_Message=CDT Path Discovery has discovered and will ignore a non-existent include path:
+ConsoleParser.Nonexistent_Include_Path_Error_Message=CDT Path Discovery has discovered and will ignore a non-existent include path:\u0020
DiscoveredContainer.description=Discovered Paths
DiscoveredContainer.ScopeErrorMessage=Invalid scanner configuration discovery profile scope
diff --git a/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/makefile/MakeFileResources.properties b/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/makefile/MakeFileResources.properties
index 5d4e3857e6b..a923078261e 100644
--- a/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/makefile/MakeFileResources.properties
+++ b/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/makefile/MakeFileResources.properties
@@ -17,7 +17,7 @@ MakefileValidator.errorResource=Error resource
MakefileValidator.warningInfo=Warning info
MakefileValidator.warning=Warning
MakefileValidator.unknown=unknown
-MakefileValidator.checkingFile=Checking file :
+MakefileValidator.checkingFile=Checking file :\u0020
MakefileValidator.fileChecked=File checked
MakefileValidator.error.elseMissingIfCondition=else missing if condition
MakefileValidator.error.endifMissingIfElseCondition=Endif missing if/else condition
diff --git a/build/org.eclipse.cdt.make.ui/plugin.properties b/build/org.eclipse.cdt.make.ui/plugin.properties
index 49b4692d364..e612aaecb0c 100644
--- a/build/org.eclipse.cdt.make.ui/plugin.properties
+++ b/build/org.eclipse.cdt.make.ui/plugin.properties
@@ -61,19 +61,19 @@ ViewCatagoryMake.name=Make
ActionSetMake.label=Make Actions
ActionSetUpdateMake.label=Update Make Projects
-# Scope and Key Commands
+# Scope and Key Commands
scope.makefileEditor.name=Makefile Editor
makefileEditor.description=Editor for makefiles
-
+
category.source.name=Makefile Source
category.source.description= Makefile Source Actions
-
+
ActionDefinition.toggle.comment.name= Toggle Comment
ActionDefinition.toggle.comment.description= Comment/uncomment selected lines with # style comments
ActionDefinition.opendecl.name= Open declaration
ActionDefinition.opendecl.description=Follow to the directive definition
-
+
MakefileEditor.name=Makefile Editor
IncludeSymbolProperties.name=C/C++ Include Paths and Symbols
diff --git a/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/MakeResources.properties b/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/MakeResources.properties
index dda8ad63923..0b891312884 100644
--- a/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/MakeResources.properties
+++ b/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/MakeResources.properties
@@ -12,7 +12,7 @@
# QNX Software Systems - initial API and implementation
# Wind River Systems - fix for bugzilla 135150 and 194198
# Tianchao Li (tianchao.li@gmail.com) - arbitrary build directory (bug #136136)
-# IBM Corporation
+# IBM Corporation
###############################################################################
MakeCWizard.title=C/Make Project
@@ -138,7 +138,7 @@ BuildPathInfoBlock.monitor.settingScannerInfo=Setting Scanner Info
BuildTargetDialog.title.buildTarget=Build Targets
BuildTargetDialog.button.build=Build
-BuildTargetDialog.title.makeTargetsFor=Build Targets for:
+BuildTargetDialog.title.makeTargetsFor=Build Targets for:\u0020
MakeTargetDialog.exception.noTargetBuilderOnProject=Not target builders on the project
MakeTargetDialog.title.createMakeTarget=Create Build Target
@@ -233,16 +233,16 @@ ContentAssistProposal.label=Content Assist@Ctrl+SPACE
ContentAssistProposal.tooltip=Content Assist
ContentAssistProposal.image=
ContentAssistProposal.description=Content Assist
-
+
ContentAssistTip.label=Content Tip@Ctrl+SHIFT+SPACE
ContentAssistTip.tooltip=Content Tip
ContentAssistTip.image=
ContentAssistTip.description=Content Tip
-
+
TogglePresentation.label=Show Source of Selected Element Only
TogglePresentation.tooltip=Show Source of Selected Element Only
TogglePresentation.description=Enable/Disable Segmented Source Viewer
-
+
Comment.label=&Comment
Comment.tooltip=Comment the Selected Lines
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
# ------- LexicalSortingAction------------
-
+
LexicalSortingAction.label=Sort
LexicalSortingAction.description=Sorts the elements in the outliner
LexicalSortingAction.tooltip=Sort
@@ -306,7 +306,7 @@ ScannerConfigOptionsDialog.siProvider.command.errorMessage=Must enter compiler i
ScannerConfigOptionsDialog.apply.progressMessage=Setting scanner configuration discovery options...
ScannerConfigOptionsDialog.common.variables.button=Variables...
-ScannerConfigOptionsDialog.unsavedchanges.title=Setting C/C++ Make Project Discovery Options
+ScannerConfigOptionsDialog.unsavedchanges.title=Setting C/C++ Make Project Discovery Options\u0020
ScannerConfigOptionsDialog.unsavedchanges.message=The C/C++ Make Project Discovery Options property page contains unsaved modifications. Do you want to save changes so that other discovery related settings can be updated?
ScannerConfigOptionsDialog.unsavedchanges.button.save=Apply
ScannerConfigOptionsDialog.unsavedchanges.button.cancel=Cancel
diff --git a/build/org.eclipse.cdt.managedbuilder.core.tests/build.properties b/build/org.eclipse.cdt.managedbuilder.core.tests/build.properties
index 223d812ef3c..59ac12d0361 100644
--- a/build/org.eclipse.cdt.managedbuilder.core.tests/build.properties
+++ b/build/org.eclipse.cdt.managedbuilder.core.tests/build.properties
@@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
-#
+#
# Contributors:
# IBM Corporation - initial API and implementation
###############################################################################
diff --git a/build/org.eclipse.cdt.managedbuilder.core/build.properties b/build/org.eclipse.cdt.managedbuilder.core/build.properties
index d57ea1193ce..a83d472ad3c 100644
--- a/build/org.eclipse.cdt.managedbuilder.core/build.properties
+++ b/build/org.eclipse.cdt.managedbuilder.core/build.properties
@@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
-#
+#
# Contributors:
# IBM Corporation - initial API and implementation
###############################################################################
diff --git a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/internal/buildmodel/BuildModelMessages.properties b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/internal/buildmodel/BuildModelMessages.properties
index ef712209e05..9afb973d5de 100644
--- a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/internal/buildmodel/BuildModelMessages.properties
+++ b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/internal/buildmodel/BuildModelMessages.properties
@@ -12,5 +12,5 @@
# Intel Corporation - Initial API and implementation
###############################################################################
-BuildResource.0=Generated resource conflict: \ntwo resources of the same name: {0} \ngenerated by different tools \ntool1: {1} \ntool2: {2}\n
+BuildResource.0=Generated resource conflict: \ntwo resources of the same name: {0} \ngenerated by different tools \ntool1: {1} \ntool2: {2}\n\u0020
BuildDescription.MissingArtifact=Build Artifact is missing in project ''{0}'' configuration ''{1}''
diff --git a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/internal/core/HeadlessBuildMessages.properties b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/internal/core/HeadlessBuildMessages.properties
index f6dedf828e8..a37862a7581 100644
--- a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/internal/core/HeadlessBuildMessages.properties
+++ b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/internal/core/HeadlessBuildMessages.properties
@@ -14,36 +14,36 @@
###############################################################################
HeadlessBuilder_already_exists_in_workspace=\ already exists in the workspace\!
-HeadlessBuilder_build_failed=Couldn't BUILD project
+HeadlessBuilder_build_failed=Couldn't BUILD project\u0020
HeadlessBuilder_building_all=Building All Projects...
HeadlessBuilder_cant_be_found=\ can't be found\!
-HeadlessBuilder_clean_failed=Couldn't CLEAN project
+HeadlessBuilder_clean_failed=Couldn't CLEAN project\u0020
HeadlessBuilder_cleaning_all_projects=Cleaning All Projects...
HeadlessBuilder_completed_successfully=Headless build completed successfully
HeadlessBuilder_CouldntLockWorkspace=Could not obtain lock for workspace location
-HeadlessBuilder_Directory=Directory:
+HeadlessBuilder_Directory=Directory:\u0020
HeadlessBuilder_encountered_errors=Headless build encountered errors
HeadlessBuilder_EnvVar_Append=\ \ \ -Ea {var=value} append value to environment variable when running all tools
HeadlessBuilder_EnvVar_Prepend=\ \ \ -Ep {var=value} prepend value to environment variable when running all tools
HeadlessBuilder_EnvVar_Remove=\ \ \ -Er {var} remove/unset the given environment variable
HeadlessBuilder_EnvVar_Replace=\ \ \ -E {var=value} replace/add value to environment variable when running all tools
-HeadlessBuilder_Error=Error:
+HeadlessBuilder_Error=Error:\u0020
HeadlessBuilder_help_requested=Help Requested
-HeadlessBuilder_invalid_argument=Invalid Arguments:
+HeadlessBuilder_invalid_argument=Invalid Arguments:\u0020
HeadlessBuilder_is_not_accessible=\ is not accessible\!
HeadlessBuilder_is_not_valid_in_workspace=\ is not valid in the workspace\!
HeadlessBuilder_no_arguments=No arguments specified.
HeadlessBuilder_NoConfigMatched=WARNING: No Config matched "
HeadlessBuilder_NoProjectMatched=WARNING: No Project matched "
HeadlessBuilder_Not_CDT_Proj=\ doesn't appear to be a CDT project. Skipping...
-HeadlessBuilder_project=Project:
+HeadlessBuilder_project=Project:\u0020
HeadlessBuilder_Quote="
-HeadlessBuilder_RegExSyntaxError=Project/Configuration Regular Expression Syntax error:
+HeadlessBuilder_RegExSyntaxError=Project/Configuration Regular Expression Syntax error:\u0020
HeadlessBuilder_Skipping=Skipping "
HeadlessBuilder_Skipping2=". Skipping...
-HeadlessBuilder_unknown_argument=Unknown argument:
-HeadlessBuilder_URI=URI:
-HeadlessBuilder_usage=Usage:
+HeadlessBuilder_unknown_argument=Unknown argument:\u0020
+HeadlessBuilder_URI=URI:\u0020
+HeadlessBuilder_usage=Usage:\u0020
HeadlessBuilder_usage_build=\ \ \ -build {project_name_reg_ex{/config_reg_ex} | all}
HeadlessBuilder_usage_clean_build=\ \ \ -cleanBuild {project_name_reg_ex{/config_reg_ex} | all}
HeadlessBuilder_usage_import=\ \ \ -import {[uri:/]/path/to/project}
@@ -60,6 +60,6 @@ HeadlessBuilder_ToolOption_Replace=\ \ \ -T {toolid} {optionid=value} r
HeadlessBuilder_ToolOption_Append=\ \ \ -Ta {toolid} {optionid=value} append to a tool option value in each configuration built
HeadlessBuilder_ToolOption_Prepend=\ \ \ -Tp {toolid} {optionid=value} prepend to a tool option value in each configuration built
HeadlessBuilder_ToolOption_Remove=\ \ \ -Tr {toolid} {optionid=value} remove a tool option value in each configuration built
-HeadlessBuilder_ToolOption_Types=\ \ \ Tool option values are parsed as a string, comma separated list of strings or a boolean based on the option's type
-HeadlessBuilder_Workspace=Workspace
+HeadlessBuilder_ToolOption_Types=\ \ \ Tool option values are parsed as a string, comma separated list of strings or a boolean based on the option's type\u0020
+HeadlessBuilder_Workspace=Workspace\u0020
HeadlessBuilder_WorkspaceInUse=Workspace already in use\!
diff --git a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/internal/core/PluginResources.properties b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/internal/core/PluginResources.properties
index d21bd9baa92..f56b381c147 100644
--- a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/internal/core/PluginResources.properties
+++ b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/internal/core/PluginResources.properties
@@ -41,8 +41,8 @@ ManagedMakeBuilder.message.build.finished=**** Build Finished ****
ManagedMakeBuilder.type.clean = Clean-only build
ManagedMakeBuider.type.incremental = Build
ManagedMakeBuider.type.rebuild = Rebuild
-ManagedMakeBuilder.warning.unsupported.configuration=**** WARNING: The "{0}" Configuration may not build ****\n**** because it uses the "{1}" ****\n**** tool-chain that is unsupported on this system. ****\n\n**** Attempting to build... ****
-ManagedMakeBuilder.error.prefix=Error:
+ManagedMakeBuilder.warning.unsupported.configuration=**** WARNING: The "{0}" Configuration may not build ****\n**** because it uses the "{1}" ****\n**** tool-chain that is unsupported on this system. ****\n\n**** Attempting to build... ****\u0020
+ManagedMakeBuilder.error.prefix=Error:\u0020
# Option exception messages
Option.error.bad_value_type=Type of option value is inconsistent with option type
@@ -53,7 +53,7 @@ ManagedBuildManager.error.null_owner=addTarget: null owner
ManagedBuildManager.error.owner_not_project=addTarget: owner not project
ManagedBuildManager.error.manifest_load_failed_title=Managed Build System Version Error
ManagedBuildManager.error.manifest.version.error=The version number defined in the plug-in manifest file\n{0}\nis greater than the version of the Managed Build System.\nThe definitions in the manifest file will not be loaded.
-ManagedBuildManager.error.manifest.header=Managed Build system manifest file error:
+ManagedBuildManager.error.manifest.header=Managed Build system manifest file error:\u0020
ManagedBuildManager.error.manifest.resolving=Unable to resolve the {0} identifier {1} in the {2} {3}.
ManagedBuildManager.error.manifest.duplicate=Duplicate identifier {1} for element type {0}.
ManagedBuildManager.error.manifest.icon=Could not load icon "{0}".
@@ -80,7 +80,7 @@ MakefileGenerator.message.gen.source.makefile=Generating makefile for source fol
MakefileGenerator.message.calc.delta=Calculating the delta for project {0}
MakefileGenerator.message.finding.sources=Finding source files in project {0}
MakefileGenerator.comment.module.list = Every subdirectory with source files must be described here
-MakefileGenerator.comment.module.variables = Add inputs and outputs from these tool invocations to the build variables
+MakefileGenerator.comment.module.variables = Add inputs and outputs from these tool invocations to the build variables\u0020
MakefileGenerator.comment.source.list = All of the sources participating in the build are defined here
MakefileGenerator.comment.build.rule = Each subdirectory must supply rules for building sources it contributes
MakefileGenerator.comment.build.toprules = Tool invocations
@@ -93,7 +93,7 @@ MakefileGenerator.comment.autodeps=Automatically-generated dependency list:
MakefileGenerator.comment.header=Automatically-generated file. Do not edit!
MakefileGenerator.error.spaces=Cannot generate makefile for folder with spaces in name
MakeBuilder.Invoking_Make_Builder=Invoking Make Builder...
-MakeBuilder.Invoking_Command=Invoking Command:
+MakeBuilder.Invoking_Command=Invoking Command:\u0020
MakeBuilder.Updating_project=Updating project...
MakeBuilder.Creating_Markers=Generating markers...
MakefileGenerator.warning.no.source=Nothing to build for project {0}
@@ -119,15 +119,15 @@ UserDefinedMacroSupplier.storeOutputStream.wrong.arguments=Failed to persist mac
# BuildMacroStatus messages
BuildMacroStatus.status.macro.undefined=Macro {0} is undefined
GeneratedMakefileBuilder.buildingSelectedFiles=Building Selected Files
-BuildDescriptionGnuMakefileGenerator.0=IO exception occurred:
-BuildDescriptionGnuMakefileGenerator.1=IO exception occurred:
+BuildDescriptionGnuMakefileGenerator.0=IO exception occurred:\u0020
+BuildDescriptionGnuMakefileGenerator.1=IO exception occurred:\u0020
BuildMacroStatus.status.reference.eachother=Macros {0} and {1} reference each other
BuildMacroStatus.status.reference.incorrect=Macro {0} reference is incorrect
BuildMacroStatus.status.macro.not.string=Macro {0} is not of String type
BuildMacroStatus.status.macro.not.stringlist=Macro {0} is not of String-list type
BuildMacroStatus.status.error=Error occurred
-BuildMacroStatus.value.undefined=
-BuildInfoFactory.Missing_Builder=Missing Builder:
+BuildMacroStatus.value.undefined=\u0020
+BuildInfoFactory.Missing_Builder=Missing Builder:\u0020
#ResourceChangeHandler messages
ResourceChangeHandler.buildInfoSerializationJob=Build Info Serialization
@@ -155,7 +155,7 @@ MbsMacroSupplier.2=tool parent must be one of configuration, toolchain, or resou
GnuLinkOutputNameProvider.0=tool parent must be one of configuration, toolchain, or resource configuration
CommonBuilder.1=customized builder created for builder that does not support customization
CommonBuilder.2=request for building non active configuration for the builder that does not support this
-CommonBuilder.6=Time consumed: {0} ms.
+CommonBuilder.6=Time consumed: {0} ms. \u0020
CommonBuilder.7=Info: Parallel threads used: {0}
CommonBuilder.0=can not clean programmatically: build workspace path is not specified
CommonBuilder.16=can not clean programmatically: build workspace path is not the project path
diff --git a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/internal/dataprovider/DataProviderMessages.properties b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/internal/dataprovider/DataProviderMessages.properties
index 205350074b1..e3d79e347fb 100644
--- a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/internal/dataprovider/DataProviderMessages.properties
+++ b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/internal/dataprovider/DataProviderMessages.properties
@@ -12,13 +12,13 @@
# Intel Corporation - Initial API and implementation
###############################################################################
ProjectConverter.0=failed to load the build info for the old-style project
-ProjectConverter.1=the specified project is not an old style make project, the owner ID is
+ProjectConverter.1=the specified project is not an old style make project, the owner ID is\u0020
ProjectConverter.10=project conversion failed
ProjectConverter.11=project conversion failed for project {0} with the following error:\n {1}
ProjectConverter.13=failed to load the build info for the old-style project
-ProjectConverter.2=the specified project is not an old style project: the number of configurations is
-ProjectConverter.3=the specified project is not an old style project: the number of configurations is
-ProjectConverter.4=the specified project is not an old style make project: nature IDs are
+ProjectConverter.2=the specified project is not an old style project: the number of configurations is\u0020
+ProjectConverter.3=the specified project is not an old style project: the number of configurations is\u0020
+ProjectConverter.4=the specified project is not an old style make project: nature IDs are\u0020
ProjectConverter.5=the specified project can not be converted
ProjectConverter.6=the project conversion failed
ProjectConverter.7=targets conversion
diff --git a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/projectconverter/PluginResources.properties b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/projectconverter/PluginResources.properties
index b8cb8fe4b05..b2a542560a0 100644
--- a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/projectconverter/PluginResources.properties
+++ b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/projectconverter/PluginResources.properties
@@ -16,7 +16,7 @@ UpdateManagedProject.notice=Updating managed Project
UpdateManagedProject20.0=Backing up the settings file for {0}
UpdateManagedProject20.1=Updating build settings for project {0}
UpdateManagedProject20.10=No configurations were found for project {0}
-UpdateManagedProject20.11=Build exception occurred while creating Managed Make project {0} : {1}
+UpdateManagedProject20.11=Build exception occurred while creating Managed Make project {0} : {1}\u0020
UpdateManagedProject20.2=convertConfiguration: Configuration {0} was not found
UpdateManagedProject20.3=convertToolRef: Tool ID attribute does not exist
UpdateManagedProject20.4=convertToolRef: Toolchain does not contain tools
@@ -34,7 +34,7 @@ UpdateManagedProject12.4=option {0} not found
UpdateManagedProject12.5=convertOptionRef: BuildException occurred: {0}
UpdateManagedProject12.6=Project type {0} not found
UpdateManagedProject12.7=No configurations were found for project {0}
-UpdateManagedProject12.8=Build exception occurred while creating Managed Make project {0} : {1}
+UpdateManagedProject12.8=Build exception occurred while creating Managed Make project {0} : {1}\u0020
UpdateManagedProject12.9=Toolchain does not contain tools
UpdateManagedProject12.10=Parent not found for tool {0}
UpdateManagedProject12.11=tool {0} not found
diff --git a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/newmake/internal/core/MakeMessages.properties b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/newmake/internal/core/MakeMessages.properties
index d800e0a3ce7..0085959edd3 100644
--- a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/newmake/internal/core/MakeMessages.properties
+++ b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/newmake/internal/core/MakeMessages.properties
@@ -14,7 +14,7 @@
MakeBuilder.buildError=Error launching builder ({0})
-BuildInfoFactory.Missing_Builder=Missing Builder:
+BuildInfoFactory.Missing_Builder=Missing Builder:\u0020
MakeTargetManager.add_to_workspace_root=Cannot add make targets to workspace root
MakeTargetManager.add_temporary_target=Cannot add temporary Target to manager.
@@ -24,29 +24,29 @@ MakeTargetManager.error_writing_file=Error writing target file
ProjectTargets.error_reading_project_targets=Error reading project targets.
-ScannerConfigBuilder.Invoking_Builder=Invoking scanner config builder on project
+ScannerConfigBuilder.Invoking_Builder=Invoking scanner config builder on project\u0020
ScannerConfigNature.Missing_Project=Missing or closed project
-ScannerConfigInfoFactory.Missing_Builder=Missing Builder:
+ScannerConfigInfoFactory.Missing_Builder=Missing Builder:\u0020
ExternalScannerInfoProvider.Provider_Error=Error launching external scanner info generator ({0})
-ExternalScannerInfoProvider.Reading_Specs=Reading specs ...
-ExternalScannerInfoProvider.Invoking_Command=Invoking Command:
-ExternalScannerInfoProvider.Parsing_Output=Parsing output ...
-ExternalScannerInfoProvider.Creating_Markers=Generating markers ...
+ExternalScannerInfoProvider.Reading_Specs=Reading specs ...\u0020
+ExternalScannerInfoProvider.Invoking_Command=Invoking Command:\u0020
+ExternalScannerInfoProvider.Parsing_Output=Parsing output ...\u0020
+ExternalScannerInfoProvider.Creating_Markers=Generating markers ...\u0020
-ScannerInfoCollector.Processing=Processing discovered scanner configuration ...
-ScannerInfoCollector.Updating=Updating Scanner Configuration for project
+ScannerInfoCollector.Processing=Processing discovered scanner configuration ...\u0020
+ScannerInfoCollector.Updating=Updating Scanner Configuration for project\u0020
-DiscoveredPathManager.File_Error_Message=Error accessing scanner config file for project
-DiscoveredPathManager.Info_Not_Serializable=Error persisting discovered scanner config
+DiscoveredPathManager.File_Error_Message=Error accessing scanner config file for project\u0020
+DiscoveredPathManager.Info_Not_Serializable=Error persisting discovered scanner config\u0020
GCCScannerConfigUtil.Error_Message=Error creating specs file
-ConsoleParser.Filename_Missing_Error_Message=CDT Path Discovery is unable to determine source file name in build command:
-ConsoleParser.Ambiguous_Filepath_Error_Message=CDT Path Discovery is unable to resolve ambiguous file path:
+ConsoleParser.Filename_Missing_Error_Message=CDT Path Discovery is unable to determine source file name in build command:\u0020
+ConsoleParser.Ambiguous_Filepath_Error_Message=CDT Path Discovery is unable to resolve ambiguous file path:\u0020
ConsoleParser.Working_Directory_Error_Message=CDT Path Discovery is unable to determine working directory of the build command
-ConsoleParser.Nonexistent_Include_Path_Error_Message=CDT Path Discovery has discovered and will ignore a non-existent include path:
+ConsoleParser.Nonexistent_Include_Path_Error_Message=CDT Path Discovery has discovered and will ignore a non-existent include path:\u0020
DiscoveredContainer.description=Discovered Paths
DiscoveredContainer.ScopeErrorMessage=Invalid scanner configuration discovery profile scope
diff --git a/build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.properties b/build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.properties
index baaa09d5722..cf5d25fae5e 100644
--- a/build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.properties
+++ b/build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.properties
@@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
-#
+#
# Contributors:
# Texas Instruments Inc. - initial API and implementation
# IBM Corporation
diff --git a/build/org.eclipse.cdt.managedbuilder.gnu.ui/templates/projecttemplates/EmptyProject/template.properties b/build/org.eclipse.cdt.managedbuilder.gnu.ui/templates/projecttemplates/EmptyProject/template.properties
index 8f14926a969..42a6173af0a 100644
--- a/build/org.eclipse.cdt.managedbuilder.gnu.ui/templates/projecttemplates/EmptyProject/template.properties
+++ b/build/org.eclipse.cdt.managedbuilder.gnu.ui/templates/projecttemplates/EmptyProject/template.properties
@@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
-#
+#
# Contributors:
# IBM Corporation - initial API and implementation
###############################################################################
diff --git a/build/org.eclipse.cdt.managedbuilder.gnu.ui/templates/projecttemplates/HelloWorldCAnsiProject/template.properties b/build/org.eclipse.cdt.managedbuilder.gnu.ui/templates/projecttemplates/HelloWorldCAnsiProject/template.properties
index 18a118eb20d..c9edd4b1316 100644
--- a/build/org.eclipse.cdt.managedbuilder.gnu.ui/templates/projecttemplates/HelloWorldCAnsiProject/template.properties
+++ b/build/org.eclipse.cdt.managedbuilder.gnu.ui/templates/projecttemplates/HelloWorldCAnsiProject/template.properties
@@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
-#
+#
# Contributors:
# Bala Torati (Symbian) - initial API and implementation
###############################################################################
diff --git a/build/org.eclipse.cdt.managedbuilder.gnu.ui/templates/projecttemplates/HelloWorldCCProject/template.properties b/build/org.eclipse.cdt.managedbuilder.gnu.ui/templates/projecttemplates/HelloWorldCCProject/template.properties
index 18a118eb20d..c9edd4b1316 100644
--- a/build/org.eclipse.cdt.managedbuilder.gnu.ui/templates/projecttemplates/HelloWorldCCProject/template.properties
+++ b/build/org.eclipse.cdt.managedbuilder.gnu.ui/templates/projecttemplates/HelloWorldCCProject/template.properties
@@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
-#
+#
# Contributors:
# Bala Torati (Symbian) - initial API and implementation
###############################################################################
diff --git a/build/org.eclipse.cdt.managedbuilder.gnu.ui/templates/projecttemplates/MakefileHelloWorldCCProject/template.properties b/build/org.eclipse.cdt.managedbuilder.gnu.ui/templates/projecttemplates/MakefileHelloWorldCCProject/template.properties
index 0bcff954080..af4bd86d70c 100644
--- a/build/org.eclipse.cdt.managedbuilder.gnu.ui/templates/projecttemplates/MakefileHelloWorldCCProject/template.properties
+++ b/build/org.eclipse.cdt.managedbuilder.gnu.ui/templates/projecttemplates/MakefileHelloWorldCCProject/template.properties
@@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
-#
+#
# Contributors:
# Bala Torati (Symbian) - initial API and implementation
###############################################################################
diff --git a/build/org.eclipse.cdt.managedbuilder.ui.tests/build.properties b/build/org.eclipse.cdt.managedbuilder.ui.tests/build.properties
index cf652996439..ab8f20d2598 100644
--- a/build/org.eclipse.cdt.managedbuilder.ui.tests/build.properties
+++ b/build/org.eclipse.cdt.managedbuilder.ui.tests/build.properties
@@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
-#
+#
# Contributors:
# Texas Instruments - initial API and implementation
###############################################################################
diff --git a/build/org.eclipse.cdt.managedbuilder.ui/build.properties b/build/org.eclipse.cdt.managedbuilder.ui/build.properties
index 2c617091dae..a22b5265eb1 100644
--- a/build/org.eclipse.cdt.managedbuilder.ui/build.properties
+++ b/build/org.eclipse.cdt.managedbuilder.ui/build.properties
@@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
-#
+#
# Contributors:
# IBM Corporation - initial API and implementation
###############################################################################
diff --git a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/internal/ui/Messages.properties b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/internal/ui/Messages.properties
index 667756723e6..2ef411bac4d 100644
--- a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/internal/ui/Messages.properties
+++ b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/internal/ui/Messages.properties
@@ -19,7 +19,7 @@ BuilderSettingsTab_1=Builder &type:
BuilderSettingsTab_2=External builder
BuilderSettingsTab_3=Internal builder
BuilderSettingsTab_4=&Use default build command
-BuilderSettingsTab_5=Build &command:
+BuilderSettingsTab_5=Build &command:\u0020
BuilderSettingsTab_6=Makefile generation
BuilderSettingsTab_7=&Generate Makefiles automatically
BuilderSettingsTab_8=&Expand Env. Variable Refs in Makefiles
@@ -27,7 +27,7 @@ BuilderSettingsTab_9=Build settings
BuilderSettingsTab_10=Stop on first build error
BuilderSettingsTab_EnableParallelBuild=Enable parallel build
BuilderSettingsTab_UseOptimalJobs=Use optimal jobs ({0})
-BuilderSettingsTab_UseParallelJobs=Use parallel jobs:
+BuilderSettingsTab_UseParallelJobs=Use parallel jobs:\u0020
BuilderSettingsTab_UseUnlimitedJobs=Use unlimited jobs
BuilderSettingsTab_14=Workbench Build Behavior
BuilderSettingsTab_15=Workbench build type:
@@ -45,12 +45,12 @@ BuildStepsTab_3=Post-build steps
BuildStepsTab_4=Resource Custom Build Step
BuildStepsTab_5=Additional input file name(s):
BuildStepsTab_6=Output file name(s):
-ArtifactTab_0=Artifact Type:
-ArtifactTab_1=Artifact name:
-ArtifactTab_2=Artifact extension:
+ArtifactTab_0=Artifact Type:\u0020
+ArtifactTab_1=Artifact name:\u0020
+ArtifactTab_2=Artifact extension:\u0020
ArtifactTab_3=Output prefix:
CPropertyVarsTab_0=Show system variables
-CPropertyVarsTab_Description=Build Variables are IDE only variables, which can be used for string substitution when defining external builder configuration, such as environment variable value or command line parameter in form of ${VAR}, internal builder may use them directly.
+CPropertyVarsTab_Description=Build Variables are IDE only variables, which can be used for string substitution when defining external builder configuration, such as environment variable value or command line parameter in form of ${VAR}, internal builder may use them directly.\u0020
DiscoveryTab_0=Discovery profiles scope
DiscoveryTab_1=Per Language
DiscoveryTab_2=Configuration-wide
@@ -63,20 +63,20 @@ DiscoveryTab_Clear=Clear
DiscoveryTab_ClearDisoveredEntries=Clear discovered entries now:
DiscoveryTab_ClearEntries=Clear entries
DiscoveryTab_DiscoveredEntriesCleared=Discovered entries cleared. Scanner discovery will re-aquire the settings when run (normally during the build).
-DiscoveryTab_ErrorClearingEntries=Error clearing entries:
+DiscoveryTab_ErrorClearingEntries=Error clearing entries:\u0020
ToolSelectionDialog_0=Select tools
ToolSelectionDialog_1=Available tools
ToolSelectionDialog_2=Used tools
ToolSelectionDialog_7=Tool conflict:
-ToolSelectionDialog_8=Tool does not support managed build \!
-ToolSelectionDialog_9=Props not defined \!
-ToolSelectionDialog_10=Props not supported \!
-ToolSelectionDialog_11=Req. props not supported \!
+ToolSelectionDialog_8=Tool does not support managed build \!\u0020
+ToolSelectionDialog_9=Props not defined \!\u0020
+ToolSelectionDialog_10=Props not supported \!\u0020
+ToolSelectionDialog_11=Req. props not supported \!\u0020
ToolSelectionDialog_12=Add tool -->
ToolSelectionDialog_13=<-- Remove tool
ToolSelectionDialog_14=<<- Replace ->>
ToolSelectionDialog_15=Allow all changes
-ToolSelectionDialog_16=This tool can replace
+ToolSelectionDialog_16=This tool can replace\u0020
ToolChainEditTab_0=Display compatible toolchains only
ToolChainEditTab_1=Current toolchain:
ToolChainEditTab_10=builder
@@ -92,8 +92,8 @@ ToolChainEditTab_3=Used tools
ToolChainEditTab_4=Select Tools...
ToolChainEditTab_5=Select tool
ToolChainEditTab_6=-- NO TOOL --
-ToolChainEditTab_7=incompatibility with
-ToolChainEditTab_8=source extension conflict with
+ToolChainEditTab_7=incompatibility with\u0020
+ToolChainEditTab_8=source extension conflict with\u0020
ToolChainEditTab_9=toolchain
ToolChainEditTab_OrphanedBuilder=Orphaned builder {0} ({1})
ToolChainEditTab_OrphanedToolchain=Orphaned toolchain {0} ({1})
@@ -109,7 +109,7 @@ WizardDefaultsTab_1=Group old-style toolchains to <Others> folder
PreferredToolchainsTab_0=Preferred toolchain will be selected by default in Wizard
PreferredToolchainsTab_1=Make toolchain(s) preferred
PreferredToolchainsTab_2=Make toolchain(s) not preferred
-PreferredToolchainsTab_3=Preferred toolchain(s):
+PreferredToolchainsTab_3=Preferred toolchain(s):\u0020
ToolSettingsTab_0=Hover over an option to display its tooltip
BuildOptionSettingsUI_0=No tooltip is available for this option
ScannerConfigOptionsDialog_scGroup_enabled_button=Automate discovery of paths and symbols
@@ -154,10 +154,10 @@ NewMakeProjFromExistingPage_DirReadOnlyError=Directory is read-only
BuildPropertyPage_error_Unknown_tree_element=Unknown type of element in tree of type {0}
# ----------- Managed Build Custom Wizard Page Manager Error Strings -----------
-MBSCustomPageManager_error0=Unknown element type
-MBSCustomPageManager_error1=\ for extension point
-MBSCustomPageManager_error2=Unknown child element type
-MBSCustomPageManager_error3=\ for wizardPage element in extension point
+MBSCustomPageManager_error0=Unknown element type\u0020
+MBSCustomPageManager_error1=\ for extension point\u0020
+MBSCustomPageManager_error2=Unknown child element type\u0020
+MBSCustomPageManager_error3=\ for wizardPage element in extension point\u0020
MBSCustomPageManager_error4=Missing projectType ID
MBSCustomPageManager_error5=Missing toolchain ID
MBSCustomPageManager_error6=Missing nature ID
@@ -168,7 +168,7 @@ MacrosBlock_label_header_name=Name
MacrosBlock_label_header_type=Type
MacrosBlock_label_header_value=Value
MacrosBlock_label_delete_confirm_title=Build Variable Deletion Confirmation
-MacrosBlock_label_delete_confirm_message=Are you sure you want to delete the selected user Build Variable(s)?
+MacrosBlock_label_delete_confirm_message=Are you sure you want to delete the selected user Build Variable(s)?\u0020
MacrosBlock_label_delete_all_confirm_title=Build Variables Deletion Confirmation
MacrosBlock_label_delete_all_confirm_message=Are you sure you want to delete all user Build Variables?
MacrosBlock_label_value_eclipse_dynamic=<ECLIPSE DYNAMIC VARIABLE>
@@ -231,7 +231,7 @@ NewConfiguration_label_description=Description:
NewConfiguration_label_group=Copy settings from
NewConfiguration_label_copy=Default configuration:
NewConfiguration_label_clone=Existing configuration:
-NewConfiguration_label_warning=Note: The configuration name will be used as a directory name in the file system. Please ensure that it is valid for your platform.
+NewConfiguration_label_warning=Note: The configuration name will be used as a directory name in the file system. Please ensure that it is valid for your platform.\u0020
NewConfiguration_error_duplicateName=A configuration named "{0}" already exists.
NewConfiguration_error_caseName=A configuration name that differs only in case to "{0}" exists.
NewConfiguration_error_invalidName=Special characters are not allowed in the name.
@@ -277,12 +277,12 @@ CConfigWizardPage_0=Select Configurations
CConfigWizardPage_1=Select platforms and configurations you wish to deploy on
CConfigWizardPage_4=Project type:
CConfigWizardPage_5=Toolchains:
-CConfigWizardPage_6=Configurations:
+CConfigWizardPage_6=Configurations:\u0020
CConfigWizardPage_7=Select all
CConfigWizardPage_8=Deselect all
CConfigWizardPage_10=At least one configuration should be available. Project cannot be created.
CConfigWizardPage_11=At least one configuration should be selected. Please check needed configurations.
-CConfigWizardPage_12=Use "Advanced settings" button to edit project's properties.\n\nAdditional configurations can be added after project creation.\nUse "Manage configurations" buttons either on toolbar or on property pages.
+CConfigWizardPage_12=Use "Advanced settings" button to edit project's properties.\n\nAdditional configurations can be added after project creation.\nUse "Manage configurations" buttons either on toolbar or on property pages.\u0020
CConfigWizardPage_13=Advanced settings...
CMainWizardPage_0=Project type:
CDTConfigWizardPage_0=Select configurations
diff --git a/build/org.eclipse.cdt.meson.ui/src/org/eclipse/cdt/internal/meson/ui/messages.properties b/build/org.eclipse.cdt.meson.ui/src/org/eclipse/cdt/internal/meson/ui/messages.properties
index e721700e350..b8791cc83c0 100644
--- a/build/org.eclipse.cdt.meson.ui/src/org/eclipse/cdt/internal/meson/ui/messages.properties
+++ b/build/org.eclipse.cdt.meson.ui/src/org/eclipse/cdt/internal/meson/ui/messages.properties
@@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
-#
+#
# Contributors:
# Red Hat Inc. - initial implementation
################################################################################
@@ -28,7 +28,7 @@ MesonPreferencePage_Files=Toolchain Files
MesonPreferencePage_Path=Toolchain File
MesonPreferencePage_Remove=Remove
MesonPreferencePage_Toolchain=Toolchain
-MesonPropertyPage_FailedToStartMesonGui_Body=Failed to run the Meson GUI:
+MesonPropertyPage_FailedToStartMesonGui_Body=Failed to run the Meson GUI:\u0020
MesonPropertyPage_FailedToStartMesonGui_Title=Failed to run Meson GUI
MesonPropertyPage_LaunchMesonGui=Launch Meson GUI...
NewMesonProjectWizard_Description=Specify properties of new Meson project.
diff --git a/build/org.eclipse.cdt.meson.ui/src/org/eclipse/cdt/internal/meson/ui/wizards/wizardmessages.properties b/build/org.eclipse.cdt.meson.ui/src/org/eclipse/cdt/internal/meson/ui/wizards/wizardmessages.properties
index 595a2514485..b155443a85a 100644
--- a/build/org.eclipse.cdt.meson.ui/src/org/eclipse/cdt/internal/meson/ui/wizards/wizardmessages.properties
+++ b/build/org.eclipse.cdt.meson.ui/src/org/eclipse/cdt/internal/meson/ui/wizards/wizardmessages.properties
@@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
-#
+#
# Contributors:
# Red Hat Inc. - Initial Contribution
################################################################################
diff --git a/build/org.eclipse.cdt.meson.ui/src/org/eclipse/cdt/meson/ui/properties/messages.properties b/build/org.eclipse.cdt.meson.ui/src/org/eclipse/cdt/meson/ui/properties/messages.properties
index 4c1ae0b18b8..4190d44729e 100644
--- a/build/org.eclipse.cdt.meson.ui/src/org/eclipse/cdt/meson/ui/properties/messages.properties
+++ b/build/org.eclipse.cdt.meson.ui/src/org/eclipse/cdt/meson/ui/properties/messages.properties
@@ -7,7 +7,7 @@
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
-#
+#
# Contributors:
# Red Hat Inc. - initial implementation
################################################################################

Back to the top