This repository has been archived by the owner on Sep 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from dBucik/translations
refactor: 💡 Refactored how translations are loaded and used
- Loading branch information
Showing
42 changed files
with
331 additions
and
428 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
perun-oidc-server-webapp/src/main/webapp/WEB-INF/tags/common/consentButtons.tag
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> | ||
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> | ||
<%@ taglib prefix="t" tagdir="/WEB-INF/tags/common" %> | ||
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %> | ||
<jsp:useBean id="date" class="java.util.Date" /> | ||
|
||
<div id="footer"> | ||
|
@@ -18,27 +19,32 @@ | |
<div class="col-md-8"> | ||
<div class="row"> | ||
<div class="col col-sm-6"> | ||
<h2>${langProps['footer_other_links']}</h2> | ||
<h2><spring:message code="footer_other_links"/></h2> | ||
<ul> | ||
<li> | ||
<a target="_blank" href="${langProps['einfra_link']}">${langProps['einfra_name']}</a> | ||
<spring:message code="einfra_link" var="einfra_link"/> | ||
<a target="_blank" href="${einfra_link}"><spring:message code="einfra_name"/></a> | ||
</li> | ||
<li> | ||
<a target="_blank" href="${langProps['cesnet_link']}">${langProps['cesnet_name']}</a> | ||
<spring:message code="einfra_link" var="cesnet_link"/> | ||
<a target="_blank" href="${cesnet_link}"><spring:message code="cesnet_name"/></a> | ||
</li> | ||
<li> | ||
<a target="_blank" href="${langProps['cerit_link']}">${langProps['cerit_name']}</a> | ||
<spring:message code="cerit_link" var="cerit_link"/> | ||
<a target="_blank" href="${cerit_link}"><spring:message code="cerit_name"/></a> | ||
</li> | ||
<li> | ||
<a target="_blank" href="${langProps['it4i_link']}">${langProps['it4i_name']}</a> | ||
<spring:message code="it4i_link" var="it4i_link"/> | ||
<a target="_blank" href="${it4i_link}"><spring:message code="it4i_name"/></a> | ||
</li> | ||
<li> | ||
<a target="_blank" href="${langProps['data_processing_link']}">${langProps['data_processing_name']}</a> | ||
<spring:message code="data_processing_link" var="data_processing_link"/> | ||
<a target="_blank" href="${data_processing_link}"><spring:message code="data_processing_name"/></a> | ||
</li> | ||
</ul> | ||
</div> | ||
<div class="col col-sm-6"> | ||
<h2>${langProps['footer_helpdesk']}</h2> | ||
<h2><spring:message code="footer_helpdesk"/></h2> | ||
TEL: +420 234 680 222<br> | ||
GSM: +420 602 252 531<br> | ||
<a href="mailto:[email protected]">[email protected]</a> | ||
|
@@ -48,9 +54,9 @@ | |
</div> | ||
<div class="row"> | ||
<div class="col col-sm-12 copyright"> | ||
© 2021 | <a target="_blank" href="${langProps['einfra_link']}">${langProps['einfra_name']}</a> | ||
© 2021 | <a target="_blank" href="${einfra_link}"><spring:message code="einfra_name"/></a> | ||
<%-- USABLE FROM 2022 --%> | ||
<%--© 2021-<fmt:formatDate value="${date}" pattern="yyyy" /> | <a target="_blank" href="${langProps['einfra_link']}">${langProps['einfra_name']}</a>--%> | ||
<%--© 2021-<fmt:formatDate value="${date}" pattern="yyyy" /> | <a target="_blank" href="<spring:message code="einfra_link"/>"><spring:message code="einfra_name"/></a>--%> | ||
</div> | ||
</div> | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.