Tokens tab translated.
parent
a5ce2f66a2
commit
3c72097f3d
|
@ -16,6 +16,9 @@
|
|||
"client": {
|
||||
"client-form": {
|
||||
"access": "Access",
|
||||
"access-token-no-timeout": "Access tokens do not time out",
|
||||
"access-token-timeout": "Access Token Timeout",
|
||||
"access-token-timeout-help": "Enter this time in seconds, minutes, or hours.",
|
||||
"allow-introspection": "Allow calls to the Introspection Endpoint?",
|
||||
"authentication-method": "Token Endpoint Authentication Method",
|
||||
"authorization-code": "authorization code",
|
||||
|
@ -43,6 +46,8 @@
|
|||
"grant-types": "Grant Types",
|
||||
"home": "Home Page",
|
||||
"home-help": "URL for the client's home page, will be displayed to the user",
|
||||
"hours": "hours",
|
||||
"id-token-timeout": "ID Token Timeout",
|
||||
"implicit": "implicit",
|
||||
"introspection": "Introspection",
|
||||
"jwk-set": "JWK Set",
|
||||
|
@ -50,6 +55,7 @@
|
|||
"logo": "Logo",
|
||||
"logo-help": "URL that points to a logo image, will be displayed on approval page",
|
||||
"main": "Main",
|
||||
"minutes": "minutes",
|
||||
"new": "New Client",
|
||||
"other": "Other",
|
||||
"pairwise": "Pairwise",
|
||||
|
@ -60,8 +66,11 @@
|
|||
"redelegation": "redelegation",
|
||||
"redirect-uris": "Redirect URI(s)",
|
||||
"refresh": "refresh",
|
||||
"refresh-tokens": "Refresh Tokens",
|
||||
"refresh-tokens-issued": "Refresh tokens are issued for this client",
|
||||
"registered": "Registered at",
|
||||
"response-types": "Response Types",
|
||||
"seconds": "seconds",
|
||||
"secret-asymmetric-jwt": "Asymmetrically-signed JWT assertion",
|
||||
"secret-http": "Client Secret over HTTP Basic",
|
||||
"secret-none": "No authentication",
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
"client": {
|
||||
"client-form": {
|
||||
"access": "Behörigheter",
|
||||
"access-token-timeout": "Livslängd för access-token",
|
||||
"access-token-no-timeout": "Access-token har oändlig livslängd",
|
||||
"token-timeout-help": "Ange tiden i sekunder, timmar eller minuter.",
|
||||
"allow-introspection": "Tillåt anrop till introspektionsfunktionen?",
|
||||
"authorization-code": "auktoriseringskod",
|
||||
"authentication-method": "Autentiseringsmetod för att hämta ut nycklar (token endpoint)",
|
||||
|
@ -44,6 +47,8 @@
|
|||
"grant-types": "Grant-typer",
|
||||
"home": "Hemsida",
|
||||
"home-help": "Länk till tjänstens hemsida. Den kommer att visas på bekräftelsesidan.",
|
||||
"hours": "timmar",
|
||||
"id-token-timeout": "Livslängd för ID-token",
|
||||
"implicit": "implicit",
|
||||
"introspection": "Introspektion",
|
||||
"jwk-set": "JWK Set",
|
||||
|
@ -51,6 +56,7 @@
|
|||
"logo": "Logotyp",
|
||||
"logo-help": "Länk till en logotyp. Den kommer att visas på bekräftelsesidan.",
|
||||
"main": "Basinformation",
|
||||
"minutes": "minuter",
|
||||
"new": "Ny klient",
|
||||
"other": "Övrigt",
|
||||
"pairwise": "Parvis",
|
||||
|
@ -60,7 +66,10 @@
|
|||
"redelegation": "redelegation",
|
||||
"redirect-uris": "Omdirigieringslänkar",
|
||||
"refresh": "refresh",
|
||||
"refresh-tokens": "Refresh-tokens",
|
||||
"refresh-tokens-issued": "Refresh-tokens delas ut till denna klient",
|
||||
"registered": "Registrerad",
|
||||
"seconds": "sekunder",
|
||||
"secret-asymmetric-jwt": "Asymmetriskt signerad JWT assertion",
|
||||
"secret-http": "Klienthemlighet över HTTP Basic",
|
||||
"secret-none": "Ingen autentisering",
|
||||
|
@ -82,6 +91,7 @@
|
|||
"token-signing-rsassa-256": "RSASSA med SHA-256 hash-algoritm",
|
||||
"token-signing-rsassa-384": "RSASSA med SHA-384 hash-algoritm",
|
||||
"token-signing-rsassa-512": "RSASSA med SHA-512 hash-algoritm",
|
||||
"token-timeout-help": "Ange tiden i sekunder, timmar eller minuter.",
|
||||
"tokens": "Nycklar",
|
||||
"type": "Typ av tjänst",
|
||||
"type-native": "App",
|
||||
|
|
|
@ -499,47 +499,47 @@
|
|||
|
||||
<div class="tab-pane" id="client-token-tab">
|
||||
<div class="control-group" id="accessTokenValidityTime">
|
||||
<label class="control-label">Access Token Timeout</label>
|
||||
<label class="control-label" data-i18n="client.client-form.access-token-timeout">Access Token Timeout</label>
|
||||
<div class="controls">
|
||||
<div>
|
||||
<label class="checkbox">
|
||||
<input type="checkbox" id="disableAccessTokenTimeout" <%-(accessTokenValiditySeconds == null ? 'checked' : '')%>/> Access tokens do not time out
|
||||
</label>
|
||||
<input type="checkbox" id="disableAccessTokenTimeout" <%-(accessTokenValiditySeconds == null ? 'checked' : '')%>/>
|
||||
<label for="disableAccessTokenTimeout" class="checkbox" data-i18n="client.client-form.access-token-no-timeout">Access tokens do not time out</label>
|
||||
</div>
|
||||
<div>
|
||||
<input type="text" class="" value="<%-(accessTokenValiditySeconds == null ? '' : accessTokenValiditySeconds)%>" id="access-token-timeout-time" size="16" style="width:8em;">
|
||||
<select id="access-token-timeout-unit" style="width:8em;">
|
||||
<option>seconds</option>
|
||||
<option>minutes</option>
|
||||
<option>hours</option>
|
||||
<option data-i18n="client.client-form.seconds">seconds</option>
|
||||
<option data-i18n="client.client-form.minutes">minutes</option>
|
||||
<option data-i18n="client.client-form.hours">hours</option>
|
||||
</select>
|
||||
</div>
|
||||
<p class="help-block">Enter this time in seconds, minutes, or hours.</p>
|
||||
<p class="help-block" data-i18n="client.client-form.token-timeout-help">Enter this time in seconds, minutes, or hours.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="control-group" id="idTokenValidityTime">
|
||||
<label class="control-label">ID Token Timeout</label>
|
||||
<label class="control-label" data-i18n="client.client-form.id-token-timeout">ID Token Timeout</label>
|
||||
<div class="controls">
|
||||
<div>
|
||||
<input type="text" class="" value="<%-(idTokenValiditySeconds == null ? '' : idTokenValiditySeconds)%>" id="id-token-timeout-time" size="16" style="width:8em;">
|
||||
<select id="id-token-timeout-unit" style="width:8em;">
|
||||
<option>seconds</option>
|
||||
<option>minutes</option>
|
||||
<option>hours</option>
|
||||
<option data-i18n="client.client-form.seconds">seconds</option>
|
||||
<option data-i18n="client.client-form.minutes">minutes</option>
|
||||
<option data-i18n="client.client-form.hours">hours</option>
|
||||
</select>
|
||||
</div>
|
||||
<p class="help-block">Enter this time in seconds, minutes, or hours.</p>
|
||||
<p class="help-block" data-i18n="client.client-form.token-timeout-help">Enter this time in seconds, minutes, or hours.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="control-group">
|
||||
<label class="control-label">Refresh Tokens</label>
|
||||
<label class="control-label" data-i18n="client.client-form.refresh-tokens">Refresh Tokens</label>
|
||||
<div class="controls">
|
||||
<label class="checkbox">
|
||||
<input type="checkbox" id="allowRefresh" <%-(allowRefresh == true ? 'checked' : '')%>> Refresh tokens are issued for this client
|
||||
</label>
|
||||
<div>
|
||||
<input type="checkbox" id="allowRefresh" <%-(allowRefresh == true ? 'checked' : '')%>>
|
||||
<label for="allowRefresh" class="checkbox" data-i18n="client.client-form.refresh-tokens-issued">Refresh tokens are issued for this client</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in New Issue