The bug was not totally resolved with the previous patch.
The user that reported the bug was referring to i18n on user profile view, as in the last comments on:
http://moodle.org/mod/forum/discuss.php?d=146074
user/view.php?id= ...
This page uses the function profile_display_fields() on /user/profile/lib.php
I am attaching a patch, but I am not sure if this format works, so basically I changed the line 418 (inside function profile_display_fields()):
print_row(s($formfield->field->name.':'), $formfield->display_data());
for
print_row(s(format_string($formfield->field->name).':'), $formfield->display_data());
Since this bug is marked as Resolved, I am not sure if it is going to be published in CVS.
Analog issue, already fixed.