diff --git a/modules/authYubiKey/templates/yubikeylogin.twig b/modules/authYubiKey/templates/yubikeylogin.twig new file mode 100644 index 0000000000000000000000000000000000000000..c55a71af1779c359a4d529665adda2000edb7f16 --- /dev/null +++ b/modules/authYubiKey/templates/yubikeylogin.twig @@ -0,0 +1,25 @@ +{% set pagetitle = '{authYubiKey:yubikey:header}'|trans %} +{% extends "base.twig" %} + +{% block content %} + {% if errorCode != null %} + <div style="border-left: 1px solid #e8e8e8; border-bottom: 1px solid #e8e8e8; background: #f5f5f5"> + <img src="{{ baseurlpath }}resources/icons/experience/gtk-dialog-error.48x48.png" class="float-l" style="margin: 15px;" alt="" /> + <h2>{{ '{login:error_header}'|trans }}</h2> + <p><span style="text-decoration: bold;">{{ errorTitle }}</p> + <p>{{ errorDesc }}</p> + </div> + {% endif %} + + <img style="float: right" src="{{ logoUrl }}" alt="" /> + <img style="clear: right; float: right" src="{{ devicepicUrl }}" alt="YubiKey" /> + + <h2>{{ '{authYubiKey:yubikey:header}'|trans }}</h2> + <form action="?" method="post" name="f"> + <p>{{ '{authYubiKey:yubikey:intro}'|trans }}</p> + <p><input id="otp" style="border: 1px solid #ccc; background: #eee; padding: .5em; font-size: medium; width: 70%; color: #aaa" type="text" tabindex="2" name="otp" /></p> + {% for key, value in stateParams %} + <input type="hidden" name="{{ key|escape('html') }}" value="{{ value|escape('html') }}"/> + {% endfor %} + </form> +{% endblock %} diff --git a/modules/authYubiKey/www/yubikeylogin.php b/modules/authYubiKey/www/yubikeylogin.php index 1d0c7597adf31d8400c9b4cb1e2582e2f07290e9..42a418a8f7602a9b2c61029ed657e7e8bae884c7 100644 --- a/modules/authYubiKey/www/yubikeylogin.php +++ b/modules/authYubiKey/www/yubikeylogin.php @@ -12,27 +12,22 @@ if (!array_key_exists('AuthState', $_REQUEST)) { throw new SimpleSAML_Error_BadRequest('Missing AuthState parameter.'); } -$authStateId = $_REQUEST['AuthState']; +$globalConfig = SimpleSAML_Configuration::getInstance(); +$t = new SimpleSAML_XHTML_Template($globalConfig, 'authYubiKey:yubikeylogin.php'); + +$errorCode = null; if (array_key_exists('otp', $_REQUEST)) { - $otp = $_REQUEST['otp']; -} else { - $otp = ''; -} + // attempt to log in + $errorCode = sspmod_authYubiKey_Auth_Source_YubiKey::handleLogin($authStateId, $_REQUEST['otp']); -if (!empty($otp)) { - // attempt to log in - $errorCode = sspmod_authYubiKey_Auth_Source_YubiKey::handleLogin($authStateId, $otp); -} else { - $errorCode = NULL; + $errorCodes = SimpleSAML\Error\ErrorCodes::getAllErrorCodeMessages(); + $t->data['errorTitle'] = $errorCodes['title'][$errorCode]; + $t->data['errorDesc'] = $errorCodes['desc'][$errorCode]; } -$globalConfig = SimpleSAML_Configuration::getInstance(); -$t = new SimpleSAML_XHTML_Template($globalConfig, 'authYubiKey:yubikeylogin.php'); -$t->data['stateparams'] = array('AuthState' => $authStateId); -$t->data['errorcode'] = $errorCode; -$t->data['errorcodes'] = SimpleSAML\Error\ErrorCodes::getAllErrorCodeMessages(); -$t->data['logo_url'] = SimpleSAML\Module::getModuleURL('authYubiKey/resources/logo.jpg'); -$t->data['devicepic_url'] = SimpleSAML\Module::getModuleURL('authYubiKey/resources/yubikey.jpg'); +$t->data['errorCode'] = $errorCode; +$t->data['stateParams'] = array('AuthState' => $_REQUEST['authStateId']); +$t->data['logoUrl'] = SimpleSAML\Module::getModuleURL('authYubiKey/resources/logo.jpg'); +$t->data['devicepicUrl'] = SimpleSAML\Module::getModuleURL('authYubiKey/resources/yubikey.jpg'); $t->show(); -exit(); diff --git a/modules/authorize/templates/authorize_403.twig b/modules/authorize/templates/authorize_403.twig new file mode 100644 index 0000000000000000000000000000000000000000..1a60813dc7ca1a832c0d4e9bfd00f6e84975baa8 --- /dev/null +++ b/modules/authorize/templates/authorize_403.twig @@ -0,0 +1,11 @@ +{% extends "base.twig" %} + +{% block content %} + <h1>{{ '{authorize:Authorize:403_header}'|trans }}</h1> + <p>{{ '{authorize:Authorize:403_text}'|trans }}</p> + {% if LogoutURL is defined %} + <p> + <a href="{{ LogoutURL|escape('html') }}">{{ '{status:logout}'|trans }}</a> + </p> + {% endif %} +{% endblock%} diff --git a/modules/authorize/www/authorize_403.php b/modules/authorize/www/authorize_403.php index f3f99b25fae874138c89671695dd62cfb7011a38..e6a6094869b1a7b21444c51604148d13761b7599 100644 --- a/modules/authorize/www/authorize_403.php +++ b/modules/authorize/www/authorize_403.php @@ -6,7 +6,7 @@ */ if (!array_key_exists('StateId', $_REQUEST)) { - throw new SimpleSAML_Error_BadRequest('Missing required StateId query parameter.'); + throw new SimpleSAML_Error_BadRequest('Missing required StateId query parameter.'); } $state = SimpleSAML_Auth_State::loadState($_REQUEST['StateId'], 'authorize:Authorize'); diff --git a/modules/multiauth/templates/selectsource.twig b/modules/multiauth/templates/selectsource.twig new file mode 100644 index 0000000000000000000000000000000000000000..81fc1a6a997c23fb50a0131db238087bba0d8372 --- /dev/null +++ b/modules/multiauth/templates/selectsource.twig @@ -0,0 +1,24 @@ +{% set pagetitle = '{multiauth:multiauth:select_source_header}'|trans %} +{% extends "base.twig" %} + +{% block content %} + <h2>{{ '{multiauth:multiauth:select_source_header}'| trans }}</h2> + <p>{{ '{multiauth:multiauth:select_source_text}'| trans }}</p> + + <form action="{{ selfUrl|escape('html') }}" method="get"> + <input type="hidden" name="AuthState" value="{{ authstate|escape('html') }} " /> + <ul> + {% for key, source in sources %} + {% set name = ('src-' ~ source.source64) %} + {% set button = ('button-' ~ source.source) %} + <li class="{{ source.css_class|escape('html') }} authsource"> + {% if source.source == preferred %} + <input type="submit" name="{{ name|escape('html') }}" autofocus="autofocus" id="{{ button|escape('html') }}" value="{{ source.text|escape('html') }}" /> + {% else %} + <input type="submit" name="{{ name|escape('html') }}" id="{{ button|escape('html') }}" value="{{ source.text|escape('html') }}" /> + {% endif %} + </li> + {% endfor %} + </ul> + </form> +{% endblock %} diff --git a/modules/multiauth/www/selectsource.php b/modules/multiauth/www/selectsource.php index db09029f89a18ecc50d38de81213afac86a67a0d..1736263be8a2f261cde1948cc8b0e71d397d7c3b 100644 --- a/modules/multiauth/www/selectsource.php +++ b/modules/multiauth/www/selectsource.php @@ -12,49 +12,59 @@ // Retrieve the authentication state if (!array_key_exists('AuthState', $_REQUEST)) { - throw new SimpleSAML_Error_BadRequest('Missing AuthState parameter.'); + throw new SimpleSAML_Error_BadRequest('Missing AuthState parameter.'); } $authStateId = $_REQUEST['AuthState']; $state = SimpleSAML_Auth_State::loadState($authStateId, sspmod_multiauth_Auth_Source_MultiAuth::STAGEID); if (array_key_exists("SimpleSAML_Auth_Source.id", $state)) { - $authId = $state["SimpleSAML_Auth_Source.id"]; - $as = SimpleSAML_Auth_Source::getById($authId); + $authId = $state["SimpleSAML_Auth_Source.id"]; + $as = SimpleSAML_Auth_Source::getById($authId); } else { - $as = NULL; + $as = null; } -$source = NULL; +$source = null; if (array_key_exists('source', $_REQUEST)) { - $source = $_REQUEST['source']; + $source = $_REQUEST['source']; } else { - foreach ($_REQUEST as $k => $v) { - $k = explode('-', $k, 2); - if (count($k) === 2 && $k[0] === 'src') { - $source = base64_decode($k[1]); - } - } + foreach ($_REQUEST as $k => $v) { + $k = explode('-', $k, 2); + if (count($k) === 2 && $k[0] === 'src') { + $source = base64_decode($k[1]); + } + } } -if ($source !== NULL) { - if ($as !== NULL) { - $as->setPreviousSource($source); - } - sspmod_multiauth_Auth_Source_MultiAuth::delegateAuthentication($source, $state); +if ($source !== null) { + if ($as !== null) { + $as->setPreviousSource($source); + } + sspmod_multiauth_Auth_Source_MultiAuth::delegateAuthentication($source, $state); } if (array_key_exists('multiauth:preselect', $state)) { - $source = $state['multiauth:preselect']; - sspmod_multiauth_Auth_Source_MultiAuth::delegateAuthentication($source, $state); + $source = $state['multiauth:preselect']; + sspmod_multiauth_Auth_Source_MultiAuth::delegateAuthentication($source, $state); } $globalConfig = SimpleSAML_Configuration::getInstance(); $t = new SimpleSAML_XHTML_Template($globalConfig, 'multiauth:selectsource.php'); +$language = $t->getLanguage(); + +$sources = $state[sspmod_multiauth_Auth_Source_MultiAuth::SOURCESID]; +foreach ($sources as $key => $source){ + $sources[$key]['source64'] = base64_encode($sources[$key]['source']); + $sources[$key]['text'] = $sources[$key]['text'][$language]; +} + $t->data['authstate'] = $authStateId; -$t->data['sources'] = $state[sspmod_multiauth_Auth_Source_MultiAuth::SOURCESID]; -if ($as !== NULL) { - $t->data['preferred'] = $as->getPreviousSource(); +$t->data['sources'] = $sources; +$t->data['selfUrl'] = $_SERVER['PHP_SELF']; + +if ($as !== null) { + $t->data['preferred'] = $as->getPreviousSource(); } else { - $t->data['preferred'] = NULL; + $t->data['preferred'] = null; } $t->show(); exit(); diff --git a/modules/negotiate/locales/af/LC_MESSAGES/negotiate.po b/modules/negotiate/locales/af/LC_MESSAGES/negotiate.po index 9976b2b2fbf8976fb87aa1876114888a020b0fa2..bfbdf2194bff2f8e163143a24cb9b513e684dad9 100644 --- a/modules/negotiate/locales/af/LC_MESSAGES/negotiate.po +++ b/modules/negotiate/locales/af/LC_MESSAGES/negotiate.po @@ -34,13 +34,13 @@ msgid "{negotiate:negotiate:disable_info_pre}" msgstr "" "<p> Deur toegang te verkry tot die bladsy het jy outomatiese aanmelding " "vermoĂ« afgeskakel vir die webblaaier.</p> <p> Om dit weer te aktiveer " -"besoek <a href='URL'> hierdie bladsy </a>. </p>" +"besoek <a href='%URL%'> hierdie bladsy </a>. </p>" msgid "{negotiate:negotiate:enable_info_pre}" msgstr "" "<p> Deur toegang te verkry tot die bladsy het jy outomatiese aanmelding " "vermoĂ« aangeskakel vir die webblaaier.</p> <p> Om dit weer te deaktiveer " -"besoek <a href='URL'> hierdie bladsy </a>. </p>" +"besoek <a href='%URL%'> hierdie bladsy </a>. </p>" msgid "" "<h3>What is automatic login</h3><p>Automatic login allows you to log in " diff --git a/modules/negotiate/locales/ar/LC_MESSAGES/negotiate.po b/modules/negotiate/locales/ar/LC_MESSAGES/negotiate.po index 18ed6f13d1422764ed8483bc9df182e1ecf86d8c..91af8a473c7a379db24f96467cc6c2cf0b274888 100644 --- a/modules/negotiate/locales/ar/LC_MESSAGES/negotiate.po +++ b/modules/negotiate/locales/ar/LC_MESSAGES/negotiate.po @@ -34,13 +34,13 @@ msgstr "Ů„Ů‚ŘŻ ŘŞŮ… ŘŞŮعيل خاصية الدخŮŮ„ التلقائي ŮŮŠ ه msgid "{negotiate:negotiate:disable_info_pre}" msgstr "" "<p>بدخŮل٠على هذه الصŮŘŘ©, ŮŮ‚ŘŻ Ů‚Ů…ŘŞ بإيقا٠خاصية الدخŮŮ„ التلقائي من " -"المتصŮŘ.</p><p>لإعادة تشغيلها مرة أخرى Ů‚Ů… بزيارة <a href='URL'>هذه " +"المتصŮŘ.</p><p>لإعادة تشغيلها مرة أخرى Ů‚Ů… بزيارة <a href='%URL%'>هذه " "الصŮŘŘ©</a>.</p>" msgid "{negotiate:negotiate:enable_info_pre}" msgstr "" "<p>بدخŮل٠على هذه الصŮŘŘ©, ŮŮ‚ŘŻ Ů‚Ů…ŘŞ بتŮعيل خاصية الدخŮŮ„ التلقائي من " -"المتصŮŘ.</p><p>لإعادة إيقاŮها مرة أخرى Ů‚Ů… بزيارة <a href='URL'>هذه " +"المتصŮŘ.</p><p>لإعادة إيقاŮها مرة أخرى Ů‚Ů… بزيارة <a href='%URL%'>هذه " "الصŮŘŘ©</a>.</p>" msgid "" @@ -75,9 +75,9 @@ msgstr "Ů„Ů‚ŘŻ ŘŞŮ… ŘŞŮعيل خاصية الدخŮŮ„ التلقائي ŮŮŠ ه msgid "" "<p>By accessing this page, you have turned off the ability to use " "automatic login for this browser.</p><p>To turn it on again, please visit" -" <a href='URL'>this page</a>.</p>" +" <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>بدخŮل٠على هذه الصŮŘŘ©, ŮŮ‚ŘŻ Ů‚Ů…ŘŞ بإيقا٠خاصية الدخŮŮ„ التلقائي من " -"المتصŮŘ.</p><p>لإعادة تشغيلها مرة أخرى Ů‚Ů… بزيارة <a href='URL'>هذه " +"المتصŮŘ.</p><p>لإعادة تشغيلها مرة أخرى Ů‚Ů… بزيارة <a href='%URL%'>هذه " "الصŮŘŘ©</a>.</p>" diff --git a/modules/negotiate/locales/cs/LC_MESSAGES/negotiate.po b/modules/negotiate/locales/cs/LC_MESSAGES/negotiate.po index 219ad399b045207d102ea6d2f4a4fe223fdd1f73..08a74a04b946bd2141416b01430823995d273b2f 100644 --- a/modules/negotiate/locales/cs/LC_MESSAGES/negotiate.po +++ b/modules/negotiate/locales/cs/LC_MESSAGES/negotiate.po @@ -34,13 +34,13 @@ msgid "{negotiate:negotiate:disable_info_pre}" msgstr "" "<p>PĹ™Ăstupem na tuto stránku jste vypnuli moĹľnost pouĹľĂt automatickĂ© " "pĹ™ihlášenĂ pro tento prohlĂĹľeÄŤ.</p><p>Pro jejĂ zapnutĂ, prosĂm, navštivte" -" <a href='URL'>tuto stránku</a>.</p>" +" <a href='%URL%'>tuto stránku</a>.</p>" msgid "{negotiate:negotiate:enable_info_pre}" msgstr "" "<p>PĹ™Ăstupem na tuto stránku jste zapnuli moĹľnost pouĹľĂt automatickĂ© " "pĹ™ihlášenĂ pro tento prohlĂĹľeÄŤ.</p><p>Pro jejĂ vypnutĂ, prosĂm, navštivte" -" <a href='URL'>tuto stránku</a>.</p>" +" <a href='%URL%'>tuto stránku</a>.</p>" msgid "" "<h3>What is automatic login</h3><p>Automatic login allows you to log in " @@ -73,9 +73,9 @@ msgstr "Povolena moĹľnost pouĹľitĂ automatickĂ©ho pĹ™ihlášenĂ pro tento proh msgid "" "<p>By accessing this page, you have turned off the ability to use " "automatic login for this browser.</p><p>To turn it on again, please visit" -" <a href='URL'>this page</a>.</p>" +" <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>PĹ™Ăstupem na tuto stránku jste vypnuli moĹľnost pouĹľĂt automatickĂ© " "pĹ™ihlášenĂ pro tento prohlĂĹľeÄŤ.</p><p>Pro jejĂ zapnutĂ, prosĂm, navštivte" -" <a href='URL'>tuto stránku</a>.</p>" +" <a href='%URL%'>tuto stránku</a>.</p>" diff --git a/modules/negotiate/locales/da/LC_MESSAGES/negotiate.po b/modules/negotiate/locales/da/LC_MESSAGES/negotiate.po index 5d001ccda9c190c1c691a00f3cd1a67d1c390979..5bcc8fdbd009038d3cad8c60d9793295e4c39624 100644 --- a/modules/negotiate/locales/da/LC_MESSAGES/negotiate.po +++ b/modules/negotiate/locales/da/LC_MESSAGES/negotiate.po @@ -34,13 +34,13 @@ msgid "{negotiate:negotiate:disable_info_pre}" msgstr "" "<p>Ved at tilgĂĄ denne side har du slĂĄet mulighed for automatisk login med" " denne browser fra.</p><p>For at slĂĄ muligheden til igen, besøg venligst " -"<a href='URL'>denne side</a>.</p>" +"<a href='%URL%'>denne side</a>.</p>" msgid "{negotiate:negotiate:enable_info_pre}" msgstr "" "<p>Ved at tilgĂĄ denne side har du slĂĄet mulighed for automatisk login med" " denne browser til.</p><p>For at slĂĄ muligheden fra igen, besøg venligst " -"<a href='URL'>denne side</a>.</p>" +"<a href='%URL%'>denne side</a>.</p>" msgid "" "<h3>What is automatic login</h3><p>Automatic login allows you to log in " @@ -59,11 +59,11 @@ msgstr "" msgid "" "<p>By accessing this page, you have turned on the ability to use " "automatic login for this browser.</p><p>To turn it off again, please " -"visit <a href='URL'>this page</a>.</p>" +"visit <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Ved at tilgĂĄ denne side har du slĂĄet mulighed for automatisk login med" " denne browser til.</p><p>For at slĂĄ muligheden fra igen, besøg venligst " -"<a href='URL'>denne side</a>.</p>" +"<a href='%URL%'>denne side</a>.</p>" msgid "Turned off ability to use automatic login for this browser" msgstr "Mulighed for automatisk login med denne browser er slĂĄet fra" @@ -74,9 +74,9 @@ msgstr "Mulighed for automatisk login med denne browser er slĂĄet til" msgid "" "<p>By accessing this page, you have turned off the ability to use " "automatic login for this browser.</p><p>To turn it on again, please visit" -" <a href='URL'>this page</a>.</p>" +" <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Ved at tilgĂĄ denne side har du slĂĄet mulighed for automatisk login med" " denne browser fra.</p><p>For at slĂĄ muligheden til igen, besøg venligst " -"<a href='URL'>denne side</a>.</p>" +"<a href='%URL%'>denne side</a>.</p>" diff --git a/modules/negotiate/locales/de/LC_MESSAGES/negotiate.po b/modules/negotiate/locales/de/LC_MESSAGES/negotiate.po index 1810f2e911a94bc82089405f665e4f479cc05793..ada16b2038774d048f5b7d84b61ab504dbfe0185 100644 --- a/modules/negotiate/locales/de/LC_MESSAGES/negotiate.po +++ b/modules/negotiate/locales/de/LC_MESSAGES/negotiate.po @@ -34,13 +34,13 @@ msgid "{negotiate:negotiate:disable_info_pre}" msgstr "" "<p>Durch den Zugriff auf diese Seite haben Sie die automatische Anmeldung" " fĂĽr diesen Browser ausgeschaltet.</p><p>Um sie wieder einzuschalten, " -"besuchen Sie bitte<a href='URL'>diese Seite</a>.</p>" +"besuchen Sie bitte<a href='%URL%'>diese Seite</a>.</p>" msgid "{negotiate:negotiate:enable_info_pre}" msgstr "" "<p>Durch den Zugriff auf diese Seite haben Sie die automatische Anmeldung" " fĂĽr diesen Browser eingeschaltet.</p><p>Um sie wieder auszuschalten, " -"besuchen Sie bitte<a href='URL'>diese Seite</a>.</p>" +"besuchen Sie bitte<a href='%URL%'>diese Seite</a>.</p>" msgid "" "<h3>What is automatic login</h3><p>Automatic login allows you to log in " @@ -59,11 +59,11 @@ msgstr "" msgid "" "<p>By accessing this page, you have turned on the ability to use " "automatic login for this browser.</p><p>To turn it off again, please " -"visit <a href='URL'>this page</a>.</p>" +"visit <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Durch den Zugriff auf diese Seite haben Sie die automatische Anmeldung" " fĂĽr diesen Browser eingeschaltet.</p><p>Um sie wieder auszuschalten, " -"besuchen Sie bitte<a href='URL'>diese Seite</a>.</p>" +"besuchen Sie bitte<a href='%URL%'>diese Seite</a>.</p>" msgid "Turned off ability to use automatic login for this browser" msgstr "Automatische Anmeldung fĂĽr diesen Browser ausgeschaltet." @@ -74,9 +74,9 @@ msgstr "Automatische Anmeldung fĂĽr diesen Browser eingeschaltet." msgid "" "<p>By accessing this page, you have turned off the ability to use " "automatic login for this browser.</p><p>To turn it on again, please visit" -" <a href='URL'>this page</a>.</p>" +" <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Durch den Zugriff auf diese Seite haben Sie die automatische Anmeldung" " fĂĽr diesen Browser ausgeschaltet.</p><p>Um sie wieder einzuschalten, " -"besuchen Sie bitte<a href='URL'>diese Seite</a>.</p>" +"besuchen Sie bitte<a href='%URL%'>diese Seite</a>.</p>" diff --git a/modules/negotiate/locales/en/LC_MESSAGES/negotiate.po b/modules/negotiate/locales/en/LC_MESSAGES/negotiate.po index e15f012ff9d2191ed55389eef767985220f7a890..30a55b95e2d1262753770a4cee8a54397152572a 100644 --- a/modules/negotiate/locales/en/LC_MESSAGES/negotiate.po +++ b/modules/negotiate/locales/en/LC_MESSAGES/negotiate.po @@ -33,13 +33,13 @@ msgid "{negotiate:negotiate:disable_info_pre}" msgstr "" "<p>By accessing this page, you have turned off the ability to use " "automatic login for this browser.</p><p>To turn it on again, please visit" -" <a href='URL'>this page</a>.</p>" +" <a href='%URL%'>this page</a>.</p>" msgid "{negotiate:negotiate:enable_info_pre}" msgstr "" "<p>By accessing this page, you have turned on the ability to use " "automatic login for this browser.</p><p>To turn it off again, please " -"visit <a href='URL'>this page</a>.</p>" +"visit <a href='%URL%'>this page</a>.</p>" msgid "" "<h3>What is automatic login</h3><p>Automatic login allows you to log in " @@ -57,11 +57,11 @@ msgstr "" msgid "" "<p>By accessing this page, you have turned on the ability to use " "automatic login for this browser.</p><p>To turn it off again, please " -"visit <a href='URL'>this page</a>.</p>" +"visit <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>By accessing this page, you have turned on the ability to use " "automatic login for this browser.</p><p>To turn it off again, please " -"visit <a href='URL'>this page</a>.</p>" +"visit <a href='%URL%'>this page</a>.</p>" msgid "Turned off ability to use automatic login for this browser" msgstr "Turned off ability to use automatic login for this browser" @@ -72,9 +72,9 @@ msgstr "Turned on the ability to use automatic login for this browser" msgid "" "<p>By accessing this page, you have turned off the ability to use " "automatic login for this browser.</p><p>To turn it on again, please visit" -" <a href='URL'>this page</a>.</p>" +" <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>By accessing this page, you have turned off the ability to use " "automatic login for this browser.</p><p>To turn it on again, please visit" -" <a href='URL'>this page</a>.</p>" +" <a href='%URL%'>this page</a>.</p>" diff --git a/modules/negotiate/locales/es/LC_MESSAGES/negotiate.po b/modules/negotiate/locales/es/LC_MESSAGES/negotiate.po index 4e403dbabc590057554f7f944ccadc419744b940..8224dfb0dbee34caf5ee511286a4e5e7b6ef9594 100644 --- a/modules/negotiate/locales/es/LC_MESSAGES/negotiate.po +++ b/modules/negotiate/locales/es/LC_MESSAGES/negotiate.po @@ -34,13 +34,13 @@ msgid "{negotiate:negotiate:disable_info_pre}" msgstr "" "<p>Al acceder a esta página, ha deshabilitado la posibilidad de " "identificarse automáticamente en este navegador.</p><p>Para habilitarla " -"de nuevo, por favor, visite <a href='URL'>esta página</a>.</p>" +"de nuevo, por favor, visite <a href='%URL%'>esta página</a>.</p>" msgid "{negotiate:negotiate:enable_info_pre}" msgstr "" "<p>Al acceder a esta página, ha habilitado la identificaciĂłn automática " "en este navegador.</p><p>Para deshabilitarlo de nuevo, por favor, visite " -"<a href='URL'>esta página</a>.</p>" +"<a href='%URL%'>esta página</a>.</p>" msgid "" "<h3>What is automatic login</h3><p>Automatic login allows you to log in " @@ -59,11 +59,11 @@ msgstr "" msgid "" "<p>By accessing this page, you have turned on the ability to use " "automatic login for this browser.</p><p>To turn it off again, please " -"visit <a href='URL'>this page</a>.</p>" +"visit <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Al acceder a esta página, ha habilitado la identificaciĂłn automática " "en este navegador.</p><p>Para deshabilitarlo de nuevo, por favor, visite " -"<a href='URL'>esta página</a>.</p>" +"<a href='%URL%'>esta página</a>.</p>" msgid "Turned off ability to use automatic login for this browser" msgstr "La identificaciĂłn automática en este navegador se ha deshabilitado." @@ -74,9 +74,9 @@ msgstr "La identificaciĂłn automática en este navegador se ha habilitado." msgid "" "<p>By accessing this page, you have turned off the ability to use " "automatic login for this browser.</p><p>To turn it on again, please visit" -" <a href='URL'>this page</a>.</p>" +" <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Al acceder a esta página, ha deshabilitado la posibilidad de " "identificarse automáticamente en este navegador.</p><p>Para habilitarla " -"de nuevo, por favor, visite <a href='URL'>esta página</a>.</p>" +"de nuevo, por favor, visite <a href='%URL%'>esta página</a>.</p>" diff --git a/modules/negotiate/locales/et/LC_MESSAGES/negotiate.po b/modules/negotiate/locales/et/LC_MESSAGES/negotiate.po index 79347bd7fe9bacc554aa236ef960e585b4b2675e..4623c84f6ee5c249b0e400d8eb6699fb71a3a92f 100644 --- a/modules/negotiate/locales/et/LC_MESSAGES/negotiate.po +++ b/modules/negotiate/locales/et/LC_MESSAGES/negotiate.po @@ -34,13 +34,13 @@ msgstr "LĂĽlitasid automaatse sisselogimise selles brauseris sisse" msgid "{negotiate:negotiate:disable_info_pre}" msgstr "" "<p>Seda lehekĂĽlge kĂĽlastades lĂĽlitasid automaatse sisselogimise selles " -"brauseris välja.</p><p>Sisse lĂĽlitamiseks kĂĽlasta <a href='URL'>seda " +"brauseris välja.</p><p>Sisse lĂĽlitamiseks kĂĽlasta <a href='%URL%'>seda " "lehekĂĽlge</a>.</p>" msgid "{negotiate:negotiate:enable_info_pre}" msgstr "" "<p>Seda lehekĂĽlge kĂĽlastades lĂĽlitasid automaatse sisselogimise selles " -"brauseris sisse.</p><p>Välja lĂĽlitamiseks kĂĽlasta <a href='URL'>seda " +"brauseris sisse.</p><p>Välja lĂĽlitamiseks kĂĽlasta <a href='%URL%'>seda " "lehekĂĽlge</a>.</p>" msgid "" @@ -59,10 +59,10 @@ msgstr "" msgid "" "<p>By accessing this page, you have turned on the ability to use " "automatic login for this browser.</p><p>To turn it off again, please " -"visit <a href='URL'>this page</a>.</p>" +"visit <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Seda lehekĂĽlge kĂĽlastades lĂĽlitasid automaatse sisselogimise selles " -"brauseris sisse.</p><p>Välja lĂĽlitamiseks kĂĽlasta <a href='URL'>seda " +"brauseris sisse.</p><p>Välja lĂĽlitamiseks kĂĽlasta <a href='%URL%'>seda " "lehekĂĽlge</a>.</p>" msgid "Turned off ability to use automatic login for this browser" @@ -76,9 +76,9 @@ msgstr "LĂĽlitasid automaatse sisselogimise selles brauseris sisse" msgid "" "<p>By accessing this page, you have turned off the ability to use " "automatic login for this browser.</p><p>To turn it on again, please visit" -" <a href='URL'>this page</a>.</p>" +" <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Seda lehekĂĽlge kĂĽlastades lĂĽlitasid automaatse sisselogimise selles " -"brauseris välja.</p><p>Sisse lĂĽlitamiseks kĂĽlasta <a href='URL'>seda " +"brauseris välja.</p><p>Sisse lĂĽlitamiseks kĂĽlasta <a href='%URL%'>seda " "lehekĂĽlge</a>.</p>" diff --git a/modules/negotiate/locales/eu/LC_MESSAGES/negotiate.po b/modules/negotiate/locales/eu/LC_MESSAGES/negotiate.po index 8a1f65e7cd91738c7598c2a23dc4068b7b227997..428f3c62b9e07bb68ef9355766fab6b57918c44d 100644 --- a/modules/negotiate/locales/eu/LC_MESSAGES/negotiate.po +++ b/modules/negotiate/locales/eu/LC_MESSAGES/negotiate.po @@ -34,13 +34,13 @@ msgid "{negotiate:negotiate:disable_info_pre}" msgstr "" "<p>Orri honetan sartzean, nabigatzaile honetan automatikoki " "identifikatzeko aukera desgaitu da. </p><p>Berriz gaitzeko, mesedez, " -"bisita ezazu <a href='URL'>orri hau</a>.</p>" +"bisita ezazu <a href='%URL%'>orri hau</a>.</p>" msgid "{negotiate:negotiate:enable_info_pre}" msgstr "" "<p>Orri honetan sartzean, nabigatzaile honetan automatikoki " "identifikatzeko aukera gaitu da. </p><p>Berriz desgaitzeko, mesedez, " -"bisita ezazu <a href='URL'>orri hau</a>.</p>" +"bisita ezazu <a href='%URL%'>orri hau</a>.</p>" msgid "" "<h3>What is automatic login</h3><p>Automatic login allows you to log in " @@ -59,11 +59,11 @@ msgstr "" msgid "" "<p>By accessing this page, you have turned on the ability to use " "automatic login for this browser.</p><p>To turn it off again, please " -"visit <a href='URL'>this page</a>.</p>" +"visit <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Orri honetan sartzean, nabigatzaile honetan automatikoki " "identifikatzeko aukera gaitu da. </p><p>Berriz desgaitzeko, mesedez, " -"bisita ezazu <a href='URL'>orri hau</a>.</p>" +"bisita ezazu <a href='%URL%'>orri hau</a>.</p>" msgid "Turned off ability to use automatic login for this browser" msgstr "Nabigatzaile honetan identifikazio automatikoa desgaitu da." @@ -74,9 +74,9 @@ msgstr "Nabigatzaile honetan identifikazio automatikoa gaitu da." msgid "" "<p>By accessing this page, you have turned off the ability to use " "automatic login for this browser.</p><p>To turn it on again, please visit" -" <a href='URL'>this page</a>.</p>" +" <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Orri honetan sartzean, nabigatzaile honetan automatikoki " "identifikatzeko aukera desgaitu da. </p><p>Berriz gaitzeko, mesedez, " -"bisita ezazu <a href='URL'>orri hau</a>.</p>" +"bisita ezazu <a href='%URL%'>orri hau</a>.</p>" diff --git a/modules/negotiate/locales/fr/LC_MESSAGES/negotiate.po b/modules/negotiate/locales/fr/LC_MESSAGES/negotiate.po index aaa68e512f97f49b4c3fe60287b968a86e94cff3..34412937486ec94e76670fc233269535a0bbcce4 100644 --- a/modules/negotiate/locales/fr/LC_MESSAGES/negotiate.po +++ b/modules/negotiate/locales/fr/LC_MESSAGES/negotiate.po @@ -38,13 +38,13 @@ msgid "{negotiate:negotiate:disable_info_pre}" msgstr "" "<p>En accĂ©dant Ă cette page, vous avez dĂ©sactivĂ© la possibilitĂ© " "d'utiliser la connection automatique pour ce navigateur.</p><p>Pour " -"l'activer Ă nouveau, merci de visiter <a href='URL'>cette page</a>.</p>" +"l'activer Ă nouveau, merci de visiter <a href='%URL%'>cette page</a>.</p>" msgid "{negotiate:negotiate:enable_info_pre}" msgstr "" "<p>En accĂ©dant Ă cette page, vous avez activĂ© la possibilitĂ© d'utiliser " "la connection automatique pour ce navigateur.</p><p>Pour la dĂ©sactiver Ă " -"nouveau, merci de visiter <a href='URL'>cette page</a>.</p>" +"nouveau, merci de visiter <a href='%URL%'>cette page</a>.</p>" msgid "" "<h3>What is automatic login</h3><p>Automatic login allows you to log in " @@ -63,11 +63,11 @@ msgstr "" msgid "" "<p>By accessing this page, you have turned on the ability to use " "automatic login for this browser.</p><p>To turn it off again, please " -"visit <a href='URL'>this page</a>.</p>" +"visit <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>En accĂ©dant Ă cette page, vous avez activĂ© la possibilitĂ© d'utiliser " "la connection automatique pour ce navigateur.</p><p>Pour la dĂ©sactiver Ă " -"nouveau, merci de visiter <a href='URL'>cette page</a>.</p>" +"nouveau, merci de visiter <a href='%URL%'>cette page</a>.</p>" msgid "Turned off ability to use automatic login for this browser" msgstr "" @@ -82,9 +82,9 @@ msgstr "" msgid "" "<p>By accessing this page, you have turned off the ability to use " "automatic login for this browser.</p><p>To turn it on again, please visit" -" <a href='URL'>this page</a>.</p>" +" <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>En accĂ©dant Ă cette page, vous avez dĂ©sactivĂ© la possibilitĂ© " "d'utiliser la connection automatique pour ce navigateur.</p><p>Pour " -"l'activer Ă nouveau, merci de visiter <a href='URL'>cette page</a>.</p>" +"l'activer Ă nouveau, merci de visiter <a href='%URL%'>cette page</a>.</p>" diff --git a/modules/negotiate/locales/hr/LC_MESSAGES/negotiate.po b/modules/negotiate/locales/hr/LC_MESSAGES/negotiate.po index 66224180fd6f2b496182a0a96f47c855443eac03..e4e8c246d74e72857957325557554f1cb4a56cb6 100644 --- a/modules/negotiate/locales/hr/LC_MESSAGES/negotiate.po +++ b/modules/negotiate/locales/hr/LC_MESSAGES/negotiate.po @@ -35,13 +35,13 @@ msgid "{negotiate:negotiate:disable_info_pre}" msgstr "" "<p>Pristupanjem ovoj stranici iskljuÄŤili ste opciju automatske prijave za" " ovaj web preglednik.</p><p>Da biste je ponovo ukljuÄŤili, kliknite <a " -"href='URL'>ovdje</a>.</p>" +"href='%URL%'>ovdje</a>.</p>" msgid "{negotiate:negotiate:enable_info_pre}" msgstr "" "<p>Pristupanjem ovoj stranici ukljuÄŤili ste opciju automatske prijave za " "ovaj web preglednik.</p><p>Da biste iskljuÄŤili opciju automatskog " -"prijavljivanja, kliknite <a href='URL'>ovdje</a>.</p>" +"prijavljivanja, kliknite <a href='%URL%'>ovdje</a>.</p>" msgid "" "<h3>What is automatic login</h3><p>Automatic login allows you to log in " @@ -60,11 +60,11 @@ msgstr "" msgid "" "<p>By accessing this page, you have turned on the ability to use " "automatic login for this browser.</p><p>To turn it off again, please " -"visit <a href='URL'>this page</a>.</p>" +"visit <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Pristupanjem ovoj stranici ukljuÄŤili ste opciju automatske prijave za " "ovaj web preglednik.</p><p>Da biste iskljuÄŤili opciju automatskog " -"prijavljivanja, kliknite <a href='URL'>ovdje</a>.</p>" +"prijavljivanja, kliknite <a href='%URL%'>ovdje</a>.</p>" msgid "Turned off ability to use automatic login for this browser" msgstr "Mogućnost automatske prijave za ovaj web preglednik je iskljuÄŤena" @@ -75,9 +75,9 @@ msgstr "Mogućnost automatske prijave za ovaj web preglednik je ukljuÄŤena" msgid "" "<p>By accessing this page, you have turned off the ability to use " "automatic login for this browser.</p><p>To turn it on again, please visit" -" <a href='URL'>this page</a>.</p>" +" <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Pristupanjem ovoj stranici iskljuÄŤili ste opciju automatske prijave za" " ovaj web preglednik.</p><p>Da biste je ponovo ukljuÄŤili, kliknite <a " -"href='URL'>ovdje</a>.</p>" +"href='%URL%'>ovdje</a>.</p>" diff --git a/modules/negotiate/locales/id/LC_MESSAGES/negotiate.po b/modules/negotiate/locales/id/LC_MESSAGES/negotiate.po index 03418cde3c240c01bafec28d1dfe87ff4be63849..efa859cf47a29f127388528938c5dd22d1932f89 100644 --- a/modules/negotiate/locales/id/LC_MESSAGES/negotiate.po +++ b/modules/negotiate/locales/id/LC_MESSAGES/negotiate.po @@ -34,13 +34,13 @@ msgid "{negotiate:negotiate:disable_info_pre}" msgstr "" "<p>Dengan mengakses halaman ini, Anda telah mematikan login otomatis pada" " peramban ini.</p><p>Hendak menghidupkan login otomatis? Mohon kunjungi " -"<a href='URL'>halaman ini</a>.</p>" +"<a href='%URL%'>halaman ini</a>.</p>" msgid "{negotiate:negotiate:enable_info_pre}" msgstr "" "<p>Dengan mengakses halaman ini, Anda telah mengaktifkan login otomatis " "pada peramban ini.</p><p>Hendak mematika login otomatis? Silakan " -"kunjungi <a href='URL'>halaman ini</a>.</p>" +"kunjungi <a href='%URL%'>halaman ini</a>.</p>" msgid "" "<h3>What is automatic login</h3><p>Automatic login allows you to log in " @@ -59,11 +59,11 @@ msgstr "" msgid "" "<p>By accessing this page, you have turned on the ability to use " "automatic login for this browser.</p><p>To turn it off again, please " -"visit <a href='URL'>this page</a>.</p>" +"visit <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Dengan mengakses halaman ini, Anda telah mengaktifkan login otomatis " "pada peramban ini.</p><p>Hendak mematika login otomatis? Silakan " -"kunjungi <a href='URL'>halaman ini</a>.</p>" +"kunjungi <a href='%URL%'>halaman ini</a>.</p>" msgid "Turned off ability to use automatic login for this browser" msgstr "Login otomatis pada peramban ini telah dimatikan" @@ -74,9 +74,9 @@ msgstr "Login otomatis pada peramban ini telah diaktifkan" msgid "" "<p>By accessing this page, you have turned off the ability to use " "automatic login for this browser.</p><p>To turn it on again, please visit" -" <a href='URL'>this page</a>.</p>" +" <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Dengan mengakses halaman ini, Anda telah mematikan login otomatis pada" " peramban ini.</p><p>Hendak menghidupkan login otomatis? Mohon kunjungi " -"<a href='URL'>halaman ini</a>.</p>" +"<a href='%URL%'>halaman ini</a>.</p>" diff --git a/modules/negotiate/locales/it/LC_MESSAGES/negotiate.po b/modules/negotiate/locales/it/LC_MESSAGES/negotiate.po index 4edff1d992725bc4ec3aef2bdcb8d32153be8d58..f579734f0feb26fdc7f2f87430127b6acce2214a 100644 --- a/modules/negotiate/locales/it/LC_MESSAGES/negotiate.po +++ b/modules/negotiate/locales/it/LC_MESSAGES/negotiate.po @@ -32,13 +32,13 @@ msgstr "Login automatico per questo browser attivato." msgid "{negotiate:negotiate:disable_info_pre}" msgstr "" "<p>Per accedere a questa pagina devi disabilitare il login automatico sul" -" tuo browser</p><p>Per riattivarlo visita <a href='URL'>questa " +" tuo browser</p><p>Per riattivarlo visita <a href='%URL%'>questa " "pagina</a>.</p>" msgid "{negotiate:negotiate:enable_info_pre}" msgstr "" "<p>Per accedere a questa pagina devi abilitare il login automatico sul " -"tuo browser</p><p>Per riattivarlo visita <a href='URL'>questa " +"tuo browser</p><p>Per riattivarlo visita <a href='%URL%'>questa " "pagina</a>.</p>" msgid "" @@ -57,10 +57,10 @@ msgstr "" msgid "" "<p>By accessing this page, you have turned on the ability to use " "automatic login for this browser.</p><p>To turn it off again, please " -"visit <a href='URL'>this page</a>.</p>" +"visit <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Per accedere a questa pagina devi abilitare il login automatico sul " -"tuo browser</p><p>Per riattivarlo visita <a href='URL'>questa " +"tuo browser</p><p>Per riattivarlo visita <a href='%URL%'>questa " "pagina</a>.</p>" msgid "Turned off ability to use automatic login for this browser" @@ -72,9 +72,9 @@ msgstr "Login automatico per questo browser attivato." msgid "" "<p>By accessing this page, you have turned off the ability to use " "automatic login for this browser.</p><p>To turn it on again, please visit" -" <a href='URL'>this page</a>.</p>" +" <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Per accedere a questa pagina devi disabilitare il login automatico sul" -" tuo browser</p><p>Per riattivarlo visita <a href='URL'>questa " +" tuo browser</p><p>Per riattivarlo visita <a href='%URL%'>questa " "pagina</a>.</p>" diff --git a/modules/negotiate/locales/lt/LC_MESSAGES/negotiate.po b/modules/negotiate/locales/lt/LC_MESSAGES/negotiate.po index ab0b640e2486a63508d30f8959cb3954a25b2fe0..ef7d482034a817d14f1a3088f3b8097184e0b68f 100644 --- a/modules/negotiate/locales/lt/LC_MESSAGES/negotiate.po +++ b/modules/negotiate/locales/lt/LC_MESSAGES/negotiate.po @@ -35,13 +35,13 @@ msgid "{negotiate:negotiate:disable_info_pre}" msgstr "" "<p>Jungdamiesi ÄŻ šiÄ… setainÄ™, JĹ«s išjungÄ—te galimybÄ™ naudoti automatinÄŻ " "prisijungimÄ… šioje naršyklÄ—je.</p><p>NorÄ—dami jÄŻ vÄ—l ÄŻjungti, " -"apsilankykite <a href='URL'>šioje svetainÄ—je</a>.</p>" +"apsilankykite <a href='%URL%'>šioje svetainÄ—je</a>.</p>" msgid "{negotiate:negotiate:enable_info_pre}" msgstr "" "<p>Jungdamiesi ÄŻ šiÄ… setainÄ™, JĹ«s ÄŻjungÄ—te galimybÄ™ naudoti automatinÄŻ " "prisijungimÄ… šioje naršyklÄ—je.</p><p>NorÄ—dami jÄŻ vÄ—l išjungti, " -"apsilankykite <a href='URL'>šioje svetainÄ—je</a>.</p>" +"apsilankykite <a href='%URL%'>šioje svetainÄ—je</a>.</p>" msgid "" "<h3>What is automatic login</h3><p>Automatic login allows you to log in " @@ -60,11 +60,11 @@ msgstr "" msgid "" "<p>By accessing this page, you have turned on the ability to use " "automatic login for this browser.</p><p>To turn it off again, please " -"visit <a href='URL'>this page</a>.</p>" +"visit <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Jungdamiesi ÄŻ šiÄ… setainÄ™, JĹ«s ÄŻjungÄ—te galimybÄ™ naudoti automatinÄŻ " "prisijungimÄ… šioje naršyklÄ—je.</p><p>NorÄ—dami jÄŻ vÄ—l išjungti, " -"apsilankykite <a href='URL'>šioje svetainÄ—je</a>.</p>" +"apsilankykite <a href='%URL%'>šioje svetainÄ—je</a>.</p>" msgid "Turned off ability to use automatic login for this browser" msgstr "Išjungta galimybÄ— naudoti automatinÄŻ prisijungimÄ… šioje naršyklÄ—je" @@ -75,9 +75,9 @@ msgstr "Ä®jungta galimybÄ— naudoti automatinÄŻ prisijungimÄ… šioje naršyklÄ—je msgid "" "<p>By accessing this page, you have turned off the ability to use " "automatic login for this browser.</p><p>To turn it on again, please visit" -" <a href='URL'>this page</a>.</p>" +" <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Jungdamiesi ÄŻ šiÄ… setainÄ™, JĹ«s išjungÄ—te galimybÄ™ naudoti automatinÄŻ " "prisijungimÄ… šioje naršyklÄ—je.</p><p>NorÄ—dami jÄŻ vÄ—l ÄŻjungti, " -"apsilankykite <a href='URL'>šioje svetainÄ—je</a>.</p>" +"apsilankykite <a href='%URL%'>šioje svetainÄ—je</a>.</p>" diff --git a/modules/negotiate/locales/nb/LC_MESSAGES/negotiate.po b/modules/negotiate/locales/nb/LC_MESSAGES/negotiate.po index 64d3071f15f35395de7b07a92039f0e6d8ccd0de..ac282609bf5bd8180103e7b977dd9a716495e14b 100644 --- a/modules/negotiate/locales/nb/LC_MESSAGES/negotiate.po +++ b/modules/negotiate/locales/nb/LC_MESSAGES/negotiate.po @@ -34,13 +34,13 @@ msgid "{negotiate:negotiate:disable_info_pre}" msgstr "" "<p>Ved ĂĄ gĂĄ til denne siden har du skrudd av muligheten for automatisk " "innlogging for denne nettleseren.</p><p>For ĂĄ skru pĂĄ igjen muligheten, " -"kan du gĂĄ til <a href='URL'>denne siden</a>.</p>" +"kan du gĂĄ til <a href='%URL%'>denne siden</a>.</p>" msgid "{negotiate:negotiate:enable_info_pre}" msgstr "" "<p>Ved ĂĄ gĂĄ til denne siden har du skrudd pĂĄ muligheten for automatisk " "innlogging for denne nettleseren.</p><p>For ĂĄ skru av igjen muligheten, " -"kan du gĂĄ til <a href='URL'>denne siden</a>.</p>" +"kan du gĂĄ til <a href='%URL%'>denne siden</a>.</p>" msgid "" "<h3>What is automatic login</h3><p>Automatic login allows you to log in " @@ -59,11 +59,11 @@ msgstr "" msgid "" "<p>By accessing this page, you have turned on the ability to use " "automatic login for this browser.</p><p>To turn it off again, please " -"visit <a href='URL'>this page</a>.</p>" +"visit <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Ved ĂĄ gĂĄ til denne siden har du skrudd pĂĄ muligheten for automatisk " "innlogging for denne nettleseren.</p><p>For ĂĄ skru av igjen muligheten, " -"kan du gĂĄ til <a href='URL'>denne siden</a>.</p>" +"kan du gĂĄ til <a href='%URL%'>denne siden</a>.</p>" msgid "Turned off ability to use automatic login for this browser" msgstr "Skrudd av mulighet for automatisk innlogging for denne nettleseren" @@ -74,9 +74,9 @@ msgstr "Skrudd pĂĄ mulighet for automatisk innlogging for denne nettleseren" msgid "" "<p>By accessing this page, you have turned off the ability to use " "automatic login for this browser.</p><p>To turn it on again, please visit" -" <a href='URL'>this page</a>.</p>" +" <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Ved ĂĄ gĂĄ til denne siden har du skrudd av muligheten for automatisk " "innlogging for denne nettleseren.</p><p>For ĂĄ skru pĂĄ igjen muligheten, " -"kan du gĂĄ til <a href='URL'>denne siden</a>.</p>" +"kan du gĂĄ til <a href='%URL%'>denne siden</a>.</p>" diff --git a/modules/negotiate/locales/nl/LC_MESSAGES/negotiate.po b/modules/negotiate/locales/nl/LC_MESSAGES/negotiate.po index 1a073b86fca3792a423ccaf0136a6e722903c6b8..f0553d41f620f3cde570501965ae36ccd91803d4 100644 --- a/modules/negotiate/locales/nl/LC_MESSAGES/negotiate.po +++ b/modules/negotiate/locales/nl/LC_MESSAGES/negotiate.po @@ -34,13 +34,13 @@ msgid "{negotiate:negotiate:disable_info_pre}" msgstr "" "<p>Middels het laden van deze pagina heeft u de mogelijkheid tot " "automatisch inloggen uitgeschakeld voor deze browser.</p><p>Om dit weer " -"in te schakelen, bezoekt u <a href='URL'>deze pagina</a>.</p>" +"in te schakelen, bezoekt u <a href='%URL%'>deze pagina</a>.</p>" msgid "{negotiate:negotiate:enable_info_pre}" msgstr "" "<p>Middels het laden van deze pagina heeft u de mogelijkheid tot " "automatisch inloggen ingeschakeld voor deze browser.</p><p>Om dit weer " -"uit te schakelen, bezoekt u <a href='URL'>deze pagina</a>.</p>" +"uit te schakelen, bezoekt u <a href='%URL%'>deze pagina</a>.</p>" msgid "" "<h3>What is automatic login</h3><p>Automatic login allows you to log in " @@ -59,11 +59,11 @@ msgstr "" msgid "" "<p>By accessing this page, you have turned on the ability to use " "automatic login for this browser.</p><p>To turn it off again, please " -"visit <a href='URL'>this page</a>.</p>" +"visit <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Middels het laden van deze pagina heeft u de mogelijkheid tot " "automatisch inloggen ingeschakeld voor deze browser.</p><p>Om dit weer " -"uit te schakelen, bezoekt u <a href='URL'>deze pagina</a>.</p>" +"uit te schakelen, bezoekt u <a href='%URL%'>deze pagina</a>.</p>" msgid "Turned off ability to use automatic login for this browser" msgstr "Mogelijkheid tot automatisch inloggen voor deze browser uitgeschakeld" @@ -74,9 +74,9 @@ msgstr "Mogelijkheid tot automatisch inloggen voor deze browser ingeschakeld" msgid "" "<p>By accessing this page, you have turned off the ability to use " "automatic login for this browser.</p><p>To turn it on again, please visit" -" <a href='URL'>this page</a>.</p>" +" <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Middels het laden van deze pagina heeft u de mogelijkheid tot " "automatisch inloggen uitgeschakeld voor deze browser.</p><p>Om dit weer " -"in te schakelen, bezoekt u <a href='URL'>deze pagina</a>.</p>" +"in te schakelen, bezoekt u <a href='%URL%'>deze pagina</a>.</p>" diff --git a/modules/negotiate/locales/nn/LC_MESSAGES/negotiate.po b/modules/negotiate/locales/nn/LC_MESSAGES/negotiate.po index 05e0c597fff2b0e8718273ce42cbca4571b8ba3b..5c79bdfb3df82342c6f81e3204b25604ac956995 100644 --- a/modules/negotiate/locales/nn/LC_MESSAGES/negotiate.po +++ b/modules/negotiate/locales/nn/LC_MESSAGES/negotiate.po @@ -34,13 +34,13 @@ msgid "{negotiate:negotiate:disable_info_pre}" msgstr "" "<p>Ved ĂĄ gĂĄ til denne siden har du skrudd av moglegheit for automatisk " "innlogging for denne nettlesaren.</p><p>For ĂĄ skru pĂĄ igjen moglegheita, " -"kan du gĂĄ til <a href='URL'>denne siden</a>.</p>" +"kan du gĂĄ til <a href='%URL%'>denne siden</a>.</p>" msgid "{negotiate:negotiate:enable_info_pre}" msgstr "" "<p>Ved ĂĄ gĂĄ til denne siden har du skrudd pĂĄ moglegheit for automatisk " "innlogging for denne nettlesaren.</p><p>For ĂĄ skru av igjen moglegheita, " -"kan du gĂĄ til <a href='URL'>denne siden</a>.</p>" +"kan du gĂĄ til <a href='%URL%'>denne siden</a>.</p>" msgid "" "<h3>What is automatic login</h3><p>Automatic login allows you to log in " @@ -59,11 +59,11 @@ msgstr "" msgid "" "<p>By accessing this page, you have turned on the ability to use " "automatic login for this browser.</p><p>To turn it off again, please " -"visit <a href='URL'>this page</a>.</p>" +"visit <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Ved ĂĄ gĂĄ til denne siden har du skrudd pĂĄ moglegheit for automatisk " "innlogging for denne nettlesaren.</p><p>For ĂĄ skru av igjen moglegheita, " -"kan du gĂĄ til <a href='URL'>denne siden</a>.</p>" +"kan du gĂĄ til <a href='%URL%'>denne siden</a>.</p>" msgid "Turned off ability to use automatic login for this browser" msgstr "Skrudd av moglegheit for automatisk innlogging for denne nettlesaren" @@ -74,9 +74,9 @@ msgstr "Skrudd pĂĄ moglegheit for automatisk innlogging for denne nettlesaren" msgid "" "<p>By accessing this page, you have turned off the ability to use " "automatic login for this browser.</p><p>To turn it on again, please visit" -" <a href='URL'>this page</a>.</p>" +" <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Ved ĂĄ gĂĄ til denne siden har du skrudd av moglegheit for automatisk " "innlogging for denne nettlesaren.</p><p>For ĂĄ skru pĂĄ igjen moglegheita, " -"kan du gĂĄ til <a href='URL'>denne siden</a>.</p>" +"kan du gĂĄ til <a href='%URL%'>denne siden</a>.</p>" diff --git a/modules/negotiate/locales/ro/LC_MESSAGES/negotiate.po b/modules/negotiate/locales/ro/LC_MESSAGES/negotiate.po index ff2c088615063b1ec300deba1601fa0a9c5913b9..259e2fdc28258022acf333095932c6f0d81e05e9 100644 --- a/modules/negotiate/locales/ro/LC_MESSAGES/negotiate.po +++ b/modules/negotiate/locales/ro/LC_MESSAGES/negotiate.po @@ -39,14 +39,14 @@ msgid "{negotiate:negotiate:disable_info_pre}" msgstr "" "<p>Prin accesarea acestei pagini aČ›i dezactivat posibilitatea utilizÄrii " "autentificÄrii automate pentru acest browser.</p><p>Pentru a activa din " -"nou aceastÄ posibilitate vÄ rugÄm sÄ accesaČ›i <a href=\"URL\">aceastÄ " +"nou aceastÄ posibilitate vÄ rugÄm sÄ accesaČ›i <a href='%URL%'>aceastÄ " "paginÄ</a>.</p>" msgid "{negotiate:negotiate:enable_info_pre}" msgstr "" "<p>Prin accesarea acestei pagini aČ›i activat posibilitatea utilizÄrii " "autentificÄrii automate pentru acest browser.</p><p>Pentru a dezactiva " -"aceastÄ posibilitate vÄ rugÄm sÄ accesaČ›i <a href=\"URL\">aceastÄ " +"aceastÄ posibilitate vÄ rugÄm sÄ accesaČ›i <a href='%URL%'>aceastÄ " "paginÄ</a>.</p>" msgid "" @@ -66,11 +66,11 @@ msgstr "" msgid "" "<p>By accessing this page, you have turned on the ability to use " "automatic login for this browser.</p><p>To turn it off again, please " -"visit <a href='URL'>this page</a>.</p>" +"visit <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Prin accesarea acestei pagini aČ›i activat posibilitatea utilizÄrii " "autentificÄrii automate pentru acest browser.</p><p>Pentru a dezactiva " -"aceastÄ posibilitate vÄ rugÄm sÄ accesaČ›i <a href=\"URL\">aceastÄ " +"aceastÄ posibilitate vÄ rugÄm sÄ accesaČ›i <a href='%URL%'>aceastÄ " "paginÄ</a>.</p>" msgid "Turned off ability to use automatic login for this browser" @@ -86,10 +86,10 @@ msgstr "" msgid "" "<p>By accessing this page, you have turned off the ability to use " "automatic login for this browser.</p><p>To turn it on again, please visit" -" <a href='URL'>this page</a>.</p>" +" <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Prin accesarea acestei pagini aČ›i dezactivat posibilitatea utilizÄrii " "autentificÄrii automate pentru acest browser.</p><p>Pentru a activa din " -"nou aceastÄ posibilitate vÄ rugÄm sÄ accesaČ›i <a href=\"URL\">aceastÄ " +"nou aceastÄ posibilitate vÄ rugÄm sÄ accesaČ›i <a href='%URL%'>aceastÄ " "paginÄ</a>.</p>" diff --git a/modules/negotiate/locales/ru/LC_MESSAGES/negotiate.po b/modules/negotiate/locales/ru/LC_MESSAGES/negotiate.po index cefd89e1ffded6a06326624d1078fe2af2b0cf11..0011b484cbeec43d0ca0f4287337fd6012a10b70 100644 --- a/modules/negotiate/locales/ru/LC_MESSAGES/negotiate.po +++ b/modules/negotiate/locales/ru/LC_MESSAGES/negotiate.po @@ -36,13 +36,13 @@ msgid "{negotiate:negotiate:disable_info_pre}" msgstr "" "<p>Войдя на ŃŤŃ‚Ń ŃтраницŃ, Đ’Ń‹ отключили возможноŃŃ‚ŃŚ иŃпользовать Ń„Ńнкцию " "автоматичеŃкого логина в данном браŃзере.</p><p>Для повторного включения " -"поŃетите <a href='URL'>ŃŤŃ‚Ń ŃтраницŃ</a>.</p>" +"поŃетите <a href='%URL%'>ŃŤŃ‚Ń ŃтраницŃ</a>.</p>" msgid "{negotiate:negotiate:enable_info_pre}" msgstr "" "<p>Войдя на ŃŤŃ‚Ń ŃтраницŃ, Đ’Ń‹ включили возможноŃŃ‚ŃŚ иŃпользовать Ń„Ńнкцию " "автоматичеŃкого логина в данном браŃзере.</p><p>Для ее отключения , " -"пожалŃĐąŃŃ‚Đ°, поŃетите <a href='URL'>ŃŤŃ‚Ń ŃтраницŃ</a>.</p>" +"пожалŃĐąŃŃ‚Đ°, поŃетите <a href='%URL%'>ŃŤŃ‚Ń ŃтраницŃ</a>.</p>" msgid "" "<h3>What is automatic login</h3><p>Automatic login allows you to log in " @@ -60,11 +60,11 @@ msgstr "" msgid "" "<p>By accessing this page, you have turned on the ability to use " "automatic login for this browser.</p><p>To turn it off again, please " -"visit <a href='URL'>this page</a>.</p>" +"visit <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Войдя на ŃŤŃ‚Ń ŃтраницŃ, Đ’Ń‹ включили возможноŃŃ‚ŃŚ иŃпользовать Ń„Ńнкцию " "автоматичеŃкого логина в данном браŃзере.</p><p>Для ее отключения , " -"пожалŃĐąŃŃ‚Đ°, поŃетите <a href='URL'>ŃŤŃ‚Ń ŃтраницŃ</a>.</p>" +"пожалŃĐąŃŃ‚Đ°, поŃетите <a href='%URL%'>ŃŤŃ‚Ń ŃтраницŃ</a>.</p>" msgid "Turned off ability to use automatic login for this browser" msgstr "Отключить Ń„Ńнкцию автоматичеŃкого логина для данного браŃзера" @@ -77,9 +77,9 @@ msgstr "" msgid "" "<p>By accessing this page, you have turned off the ability to use " "automatic login for this browser.</p><p>To turn it on again, please visit" -" <a href='URL'>this page</a>.</p>" +" <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Войдя на ŃŤŃ‚Ń ŃтраницŃ, Đ’Ń‹ отключили возможноŃŃ‚ŃŚ иŃпользовать Ń„Ńнкцию " "автоматичеŃкого логина в данном браŃзере.</p><p>Для повторного включения " -"поŃетите <a href='URL'>ŃŤŃ‚Ń ŃтраницŃ</a>.</p>" +"поŃетите <a href='%URL%'>ŃŤŃ‚Ń ŃтраницŃ</a>.</p>" diff --git a/modules/negotiate/locales/sr/LC_MESSAGES/negotiate.po b/modules/negotiate/locales/sr/LC_MESSAGES/negotiate.po index 3b6711bd5df3cabb424b63079adeefbb91dab118..dadd2077f4d98af96b10f7fb6014ca05613cc68c 100644 --- a/modules/negotiate/locales/sr/LC_MESSAGES/negotiate.po +++ b/modules/negotiate/locales/sr/LC_MESSAGES/negotiate.po @@ -34,13 +34,13 @@ msgid "{negotiate:negotiate:disable_info_pre}" msgstr "" "<p>Pristupanjem na ovu stranicu, ovaj pretraĹľivaÄŤ ste za iskljuÄŤili " "mogućnost automatske prijave.</p><p>Da bi ste opet ukljuÄŤili ovu " -"mogućnost, molim vas posetite <a href='URL'>ovu stranicu</a>.</p>" +"mogućnost, molim vas posetite <a href='%URL%'>ovu stranicu</a>.</p>" msgid "{negotiate:negotiate:enable_info_pre}" msgstr "" "<p>Pristupanjem na ovu stranicu, ovaj pretraĹľivaÄŤ ste za ukljuÄŤili " "mogućnost automatske prijave.</p><p>Da bi ste opet iskljuÄŤili ovu " -"mogućnost, molim vas posetite <a href='URL'>ovu stranicu</a>.</p>" +"mogućnost, molim vas posetite <a href='%URL%'>ovu stranicu</a>.</p>" msgid "" "<h3>What is automatic login</h3><p>Automatic login allows you to log in " @@ -58,11 +58,11 @@ msgstr "" msgid "" "<p>By accessing this page, you have turned on the ability to use " "automatic login for this browser.</p><p>To turn it off again, please " -"visit <a href='URL'>this page</a>.</p>" +"visit <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Pristupanjem na ovu stranicu, ovaj pretraĹľivaÄŤ ste za ukljuÄŤili " "mogućnost automatske prijave.</p><p>Da bi ste opet iskljuÄŤili ovu " -"mogućnost, molim vas posetite <a href='URL'>ovu stranicu</a>.</p>" +"mogućnost, molim vas posetite <a href='%URL%'>ovu stranicu</a>.</p>" msgid "Turned off ability to use automatic login for this browser" msgstr "Mogućnost automatske prijave je za ovaj pretraĹľivaÄŤ iskljuÄŤena" @@ -73,9 +73,9 @@ msgstr "Mogućnost automatske prijave je za ovaj pretraĹľivaÄŤ ukljuÄŤena" msgid "" "<p>By accessing this page, you have turned off the ability to use " "automatic login for this browser.</p><p>To turn it on again, please visit" -" <a href='URL'>this page</a>.</p>" +" <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Pristupanjem na ovu stranicu, ovaj pretraĹľivaÄŤ ste za iskljuÄŤili " "mogućnost automatske prijave.</p><p>Da bi ste opet ukljuÄŤili ovu " -"mogućnost, molim vas posetite <a href='URL'>ovu stranicu</a>.</p>" +"mogućnost, molim vas posetite <a href='%URL%'>ovu stranicu</a>.</p>" diff --git a/modules/negotiate/locales/sv/LC_MESSAGES/negotiate.po b/modules/negotiate/locales/sv/LC_MESSAGES/negotiate.po index b2e6bfefe035cfe55266aa3253e3591cab9d4d0b..ef4890ee15aad29cdb5717c751f97ef11afa5501 100644 --- a/modules/negotiate/locales/sv/LC_MESSAGES/negotiate.po +++ b/modules/negotiate/locales/sv/LC_MESSAGES/negotiate.po @@ -38,13 +38,13 @@ msgid "{negotiate:negotiate:disable_info_pre}" msgstr "" "<p>Genom att besöka denna sida har du stängt av möjligheten att använda " "automatisk inloggning för denna webbläsare.</p><p>För att slĂĄ pĂĄ " -"möjligheten igen besök <a href='URL'>denna sida</a>.</p>" +"möjligheten igen besök <a href='%URL%'>denna sida</a>.</p>" msgid "{negotiate:negotiate:enable_info_pre}" msgstr "" "<p>Genom att besöka denna sida har du aktiverat möjligheten att använda " "automatisk inloggning för denna webbläsare.</p><p>För att slĂĄ av " -"möjligheten igen besök <a href='URL'>denna sida</a>.</p>" +"möjligheten igen besök <a href='%URL%'>denna sida</a>.</p>" msgid "" "<h3>What is automatic login</h3><p>Automatic login allows you to log in " @@ -63,11 +63,11 @@ msgstr "" msgid "" "<p>By accessing this page, you have turned on the ability to use " "automatic login for this browser.</p><p>To turn it off again, please " -"visit <a href='URL'>this page</a>.</p>" +"visit <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Genom att besöka denna sida har du aktiverat möjligheten att använda " "automatisk inloggning för denna webbläsare.</p><p>För att slĂĄ av " -"möjligheten igen besök <a href='URL'>denna sida</a>.</p>" +"möjligheten igen besök <a href='%URL%'>denna sida</a>.</p>" msgid "Turned off ability to use automatic login for this browser" msgstr "" @@ -82,9 +82,9 @@ msgstr "" msgid "" "<p>By accessing this page, you have turned off the ability to use " "automatic login for this browser.</p><p>To turn it on again, please visit" -" <a href='URL'>this page</a>.</p>" +" <a href='%URL%'>this page</a>.</p>" msgstr "" "<p>Genom att besöka denna sida har du stängt av möjligheten att använda " "automatisk inloggning för denna webbläsare.</p><p>För att slĂĄ pĂĄ " -"möjligheten igen besök <a href='URL'>denna sida</a>.</p>" +"möjligheten igen besök <a href='%URL%'>denna sida</a>.</p>" diff --git a/modules/negotiate/locales/zh-tw/LC_MESSAGES/negotiate.po b/modules/negotiate/locales/zh-tw/LC_MESSAGES/negotiate.po index c0c0fbb2a0ef39c33f8723a5ba772907baa6b1c5..4d85c762449728a83fc86721b0ecc1ef0510cd8a 100644 --- a/modules/negotiate/locales/zh-tw/LC_MESSAGES/negotiate.po +++ b/modules/negotiate/locales/zh-tw/LC_MESSAGES/negotiate.po @@ -28,10 +28,10 @@ msgid "{negotiate:negotiate:enable_title}" msgstr "ĺ—試於瀏覽器開啟自動登入" msgid "{negotiate:negotiate:disable_info_pre}" -msgstr "<p>當ĺ取ć¤é 時,您已經於瀏覽器關閉自動登入。</p><p>如č¦ĺ†Ťĺş¦é–‹ĺ•źďĽŚč«‹é€ 訪<a href='URL'>ć¤é </a>。</p>" +msgstr "<p>當ĺ取ć¤é 時,您已經於瀏覽器關閉自動登入。</p><p>如č¦ĺ†Ťĺş¦é–‹ĺ•źďĽŚč«‹é€ 訪<a href='%URL%'>ć¤é </a>。</p>" msgid "{negotiate:negotiate:enable_info_pre}" -msgstr "<p>當ĺ取ć¤é 時,您已經開啟瀏覽器自動登入。</p><p>如č¦ĺ†Ťć¬ˇé—śé–‰ďĽŚč«‹é€ 訪<a href='URL'>ć¤é </a>。</p>" +msgstr "<p>當ĺ取ć¤é 時,您已經開啟瀏覽器自動登入。</p><p>如č¦ĺ†Ťć¬ˇé—śé–‰ďĽŚč«‹é€ 訪<a href='%URL%'>ć¤é </a>。</p>" msgid "" "<h3>What is automatic login</h3><p>Automatic login allows you to log in " @@ -47,8 +47,8 @@ msgstr "" msgid "" "<p>By accessing this page, you have turned on the ability to use " "automatic login for this browser.</p><p>To turn it off again, please " -"visit <a href='URL'>this page</a>.</p>" -msgstr "<p>當ĺ取ć¤é 時,您已經開啟瀏覽器自動登入。</p><p>如č¦ĺ†Ťć¬ˇé—śé–‰ďĽŚč«‹é€ 訪<a href='URL'>ć¤é </a>。</p>" +"visit <a href='%URL%'>this page</a>.</p>" +msgstr "<p>當ĺ取ć¤é 時,您已經開啟瀏覽器自動登入。</p><p>如č¦ĺ†Ťć¬ˇé—śé–‰ďĽŚč«‹é€ 訪<a href='%URL%'>ć¤é </a>。</p>" msgid "Turned off ability to use automatic login for this browser" msgstr "ĺ—試於瀏覽器關閉自動登入功č˝" @@ -59,6 +59,6 @@ msgstr "ĺ—試於瀏覽器開啟自動登入" msgid "" "<p>By accessing this page, you have turned off the ability to use " "automatic login for this browser.</p><p>To turn it on again, please visit" -" <a href='URL'>this page</a>.</p>" -msgstr "<p>當ĺ取ć¤é 時,您已經於瀏覽器關閉自動登入。</p><p>如č¦ĺ†Ťĺş¦é–‹ĺ•źďĽŚč«‹é€ 訪<a href='URL'>ć¤é </a>。</p>" +" <a href='%URL%'>this page</a>.</p>" +msgstr "<p>當ĺ取ć¤é 時,您已經於瀏覽器關閉自動登入。</p><p>如č¦ĺ†Ťĺş¦é–‹ĺ•źďĽŚč«‹é€ 訪<a href='%URL%'>ć¤é </a>。</p>" diff --git a/modules/negotiate/locales/zh/LC_MESSAGES/negotiate.po b/modules/negotiate/locales/zh/LC_MESSAGES/negotiate.po index c7f787f2cd795dea8762fa8b316863fff8858be3..5df463436a30be2ea9c56cf1122867bc80a5aaf4 100644 --- a/modules/negotiate/locales/zh/LC_MESSAGES/negotiate.po +++ b/modules/negotiate/locales/zh/LC_MESSAGES/negotiate.po @@ -22,7 +22,7 @@ msgid "{negotiate:negotiate:enable_title}" msgstr "ĺŻç”¨ćś¬ćµŹč§ĺ™¨ä¸Šçš„自动登录功č˝" msgid "{negotiate:negotiate:disable_info_pre}" -msgstr "<p>当您连上本页面时,本浏č§ĺ™¨č‡ŞĺŠ¨ç™»ĺ˝•ĺŠźč˝ĺ·˛ĺ…łé—。</p><p>请访问<a href='URL'>ć¤ĺ¤„</a>以重新ĺŻç”¨č‡ŞĺŠ¨ç™»ĺ˝•ĺŠźč˝ă€‚</p>" +msgstr "<p>当您连上本页面时,本浏č§ĺ™¨č‡ŞĺŠ¨ç™»ĺ˝•ĺŠźč˝ĺ·˛ĺ…łé—。</p><p>请访问<a href='%URL%'>ć¤ĺ¤„</a>以重新ĺŻç”¨č‡ŞĺŠ¨ç™»ĺ˝•ĺŠźč˝ă€‚</p>" msgid "Turned off ability to use automatic login for this browser" msgstr "ĺ…łé—本浏č§ĺ™¨ä¸Šçš„自动登录功č˝" @@ -33,6 +33,6 @@ msgstr "ĺŻç”¨ćś¬ćµŹč§ĺ™¨ä¸Šçš„自动登录功č˝" msgid "" "<p>By accessing this page, you have turned off the ability to use " "automatic login for this browser.</p><p>To turn it on again, please visit" -" <a href='URL'>this page</a>.</p>" -msgstr "<p>当您连上本页面时,本浏č§ĺ™¨č‡ŞĺŠ¨ç™»ĺ˝•ĺŠźč˝ĺ·˛ĺ…łé—。</p><p>请访问<a href='URL'>ć¤ĺ¤„</a>以重新ĺŻç”¨č‡ŞĺŠ¨ç™»ĺ˝•ĺŠźč˝ă€‚</p>" +" <a href='%URL%'>this page</a>.</p>" +msgstr "<p>当您连上本页面时,本浏č§ĺ™¨č‡ŞĺŠ¨ç™»ĺ˝•ĺŠźč˝ĺ·˛ĺ…łé—。</p><p>请访问<a href='%URL%'>ć¤ĺ¤„</a>以重新ĺŻç”¨č‡ŞĺŠ¨ç™»ĺ˝•ĺŠźč˝ă€‚</p>" diff --git a/modules/negotiate/templates/disable.twig b/modules/negotiate/templates/disable.twig new file mode 100644 index 0000000000000000000000000000000000000000..07fccdd269674e0262a98e5eada9541e90354c64 --- /dev/null +++ b/modules/negotiate/templates/disable.twig @@ -0,0 +1,9 @@ +{% extends "base.twig" %} + +{% block content %} + <h1>{{ '{negotiate:negotiate:disable_title}'|trans }}</h1> + <br /> + {{ '{negotiate:negotiate:disable_info_pre}'|trans({'%URL%': url}, "app")|raw }} + <br /> + {{ '{negotiate:negotiate:info_post}'|trans|raw }} +{% endblock %} diff --git a/modules/negotiate/templates/enable.twig b/modules/negotiate/templates/enable.twig new file mode 100644 index 0000000000000000000000000000000000000000..07e5579646ad3cd524995969a6553a58fef1fe58 --- /dev/null +++ b/modules/negotiate/templates/enable.twig @@ -0,0 +1,9 @@ +{% extends "base.twig" %} + +{% block content %} + <h1>{{ '{negotiate:negotiate:enable_title}'|trans }}</h1> + <br /> + {{ '{negotiate:negotiate:enable_info_pre}'|trans({'%URL%': url}, "app")|raw }} + <br /> + {{ '{negotiate:negotiate:info_post}'|trans|raw }} +{% endblock %}