From 57296e7004503eca942a27b14772a330c58b2ae0 Mon Sep 17 00:00:00 2001 From: "Janus B. Kristensen" Date: Mon, 5 Jan 2009 15:50:33 +0000 Subject: [PATCH] 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 --- html/inc/user.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/inc/user.inc b/html/inc/user.inc index 41f290c342..02ec33e3aa 100644 --- a/html/inc/user.inc +++ b/html/inc/user.inc @@ -210,7 +210,7 @@ function show_user_info_private($user) { row2(tra("User ID")."
".tra("Used in community functions")."", $user->id); if (!no_computing()) { row2(tra("Account key")."
".tra("Provides full access to your account")."", $user->authenticator); - row2(tra("Weak account key")."
".tra("Provides")." ".tra("limited access")." ".tra("to your account")."", weak_auth($user)); + row2(tra("Weak account key")."
".tra("Provides %1limited access%2 to your account", "", " ")."", weak_auth($user)); } row1("".tra("Preferences"));