Posted by ctmattice1 on June 8, 2007 at 2:05pm
5 followers
| Project: | Drupal core |
| Version: | 6.x-dev |
| Component: | profile.module |
| Category: | bug report |
| Priority: | minor |
| Assigned: | Unassigned |
| Status: | closed (fixed) |
Issue Summary
I know this is petty but here it is anyway. Duplicated word is "in"
case 'admin/user/profile':
return t('
Here you can define custom fields that users can fill in in their user profile (such as country, real name, age, ...).
');
}
should be
case 'admin/user/profile':
return t('
Here you can define custom fields that users can fill in their user profile (such as country, real name, age, ...).
');
}
Comments
#1
It appears that the double "in" is intentional - "Fill in" "in their profile". This does look strange tough. The attached patch changes the string to "...users can complete in their user profile...".
#2
Here's even better wording: "...fill in as part of their user profile..."
#3
Looks good to me!
#4
Committed to CVS HEAD.
#5
Committed to 5.x
#6