Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions org.eclipse.jdt.ui/plugin.properties
Original file line number Diff line number Diff line change
Expand Up @@ -375,8 +375,8 @@ NewJavaPackage.description=Create a Java package
NewJavaClass.label= Class
NewJavaClass.description=Create a Java class

NewCompact.label= Compact
NewCompact.description=Create a Compact Source file
NewCompact.label= Compact Source File
NewCompact.description=Create a Compact Source File

NewJavaInterface.label= Interface
NewJavaInterface.description= Create a Java interface
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -977,6 +977,7 @@ private NewWizardMessages() {
public static String NewCompactCreationWizard_title;
public static String NewCompactWizardPage_description;
public static String NewCompactWizardModuleError;
public static String NewCompactCreationWizard_HeadTitle;

static {
NLS.initializeMessages(BUNDLE_NAME, NewWizardMessages.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,9 +196,10 @@ NewClassWizardPage_methods_inherited=In&herited abstract methods

# ------- NewCompactSourceWizardPage -------

NewCompactCreationWizard_title=New Compact Source
NewCompactWizardPage_description=Create a new Compact File Source.
NewCompactCreationWizard_title=New Compact Source File
NewCompactWizardPage_description=Create a new Compact Source File.
NewCompactWizardModuleError=Compact source files are not allowed in a project with a named module
NewCompactCreationWizard_HeadTitle=Compact Source File

# ------- NewRecordWizardPage -------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public class NewCompactWizardPage extends NewTypeWizardPage {
*/
public NewCompactWizardPage() {
super(TYPE, PAGE_NAME);
setTitle(NewWizardMessages.NewCompactCreationWizard_title);
setTitle(NewWizardMessages.NewCompactCreationWizard_HeadTitle);
setDescription(NewWizardMessages.NewCompactWizardPage_description);
}

Expand Down
Loading