*** empty log message ***
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/IntroPluginResources.properties b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/IntroPluginResources.properties
index 1a9f937..13d40a6 100644
--- a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/IntroPluginResources.properties
+++ b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/IntroPluginResources.properties
@@ -20,7 +20,6 @@
 Browser_backwardButton_tooltip = Navigate to previous topic 
 Browser_invalidConfig = Invalid configuration; can not set browser content
 
-
 # Dialogs
 # --------
 MessageDialog_errorTitle		= Intro Error
@@ -32,14 +31,15 @@
 
 StandbyPart_returnToIntro = Return to Welcome
 StandbyPart_returnTo = Return to
-StandbyPart_failedToCreate = Failed to create standby content part with id: {0}
-StandbyPart_nonDefined = No standby content part defined with id: {0}
+StandbyPart_failedToCreate = Failed to create standby content part with id: {0}.\
+							\nCheck log file for details.
+StandbyPart_nonDefined = No standby content part defined with id: {0}. 
 StandbyPart_canNotRestore =  Standby content part could not be restored.
 
 EmptyStandbyContentPart_text = No standby content available.
 
 IntroURL_failedToDecode = Failed to decode message: {0}
-IntroURL_badCommand = Invalid Intro URL: {0}
+IntroURL_badCommand = Unknown Intro URL: {0}
 HyperlinkAdapter_urlIs = URL of this link is: 
 HTML_embeddedLink = Link to embedded data
 StaticHTML_welcome = Welcome...
@@ -50,7 +50,7 @@
 IntroLaunchBar_restore_tooltip=Return to Welcome
 
 # Misc
-#-------
+# -------
 IntroPart_showContentButton_tooltip = Show Intro Tree 
 
 
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/parts/StandbyPart.java b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/parts/StandbyPart.java
index d950cc9..a3587ab 100644
--- a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/parts/StandbyPart.java
+++ b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/parts/StandbyPart.java
@@ -243,8 +243,8 @@
                     }
                 }
 
-                // no content part defined with the passed partId, show empty
-                // part and signal failure.
+                // failed to create the standby part, show empty part and signal
+                // failure.
                 String message = NLS.bind(Messages.StandbyPart_failedToCreate,
                     partId);
                 addAndShowEmptyPart(message);
@@ -255,7 +255,7 @@
 
         // no content part defined with the passed partId, show empty part and
         // signal failure.
-        String message = NLS.bind(Messages.StandbyPart_failedToCreate, partId);
+        String message = NLS.bind(Messages.StandbyPart_nonDefined, partId);
         addAndShowEmptyPart(message);
         return false;
     }