1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Fix non-externalized string.

This commit is contained in:
Markus Schorn 2008-11-18 08:54:07 +00:00
parent 66b4d64298
commit 1d285a5326
2 changed files with 2 additions and 1 deletions

View file

@ -499,6 +499,7 @@ StdProjectTypeHandler.3=creation Make project: IBuilder is null
CDTConfigWizardPage.0=Select configurations CDTConfigWizardPage.0=Select configurations
CDTCommonProjectWizard.0=Old project will be overridden CDTCommonProjectWizard.0=Old project will be overridden
CDTCommonProjectWizard.1=Existing project settings will be overridden.\nImport feature can be used instead to preserve old settings.\nOK to override ? CDTCommonProjectWizard.1=Existing project settings will be overridden.\nImport feature can be used instead to preserve old settings.\nOK to override ?
CDTCommonProjectWizard.creatingProject=Creating project
NewModelProjectWizard.0=CDT Project NewModelProjectWizard.0=CDT Project
NewModelProjectWizard.1=Create CDT project of selected type NewModelProjectWizard.1=Create CDT project of selected type
NewModelProjectWizard.2=C++ Project NewModelProjectWizard.2=C++ Project

View file

@ -293,7 +293,7 @@ implements IExecutableExtension, IWizardWithMemory
*/ */
public IProject createIProject(final String name, final URI location, IProgressMonitor monitor) throws CoreException{ public IProject createIProject(final String name, final URI location, IProgressMonitor monitor) throws CoreException{
monitor.beginTask("createIProject", 100); monitor.beginTask(UIMessages.getString("CDTCommonProjectWizard.creatingProject"), 100); //$NON-NLS-1$
if (newProject != null) return newProject; if (newProject != null) return newProject;