summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/filter.module2
-rw-r--r--modules/filter/filter.module2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/filter.module b/modules/filter.module
index 1dcc1c59f..849c9ca4d 100644
--- a/modules/filter.module
+++ b/modules/filter.module
@@ -307,7 +307,7 @@ function filter_admin_delete() {
$form .= form_hidden('format', $format->format);
$form .= form_hidden('name', $format->name);
- $form .= '<p>'. t("Are you sure you want to delete the input format '%format'? If you have any content left in this input format, it will be switched to the default input format.", array('%format' => $format->name)) .'</p>';
+ $form .= '<p>'. t('Are you sure you want to delete the input format %format? If you have any content left in this input format, it will be switched to the default input format.', array('%format' => '<em>'. $format->name .'</em>')) ."</p>\n";
$form .= form_submit(t('Confirm deletion'));
print theme('page', form($form));
}
diff --git a/modules/filter/filter.module b/modules/filter/filter.module
index 1dcc1c59f..849c9ca4d 100644
--- a/modules/filter/filter.module
+++ b/modules/filter/filter.module
@@ -307,7 +307,7 @@ function filter_admin_delete() {
$form .= form_hidden('format', $format->format);
$form .= form_hidden('name', $format->name);
- $form .= '<p>'. t("Are you sure you want to delete the input format '%format'? If you have any content left in this input format, it will be switched to the default input format.", array('%format' => $format->name)) .'</p>';
+ $form .= '<p>'. t('Are you sure you want to delete the input format %format? If you have any content left in this input format, it will be switched to the default input format.', array('%format' => '<em>'. $format->name .'</em>')) ."</p>\n";
$form .= form_submit(t('Confirm deletion'));
print theme('page', form($form));
}