Translate contact page.

pull/763/head
Fredrik Jönsson 2015-02-04 14:32:05 +01:00
parent 222b7bae91
commit a61759bf74
4 changed files with 17 additions and 10 deletions

View File

@ -3,18 +3,20 @@ common.login=Log in
common.logout=Log out common.logout=Log out
about.title=About about.title=About
about.body=<p>\ about.body=\
This OpenID Connect service is built from the MITREid Connect Open Source project, from \ This OpenID Connect service is built from the MITREid Connect Open Source project, from \
<a href="http://www.mitre.org/">The MITRE Corporation</a> and the <a href="http://kit.mit.edu/">MIT Kerberos and Internet Trust Consortium</a>.\ <a href="http://www.mitre.org/">The MITRE Corporation</a> and the <a href="http://kit.mit.edu/">MIT Kerberos and Internet Trust Consortium</a>.\
</p>\ </p>\
<p>\ <p>\
More information about the project can be found at \ More information about the project can be found at \
<a href="http://github.com/mitreid-connect/">MITREid Connect on GitHub</a>. \ <a href="http://github.com/mitreid-connect/">MITREid Connect on GitHub</a>. \
There, you can submit bug reports, give feedback, or even contribute code patches for additional features you'd like to see.\ There, you can submit bug reports, give feedback, or even contribute code patches for additional features you'd like to see.
</p>
statistics.title=Statistics statistics.title=Statistics
home.title=Home home.title=Home
contact.title=Contact contact.title=Contact
contact.body=To report bugs with the MITREid Connect software itself, use the \
<a href="https://github.com/mitreid-connect/OpenID-Connect-Java-Spring-Server/issues">GitHub issue tracker</a>. \
For problems relating to this server, contact the server's administrator.

View File

@ -4,18 +4,21 @@ common.login=Logga in
common.logout=Logga ut common.logout=Logga ut
about.title=Om&nbsp;Tjänsten about.title=Om&nbsp;Tjänsten
about.body=<p>\ about.body=\
Denna OpenID Connect är baserad på öppen källkod ifrån projektet MITREid, skapat av \ Denna OpenID Connect är baserad på öppen källkod ifrån projektet MITREid, skapat av \
<a href="http://www.mitre.org/">The MITRE Corporation</a> och <a href="http://kit.mit.edu/">MIT Kerberos and Internet Trust Consortium</a>.\ <a href="http://www.mitre.org/">The MITRE Corporation</a> och <a href="http://kit.mit.edu/">MIT Kerberos and Internet Trust Consortium</a>.\
</p>\ </p>\
<p>\ <p>\
Mer information om projektet kan finns i projektet \ Mer information om projektet kan finns i projektet \
<a href="http://github.com/mitreid-connect/">MITREid Connect på GitHub</a>. \ <a href="http://github.com/mitreid-connect/">MITREid Connect på GitHub</a>. \
Där kan du skicka in felrapporter, komma med återkoppling, eller till och med bidra med kodtillägg för ytterligare funktioner du skulle vilja ha.\ Där kan du skicka in felrapporter, komma med återkoppling, eller till och med bidra med kodtillägg för ytterligare funktioner du skulle vilja ha.
</p>
statistics.title=Statistik statistics.title=Statistik
home.title=Hem home.title=Hem
contact.title=Kontakt contact.title=Kontakt
contact.body=\
För att rapportera fel i själva programvaran MITREid Connect, använd \
<a href="https://github.com/mitreid-connect/OpenID-Connect-Java-Spring-Server/issues">GitHub issue tracker</a>. \
För problem som är specifika för denna server, kontakta tjänstens administrator.

View File

@ -1,3 +1,5 @@
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> <%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<h2><spring:message code="about.title" text="About"/></h2> <h2><spring:message code="about.title" text="About"/></h2>
<p>
<spring:message code="about.body" text="About body"/> <spring:message code="about.body" text="About body"/>
</p>

View File

@ -1,5 +1,5 @@
<h2>Contact</h2> <%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<p> <h2><spring:message code="contact.title" text="Contact"/></h2>
To report bugs with the MITREid Connect software itself, use the <a href="https://github.com/mitreid-connect/OpenID-Connect-Java-Spring-Server/issues">GitHub issue tracker</a>. <p>
For problems relating to this server, contact the server's administrator. <spring:message code="contact.body" text="Contact body"/>
</p> </p>