#674854 by flobruit: Fixed block help text misleading for translators.

merge-requests/26/head
Angie Byron 2010-01-10 16:49:37 +00:00
parent b6187aff87
commit d5bd559cc5
1 changed files with 1 additions and 1 deletions

View File

@ -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,
);