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

Status:active» needs review

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...".

AttachmentSizeStatusTest resultOperations
patch_132.txt1.01 KBIgnored: Check issue status.NoneNone

#2

Here's even better wording: "...fill in as part of their user profile..."

AttachmentSizeStatusTest resultOperations
patch_133.txt1.02 KBIgnored: Check issue status.NoneNone

#3

Status:needs review» reviewed & tested by the community

Looks good to me!

#4

Status:reviewed & tested by the community» fixed

Committed to CVS HEAD.

#5

Committed to 5.x

#6

Status:fixed» closed (fixed)