summaryrefslogtreecommitdiff
path: root/modules/field_ui
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/field_ui
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/field_ui')
-rw-r--r--modules/field_ui/field_ui.api.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/field_ui/field_ui.api.php b/modules/field_ui/field_ui.api.php
index b6446520a..234012512 100644
--- a/modules/field_ui/field_ui.api.php
+++ b/modules/field_ui/field_ui.api.php
@@ -82,7 +82,7 @@ function hook_field_instance_settings_form($field, $instance) {
t('No'),
t('Yes'),
),
- '#description' => t('Display the summary to allow the user to input a summary value. Hide the summary to automatically fill it with a trimmed portion from the main post. '),
+ '#description' => t('Display the summary to allow the user to input a summary value. Hide the summary to automatically fill it with a trimmed portion from the main post.'),
'#default_value' => !empty($settings['display_summary']) ? $settings['display_summary'] : 0,
);
}