Typo & properties clean-up
diff --git a/plugins/org.eclipse.ldt.ui/OSGI-INF/l10n/bundle.properties b/plugins/org.eclipse.ldt.ui/OSGI-INF/l10n/bundle.properties
index af953ad..18e407d 100644
--- a/plugins/org.eclipse.ldt.ui/OSGI-INF/l10n/bundle.properties
+++ b/plugins/org.eclipse.ldt.ui/OSGI-INF/l10n/bundle.properties
@@ -50,6 +50,5 @@
 decorator.label.doclua = Decorator for doclua files.
 rename.command.label = Rename a variable
 
-page.name.0 = Grammars
 preference.page.name.grammars = Grammars
 property.page.name.grammar = Grammar
\ No newline at end of file
diff --git a/plugins/org.eclipse.ldt.ui/plugin.xml b/plugins/org.eclipse.ldt.ui/plugin.xml
index d3cf0c1..bc19977 100644
--- a/plugins/org.eclipse.ldt.ui/plugin.xml
+++ b/plugins/org.eclipse.ldt.ui/plugin.xml
@@ -101,7 +101,7 @@
     <page
           category="org.eclipse.ldt.ui.lua.page"
           class="org.eclipse.ldt.ui.internal.properties.GrammarPropertyPage"
-          id="org.eclipse.ldt.ui.page1"
+          id="org.eclipse.ldt.ui.lua.grammar"
           name="%property.page.name.grammar">
        <enabledWhen>
           <adapt
diff --git a/plugins/org.eclipse.ldt.ui/src/org/eclipse/ldt/ui/wizards/LuaProjectCreator.java b/plugins/org.eclipse.ldt.ui/src/org/eclipse/ldt/ui/wizards/LuaProjectCreator.java
index 4490cff..360053e 100644
--- a/plugins/org.eclipse.ldt.ui/src/org/eclipse/ldt/ui/wizards/LuaProjectCreator.java
+++ b/plugins/org.eclipse.ldt.ui/src/org/eclipse/ldt/ui/wizards/LuaProjectCreator.java
@@ -64,7 +64,7 @@
 		if (createSourceFolderStep != null)
 			addStep(IProjectCreateStep.KIND_FINISH, 0, createSourceFolderStep, (IWizardPage) locationGroup);
 
-		ProjectCreateStep setGrammarStep = createGrammaStep();
+		ProjectCreateStep setGrammarStep = createGrammarStep();
 		if (setGrammarStep != null)
 			addStep(IProjectCreateStep.KIND_FINISH, 0, setGrammarStep, (IWizardPage) locationGroup);
 	}
@@ -227,7 +227,7 @@
 		return new CreateDefaultSourceFolderProjectCreateStep();
 	}
 
-	protected ProjectCreateStep createGrammaStep() {
+	protected ProjectCreateStep createGrammarStep() {
 		return new SetGrammarStep();
 	}
 }