diff --git a/core/modules/language/language.admin.inc b/core/modules/language/language.admin.inc
index a601d00..dfb0a8b 100644
--- a/core/modules/language/language.admin.inc
+++ b/core/modules/language/language.admin.inc
@@ -353,6 +353,10 @@ function language_admin_add_predefined_form_submit($form, &$form_state) {
   );
   language_save($language);
   drupal_set_message(t('The language %language has been created and can now be used.', array('%language' => t($predefined[$langcode][0]))));
+  
+  // Tell the user they have the option to add a language switcher block
+  // to their theme so they can switch between the languages.
+  drupal_set_message(t('A block called: "Language switcher" can now be added to your prefered region. You can enable the block at the <a href="@block-admin">blocks administration page</a>.', array('@block-admin' => 'admin/structure/block')));
   $form_state['redirect'] = 'admin/config/regional/language';
 }
 
