summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-05-04 09:50:35 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-05-04 09:50:35 +0000
commita65886720475301b29e817997044a3778a8365f4 (patch)
tree0f66c1af4891fd6a8d3508d194cf1032cff77d9e
parent79598dc72334e5fef8146dca1553b16bb289a1b8 (diff)
downloadbrdo-a65886720475301b29e817997044a3778a8365f4.tar.gz
brdo-a65886720475301b29e817997044a3778a8365f4.tar.bz2
#61692 by Zen, Filter module: Missing t()
-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');
}
}