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 88f417d34..fa70b390a 100644
--- a/modules/filter.module
+++ b/modules/filter.module
@@ -361,7 +361,7 @@ function filter_admin_delete() {
return confirm_form('filter_admin_delete', $form, t('Are you sure you want to delete the input format %format?', array('%format' => theme('placeholder', $format->name))), 'admin/filters', t('If you have any content left in this input format, it will be switched to the default input format. This action cannot be undone.'), t('Delete'), t('Cancel'));
}
else {
- drupal_set_message('The default format cannot be deleted.');
+ drupal_set_message(t('The default format cannot be deleted.'));
drupal_goto('admin/filters');
}
}
diff --git a/modules/filter/filter.module b/modules/filter/filter.module
index 88f417d34..fa70b390a 100644
--- a/modules/filter/filter.module
+++ b/modules/filter/filter.module
@@ -361,7 +361,7 @@ function filter_admin_delete() {
return confirm_form('filter_admin_delete', $form, t('Are you sure you want to delete the input format %format?', array('%format' => theme('placeholder', $format->name))), 'admin/filters', t('If you have any content left in this input format, it will be switched to the default input format. This action cannot be undone.'), t('Delete'), t('Cancel'));
}
else {
- drupal_set_message('The default format cannot be deleted.');
+ drupal_set_message(t('The default format cannot be deleted.'));
drupal_goto('admin/filters');
}
}