Error message during translation:
The first parameter to t() should be a literal string. There should be no variables, concatenation, constants or other non-literal strings there.
At
t($element['#admin'] ? "Create the user's @profile_node." : "Create your @profile_node.", array('@profile_node' => node_get_types('name',$type)))
in content_profile.theme.inc in line 15. Read more at http://drupal.org/node/322732
In this form the text will not be extracted to be translated.

Replace

$text = t($element['#admin'] ? "Create the user's @profile_node." : "Create your @profile_node.", array('@profile_node' => node_get_types('name', $type)));

by

$text = $element['#admin'] ? t("Create the user's @profile_node.", array('@profile_node' => node_get_types('name', $type))) : t("Create your @profile_node.", array('@profile_node' => node_get_types('name', $type)));
CommentFileSizeAuthor
#1 content_profile_761714_1.patch878 bytesstefan freudenberg

Comments

stefan freudenberg’s picture

Status: Active » Needs review
StatusFileSize
new878 bytes

Here's a patch containing the above replacement.

fago’s picture

Status: Needs review » Fixed

thanks, committed.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.