diff --git a/perun-oidc-server-webapp/src/main/resources/localization/messages_cs.properties b/perun-oidc-server-webapp/src/main/resources/localization/messages_cs.properties index 0f0f2fad51eda23ba7ac5e959e70ddffa9d843d9..df5a9260d538b8e119bc5a1be67e43a2b3fa70fe 100644 --- a/perun-oidc-server-webapp/src/main/resources/localization/messages_cs.properties +++ b/perun-oidc-server-webapp/src/main/resources/localization/messages_cs.properties @@ -86,6 +86,7 @@ phone_number=Telefon 403_not_in_env_vos_groups_hdr=P\u0159\u00EDstup zam\u00EDtnut 403_not_in_env_vos_groups_msg=Tato str\u00E1nka se V\u00E1m zobrazuje, proto\u017Ee nespl\u0148ujete podm\u00EDnky \u010Dlenstv\u00ED v organiza\u010Dn\u00EDch jednotk\u00E1ch AAI. 403_not_in_env_vos_groups_urls=Pomoc\u00ED n\u00E1sleduj\u00FA\u00EDc\u00EDch odkaz\u016F se m\u016F\u017Eete do organiza\u010Dn\u00EDch jednotek registrovat. Pokud nevid\u00EDte \u017E\u00E1dn\u00E9 odkazy, kontaktujte spr\u00E1ve slu\u017Eby pro p\u0159idelen\u00ED p\u0159\u00EDstupu. +403_not_in_env_vos_groups_urls_register=Zaregistrovat se do {0} 403_not_in_env_vos_groups_client_contact=Pokud si mysl\u00EDte, \u017Ee v\u00E1m byl p\u0159\u00EDstup odep\u0159en nepr\u00E1vem, nebo chcete p\u0159\u00EDstup z\u00EDskat, kontaktujte spr\u00E1vce slu\u017Eby pomoc\u00ED kontakt\u016F n\u00ED\u017Ee. 403_not_logged_in_hdr=P\u0159\u00EDstup zam\u00EDtnut diff --git a/perun-oidc-server-webapp/src/main/resources/localization/messages_en.properties b/perun-oidc-server-webapp/src/main/resources/localization/messages_en.properties index 4e05cdcc7917be0b231a39a868ffa656bd8d5b7f..344f643fe2c4c5aa47614a0de3caa90385271e77 100644 --- a/perun-oidc-server-webapp/src/main/resources/localization/messages_en.properties +++ b/perun-oidc-server-webapp/src/main/resources/localization/messages_en.properties @@ -85,6 +85,7 @@ phone_number=Phone 403_not_in_env_vos_groups_hdr=Access denied 403_not_in_env_vos_groups_msg=You see this page because you are not allowed to access this service. The reason is that you are not member of the required organizational units. 403_not_in_env_vos_groups_urls=Please register into the required units using the links below. If you see no links, please get in touch with the service operator to grant you access. +403_not_in_env_vos_groups_urls_register=Register into {0} 403_not_in_env_vos_groups_client_contact=If you need more information about the access requirements, please use one of the contacts of the service operator below. 403_not_logged_in_hdr=Access denied diff --git a/perun-oidc-server-webapp/src/main/webapp/WEB-INF/views/unauthorized_not_in_env_units.jsp b/perun-oidc-server-webapp/src/main/webapp/WEB-INF/views/unauthorized_not_in_env_units.jsp index 0a69977007b0476b68ce4331144b0958b9463a2c..7622d908918005fb55f58c88a4de079e8452b5a8 100644 --- a/perun-oidc-server-webapp/src/main/webapp/WEB-INF/views/unauthorized_not_in_env_units.jsp +++ b/perun-oidc-server-webapp/src/main/webapp/WEB-INF/views/unauthorized_not_in_env_units.jsp @@ -26,8 +26,8 @@ request.setAttribute("cssLinks", cssLinks); <c:if test="${not empty registrationUrls}"> <ul> <c:forEach var="entry" items="${registrationUrls}"> - <a href="<c:out value="${entry.key}" />" target="_blank"> - <c:out value="${entry.value}" /> + <a href="<c:out value="${entry.key}" />" target="_blank" class="btn-link"> + <spring:message code="403_not_in_env_vos_groups_urls_register" arguments="${entry.value}"/> </a> </c:forEach> </ul>