From d5bd559cc5d408c30f0badf6ffec86c564c83de7 Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Sun, 10 Jan 2010 16:49:37 +0000 Subject: [PATCH] #674854 by flobruit: Fixed block help text misleading for translators. --- modules/block/block.admin.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/block/block.admin.inc b/modules/block/block.admin.inc index 128cee8b2a1..ba85dda9c58 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 <none> 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 !placeholder to display no title, or leave blank to use the default block title.', array('!placeholder' => '<none>')), '#default_value' => isset($block->title) ? $block->title : '', '#weight' => -18, );