summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2011-09-24 22:01:35 +0200
committerDries Buytaert <dries@buytaert.net>2011-09-24 22:01:35 +0200
commitac274fd80ae7e165a944f29a053aaf6c723ea11c (patch)
treef4149b921d7cdbbfdd8dbccd00e85da837a8aa00
parent0e7218bb7cd799b077c69a60b0324c747703032f (diff)
downloadbrdo-ac274fd80ae7e165a944f29a053aaf6c723ea11c.tar.gz
brdo-ac274fd80ae7e165a944f29a053aaf6c723ea11c.tar.bz2
- Patch #1253204 by fietserwin: user_field_extra_fields() does not translate labels.
-rw-r--r--modules/user/user.module8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/user/user.module b/modules/user/user.module
index 5983b67e7..e09e77485 100644
--- a/modules/user/user.module
+++ b/modules/user/user.module
@@ -211,19 +211,19 @@ function user_field_extra_fields() {
$return['user']['user'] = array(
'form' => array(
'account' => array(
- 'label' => 'User name and password',
- 'description' => t('User module account form elements'),
+ 'label' => t('User name and password'),
+ 'description' => t('User module account form elements.'),
'weight' => -10,
),
'timezone' => array(
- 'label' => 'Timezone',
+ 'label' => t('Timezone'),
'description' => t('User module timezone form element.'),
'weight' => 6,
),
),
'display' => array(
'summary' => array(
- 'label' => 'History',
+ 'label' => t('History'),
'description' => t('User module history view element.'),
'weight' => 5,
),