From: Michael M Slusarz Date: Wed, 19 May 2010 05:48:08 +0000 (-0600) Subject: Adding the registry name (most likely Horde) is both wordy and potentially confusing... X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=56e1a562e910fa214e392c3254bd8b56201840be;p=horde.git Adding the registry name (most likely Horde) is both wordy and potentially confusing to the end-user --- diff --git a/horde/login.php b/horde/login.php index a2f807bb3..7ce00936a 100644 --- a/horde/login.php +++ b/horde/login.php @@ -42,13 +42,13 @@ function _getLogoutReasonString($code) { switch ($code) { case Horde_Auth::REASON_SESSION: - return sprintf(_("Your %s session has expired. Please login again."), $GLOBALS['registry']->get('name')); + return _("Your session has expired. Please login again."); case Horde_Auth::REASON_SESSIONIP: - return sprintf(_("Your Internet Address has changed since the beginning of your %s session. To protect your security, you must login again."), $GLOBALS['registry']->get('name')); + return _("Your Internet Address has changed since the beginning of your session. To protect your security, you must login again."); case Horde_Auth::REASON_BROWSER: - return sprintf(_("Your browser appears to have changed since the beginning of your %s session. To protect your security, you must login again."), $GLOBALS['registry']->get('name')); + return _("Your browser appears to have changed since the beginning of your session. To protect your security, you must login again."); case Horde_Auth::REASON_LOGOUT: return _("You have been logged out.");