summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-10 16:49:37 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-10 16:49:37 +0000
commitd5bd559cc5d408c30f0badf6ffec86c564c83de7 (patch)
treee9bd8519448657830cb1a141b2414bd7aeca0073
parentb6187aff874712cef48f59c71c85e3b6fed3890e (diff)
downloadbrdo-d5bd559cc5d408c30f0badf6ffec86c564c83de7.tar.gz
brdo-d5bd559cc5d408c30f0badf6ffec86c564c83de7.tar.bz2
#674854 by flobruit: Fixed block help text misleading for translators.
-rw-r--r--modules/block/block.admin.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/block/block.admin.inc b/modules/block/block.admin.inc
index 128cee8b2..ba85dda9c 100644
--- a/modules/block/block.admin.inc
+++ b/modules/block/block.admin.inc
@@ -204,7 +204,7 @@ function block_admin_configure($form, &$form_state, $module, $delta) {
'#type' => 'textfield',
'#title' => t('Block title'),
'#maxlength' => 64,
- '#description' => $block->module == 'block' ? t('The title of the block as shown to the user.') : t('Override the default title for the block. Use <em>&lt;none&gt;</em> to display no title, or leave blank to use the default block title.'),
+ '#description' => $block->module == 'block' ? t('The title of the block as shown to the user.') : t('Override the default title for the block. Use <em>!placeholder</em> to display no title, or leave blank to use the default block title.', array('!placeholder' => '&lt;none&gt;')),
'#default_value' => isset($block->title) ? $block->title : '',
'#weight' => -18,
);