From a65886720475301b29e817997044a3778a8365f4 Mon Sep 17 00:00:00 2001 From: Neil Drumm <drumm@3064.no-reply.drupal.org> Date: Thu, 4 May 2006 09:50:35 +0000 Subject: [PATCH] #61692 by Zen, Filter module: Missing t() --- modules/filter.module | 2 +- modules/filter/filter.module | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/filter.module b/modules/filter.module index 88f417d34838..fa70b390af67 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 88f417d34838..fa70b390af67 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'); } } -- GitLab