Index: modules/block/block.module =================================================================== RCS file: /cvs/drupal/drupal/modules/block/block.module,v retrieving revision 1.346 diff -u -p -r1.346 block.module --- modules/block/block.module 27 Jun 2009 10:10:06 -0000 1.346 +++ modules/block/block.module 28 Jun 2009 15:22:37 -0000 @@ -79,8 +79,8 @@ function block_help($path, $arg) { $output .= '

' . t('For more information, see the online handbook entry for Block module.', array('@block' => 'http://drupal.org/handbook/modules/block/')) . '

'; return $output; case 'admin/build/block': - $output = '

' . 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. To change the region or order of a block, grab a drag-and-drop handle under the Block column and drag the block to a new location in the list. (Grab a handle by clicking and holding the mouse while hovering over a handle icon.) 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 Save blocks button at the bottom of the page.') . '

'; - $output .= '

' . t('Click the configure link next to each block to configure its specific title and visibility settings. Use the add block page to create a custom block.', array('@add-block' => url('admin/build/block/add'))) . '

'; + $output = '

' . t("Drag and drop blocks into regions to place them anywhere on the page. Regions are named e.g. 'Header', 'Footer', 'Right sidebar' or 'Content'. After saving the changes the blocks show up in their new location.") . '

'; + $output .= '

' . t("Configure the blocks or create a new one.", array('@add-block' => url('admin/build/block/add'))) . '

'; return $output; case 'admin/build/block/add': return '

' . 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 blocks administration page to be visible.', array('@blocks' => url('admin/build/block'))) . '

';