summaryrefslogtreecommitdiff
path: root/modules/search
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2011-10-17 08:35:22 -0700
committerwebchick <webchick@24967.no-reply.drupal.org>2011-10-17 08:35:22 -0700
commitbc3aeb2523440c6ed4f51cc9a9d7f10867988edb (patch)
tree25a5c9a393b5963da5603339736223f9ce2cbc2d /modules/search
parent5bb2dcc1da440a1ba67241143813c270d478a015 (diff)
downloadbrdo-bc3aeb2523440c6ed4f51cc9a9d7f10867988edb.tar.gz
brdo-bc3aeb2523440c6ed4f51cc9a9d7f10867988edb.tar.bz2
Issue #1183430 by TR, oriol_e9g: Fixed t function strings should not have whitespaces at beginning or end.
Diffstat (limited to 'modules/search')
-rw-r--r--modules/search/search.admin.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/search/search.admin.inc b/modules/search/search.admin.inc
index d93c85288..fda14ee7b 100644
--- a/modules/search/search.admin.inc
+++ b/modules/search/search.admin.inc
@@ -10,7 +10,7 @@
*/
function search_reindex_confirm() {
return confirm_form(array(), t('Are you sure you want to re-index the site?'),
- 'admin/config/search/settings', t(' The search index is not cleared but systematically updated to reflect the new settings. Searching will continue to work but new content won\'t be indexed until all existing content has been re-indexed. This action cannot be undone.'), t('Re-index site'), t('Cancel'));
+ 'admin/config/search/settings', t('The search index is not cleared but systematically updated to reflect the new settings. Searching will continue to work but new content won\'t be indexed until all existing content has been re-indexed. This action cannot be undone.'), t('Re-index site'), t('Cancel'));
}
/**
@@ -106,7 +106,7 @@ function search_admin_settings($form) {
$form['active'] = array(
'#type' => 'fieldset',
- '#title' => t('Active search modules ')
+ '#title' => t('Active search modules')
);
$module_options = _search_get_module_names();
$form['active']['search_active_modules'] = array(