Index: modules/block/block.admin.inc =================================================================== RCS file: /cvs/drupal/drupal/modules/block/block.admin.inc,v retrieving revision 1.35 diff -u -p -r1.35 block.admin.inc --- modules/block/block.admin.inc 11 Feb 2009 03:38:46 -0000 1.35 +++ modules/block/block.admin.inc 17 Mar 2009 02:24:02 -0000 @@ -197,7 +197,7 @@ function block_admin_configure(&$form_st $form['page_vis_settings']['pages'] = array('#type' => 'value', '#value' => $edit['pages']); } else { - $options = array(t('Show on every page except the listed pages.'), t('Show on only the listed pages.')); + $options = array(t('Show on every page except those specified below.'), t('Show on only the pages specified below.')); $description = t("Enter one page per line as Drupal paths. The '*' character is a wildcard. Example paths are %blog for the blog page and %blog-wildcard for every personal blog. %front is the front page.", array('%blog' => 'blog', '%blog-wildcard' => 'blog/*', '%front' => '')); if ($access) { Index: modules/block/block.module =================================================================== RCS file: /cvs/drupal/drupal/modules/block/block.module,v retrieving revision 1.323 diff -u -p -r1.323 block.module --- modules/block/block.module 8 Mar 2009 21:25:17 -0000 1.323 +++ modules/block/block.module 17 Mar 2009 02:24:03 -0000 @@ -66,21 +66,21 @@ define('BLOCK_CACHE_GLOBAL', 0x0008); function block_help($path, $arg) { switch ($path) { case 'admin/help#block': - $output = '

' . t('Blocks are boxes of content rendered into an area, or region, of a web page. The default theme Garland, for example, implements the regions "left sidebar", "right sidebar", "content", "header", and "footer", and a block may appear in any one of these areas. The blocks administration page provides a drag-and-drop interface for assigning a block to a region, and for controlling the order of blocks within regions.', array('@blocks' => url('admin/build/block'))) . '

'; - $output .= '

' . t('Although blocks are usually generated automatically by modules (like the User login block, for example), administrators can also define custom blocks. Custom blocks have a title, description, and body. The body of the block can be as long as necessary, and can contain content supported by any available text format.', array('@text-format' => url('admin/settings/filter'))) . '

'; + $output = '

' . t('Blocks are boxes of content rendered into an area, or region, of a web page. For example, the default theme, Garland, implements the regions "left sidebar", "right sidebar", "content", "header", and "footer", and blocks can be assigned to any one of these areas. The blocks administration page provides a drag-and-drop interface for organizing blocks.', array('@blocks' => url('admin/build/block'))) . '

'; + $output .= '

' . t('Although blocks are usually generated automatically by modules (like the User login block, for example), administrators can also create custom blocks. Custom blocks have a title, description, and body. The body of the block can be as long as necessary, and can contain content supported by any available input format.', array('@input-format' => url('admin/settings/filters'))) . '

'; $output .= '

' . t('When working with blocks, remember that:') . '

'; - $output .= '