Fixed issue where a translation text was broken into pieces making it impossible to translate for languages that have a different word order than english.

svn path=/trunk/boinc/; revision=16778
This commit is contained in:
Janus B. Kristensen 2009-01-05 15:50:33 +00:00
parent 7dd25c87bb
commit 57296e7004
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ function show_user_info_private($user) {
row2(tra("User ID")."<br/><span class=\"note\">".tra("Used in community functions")."</span>", $user->id);
if (!no_computing()) {
row2(tra("Account key")."<br/><span class=\"note\">".tra("Provides full access to your account")."</span>", $user->authenticator);
row2(tra("Weak account key")."<br/><span class=\"note\">".tra("Provides")." <a href=\"weak_auth.php\">".tra("limited access")."</a> ".tra("to your account")."</span>", weak_auth($user));
row2(tra("Weak account key")."<br/><span class=\"note\">".tra("Provides %1limited access%2 to your account", "<a href=\"weak_auth.php\">", "</a> ")."</span>", weak_auth($user));
}
row1("<a name=\"prefs\"></a>".tra("Preferences"));