Translate page titles for pages translated so far.
parent
c36e0dbf9c
commit
4f7e3ed4e3
|
@ -15,7 +15,6 @@ statistics.number_users=Number of users: <span class="label label-info" id="user
|
||||||
statistics.number_clients=Authorized clients: <span class="label label-info" id="clientCount">{0}</span>.
|
statistics.number_clients=Authorized clients: <span class="label label-info" id="clientCount">{0}</span>.
|
||||||
statistics.number_approvals=Approved sites: <span class="label label-info" id="approvalCount">{0}</span>.</p>
|
statistics.number_approvals=Approved sites: <span class="label label-info" id="approvalCount">{0}</span>.</p>
|
||||||
|
|
||||||
home.title=Home
|
|
||||||
home.welcome=Welcome!
|
home.welcome=Welcome!
|
||||||
home.welcome.body=\
|
home.welcome.body=\
|
||||||
OpenID Connect is an internet-scale federated identity protocol built on top of the OAuth2 authorization framework. \
|
OpenID Connect is an internet-scale federated identity protocol built on top of the OAuth2 authorization framework. \
|
||||||
|
@ -62,3 +61,4 @@ sidebar.developer.resource_registration=Self-service protected resource registra
|
||||||
|
|
||||||
manage.ok=OK
|
manage.ok=OK
|
||||||
manage.loading=Loading
|
manage.loading=Loading
|
||||||
|
manage.title=Management Console
|
|
@ -66,3 +66,4 @@ sidebar.developer.resource_registration=Self-service registrering av skyddad res
|
||||||
|
|
||||||
manage.ok=OK
|
manage.ok=OK
|
||||||
manage.loading=Laddar
|
manage.loading=Laddar
|
||||||
|
manage.title=Administrationsgränssnitt
|
|
@ -1,11 +1,11 @@
|
||||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
|
||||||
<%@ taglib prefix="o" tagdir="/WEB-INF/tags"%>
|
<%@ taglib prefix="o" tagdir="/WEB-INF/tags"%>
|
||||||
<%@ taglib prefix="security"
|
<%@ taglib prefix="security" uri="http://www.springframework.org/security/tags"%>
|
||||||
uri="http://www.springframework.org/security/tags"%>
|
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
||||||
|
|
||||||
<!-- TODO: highlight proper section of topbar; what is the right way to do this? -->
|
<!-- TODO: highlight proper section of topbar; what is the right way to do this? -->
|
||||||
|
<spring:message code="about.title" var="title"/>
|
||||||
<o:header title="About"/>
|
<o:header title="${title}"/>
|
||||||
<o:topbar pageName="About"/>
|
<o:topbar pageName="About"/>
|
||||||
<div class="container-fluid main">
|
<div class="container-fluid main">
|
||||||
<div class="row-fluid">
|
<div class="row-fluid">
|
||||||
|
|
|
@ -1,11 +1,12 @@
|
||||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
|
||||||
<%@ taglib prefix="o" tagdir="/WEB-INF/tags"%>
|
<%@ taglib prefix="o" tagdir="/WEB-INF/tags"%>
|
||||||
<%@ taglib prefix="security"
|
<%@ taglib prefix="security" uri="http://www.springframework.org/security/tags"%>
|
||||||
uri="http://www.springframework.org/security/tags"%>
|
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
||||||
|
|
||||||
<!-- TODO: highlight proper section of topbar; what is the right way to do this? -->
|
<!-- TODO: highlight proper section of topbar; what is the right way to do this? -->
|
||||||
|
|
||||||
<o:header title="Contact"/>
|
<spring:message code="contact.title" var="title"/>
|
||||||
|
<o:header title="${title}"/>
|
||||||
<o:topbar pageName="Contact"/>
|
<o:topbar pageName="Contact"/>
|
||||||
<div class="container-fluid main">
|
<div class="container-fluid main">
|
||||||
<div class="row-fluid">
|
<div class="row-fluid">
|
||||||
|
|
|
@ -3,7 +3,8 @@
|
||||||
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
||||||
<%@ taglib prefix="security" uri="http://www.springframework.org/security/tags"%>
|
<%@ taglib prefix="security" uri="http://www.springframework.org/security/tags"%>
|
||||||
|
|
||||||
<o:header title="welcome" />
|
<spring:message code="home.welcome" var="title"/>
|
||||||
|
<o:header title="${title}" />
|
||||||
<o:topbar pageName="Home" />
|
<o:topbar pageName="Home" />
|
||||||
<div class="container-fluid main">
|
<div class="container-fluid main">
|
||||||
<div class="row-fluid">
|
<div class="row-fluid">
|
||||||
|
|
|
@ -2,7 +2,8 @@
|
||||||
<%@ taglib prefix="o" tagdir="/WEB-INF/tags"%>
|
<%@ taglib prefix="o" tagdir="/WEB-INF/tags"%>
|
||||||
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
||||||
|
|
||||||
<o:header title="Management Console"/>
|
<spring:message code="manage.title" var="title"/>
|
||||||
|
<o:header title="${title}"/>
|
||||||
<o:topbar pageName="Home" />
|
<o:topbar pageName="Home" />
|
||||||
|
|
||||||
<!-- Modal dialogue for management UI -->
|
<!-- Modal dialogue for management UI -->
|
||||||
|
|
|
@ -1,11 +1,12 @@
|
||||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
|
||||||
<%@ taglib prefix="o" tagdir="/WEB-INF/tags"%>
|
<%@ taglib prefix="o" tagdir="/WEB-INF/tags"%>
|
||||||
<%@ taglib prefix="security"
|
<%@ taglib prefix="security" uri="http://www.springframework.org/security/tags"%>
|
||||||
uri="http://www.springframework.org/security/tags"%>
|
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
||||||
|
|
||||||
<!-- TODO: highlight proper section of topbar; what is the right way to do this? -->
|
<!-- TODO: highlight proper section of topbar; what is the right way to do this? -->
|
||||||
|
|
||||||
<o:header title="Statistics"/>
|
<spring:message code="statistics.title" var="title"/>
|
||||||
|
<o:header title="${title}"/>
|
||||||
<o:topbar pageName="Statistics"/>
|
<o:topbar pageName="Statistics"/>
|
||||||
<div class="container-fluid main">
|
<div class="container-fluid main">
|
||||||
<div class="row-fluid">
|
<div class="row-fluid">
|
||||||
|
|
Loading…
Reference in New Issue