[106045]commited for NA
diff --git a/plugins/org.eclipse.wst.common.frameworks.ui/property_files/wtpcommonui.properties b/plugins/org.eclipse.wst.common.frameworks.ui/property_files/wtpcommonui.properties
index 9e8a4b5..95742be 100644
--- a/plugins/org.eclipse.wst.common.frameworks.ui/property_files/wtpcommonui.properties
+++ b/plugins/org.eclipse.wst.common.frameworks.ui/property_files/wtpcommonui.properties
@@ -32,4 +32,5 @@
 Delete_UI_0=Delete
 Name_=Project Name:
 Browse_=Browse:
-Project_location_=Project Location:
\ No newline at end of file
+Project_location_=Project Location:
+MULTIPLE_MODULE_PREF_TEXT=Allow Multiple modules per project
\ No newline at end of file
diff --git a/plugins/org.eclipse.wst.common.frameworks.ui/wtp_ui/org/eclipse/wst/common/frameworks/internal/ui/FlexibleJavaProjectPreferencePage.java b/plugins/org.eclipse.wst.common.frameworks.ui/wtp_ui/org/eclipse/wst/common/frameworks/internal/ui/FlexibleJavaProjectPreferencePage.java
index 81e407e..848cb35 100644
--- a/plugins/org.eclipse.wst.common.frameworks.ui/wtp_ui/org/eclipse/wst/common/frameworks/internal/ui/FlexibleJavaProjectPreferencePage.java
+++ b/plugins/org.eclipse.wst.common.frameworks.ui/wtp_ui/org/eclipse/wst/common/frameworks/internal/ui/FlexibleJavaProjectPreferencePage.java
@@ -28,7 +28,7 @@
 		composite.setLayout(rowLayout);
 
 		alloMultipleButton = new Button(composite, SWT.CHECK);
-		alloMultipleButton.setText("Allow Multiple modules per project");
+		alloMultipleButton.setText(WTPCommonUIResourceHandler.getString("MULTIPLE_MODULE_PREF_TEXT")); //$NON-NLS-1$
 		alloMultipleButton.setEnabled(true);
 		
 		boolean val = FlexibleJavaProjectPreferenceUtil.getMultipleModulesPerProjectProp();