Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 7017
Collapse All | Expand All

(-).vcm_meta (+7 lines)
Lines 1-6 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project-description>
2
<project-description>
3
	<comment></comment>
3
	<nature id="org.eclipse.jdt.core.javanature"/>
4
	<nature id="org.eclipse.jdt.core.javanature"/>
5
	<reference project-name="org.eclipse.core.resources"/>
6
	<reference project-name="org.apache.xerces"/>
7
	<reference project-name="org.eclipse.help"/>
8
	<reference project-name="org.eclipse.swt"/>
9
	<reference project-name="org.eclipse.core.runtime"/>
10
	<reference project-name="org.eclipse.core.boot"/>
4
	<builder name="org.eclipse.jdt.core.javabuilder">
11
	<builder name="org.eclipse.jdt.core.javabuilder">
5
	</builder>
12
	</builder>
6
</project-description>
13
</project-description>
(-)Eclipse UI/org/eclipse/ui/messages.properties (+3 lines)
Lines 392-399 Link Here
392
WizardNewProjectCreationPage.projectNameEmpty = Project name must be specified
392
WizardNewProjectCreationPage.projectNameEmpty = Project name must be specified
393
WizardNewProjectCreationPage.projectExistsMessage = Project already exists.
393
WizardNewProjectCreationPage.projectExistsMessage = Project already exists.
394
WizardNewProjectCreationPage.useDefaultLabel = Use &default location
394
WizardNewProjectCreationPage.useDefaultLabel = Use &default location
395
WizardNewProjectCreationPage.useDefaultLocationLabel = Use &default
395
WizardNewProjectCreationPage.nameLabel = &Project name:
396
WizardNewProjectCreationPage.nameLabel = &Project name:
396
WizardNewProjectCreationPage.directoryLabel = Select the location directory.
397
WizardNewProjectCreationPage.directoryLabel = Select the location directory.
398
WizardNewProjectCreationPage.projectContentsLabel = &Project contents:
399
WizardNewProjectCreationPage.projectLocationLabel = &Directory:
397
WizardNewProjectCreationPage.locationLabel = &Location:
400
WizardNewProjectCreationPage.locationLabel = &Location:
398
WizardNewProjectCreationPage.browseLabel = B&rowse...
401
WizardNewProjectCreationPage.browseLabel = B&rowse...
399
WizardNewProjectReferences.title = &Referenced projects:
402
WizardNewProjectReferences.title = &Referenced projects:
(-)Eclipse UI/org/eclipse/ui/dialogs/WizardNewProjectCreationPage.java (-2 / +10 lines)
Lines 110-117 Link Here
110
	projectGroup.setLayout(layout);
110
	projectGroup.setLayout(layout);
111
	projectGroup.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
111
	projectGroup.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
112
112
113
	// new project label
114
	Label projectContentsLabel = new Label(projectGroup,SWT.NONE);
115
	projectContentsLabel.setText(WorkbenchMessages.getString("WizardNewProjectCreationPage.projectContentsLabel")); //$NON-NLS-1$
116
117
	GridData labelData = new GridData();
118
	labelData.horizontalSpan = 3;
119
	projectContentsLabel.setLayoutData(labelData);
120
113
	final Button useDefaultsButton = new Button(projectGroup, SWT.CHECK | SWT.RIGHT);
121
	final Button useDefaultsButton = new Button(projectGroup, SWT.CHECK | SWT.RIGHT);
114
	useDefaultsButton.setText(WorkbenchMessages.getString("WizardNewProjectCreationPage.useDefaultLabel")); //$NON-NLS-1$
122
	useDefaultsButton.setText(WorkbenchMessages.getString("WizardNewProjectCreationPage.useDefaultLocationLabel")); //$NON-NLS-1$
115
	useDefaultsButton.setSelection(this.useDefaults);
123
	useDefaultsButton.setSelection(this.useDefaults);
116
124
117
	GridData buttonData = new GridData();
125
	GridData buttonData = new GridData();
Lines 172-178 Link Here
172
180
173
	// location label
181
	// location label
174
	locationLabel = new Label(projectGroup,SWT.NONE);
182
	locationLabel = new Label(projectGroup,SWT.NONE);
175
	locationLabel.setText(WorkbenchMessages.getString("WizardNewProjectCreationPage.locationLabel")); //$NON-NLS-1$
183
	locationLabel.setText(WorkbenchMessages.getString("WizardNewProjectCreationPage.projectLocationLabel")); //$NON-NLS-1$
176
	locationLabel.setEnabled(enabled);
184
	locationLabel.setEnabled(enabled);
177
185
178
	// project location entry field
186
	// project location entry field
(-)Eclipse UI/org/eclipse/ui/internal/PerspectiveComboBox.java (-1 / +2 lines)
Lines 99-105 Link Here
99
		IPerspectiveDescriptor activePersp = page.getPerspective();
99
		IPerspectiveDescriptor activePersp = page.getPerspective();
100
			
100
			
101
		// Fill the combo box.
101
		// Fill the combo box.
102
		ArrayList perspArray = getMruShortcuts();
102
		ArrayList perspArray = getMruShortcuts();	
103
		
103
		for (int nX = 0; nX < perspArray.size(); nX ++) {
104
		for (int nX = 0; nX < perspArray.size(); nX ++) {
104
			IPerspectiveDescriptor persp = (IPerspectiveDescriptor)perspArray.get(nX);
105
			IPerspectiveDescriptor persp = (IPerspectiveDescriptor)perspArray.get(nX);
105
			combo.add(persp.getLabel());	
106
			combo.add(persp.getLabel());	

Return to bug 7017