Index: modules/block/block.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/block/block.admin.inc,v
retrieving revision 1.54
diff -u -r1.54 block.admin.inc
--- modules/block/block.admin.inc	31 Aug 2009 17:06:08 -0000	1.54
+++ modules/block/block.admin.inc	5 Sep 2009 18:11:05 -0000
@@ -495,6 +495,7 @@
   
   // Store regions per theme for this block
   foreach ($form_state['values']['regions'] as $theme => $region) {
+    $assigned = TRUE;
     db_merge('block')
       ->key(array('theme' => $theme, 'delta' => $delta, 'module' => $form_state['values']['module']))
       ->fields(array(
@@ -506,6 +507,9 @@
   }
 
   drupal_set_message(t('The block has been created.'));
+  if ($assigned) {
+  	  drupal_set_message(t('The block has not yet assigned to a <em>region</em>. Manage <a href="#disabled">disabled blocks</a> to move the new block to a region as demonstrated on this page. '));
+  }
   cache_clear_all();
   $form_state['redirect'] = 'admin/structure/block';
 }
@@ -551,7 +555,7 @@
   global $theme_key;
 
   $block_regions = system_region_list($theme_key, REGIONS_VISIBLE);
-  $variables['block_regions'] = $block_regions + array(BLOCK_REGION_NONE => t('Disabled'));
+  $variables['block_regions'] = $block_regions + array(BLOCK_REGION_NONE => t('<a name="disabled"></a>Disabled blocks'));
 
   foreach ($block_regions as $key => $value) {
     // Initialize an empty array for the region.
Index: modules/block/block.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/block/block.module,v
retrieving revision 1.373
diff -u -r1.373 block.module
--- modules/block/block.module	31 Aug 2009 17:06:08 -0000	1.373
+++ modules/block/block.module	5 Sep 2009 18:11:05 -0000
@@ -30,9 +30,8 @@
       $output .= '<p>' . t('For more information, see the online handbook entry for <a href="@block">Block module</a>.', array('@block' => 'http://drupal.org/handbook/modules/block/')) . '</p>';
       return $output;
     case 'admin/structure/block':
-      $output = '<p>' . t('This page provides a drag-and-drop interface for assigning a block to a region, and for controlling the order of blocks within regions. Since not all themes implement the same regions, or display regions in the same way, blocks are positioned on a per-theme basis. Remember that your changes will not be saved until you click the <em>Save blocks</em> button at the bottom of the page.') . '</p>';
-      $output .= '<p>' . t('Click the <em>configure</em> link next to each block to configure its specific title and visibility settings. Use the <a href="@add-block">add block page</a> to create a custom block.', array('@add-block' => url('admin/structure/block/add'))) . '</p>';
-      return $output;
+      $output = '<p>' . t('Assign <em>blocks</em> to appear in <em>regions</em> demonstrated on this page, as listed below. Drag and drop to rearrange their order. Changes appear after you save. ') . '</p>';
+      $output .= '<p>' . t('Click the <em>configure</em> link next to each block to configure settings. Manage <a href="#disabled">disabled blocks</a> at the bottom of this page. <a href="@add-block">Add a custom block</a>.', array('@add-block' => url('admin/structure/block/add'))) . '</p>';     return $output;
     case 'admin/structure/block/add':
       return '<p>' . t('Use this page to create a new custom block. New blocks are disabled by default, and must be moved to a region on the <a href="@blocks">blocks administration page</a> to be visible.', array('@blocks' => url('admin/structure/block'))) . '</p>';
   }
@@ -207,7 +206,7 @@
     if ($item['path'] == 'admin/structure/block') {
       $visible_regions = system_region_list($theme, REGIONS_VISIBLE);
       if (isset($visible_regions[$region])) {
-        $description = '<div class="block-region">' . $all_regions[$region] . '</div>';
+        $description = '<div class="block-region">' . $all_regions[$region] . ' ' . t('Region') . '</div>';
         $page[$region]['block_description'] = array(
           '#markup' => $description,
           '#weight' => 15,
