Make oidc dashboard view translateable

This commit is contained in:
Johannes Zellner
2023-04-25 11:58:06 +02:00
parent 64074b60b1
commit debcf9c9e9
4 changed files with 76 additions and 36 deletions

View File

@@ -39,7 +39,8 @@
"save": "Save",
"close": "Close",
"no": "No",
"yes": "Yes"
"yes": "Yes",
"delete": "Delete"
},
"username": "Username",
"displayName": "Display name",
@@ -87,7 +88,8 @@
"enableAction": "Enable",
"statusEnabled": "Enabled",
"statusDisabled": "Disabled",
"loadingPlaceholder": "Loading"
"loadingPlaceholder": "Loading",
"settings": "Settings"
},
"appstore": {
"title": "App Store",
@@ -1837,5 +1839,42 @@
"mounts": {
"description": "Apps can access mounted <a href=\"/#/volumes\">volumes</a> via <code>/media/{volume name}</code> directory. This data is not included in the app's backup."
}
},
"oidc": {
"newClientDialog": {
"title": "Add Client",
"description": "Add new OpenID connect client settings.",
"createAction": "Create"
},
"client": {
"name": "Name",
"id": "Client ID",
"secret": "Client Secret",
"signingAlgorithm": "Signing Algorithm",
"loginRedirectUri": "Login callback Url (comma separated if more than one)",
"logoutRedirectUri": "Logout callback Url (optional)"
},
"title": "OpenID Connect Provider",
"description": "Cloudron can act as an OpenID Connect provider for internal apps and external services.",
"editClientDialog": {
"title": "Edit Client {{ client }}"
},
"deleteClientDialog": {
"title": "Really delete client {{ client }}?",
"description": "This will disconnect all external OpenID apps from this Cloudron using this client ID."
},
"env": {
"discoveryUrl": "Discovery URL",
"logoutUrl": "Logout URL",
"profileEndpoint": "Profile Endpoint",
"keysEndpoint": "Keys Endpoint",
"tokenEndpoint": "Token Endpoint",
"authEndpoint": "Auth Endpoint"
},
"clients": {
"title": "Clients",
"newClient": "New client",
"empty": "No clients yet"
}
}
}