mirror of
https://github.com/casdoor/casdoor.git
synced 2025-07-22 10:23:49 +08:00
Compare commits
21 Commits
Author | SHA1 | Date | |
---|---|---|---|
e7c015f288 | |||
c4819602ec | |||
dea03cdd15 | |||
21f394847e | |||
9bef9691fb | |||
141f22a707 | |||
02329d342a | |||
b9d3e2184c | |||
28caf8550e | |||
79159dc809 | |||
63081641d6 | |||
698f24f762 | |||
5499e62d7f | |||
f8905ae64c | |||
a42594859f | |||
46e0bc1a39 | |||
ffe2330238 | |||
ec53616dc8 | |||
067276d739 | |||
468ceb6b71 | |||
b31a317585 |
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
@ -35,7 +35,7 @@ jobs:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 16
|
||||
node-version: 18
|
||||
cache: 'yarn'
|
||||
cache-dependency-path: ./web/yarn.lock
|
||||
- run: yarn install && CI=false yarn run build
|
||||
@ -101,7 +101,7 @@ jobs:
|
||||
working-directory: ./
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 16
|
||||
node-version: 18
|
||||
cache: 'yarn'
|
||||
cache-dependency-path: ./web/yarn.lock
|
||||
- run: yarn install
|
||||
@ -137,7 +137,7 @@ jobs:
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 16
|
||||
node-version: 18
|
||||
|
||||
- name: Fetch Previous version
|
||||
id: get-previous-tag
|
||||
|
40
.github/workflows/helm.yml
vendored
Normal file
40
.github/workflows/helm.yml
vendored
Normal file
@ -0,0 +1,40 @@
|
||||
name: Helm Release
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
paths:
|
||||
- 'manifests/casdoor/Chart.yaml'
|
||||
|
||||
jobs:
|
||||
release-helm-chart:
|
||||
name: Release Helm Chart
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Helm
|
||||
uses: azure/setup-helm@v3
|
||||
|
||||
- name: Log in to Docker Hub
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
|
||||
- name: Release Helm Chart
|
||||
run: |
|
||||
cd manifests/casdoor
|
||||
REGISTRY=oci://registry-1.docker.io/casbin
|
||||
helm package .
|
||||
PKG_NAME=$(ls *.tgz)
|
||||
helm repo index . --url $REGISTRY --merge index.yaml
|
||||
helm push $PKG_NAME $REGISTRY
|
||||
rm $PKG_NAME
|
||||
|
||||
- name: Commit updated helm index.yaml
|
||||
uses: stefanzweifel/git-auto-commit-action@v5
|
||||
with:
|
||||
commit_message: 'ci: update helm index.yaml'
|
@ -1,10 +1,10 @@
|
||||
FROM node:16.18.0 AS FRONT
|
||||
FROM node:18.19.0 AS FRONT
|
||||
WORKDIR /web
|
||||
COPY ./web .
|
||||
RUN yarn install --frozen-lockfile --network-timeout 1000000 && yarn run build
|
||||
|
||||
|
||||
FROM golang:1.19.9 AS BACK
|
||||
FROM golang:1.20.12 AS BACK
|
||||
WORKDIR /go/src/casdoor
|
||||
COPY . .
|
||||
RUN ./build.sh
|
||||
|
14
README.md
14
README.md
@ -42,6 +42,20 @@
|
||||
</a>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<sup>Sponsored by</sup>
|
||||
<br>
|
||||
<a href="https://stytch.com/docs?utm_source=oss-sponsorship&utm_medium=paid_sponsorship&utm_campaign=casbin">
|
||||
<picture>
|
||||
<source media="(prefers-color-scheme: dark)" srcset="https://cdn.casbin.org/img/stytch-white.png">
|
||||
<source media="(prefers-color-scheme: light)" srcset="https://cdn.casbin.org/img/stytch-charcoal.png">
|
||||
<img src="https://cdn.casbin.org/img/stytch-charcoal.png" width="275">
|
||||
</picture>
|
||||
</a><br/>
|
||||
<a href="https://stytch.com/docs?utm_source=oss-sponsorship&utm_medium=paid_sponsorship&utm_campaign=casbin"><b>Build auth with fraud prevention, faster.</b><br/> Try Stytch for API-first authentication, user & org management, multi-tenant SSO, MFA, device fingerprinting, and more.</a>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
## Online demo
|
||||
|
||||
- Read-only site: https://door.casdoor.com (any modification operation will fail)
|
||||
|
@ -92,6 +92,9 @@ p, *, *, GET, /api/get-plan, *, *
|
||||
p, *, *, GET, /api/get-subscription, *, *
|
||||
p, *, *, GET, /api/get-provider, *, *
|
||||
p, *, *, GET, /api/get-organization-names, *, *
|
||||
p, *, *, GET, /api/get-all-objects, *, *
|
||||
p, *, *, GET, /api/get-all-actions, *, *
|
||||
p, *, *, GET, /api/get-all-roles, *, *
|
||||
`
|
||||
|
||||
sa := stringadapter.NewAdapter(ruleText)
|
||||
@ -147,7 +150,7 @@ func IsAllowed(subOwner string, subName string, method string, urlPath string, o
|
||||
|
||||
func isAllowedInDemoMode(subOwner string, subName string, method string, urlPath string, objOwner string, objName string) bool {
|
||||
if method == "POST" {
|
||||
if strings.HasPrefix(urlPath, "/api/login") || urlPath == "/api/logout" || urlPath == "/api/signup" || urlPath == "/api/callback" || urlPath == "/api/send-verification-code" || urlPath == "/api/send-email" || urlPath == "/api/verify-captcha" {
|
||||
if strings.HasPrefix(urlPath, "/api/login") || urlPath == "/api/logout" || urlPath == "/api/signup" || urlPath == "/api/callback" || urlPath == "/api/send-verification-code" || urlPath == "/api/send-email" || urlPath == "/api/verify-captcha" || urlPath == "/api/check-user-password" || strings.HasPrefix(urlPath, "/api/mfa/") {
|
||||
return true
|
||||
} else if urlPath == "/api/update-user" {
|
||||
// Allow ordinary users to update their own information
|
||||
|
@ -56,6 +56,17 @@ type Captcha struct {
|
||||
SubType string `json:"subType"`
|
||||
}
|
||||
|
||||
// this API is used by "Api URL" of Flarum's FoF Passport plugin
|
||||
// https://github.com/FriendsOfFlarum/passport
|
||||
type LaravelResponse struct {
|
||||
Id string `json:"id"`
|
||||
Name string `json:"name"`
|
||||
Email string `json:"email"`
|
||||
EmailVerifiedAt string `json:"email_verified_at"`
|
||||
CreatedAt string `json:"created_at"`
|
||||
UpdatedAt string `json:"updated_at"`
|
||||
}
|
||||
|
||||
// Signup
|
||||
// @Tag Login API
|
||||
// @Title Signup
|
||||
@ -238,7 +249,7 @@ func (c *ApiController) Signup() {
|
||||
// @Param post_logout_redirect_uri query string false "post_logout_redirect_uri"
|
||||
// @Param state query string false "state"
|
||||
// @Success 200 {object} controllers.Response The Response object
|
||||
// @router /logout [get,post]
|
||||
// @router /logout [post]
|
||||
func (c *ApiController) Logout() {
|
||||
// https://openid.net/specs/openid-connect-rpinitiated-1_0-final.html
|
||||
accessToken := c.Input().Get("id_token_hint")
|
||||
@ -418,7 +429,7 @@ func (c *ApiController) GetUserinfo() {
|
||||
// @Title UserInfo2
|
||||
// @Tag Account API
|
||||
// @Description return Laravel compatible user information according to OAuth 2.0
|
||||
// @Success 200 {object} LaravelResponse The Response object
|
||||
// @Success 200 {object} controllers.LaravelResponse The Response object
|
||||
// @router /user [get]
|
||||
func (c *ApiController) GetUserinfo2() {
|
||||
user, ok := c.RequireSignedInUser()
|
||||
@ -426,17 +437,6 @@ func (c *ApiController) GetUserinfo2() {
|
||||
return
|
||||
}
|
||||
|
||||
// this API is used by "Api URL" of Flarum's FoF Passport plugin
|
||||
// https://github.com/FriendsOfFlarum/passport
|
||||
type LaravelResponse struct {
|
||||
Id string `json:"id"`
|
||||
Name string `json:"name"`
|
||||
Email string `json:"email"`
|
||||
EmailVerifiedAt string `json:"email_verified_at"`
|
||||
CreatedAt string `json:"created_at"`
|
||||
UpdatedAt string `json:"updated_at"`
|
||||
}
|
||||
|
||||
response := LaravelResponse{
|
||||
Id: user.Id,
|
||||
Name: user.Name,
|
||||
@ -454,6 +454,7 @@ func (c *ApiController) GetUserinfo2() {
|
||||
// @Tag Login API
|
||||
// @Title GetCaptcha
|
||||
// @router /api/get-captcha [get]
|
||||
// @Success 200 {object} object.Userinfo The Response object
|
||||
func (c *ApiController) GetCaptcha() {
|
||||
applicationId := c.Input().Get("applicationId")
|
||||
isCurrentProvider := c.Input().Get("isCurrentProvider")
|
||||
|
@ -110,6 +110,14 @@ func (c *ApiController) GetApplication() {
|
||||
}
|
||||
}
|
||||
|
||||
// 0 as an initialization value, corresponding to the default configuration parameters
|
||||
if application.FailedSigninLimit == 0 {
|
||||
application.FailedSigninLimit = object.DefaultFailedSigninLimit
|
||||
}
|
||||
if application.FailedSigninfrozenTime == 0 {
|
||||
application.FailedSigninfrozenTime = object.DefaultFailedSigninfrozenTime
|
||||
}
|
||||
|
||||
c.ResponseOk(object.GetMaskedApplication(application, userId))
|
||||
}
|
||||
|
||||
|
@ -222,7 +222,7 @@ func (c *ApiController) HandleLoggedIn(application *object.Application, user *ob
|
||||
// @Param redirectUri query string true "redirect uri"
|
||||
// @Param scope query string true "scope"
|
||||
// @Param state query string true "state"
|
||||
// @Success 200 {object} Response The Response object
|
||||
// @Success 200 {object} controllers.Response The Response object
|
||||
// @router /get-app-login [get]
|
||||
func (c *ApiController) GetApplicationLogin() {
|
||||
clientId := c.Input().Get("clientId")
|
||||
@ -887,6 +887,7 @@ func (c *ApiController) HandleSamlLogin() {
|
||||
// @Tag HandleOfficialAccountEvent API
|
||||
// @Title HandleOfficialAccountEvent
|
||||
// @router /api/webhook [POST]
|
||||
// @Success 200 {object} object.Userinfo The Response object
|
||||
func (c *ApiController) HandleOfficialAccountEvent() {
|
||||
respBytes, err := ioutil.ReadAll(c.Ctx.Request.Body)
|
||||
if err != nil {
|
||||
@ -917,6 +918,7 @@ func (c *ApiController) HandleOfficialAccountEvent() {
|
||||
// @Tag GetWebhookEventType API
|
||||
// @Title GetWebhookEventType
|
||||
// @router /api/get-webhook-event [GET]
|
||||
// @Success 200 {object} object.Userinfo The Response object
|
||||
func (c *ApiController) GetWebhookEventType() {
|
||||
lock.Lock()
|
||||
defer lock.Unlock()
|
||||
@ -946,8 +948,14 @@ func (c *ApiController) GetCaptchaStatus() {
|
||||
return
|
||||
}
|
||||
|
||||
failedSigninLimit, _, err := object.GetFailedSigninConfigByUser(user)
|
||||
if err != nil {
|
||||
c.ResponseError(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
var captchaEnabled bool
|
||||
if user != nil && user.SigninWrongTimes >= object.SigninWrongTimesLimit {
|
||||
if user != nil && user.SigninWrongTimes >= failedSigninLimit {
|
||||
captchaEnabled = true
|
||||
}
|
||||
c.ResponseOk(captchaEnabled)
|
||||
@ -958,6 +966,7 @@ func (c *ApiController) GetCaptchaStatus() {
|
||||
// @Tag Callback API
|
||||
// @Description Get Login Error Counts
|
||||
// @router /api/Callback [post]
|
||||
// @Success 200 {object} object.Userinfo The Response object
|
||||
func (c *ApiController) Callback() {
|
||||
code := c.GetString("code")
|
||||
state := c.GetString("state")
|
||||
|
@ -16,6 +16,7 @@ package controllers
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
|
||||
"github.com/casdoor/casdoor/object"
|
||||
"github.com/casdoor/casdoor/util"
|
||||
@ -25,7 +26,7 @@ import (
|
||||
// @Title Enforce
|
||||
// @Tag Enforce API
|
||||
// @Description Call Casbin Enforce API
|
||||
// @Param body body object.CasbinRequest true "Casbin request"
|
||||
// @Param body body []string true "Casbin request"
|
||||
// @Param permissionId query string false "permission id"
|
||||
// @Param modelId query string false "model id"
|
||||
// @Param resourceId query string false "resource id"
|
||||
@ -42,7 +43,7 @@ func (c *ApiController) Enforce() {
|
||||
return
|
||||
}
|
||||
|
||||
var request object.CasbinRequest
|
||||
var request []string
|
||||
err := json.Unmarshal(c.Ctx.Input.RequestBody, &request)
|
||||
if err != nil {
|
||||
c.ResponseError(err.Error())
|
||||
@ -56,13 +57,22 @@ func (c *ApiController) Enforce() {
|
||||
return
|
||||
}
|
||||
|
||||
res, err := enforcer.Enforce(request...)
|
||||
res := []bool{}
|
||||
keyRes := []string{}
|
||||
|
||||
// type transformation
|
||||
interfaceRequest := util.StringToInterfaceArray(request)
|
||||
|
||||
enforceResult, err := enforcer.Enforce(interfaceRequest...)
|
||||
if err != nil {
|
||||
c.ResponseError(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
c.ResponseOk(res)
|
||||
res = append(res, enforceResult)
|
||||
keyRes = append(keyRes, enforcer.GetModelAndAdapter())
|
||||
|
||||
c.ResponseOk(res, keyRes)
|
||||
return
|
||||
}
|
||||
|
||||
@ -72,22 +82,24 @@ func (c *ApiController) Enforce() {
|
||||
c.ResponseError(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
res := []bool{}
|
||||
|
||||
if permission == nil {
|
||||
res = append(res, false)
|
||||
} else {
|
||||
enforceResult, err := object.Enforce(permission, &request)
|
||||
if err != nil {
|
||||
c.ResponseError(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
res = append(res, enforceResult)
|
||||
c.ResponseError(fmt.Sprintf("permission: %s doesn't exist", permissionId))
|
||||
return
|
||||
}
|
||||
|
||||
c.ResponseOk(res)
|
||||
res := []bool{}
|
||||
keyRes := []string{}
|
||||
|
||||
enforceResult, err := object.Enforce(permission, request)
|
||||
if err != nil {
|
||||
c.ResponseError(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
res = append(res, enforceResult)
|
||||
keyRes = append(keyRes, permission.GetModelAndAdapter())
|
||||
|
||||
c.ResponseOk(res, keyRes)
|
||||
return
|
||||
}
|
||||
|
||||
@ -111,32 +123,33 @@ func (c *ApiController) Enforce() {
|
||||
}
|
||||
|
||||
res := []bool{}
|
||||
|
||||
keyRes := []string{}
|
||||
listPermissionIdMap := object.GroupPermissionsByModelAdapter(permissions)
|
||||
for _, permissionIds := range listPermissionIdMap {
|
||||
for key, permissionIds := range listPermissionIdMap {
|
||||
firstPermission, err := object.GetPermission(permissionIds[0])
|
||||
if err != nil {
|
||||
c.ResponseError(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
enforceResult, err := object.Enforce(firstPermission, &request, permissionIds...)
|
||||
enforceResult, err := object.Enforce(firstPermission, request, permissionIds...)
|
||||
if err != nil {
|
||||
c.ResponseError(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
res = append(res, enforceResult)
|
||||
keyRes = append(keyRes, key)
|
||||
}
|
||||
|
||||
c.ResponseOk(res)
|
||||
c.ResponseOk(res, keyRes)
|
||||
}
|
||||
|
||||
// BatchEnforce
|
||||
// @Title BatchEnforce
|
||||
// @Tag Enforce API
|
||||
// @Description Call Casbin BatchEnforce API
|
||||
// @Param body body object.CasbinRequest true "array of casbin requests"
|
||||
// @Param body body []string true "array of casbin requests"
|
||||
// @Param permissionId query string false "permission id"
|
||||
// @Param modelId query string false "model id"
|
||||
// @Success 200 {object} controllers.Response The Response object
|
||||
@ -146,7 +159,7 @@ func (c *ApiController) BatchEnforce() {
|
||||
modelId := c.Input().Get("modelId")
|
||||
enforcerId := c.Input().Get("enforcerId")
|
||||
|
||||
var requests []object.CasbinRequest
|
||||
var requests [][]string
|
||||
err := json.Unmarshal(c.Ctx.Input.RequestBody, &requests)
|
||||
if err != nil {
|
||||
c.ResponseError(err.Error())
|
||||
@ -160,13 +173,22 @@ func (c *ApiController) BatchEnforce() {
|
||||
return
|
||||
}
|
||||
|
||||
res, err := enforcer.BatchEnforce(requests)
|
||||
res := [][]bool{}
|
||||
keyRes := []string{}
|
||||
|
||||
// type transformation
|
||||
interfaceRequests := util.StringToInterfaceArray2d(requests)
|
||||
|
||||
enforceResult, err := enforcer.BatchEnforce(interfaceRequests)
|
||||
if err != nil {
|
||||
c.ResponseError(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
c.ResponseOk(res)
|
||||
res = append(res, enforceResult)
|
||||
keyRes = append(keyRes, enforcer.GetModelAndAdapter())
|
||||
|
||||
c.ResponseOk(res, keyRes)
|
||||
return
|
||||
}
|
||||
|
||||
@ -176,28 +198,24 @@ func (c *ApiController) BatchEnforce() {
|
||||
c.ResponseError(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
res := [][]bool{}
|
||||
|
||||
if permission == nil {
|
||||
l := len(requests)
|
||||
resRequest := make([]bool, l)
|
||||
for i := 0; i < l; i++ {
|
||||
resRequest[i] = false
|
||||
}
|
||||
|
||||
res = append(res, resRequest)
|
||||
} else {
|
||||
enforceResult, err := object.BatchEnforce(permission, &requests)
|
||||
if err != nil {
|
||||
c.ResponseError(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
res = append(res, enforceResult)
|
||||
c.ResponseError(fmt.Sprintf("permission: %s doesn't exist", permissionId))
|
||||
return
|
||||
}
|
||||
|
||||
c.ResponseOk(res)
|
||||
res := [][]bool{}
|
||||
keyRes := []string{}
|
||||
|
||||
enforceResult, err := object.BatchEnforce(permission, requests)
|
||||
if err != nil {
|
||||
c.ResponseError(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
res = append(res, enforceResult)
|
||||
keyRes = append(keyRes, permission.GetModelAndAdapter())
|
||||
|
||||
c.ResponseOk(res, keyRes)
|
||||
return
|
||||
}
|
||||
|
||||
@ -215,7 +233,7 @@ func (c *ApiController) BatchEnforce() {
|
||||
}
|
||||
|
||||
res := [][]bool{}
|
||||
|
||||
keyRes := []string{}
|
||||
listPermissionIdMap := object.GroupPermissionsByModelAdapter(permissions)
|
||||
for _, permissionIds := range listPermissionIdMap {
|
||||
firstPermission, err := object.GetPermission(permissionIds[0])
|
||||
@ -224,16 +242,17 @@ func (c *ApiController) BatchEnforce() {
|
||||
return
|
||||
}
|
||||
|
||||
enforceResult, err := object.BatchEnforce(firstPermission, &requests, permissionIds...)
|
||||
enforceResult, err := object.BatchEnforce(firstPermission, requests, permissionIds...)
|
||||
if err != nil {
|
||||
c.ResponseError(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
res = append(res, enforceResult)
|
||||
keyRes = append(keyRes, firstPermission.GetModelAndAdapter())
|
||||
}
|
||||
|
||||
c.ResponseOk(res)
|
||||
c.ResponseOk(res, keyRes)
|
||||
}
|
||||
|
||||
func (c *ApiController) GetAllObjects() {
|
||||
|
@ -71,7 +71,7 @@ func (c *ApiController) GetEnforcers() {
|
||||
// @Tag Enforcer API
|
||||
// @Description get enforcer
|
||||
// @Param id query string true "The id ( owner/name ) of enforcer"
|
||||
// @Success 200 {object} object
|
||||
// @Success 200 {object} object.Enforcer
|
||||
// @router /get-enforcer [get]
|
||||
func (c *ApiController) GetEnforcer() {
|
||||
id := c.Input().Get("id")
|
||||
@ -99,7 +99,7 @@ func (c *ApiController) GetEnforcer() {
|
||||
// @Description update enforcer
|
||||
// @Param id query string true "The id ( owner/name ) of enforcer"
|
||||
// @Param enforcer body object true "The enforcer object"
|
||||
// @Success 200 {object} object
|
||||
// @Success 200 {object} object.Enforcer
|
||||
// @router /update-enforcer [post]
|
||||
func (c *ApiController) UpdateEnforcer() {
|
||||
id := c.Input().Get("id")
|
||||
@ -120,7 +120,7 @@ func (c *ApiController) UpdateEnforcer() {
|
||||
// @Tag Enforcer API
|
||||
// @Description add enforcer
|
||||
// @Param enforcer body object true "The enforcer object"
|
||||
// @Success 200 {object} object
|
||||
// @Success 200 {object} object.Enforcer
|
||||
// @router /add-enforcer [post]
|
||||
func (c *ApiController) AddEnforcer() {
|
||||
enforcer := object.Enforcer{}
|
||||
@ -138,8 +138,8 @@ func (c *ApiController) AddEnforcer() {
|
||||
// @Title DeleteEnforcer
|
||||
// @Tag Enforcer API
|
||||
// @Description delete enforcer
|
||||
// @Param body body object.Enforce true "The enforcer object"
|
||||
// @Success 200 {object} object
|
||||
// @Param body body object.Enforcer true "The enforcer object"
|
||||
// @Success 200 {object} object.Enforcer
|
||||
// @router /delete-enforcer [post]
|
||||
func (c *ApiController) DeleteEnforcer() {
|
||||
var enforcer object.Enforcer
|
||||
|
@ -42,7 +42,7 @@ type LdapSyncResp struct {
|
||||
// @Tag Account API
|
||||
// @Description get ldap users
|
||||
// Param id string true "id"
|
||||
// @Success 200 {object} LdapResp The Response object
|
||||
// @Success 200 {object} controllers.LdapResp The Response object
|
||||
// @router /get-ldap-users [get]
|
||||
func (c *ApiController) GetLdapUsers() {
|
||||
id := c.Input().Get("id")
|
||||
@ -250,7 +250,7 @@ func (c *ApiController) DeleteLdap() {
|
||||
// @Tag Account API
|
||||
// @Description sync ldap users
|
||||
// @Param id query string true "id"
|
||||
// @Success 200 {object} LdapSyncResp The Response object
|
||||
// @Success 200 {object} controllers.LdapSyncResp The Response object
|
||||
// @router /sync-ldap-users [post]
|
||||
func (c *ApiController) SyncLdapUsers() {
|
||||
id := c.Input().Get("id")
|
||||
|
@ -26,8 +26,10 @@ type LinkForm struct {
|
||||
}
|
||||
|
||||
// Unlink ...
|
||||
// @router /unlink [post]
|
||||
// @Tag Login API
|
||||
// @Title Unlink
|
||||
// @router /unlink [post]
|
||||
// @Success 200 {object} object.Userinfo The Response object
|
||||
func (c *ApiController) Unlink() {
|
||||
user, ok := c.RequireSignedInUser()
|
||||
if !ok {
|
||||
|
@ -73,7 +73,7 @@ func (c *ApiController) MfaSetupInitiate() {
|
||||
// @Description setup verify totp
|
||||
// @param secret form string true "MFA secret"
|
||||
// @param passcode form string true "MFA passcode"
|
||||
// @Success 200 {object} Response object
|
||||
// @Success 200 {object} controllers.Response The Response object
|
||||
// @router /mfa/setup/verify [post]
|
||||
func (c *ApiController) MfaSetupVerify() {
|
||||
mfaType := c.Ctx.Request.Form.Get("mfaType")
|
||||
@ -104,7 +104,7 @@ func (c *ApiController) MfaSetupVerify() {
|
||||
// @param owner form string true "owner of user"
|
||||
// @param name form string true "name of user"
|
||||
// @param type form string true "MFA auth type"
|
||||
// @Success 200 {object} Response object
|
||||
// @Success 200 {object} controllers.Response The Response object
|
||||
// @router /mfa/setup/enable [post]
|
||||
func (c *ApiController) MfaSetupEnable() {
|
||||
owner := c.Ctx.Request.Form.Get("owner")
|
||||
@ -143,7 +143,7 @@ func (c *ApiController) MfaSetupEnable() {
|
||||
// @Description: Delete MFA
|
||||
// @param owner form string true "owner of user"
|
||||
// @param name form string true "name of user"
|
||||
// @Success 200 {object} Response object
|
||||
// @Success 200 {object} controllers.Response The Response object
|
||||
// @router /delete-mfa/ [post]
|
||||
func (c *ApiController) DeleteMfa() {
|
||||
owner := c.Ctx.Request.Form.Get("owner")
|
||||
@ -176,7 +176,7 @@ func (c *ApiController) DeleteMfa() {
|
||||
// @param owner form string true "owner of user"
|
||||
// @param name form string true "name of user"
|
||||
// @param id form string true "id of user's MFA props"
|
||||
// @Success 200 {object} Response object
|
||||
// @Success 200 {object} controllers.Response The Response object
|
||||
// @router /set-preferred-mfa [post]
|
||||
func (c *ApiController) SetPreferredMfa() {
|
||||
mfaType := c.Ctx.Request.Form.Get("mfaType")
|
||||
|
@ -178,7 +178,7 @@ func (c *ApiController) DeleteOrganization() {
|
||||
// @Tag Organization API
|
||||
// @Description get default application
|
||||
// @Param id query string true "organization id"
|
||||
// @Success 200 {object} Response The Response object
|
||||
// @Success 200 {object} controllers.Response The Response object
|
||||
// @router /get-default-application [get]
|
||||
func (c *ApiController) GetDefaultApplication() {
|
||||
userId := c.GetSessionUsername()
|
||||
|
@ -51,7 +51,7 @@ type NotificationForm struct {
|
||||
// @Param clientId query string true "The clientId of the application"
|
||||
// @Param clientSecret query string true "The clientSecret of the application"
|
||||
// @Param from body controllers.EmailForm true "Details of the email request"
|
||||
// @Success 200 {object} Response object
|
||||
// @Success 200 {object} controllers.Response The Response object
|
||||
// @router /api/send-email [post]
|
||||
func (c *ApiController) SendEmail() {
|
||||
var emailForm EmailForm
|
||||
@ -128,7 +128,7 @@ func (c *ApiController) SendEmail() {
|
||||
// @Param clientId query string true "The clientId of the application"
|
||||
// @Param clientSecret query string true "The clientSecret of the application"
|
||||
// @Param from body controllers.SmsForm true "Details of the sms request"
|
||||
// @Success 200 {object} Response object
|
||||
// @Success 200 {object} controllers.Response The Response object
|
||||
// @router /api/send-sms [post]
|
||||
func (c *ApiController) SendSms() {
|
||||
provider, err := c.GetProviderFromContext("SMS")
|
||||
@ -166,7 +166,7 @@ func (c *ApiController) SendSms() {
|
||||
// @Tag Service API
|
||||
// @Description This API is not for Casdoor frontend to call, it is for Casdoor SDKs.
|
||||
// @Param from body controllers.NotificationForm true "Details of the notification request"
|
||||
// @Success 200 {object} Response object
|
||||
// @Success 200 {object} controllers.Response The Response object
|
||||
// @router /api/send-notification [post]
|
||||
func (c *ApiController) SendNotification() {
|
||||
provider, err := c.GetProviderFromContext("Notification")
|
||||
|
@ -510,6 +510,7 @@ func (c *ApiController) SetPassword() {
|
||||
// @Title CheckUserPassword
|
||||
// @router /check-user-password [post]
|
||||
// @Tag User API
|
||||
// @Success 200 {object} object.Userinfo The Response object
|
||||
func (c *ApiController) CheckUserPassword() {
|
||||
var user object.User
|
||||
err := json.Unmarshal(c.Ctx.Input.RequestBody, &user)
|
||||
@ -580,6 +581,7 @@ func (c *ApiController) GetUserCount() {
|
||||
// @Title AddUserKeys
|
||||
// @router /add-user-keys [post]
|
||||
// @Tag User API
|
||||
// @Success 200 {object} object.Userinfo The Response object
|
||||
func (c *ApiController) AddUserKeys() {
|
||||
var user object.User
|
||||
err := json.Unmarshal(c.Ctx.Input.RequestBody, &user)
|
||||
|
@ -39,6 +39,7 @@ const (
|
||||
// @Title SendVerificationCode
|
||||
// @Tag Verification API
|
||||
// @router /send-verification-code [post]
|
||||
// @Success 200 {object} object.Userinfo The Response object
|
||||
func (c *ApiController) SendVerificationCode() {
|
||||
var vform form.VerificationForm
|
||||
err := c.ParseForm(&vform)
|
||||
@ -229,6 +230,7 @@ func (c *ApiController) SendVerificationCode() {
|
||||
// @Title VerifyCaptcha
|
||||
// @Tag Verification API
|
||||
// @router /verify-captcha [post]
|
||||
// @Success 200 {object} object.Userinfo The Response object
|
||||
func (c *ApiController) VerifyCaptcha() {
|
||||
var vform form.VerificationForm
|
||||
err := c.ParseForm(&vform)
|
||||
@ -271,6 +273,7 @@ func (c *ApiController) VerifyCaptcha() {
|
||||
// @Tag Account API
|
||||
// @Title ResetEmailOrPhone
|
||||
// @router /api/reset-email-or-phone [post]
|
||||
// @Success 200 {object} object.Userinfo The Response object
|
||||
func (c *ApiController) ResetEmailOrPhone() {
|
||||
user, ok := c.RequireSignedInUser()
|
||||
if !ok {
|
||||
@ -365,6 +368,7 @@ func (c *ApiController) ResetEmailOrPhone() {
|
||||
// @Tag Verification API
|
||||
// @Title VerifyCode
|
||||
// @router /api/verify-code [post]
|
||||
// @Success 200 {object} object.Userinfo The Response object
|
||||
func (c *ApiController) VerifyCode() {
|
||||
var authForm form.AuthForm
|
||||
err := json.Unmarshal(c.Ctx.Input.RequestBody, &authForm)
|
||||
|
@ -146,7 +146,7 @@ func (c *ApiController) WebAuthnSigninBegin() {
|
||||
}
|
||||
|
||||
// WebAuthnSigninFinish
|
||||
// @Title WebAuthnSigninBegin
|
||||
// @Title WebAuthnSigninFinish
|
||||
// @Tag Login API
|
||||
// @Description WebAuthn Login Flow 2nd stage
|
||||
// @Param body body protocol.CredentialAssertionResponse true "authenticator assertion Response"
|
||||
|
5
go.mod
5
go.mod
@ -4,13 +4,12 @@ go 1.16
|
||||
|
||||
require (
|
||||
github.com/Masterminds/squirrel v1.5.3
|
||||
github.com/RobotsAndPencils/go-saml v0.0.0-20170520135329-fb13cb52a46b
|
||||
github.com/alexedwards/argon2id v0.0.0-20211130144151-3585854a6387
|
||||
github.com/aws/aws-sdk-go v1.45.5
|
||||
github.com/beego/beego v1.12.12
|
||||
github.com/beevik/etree v1.1.0
|
||||
github.com/casbin/casbin/v2 v2.77.2
|
||||
github.com/casdoor/go-sms-sender v0.17.0
|
||||
github.com/casdoor/go-sms-sender v0.19.0
|
||||
github.com/casdoor/gomail/v2 v2.0.1
|
||||
github.com/casdoor/notify v0.45.0
|
||||
github.com/casdoor/oss v1.4.1
|
||||
@ -33,13 +32,11 @@ require (
|
||||
github.com/golang-jwt/jwt/v4 v4.5.0
|
||||
github.com/google/uuid v1.4.0
|
||||
github.com/json-iterator/go v1.1.12
|
||||
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 // indirect
|
||||
github.com/lestrrat-go/jwx v1.2.21
|
||||
github.com/lib/pq v1.10.9
|
||||
github.com/lor00x/goldap v0.0.0-20180618054307-a546dffdd1a3
|
||||
github.com/markbates/goth v1.75.2
|
||||
github.com/mitchellh/mapstructure v1.5.0
|
||||
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect
|
||||
github.com/nyaruka/phonenumbers v1.1.5
|
||||
github.com/pquerna/otp v1.4.0
|
||||
github.com/prometheus/client_golang v1.11.1
|
||||
|
10
go.sum
10
go.sum
@ -962,8 +962,6 @@ github.com/Microsoft/go-winio v0.5.2/go.mod h1:WpS1mjBmmwHBEWmogvA2mj8546UReBk4v
|
||||
github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU=
|
||||
github.com/ProtonMail/go-crypto v0.0.0-20221026131551-cf6655e29de4 h1:ra2OtmuW0AE5csawV4YXMNGNQQXvLRps3z2Z59OPO+I=
|
||||
github.com/ProtonMail/go-crypto v0.0.0-20221026131551-cf6655e29de4/go.mod h1:UBYPn8k0D56RtnR8RFQMjmh4KrZzWJ5o7Z9SYjossQ8=
|
||||
github.com/RobotsAndPencils/go-saml v0.0.0-20170520135329-fb13cb52a46b h1:EgJ6N2S0h1WfFIjU5/VVHWbMSVYXAluop97Qxpr/lfQ=
|
||||
github.com/RobotsAndPencils/go-saml v0.0.0-20170520135329-fb13cb52a46b/go.mod h1:3SAoF0F5EbcOuBD5WT9nYkbIJieBS84cUQXADbXeBsU=
|
||||
github.com/RocketChat/Rocket.Chat.Go.SDK v0.0.0-20221121042443-a3fd332d56d9 h1:vuu1KBsr6l7XU3CHsWESP/4B1SNd+VZkrgeFZsUXrsY=
|
||||
github.com/RocketChat/Rocket.Chat.Go.SDK v0.0.0-20221121042443-a3fd332d56d9/go.mod h1:rjP7sIipbZcagro/6TCk6X0ZeFT2eyudH5+fve/cbBA=
|
||||
github.com/SherClockHolmes/webpush-go v1.2.0 h1:sGv0/ZWCvb1HUH+izLqrb2i68HuqD/0Y+AmGQfyqKJA=
|
||||
@ -1085,8 +1083,8 @@ github.com/casbin/casbin/v2 v2.77.2 h1:yQinn/w9x8AswiwqwtrXz93VU48R1aYTXdHEx4RI3
|
||||
github.com/casbin/casbin/v2 v2.77.2/go.mod h1:mzGx0hYW9/ksOSpw3wNjk3NRAroq5VMFYUQ6G43iGPk=
|
||||
github.com/casdoor/go-reddit/v2 v2.1.0 h1:kIbfdJ7AA7H0uTQ8s0q4GGZqSS5V9wVE74RrXyD9XPs=
|
||||
github.com/casdoor/go-reddit/v2 v2.1.0/go.mod h1:eagkvwlZ4Hcsuc/uQsLHYEulz5jN65SVSwV/AIE7zsc=
|
||||
github.com/casdoor/go-sms-sender v0.17.0 h1:72vfaNt9EEFkm+nMgZLMw5MsNoiHJDV62Pp9axLCRK0=
|
||||
github.com/casdoor/go-sms-sender v0.17.0/go.mod h1:cQs7qqohMJBgIVZebOCB8ko09naG1vzFJEH59VNIscs=
|
||||
github.com/casdoor/go-sms-sender v0.19.0 h1:qVz7RLXx8aGgfzLUGvhNe6pbhxDqP2/qNY+XPepfpyQ=
|
||||
github.com/casdoor/go-sms-sender v0.19.0/go.mod h1:cQs7qqohMJBgIVZebOCB8ko09naG1vzFJEH59VNIscs=
|
||||
github.com/casdoor/gomail/v2 v2.0.1 h1:J+FG6x80s9e5lBHUn8Sv0Y56mud34KiWih5YdmudR/w=
|
||||
github.com/casdoor/gomail/v2 v2.0.1/go.mod h1:VnGPslEAtpix5FjHisR/WKB1qvZDBaujbikxDe9d+2Q=
|
||||
github.com/casdoor/notify v0.45.0 h1:OlaFvcQFjGOgA4mRx07M8AH1gvb5xNo21mcqrVGlLgk=
|
||||
@ -1588,8 +1586,6 @@ github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7V
|
||||
github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM=
|
||||
github.com/jung-kurt/gofpdf v1.0.0/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes=
|
||||
github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes=
|
||||
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 h1:iQTw/8FWTuc7uiaSepXwyf3o52HaUYcV+Tu66S3F5GA=
|
||||
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0/go.mod h1:1NbS8ALrpOvjt0rHPNLyCIeMtbizbir8U//inJ+zuB8=
|
||||
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 h1:Z9n2FFNUXsshfwJMBgNA0RU6/i7WVaAegv3PtuIHPMs=
|
||||
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8=
|
||||
github.com/kevinburke/go-types v0.0.0-20210723172823-2deba1f80ba7/go.mod h1:/Pk5i/SqYdYv1cie5wGwoZ4P6TpgMi+Yf58mtJSHdOw=
|
||||
@ -1734,8 +1730,6 @@ github.com/nats-io/nkeys v0.3.0/go.mod h1:gvUNGjVcM2IPr5rCsRsC6Wb3Hr2CQAm08dsxtV
|
||||
github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c=
|
||||
github.com/nbio/st v0.0.0-20140626010706-e9e8d9816f32/go.mod h1:9wM+0iRr9ahx58uYLpLIr5fm8diHn0JbqRycJi6w0Ms=
|
||||
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno=
|
||||
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d h1:VhgPp6v9qf9Agr/56bj7Y/xa04UccTW04VP0Qed4vnQ=
|
||||
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d/go.mod h1:YUTz3bUH2ZwIWBy3CJBeOBEugqcmXREj14T+iG/4k4U=
|
||||
github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A=
|
||||
github.com/nxadm/tail v1.4.8 h1:nPr65rt6Y5JFSKQO7qToXr7pePgD6Gwiw05lkbyAQTE=
|
||||
github.com/nxadm/tail v1.4.8/go.mod h1:+ncqLTQzXmGhMZNUePPaPqPvBxHAIsmXswZKocGu+AU=
|
||||
|
@ -19,7 +19,8 @@
|
||||
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
|
||||
"Unauthorized operation": "Unauthorized operation",
|
||||
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s",
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags"
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags",
|
||||
"paid-user %s does not have active or pending subscription and the application: %s does not have default pricing": "paid-user %s does not have active or pending subscription and the application: %s does not have default pricing"
|
||||
},
|
||||
"cas": {
|
||||
"Service %s and %s do not match": "Service %s and %s do not match"
|
||||
@ -33,11 +34,12 @@
|
||||
"Email is invalid": "Email is invalid",
|
||||
"Empty username.": "Empty username.",
|
||||
"FirstName cannot be blank": "FirstName cannot be blank",
|
||||
"Invitation code cannot be blank": "Invitation code cannot be blank",
|
||||
"Invitation code is invalid": "Invitation code is invalid",
|
||||
"LDAP user name or password incorrect": "LDAP user name or password incorrect",
|
||||
"LastName cannot be blank": "LastName cannot be blank",
|
||||
"Multiple accounts with same uid, please check your ldap server": "Multiple accounts with same uid, please check your ldap server",
|
||||
"Organization does not exist": "Organization does not exist",
|
||||
"Password must have at least 6 characters": "Password must have at least 6 characters",
|
||||
"Phone already exists": "Phone already exists",
|
||||
"Phone cannot be empty": "Phone cannot be empty",
|
||||
"Phone number is invalid": "Phone number is invalid",
|
||||
|
@ -19,7 +19,8 @@
|
||||
"The provider: %s is not enabled for the application": "Der Anbieter: %s ist nicht für die Anwendung aktiviert",
|
||||
"Unauthorized operation": "Nicht autorisierte Operation",
|
||||
"Unknown authentication type (not password or provider), form = %s": "Unbekannter Authentifizierungstyp (nicht Passwort oder Anbieter), Formular = %s",
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags"
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags",
|
||||
"paid-user %s does not have active or pending subscription and the application: %s does not have default pricing": "paid-user %s does not have active or pending subscription and the application: %s does not have default pricing"
|
||||
},
|
||||
"cas": {
|
||||
"Service %s and %s do not match": "Service %s und %s stimmen nicht überein"
|
||||
@ -33,11 +34,12 @@
|
||||
"Email is invalid": "E-Mail ist ungültig",
|
||||
"Empty username.": "Leerer Benutzername.",
|
||||
"FirstName cannot be blank": "Vorname darf nicht leer sein",
|
||||
"Invitation code cannot be blank": "Invitation code cannot be blank",
|
||||
"Invitation code is invalid": "Invitation code is invalid",
|
||||
"LDAP user name or password incorrect": "Ldap Benutzername oder Passwort falsch",
|
||||
"LastName cannot be blank": "Nachname darf nicht leer sein",
|
||||
"Multiple accounts with same uid, please check your ldap server": "Mehrere Konten mit derselben uid, bitte überprüfen Sie Ihren LDAP-Server",
|
||||
"Organization does not exist": "Organisation existiert nicht",
|
||||
"Password must have at least 6 characters": "Das Passwort muss mindestens 6 Zeichen enthalten",
|
||||
"Phone already exists": "Telefon existiert bereits",
|
||||
"Phone cannot be empty": "Das Telefon darf nicht leer sein",
|
||||
"Phone number is invalid": "Die Telefonnummer ist ungültig",
|
||||
|
@ -19,7 +19,8 @@
|
||||
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
|
||||
"Unauthorized operation": "Unauthorized operation",
|
||||
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s",
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags"
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags",
|
||||
"paid-user %s does not have active or pending subscription and the application: %s does not have default pricing": "paid-user %s does not have active or pending subscription and the application: %s does not have default pricing"
|
||||
},
|
||||
"cas": {
|
||||
"Service %s and %s do not match": "Service %s and %s do not match"
|
||||
@ -33,11 +34,12 @@
|
||||
"Email is invalid": "Email is invalid",
|
||||
"Empty username.": "Empty username.",
|
||||
"FirstName cannot be blank": "FirstName cannot be blank",
|
||||
"Invitation code cannot be blank": "Invitation code cannot be blank",
|
||||
"Invitation code is invalid": "Invitation code is invalid",
|
||||
"LDAP user name or password incorrect": "LDAP user name or password incorrect",
|
||||
"LastName cannot be blank": "LastName cannot be blank",
|
||||
"Multiple accounts with same uid, please check your ldap server": "Multiple accounts with same uid, please check your ldap server",
|
||||
"Organization does not exist": "Organization does not exist",
|
||||
"Password must have at least 6 characters": "Password must have at least 6 characters",
|
||||
"Phone already exists": "Phone already exists",
|
||||
"Phone cannot be empty": "Phone cannot be empty",
|
||||
"Phone number is invalid": "Phone number is invalid",
|
||||
|
@ -19,7 +19,8 @@
|
||||
"The provider: %s is not enabled for the application": "El proveedor: %s no está habilitado para la aplicación",
|
||||
"Unauthorized operation": "Operación no autorizada",
|
||||
"Unknown authentication type (not password or provider), form = %s": "Tipo de autenticación desconocido (no es contraseña o proveedor), formulario = %s",
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags"
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags",
|
||||
"paid-user %s does not have active or pending subscription and the application: %s does not have default pricing": "paid-user %s does not have active or pending subscription and the application: %s does not have default pricing"
|
||||
},
|
||||
"cas": {
|
||||
"Service %s and %s do not match": "Los servicios %s y %s no coinciden"
|
||||
@ -33,11 +34,12 @@
|
||||
"Email is invalid": "El correo electrónico no es válido",
|
||||
"Empty username.": "Nombre de usuario vacío.",
|
||||
"FirstName cannot be blank": "El nombre no puede estar en blanco",
|
||||
"Invitation code cannot be blank": "Invitation code cannot be blank",
|
||||
"Invitation code is invalid": "Invitation code is invalid",
|
||||
"LDAP user name or password incorrect": "Nombre de usuario o contraseña de Ldap incorrectos",
|
||||
"LastName cannot be blank": "El apellido no puede estar en blanco",
|
||||
"Multiple accounts with same uid, please check your ldap server": "Cuentas múltiples con el mismo uid, por favor revise su servidor ldap",
|
||||
"Organization does not exist": "La organización no existe",
|
||||
"Password must have at least 6 characters": "La contraseña debe tener al menos 6 caracteres",
|
||||
"Phone already exists": "El teléfono ya existe",
|
||||
"Phone cannot be empty": "Teléfono no puede estar vacío",
|
||||
"Phone number is invalid": "El número de teléfono no es válido",
|
||||
|
@ -19,7 +19,8 @@
|
||||
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
|
||||
"Unauthorized operation": "Unauthorized operation",
|
||||
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s",
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags"
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags",
|
||||
"paid-user %s does not have active or pending subscription and the application: %s does not have default pricing": "paid-user %s does not have active or pending subscription and the application: %s does not have default pricing"
|
||||
},
|
||||
"cas": {
|
||||
"Service %s and %s do not match": "Service %s and %s do not match"
|
||||
@ -33,11 +34,12 @@
|
||||
"Email is invalid": "Email is invalid",
|
||||
"Empty username.": "Empty username.",
|
||||
"FirstName cannot be blank": "FirstName cannot be blank",
|
||||
"Invitation code cannot be blank": "Invitation code cannot be blank",
|
||||
"Invitation code is invalid": "Invitation code is invalid",
|
||||
"LDAP user name or password incorrect": "LDAP user name or password incorrect",
|
||||
"LastName cannot be blank": "LastName cannot be blank",
|
||||
"Multiple accounts with same uid, please check your ldap server": "Multiple accounts with same uid, please check your ldap server",
|
||||
"Organization does not exist": "Organization does not exist",
|
||||
"Password must have at least 6 characters": "Password must have at least 6 characters",
|
||||
"Phone already exists": "Phone already exists",
|
||||
"Phone cannot be empty": "Phone cannot be empty",
|
||||
"Phone number is invalid": "Phone number is invalid",
|
||||
|
@ -19,7 +19,8 @@
|
||||
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
|
||||
"Unauthorized operation": "Unauthorized operation",
|
||||
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s",
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags"
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags",
|
||||
"paid-user %s does not have active or pending subscription and the application: %s does not have default pricing": "paid-user %s does not have active or pending subscription and the application: %s does not have default pricing"
|
||||
},
|
||||
"cas": {
|
||||
"Service %s and %s do not match": "Service %s and %s do not match"
|
||||
@ -33,11 +34,12 @@
|
||||
"Email is invalid": "Email is invalid",
|
||||
"Empty username.": "Empty username.",
|
||||
"FirstName cannot be blank": "FirstName cannot be blank",
|
||||
"Invitation code cannot be blank": "Invitation code cannot be blank",
|
||||
"Invitation code is invalid": "Invitation code is invalid",
|
||||
"LDAP user name or password incorrect": "LDAP user name or password incorrect",
|
||||
"LastName cannot be blank": "LastName cannot be blank",
|
||||
"Multiple accounts with same uid, please check your ldap server": "Multiple accounts with same uid, please check your ldap server",
|
||||
"Organization does not exist": "Organization does not exist",
|
||||
"Password must have at least 6 characters": "Password must have at least 6 characters",
|
||||
"Phone already exists": "Phone already exists",
|
||||
"Phone cannot be empty": "Phone cannot be empty",
|
||||
"Phone number is invalid": "Phone number is invalid",
|
||||
|
@ -19,7 +19,8 @@
|
||||
"The provider: %s is not enabled for the application": "Le fournisseur :%s n'est pas activé pour l'application",
|
||||
"Unauthorized operation": "Opération non autorisée",
|
||||
"Unknown authentication type (not password or provider), form = %s": "Type d'authentification inconnu (pas de mot de passe ou de fournisseur), formulaire = %s",
|
||||
"User's tag: %s is not listed in the application's tags": "Le tag de l’utilisateur %s n’est pas répertorié dans les tags de l’application"
|
||||
"User's tag: %s is not listed in the application's tags": "Le tag de l’utilisateur %s n’est pas répertorié dans les tags de l’application",
|
||||
"paid-user %s does not have active or pending subscription and the application: %s does not have default pricing": "paid-user %s does not have active or pending subscription and the application: %s does not have default pricing"
|
||||
},
|
||||
"cas": {
|
||||
"Service %s and %s do not match": "Les services %s et %s ne correspondent pas"
|
||||
@ -33,11 +34,12 @@
|
||||
"Email is invalid": "L'adresse e-mail est invalide",
|
||||
"Empty username.": "Nom d'utilisateur vide.",
|
||||
"FirstName cannot be blank": "Le prénom ne peut pas être laissé vide",
|
||||
"Invitation code cannot be blank": "Invitation code cannot be blank",
|
||||
"Invitation code is invalid": "Invitation code is invalid",
|
||||
"LDAP user name or password incorrect": "Nom d'utilisateur ou mot de passe LDAP incorrect",
|
||||
"LastName cannot be blank": "Le nom de famille ne peut pas être vide",
|
||||
"Multiple accounts with same uid, please check your ldap server": "Plusieurs comptes avec le même identifiant d'utilisateur, veuillez vérifier votre serveur LDAP",
|
||||
"Organization does not exist": "L'organisation n'existe pas",
|
||||
"Password must have at least 6 characters": "Le mot de passe doit comporter au moins 6 caractères",
|
||||
"Phone already exists": "Le téléphone existe déjà",
|
||||
"Phone cannot be empty": "Le téléphone ne peut pas être vide",
|
||||
"Phone number is invalid": "Le numéro de téléphone est invalide",
|
||||
|
@ -19,7 +19,8 @@
|
||||
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
|
||||
"Unauthorized operation": "Unauthorized operation",
|
||||
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s",
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags"
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags",
|
||||
"paid-user %s does not have active or pending subscription and the application: %s does not have default pricing": "paid-user %s does not have active or pending subscription and the application: %s does not have default pricing"
|
||||
},
|
||||
"cas": {
|
||||
"Service %s and %s do not match": "Service %s and %s do not match"
|
||||
@ -33,11 +34,12 @@
|
||||
"Email is invalid": "Email is invalid",
|
||||
"Empty username.": "Empty username.",
|
||||
"FirstName cannot be blank": "FirstName cannot be blank",
|
||||
"Invitation code cannot be blank": "Invitation code cannot be blank",
|
||||
"Invitation code is invalid": "Invitation code is invalid",
|
||||
"LDAP user name or password incorrect": "LDAP user name or password incorrect",
|
||||
"LastName cannot be blank": "LastName cannot be blank",
|
||||
"Multiple accounts with same uid, please check your ldap server": "Multiple accounts with same uid, please check your ldap server",
|
||||
"Organization does not exist": "Organization does not exist",
|
||||
"Password must have at least 6 characters": "Password must have at least 6 characters",
|
||||
"Phone already exists": "Phone already exists",
|
||||
"Phone cannot be empty": "Phone cannot be empty",
|
||||
"Phone number is invalid": "Phone number is invalid",
|
||||
|
@ -19,7 +19,8 @@
|
||||
"The provider: %s is not enabled for the application": "Penyedia: %s tidak diaktifkan untuk aplikasi ini",
|
||||
"Unauthorized operation": "Operasi tidak sah",
|
||||
"Unknown authentication type (not password or provider), form = %s": "Jenis otentikasi tidak diketahui (bukan kata sandi atau pemberi), formulir = %s",
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags"
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags",
|
||||
"paid-user %s does not have active or pending subscription and the application: %s does not have default pricing": "paid-user %s does not have active or pending subscription and the application: %s does not have default pricing"
|
||||
},
|
||||
"cas": {
|
||||
"Service %s and %s do not match": "Layanan %s dan %s tidak cocok"
|
||||
@ -33,11 +34,12 @@
|
||||
"Email is invalid": "Email tidak valid",
|
||||
"Empty username.": "Nama pengguna kosong.",
|
||||
"FirstName cannot be blank": "Nama depan tidak boleh kosong",
|
||||
"Invitation code cannot be blank": "Invitation code cannot be blank",
|
||||
"Invitation code is invalid": "Invitation code is invalid",
|
||||
"LDAP user name or password incorrect": "Nama pengguna atau kata sandi Ldap salah",
|
||||
"LastName cannot be blank": "Nama belakang tidak boleh kosong",
|
||||
"Multiple accounts with same uid, please check your ldap server": "Beberapa akun dengan uid yang sama, harap periksa server ldap Anda",
|
||||
"Organization does not exist": "Organisasi tidak ada",
|
||||
"Password must have at least 6 characters": "Kata sandi harus memiliki minimal 6 karakter",
|
||||
"Phone already exists": "Telepon sudah ada",
|
||||
"Phone cannot be empty": "Telepon tidak boleh kosong",
|
||||
"Phone number is invalid": "Nomor telepon tidak valid",
|
||||
|
@ -19,7 +19,8 @@
|
||||
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
|
||||
"Unauthorized operation": "Unauthorized operation",
|
||||
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s",
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags"
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags",
|
||||
"paid-user %s does not have active or pending subscription and the application: %s does not have default pricing": "paid-user %s does not have active or pending subscription and the application: %s does not have default pricing"
|
||||
},
|
||||
"cas": {
|
||||
"Service %s and %s do not match": "Service %s and %s do not match"
|
||||
@ -33,11 +34,12 @@
|
||||
"Email is invalid": "Email is invalid",
|
||||
"Empty username.": "Empty username.",
|
||||
"FirstName cannot be blank": "FirstName cannot be blank",
|
||||
"Invitation code cannot be blank": "Invitation code cannot be blank",
|
||||
"Invitation code is invalid": "Invitation code is invalid",
|
||||
"LDAP user name or password incorrect": "LDAP user name or password incorrect",
|
||||
"LastName cannot be blank": "LastName cannot be blank",
|
||||
"Multiple accounts with same uid, please check your ldap server": "Multiple accounts with same uid, please check your ldap server",
|
||||
"Organization does not exist": "Organization does not exist",
|
||||
"Password must have at least 6 characters": "Password must have at least 6 characters",
|
||||
"Phone already exists": "Phone already exists",
|
||||
"Phone cannot be empty": "Phone cannot be empty",
|
||||
"Phone number is invalid": "Phone number is invalid",
|
||||
|
@ -19,7 +19,8 @@
|
||||
"The provider: %s is not enabled for the application": "プロバイダー:%sはアプリケーションでは有効化されていません",
|
||||
"Unauthorized operation": "不正操作",
|
||||
"Unknown authentication type (not password or provider), form = %s": "不明な認証タイプ(パスワードまたはプロバイダーではない)フォーム=%s",
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags"
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags",
|
||||
"paid-user %s does not have active or pending subscription and the application: %s does not have default pricing": "paid-user %s does not have active or pending subscription and the application: %s does not have default pricing"
|
||||
},
|
||||
"cas": {
|
||||
"Service %s and %s do not match": "サービス%sと%sは一致しません"
|
||||
@ -33,11 +34,12 @@
|
||||
"Email is invalid": "電子メールは無効です",
|
||||
"Empty username.": "空のユーザー名。",
|
||||
"FirstName cannot be blank": "ファーストネームは空白にできません",
|
||||
"Invitation code cannot be blank": "Invitation code cannot be blank",
|
||||
"Invitation code is invalid": "Invitation code is invalid",
|
||||
"LDAP user name or password incorrect": "Ldapのユーザー名またはパスワードが間違っています",
|
||||
"LastName cannot be blank": "姓は空白にできません",
|
||||
"Multiple accounts with same uid, please check your ldap server": "同じuidを持つ複数のアカウントがあります。あなたのLDAPサーバーを確認してください",
|
||||
"Organization does not exist": "組織は存在しません",
|
||||
"Password must have at least 6 characters": "パスワードは少なくとも6つの文字が必要です",
|
||||
"Phone already exists": "電話はすでに存在しています",
|
||||
"Phone cannot be empty": "電話は空っぽにできません",
|
||||
"Phone number is invalid": "電話番号が無効です",
|
||||
|
@ -19,7 +19,8 @@
|
||||
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
|
||||
"Unauthorized operation": "Unauthorized operation",
|
||||
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s",
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags"
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags",
|
||||
"paid-user %s does not have active or pending subscription and the application: %s does not have default pricing": "paid-user %s does not have active or pending subscription and the application: %s does not have default pricing"
|
||||
},
|
||||
"cas": {
|
||||
"Service %s and %s do not match": "Service %s and %s do not match"
|
||||
@ -33,11 +34,12 @@
|
||||
"Email is invalid": "Email is invalid",
|
||||
"Empty username.": "Empty username.",
|
||||
"FirstName cannot be blank": "FirstName cannot be blank",
|
||||
"Invitation code cannot be blank": "Invitation code cannot be blank",
|
||||
"Invitation code is invalid": "Invitation code is invalid",
|
||||
"LDAP user name or password incorrect": "LDAP user name or password incorrect",
|
||||
"LastName cannot be blank": "LastName cannot be blank",
|
||||
"Multiple accounts with same uid, please check your ldap server": "Multiple accounts with same uid, please check your ldap server",
|
||||
"Organization does not exist": "Organization does not exist",
|
||||
"Password must have at least 6 characters": "Password must have at least 6 characters",
|
||||
"Phone already exists": "Phone already exists",
|
||||
"Phone cannot be empty": "Phone cannot be empty",
|
||||
"Phone number is invalid": "Phone number is invalid",
|
||||
|
@ -19,7 +19,8 @@
|
||||
"The provider: %s is not enabled for the application": "제공자 %s은(는) 응용 프로그램에서 활성화되어 있지 않습니다",
|
||||
"Unauthorized operation": "무단 조작",
|
||||
"Unknown authentication type (not password or provider), form = %s": "알 수 없는 인증 유형(암호 또는 공급자가 아님), 폼 = %s",
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags"
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags",
|
||||
"paid-user %s does not have active or pending subscription and the application: %s does not have default pricing": "paid-user %s does not have active or pending subscription and the application: %s does not have default pricing"
|
||||
},
|
||||
"cas": {
|
||||
"Service %s and %s do not match": "서비스 %s와 %s는 일치하지 않습니다"
|
||||
@ -33,11 +34,12 @@
|
||||
"Email is invalid": "이메일이 유효하지 않습니다",
|
||||
"Empty username.": "빈 사용자 이름.",
|
||||
"FirstName cannot be blank": "이름은 공백일 수 없습니다",
|
||||
"Invitation code cannot be blank": "Invitation code cannot be blank",
|
||||
"Invitation code is invalid": "Invitation code is invalid",
|
||||
"LDAP user name or password incorrect": "LDAP 사용자 이름 또는 암호가 잘못되었습니다",
|
||||
"LastName cannot be blank": "성은 비어 있을 수 없습니다",
|
||||
"Multiple accounts with same uid, please check your ldap server": "동일한 UID를 가진 여러 계정이 있습니다. LDAP 서버를 확인해주세요",
|
||||
"Organization does not exist": "조직은 존재하지 않습니다",
|
||||
"Password must have at least 6 characters": "암호는 적어도 6자 이상이어야 합니다",
|
||||
"Phone already exists": "전화기는 이미 존재합니다",
|
||||
"Phone cannot be empty": "전화는 비워 둘 수 없습니다",
|
||||
"Phone number is invalid": "전화번호가 유효하지 않습니다",
|
||||
|
@ -19,7 +19,8 @@
|
||||
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
|
||||
"Unauthorized operation": "Unauthorized operation",
|
||||
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s",
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags"
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags",
|
||||
"paid-user %s does not have active or pending subscription and the application: %s does not have default pricing": "paid-user %s does not have active or pending subscription and the application: %s does not have default pricing"
|
||||
},
|
||||
"cas": {
|
||||
"Service %s and %s do not match": "Service %s and %s do not match"
|
||||
@ -33,11 +34,12 @@
|
||||
"Email is invalid": "Email is invalid",
|
||||
"Empty username.": "Empty username.",
|
||||
"FirstName cannot be blank": "FirstName cannot be blank",
|
||||
"Invitation code cannot be blank": "Invitation code cannot be blank",
|
||||
"Invitation code is invalid": "Invitation code is invalid",
|
||||
"LDAP user name or password incorrect": "LDAP user name or password incorrect",
|
||||
"LastName cannot be blank": "LastName cannot be blank",
|
||||
"Multiple accounts with same uid, please check your ldap server": "Multiple accounts with same uid, please check your ldap server",
|
||||
"Organization does not exist": "Organization does not exist",
|
||||
"Password must have at least 6 characters": "Password must have at least 6 characters",
|
||||
"Phone already exists": "Phone already exists",
|
||||
"Phone cannot be empty": "Phone cannot be empty",
|
||||
"Phone number is invalid": "Phone number is invalid",
|
||||
|
@ -19,7 +19,8 @@
|
||||
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
|
||||
"Unauthorized operation": "Unauthorized operation",
|
||||
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s",
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags"
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags",
|
||||
"paid-user %s does not have active or pending subscription and the application: %s does not have default pricing": "paid-user %s does not have active or pending subscription and the application: %s does not have default pricing"
|
||||
},
|
||||
"cas": {
|
||||
"Service %s and %s do not match": "Service %s and %s do not match"
|
||||
@ -33,11 +34,12 @@
|
||||
"Email is invalid": "Email is invalid",
|
||||
"Empty username.": "Empty username.",
|
||||
"FirstName cannot be blank": "FirstName cannot be blank",
|
||||
"Invitation code cannot be blank": "Invitation code cannot be blank",
|
||||
"Invitation code is invalid": "Invitation code is invalid",
|
||||
"LDAP user name or password incorrect": "LDAP user name or password incorrect",
|
||||
"LastName cannot be blank": "LastName cannot be blank",
|
||||
"Multiple accounts with same uid, please check your ldap server": "Multiple accounts with same uid, please check your ldap server",
|
||||
"Organization does not exist": "Organization does not exist",
|
||||
"Password must have at least 6 characters": "Password must have at least 6 characters",
|
||||
"Phone already exists": "Phone already exists",
|
||||
"Phone cannot be empty": "Phone cannot be empty",
|
||||
"Phone number is invalid": "Phone number is invalid",
|
||||
|
@ -19,7 +19,8 @@
|
||||
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
|
||||
"Unauthorized operation": "Unauthorized operation",
|
||||
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s",
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags"
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags",
|
||||
"paid-user %s does not have active or pending subscription and the application: %s does not have default pricing": "paid-user %s does not have active or pending subscription and the application: %s does not have default pricing"
|
||||
},
|
||||
"cas": {
|
||||
"Service %s and %s do not match": "Service %s and %s do not match"
|
||||
@ -33,11 +34,12 @@
|
||||
"Email is invalid": "Email is invalid",
|
||||
"Empty username.": "Empty username.",
|
||||
"FirstName cannot be blank": "FirstName cannot be blank",
|
||||
"Invitation code cannot be blank": "Invitation code cannot be blank",
|
||||
"Invitation code is invalid": "Invitation code is invalid",
|
||||
"LDAP user name or password incorrect": "LDAP user name or password incorrect",
|
||||
"LastName cannot be blank": "LastName cannot be blank",
|
||||
"Multiple accounts with same uid, please check your ldap server": "Multiple accounts with same uid, please check your ldap server",
|
||||
"Organization does not exist": "Organization does not exist",
|
||||
"Password must have at least 6 characters": "Password must have at least 6 characters",
|
||||
"Phone already exists": "Phone already exists",
|
||||
"Phone cannot be empty": "Phone cannot be empty",
|
||||
"Phone number is invalid": "Phone number is invalid",
|
||||
|
@ -19,7 +19,8 @@
|
||||
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
|
||||
"Unauthorized operation": "Unauthorized operation",
|
||||
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s",
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags"
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags",
|
||||
"paid-user %s does not have active or pending subscription and the application: %s does not have default pricing": "paid-user %s does not have active or pending subscription and the application: %s does not have default pricing"
|
||||
},
|
||||
"cas": {
|
||||
"Service %s and %s do not match": "Service %s and %s do not match"
|
||||
@ -33,11 +34,12 @@
|
||||
"Email is invalid": "Email is invalid",
|
||||
"Empty username.": "Empty username.",
|
||||
"FirstName cannot be blank": "FirstName cannot be blank",
|
||||
"Invitation code cannot be blank": "Invitation code cannot be blank",
|
||||
"Invitation code is invalid": "Invitation code is invalid",
|
||||
"LDAP user name or password incorrect": "LDAP user name or password incorrect",
|
||||
"LastName cannot be blank": "LastName cannot be blank",
|
||||
"Multiple accounts with same uid, please check your ldap server": "Multiple accounts with same uid, please check your ldap server",
|
||||
"Organization does not exist": "Organization does not exist",
|
||||
"Password must have at least 6 characters": "Password must have at least 6 characters",
|
||||
"Phone already exists": "Phone already exists",
|
||||
"Phone cannot be empty": "Phone cannot be empty",
|
||||
"Phone number is invalid": "Phone number is invalid",
|
||||
|
@ -19,7 +19,8 @@
|
||||
"The provider: %s is not enabled for the application": "Провайдер: %s не включен для приложения",
|
||||
"Unauthorized operation": "Несанкционированная операция",
|
||||
"Unknown authentication type (not password or provider), form = %s": "Неизвестный тип аутентификации (не пароль и не провайдер), форма = %s",
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags"
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags",
|
||||
"paid-user %s does not have active or pending subscription and the application: %s does not have default pricing": "paid-user %s does not have active or pending subscription and the application: %s does not have default pricing"
|
||||
},
|
||||
"cas": {
|
||||
"Service %s and %s do not match": "Сервисы %s и %s не совпадают"
|
||||
@ -33,11 +34,12 @@
|
||||
"Email is invalid": "Адрес электронной почты недействительный",
|
||||
"Empty username.": "Пустое имя пользователя.",
|
||||
"FirstName cannot be blank": "Имя не может быть пустым",
|
||||
"Invitation code cannot be blank": "Invitation code cannot be blank",
|
||||
"Invitation code is invalid": "Invitation code is invalid",
|
||||
"LDAP user name or password incorrect": "Неправильное имя пользователя или пароль Ldap",
|
||||
"LastName cannot be blank": "Фамилия не может быть пустой",
|
||||
"Multiple accounts with same uid, please check your ldap server": "Множественные учетные записи с тем же UID. Пожалуйста, проверьте свой сервер LDAP",
|
||||
"Organization does not exist": "Организация не существует",
|
||||
"Password must have at least 6 characters": "Пароль должен содержать не менее 6 символов",
|
||||
"Phone already exists": "Телефон уже существует",
|
||||
"Phone cannot be empty": "Телефон не может быть пустым",
|
||||
"Phone number is invalid": "Номер телефона является недействительным",
|
||||
|
@ -19,7 +19,8 @@
|
||||
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
|
||||
"Unauthorized operation": "Unauthorized operation",
|
||||
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s",
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags"
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags",
|
||||
"paid-user %s does not have active or pending subscription and the application: %s does not have default pricing": "paid-user %s does not have active or pending subscription and the application: %s does not have default pricing"
|
||||
},
|
||||
"cas": {
|
||||
"Service %s and %s do not match": "Service %s and %s do not match"
|
||||
@ -33,11 +34,12 @@
|
||||
"Email is invalid": "Email is invalid",
|
||||
"Empty username.": "Empty username.",
|
||||
"FirstName cannot be blank": "FirstName cannot be blank",
|
||||
"Invitation code cannot be blank": "Invitation code cannot be blank",
|
||||
"Invitation code is invalid": "Invitation code is invalid",
|
||||
"LDAP user name or password incorrect": "LDAP user name or password incorrect",
|
||||
"LastName cannot be blank": "LastName cannot be blank",
|
||||
"Multiple accounts with same uid, please check your ldap server": "Multiple accounts with same uid, please check your ldap server",
|
||||
"Organization does not exist": "Organization does not exist",
|
||||
"Password must have at least 6 characters": "Password must have at least 6 characters",
|
||||
"Phone already exists": "Phone already exists",
|
||||
"Phone cannot be empty": "Phone cannot be empty",
|
||||
"Phone number is invalid": "Phone number is invalid",
|
||||
|
@ -19,7 +19,8 @@
|
||||
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
|
||||
"Unauthorized operation": "Unauthorized operation",
|
||||
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s",
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags"
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags",
|
||||
"paid-user %s does not have active or pending subscription and the application: %s does not have default pricing": "paid-user %s does not have active or pending subscription and the application: %s does not have default pricing"
|
||||
},
|
||||
"cas": {
|
||||
"Service %s and %s do not match": "Service %s and %s do not match"
|
||||
@ -33,11 +34,12 @@
|
||||
"Email is invalid": "Email is invalid",
|
||||
"Empty username.": "Empty username.",
|
||||
"FirstName cannot be blank": "FirstName cannot be blank",
|
||||
"Invitation code cannot be blank": "Invitation code cannot be blank",
|
||||
"Invitation code is invalid": "Invitation code is invalid",
|
||||
"LDAP user name or password incorrect": "LDAP user name or password incorrect",
|
||||
"LastName cannot be blank": "LastName cannot be blank",
|
||||
"Multiple accounts with same uid, please check your ldap server": "Multiple accounts with same uid, please check your ldap server",
|
||||
"Organization does not exist": "Organization does not exist",
|
||||
"Password must have at least 6 characters": "Password must have at least 6 characters",
|
||||
"Phone already exists": "Phone already exists",
|
||||
"Phone cannot be empty": "Phone cannot be empty",
|
||||
"Phone number is invalid": "Phone number is invalid",
|
||||
|
@ -19,7 +19,8 @@
|
||||
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
|
||||
"Unauthorized operation": "Unauthorized operation",
|
||||
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s",
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags"
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags",
|
||||
"paid-user %s does not have active or pending subscription and the application: %s does not have default pricing": "paid-user %s does not have active or pending subscription and the application: %s does not have default pricing"
|
||||
},
|
||||
"cas": {
|
||||
"Service %s and %s do not match": "Service %s and %s do not match"
|
||||
@ -33,11 +34,12 @@
|
||||
"Email is invalid": "Email is invalid",
|
||||
"Empty username.": "Empty username.",
|
||||
"FirstName cannot be blank": "FirstName cannot be blank",
|
||||
"Invitation code cannot be blank": "Invitation code cannot be blank",
|
||||
"Invitation code is invalid": "Invitation code is invalid",
|
||||
"LDAP user name or password incorrect": "LDAP user name or password incorrect",
|
||||
"LastName cannot be blank": "LastName cannot be blank",
|
||||
"Multiple accounts with same uid, please check your ldap server": "Multiple accounts with same uid, please check your ldap server",
|
||||
"Organization does not exist": "Organization does not exist",
|
||||
"Password must have at least 6 characters": "Password must have at least 6 characters",
|
||||
"Phone already exists": "Phone already exists",
|
||||
"Phone cannot be empty": "Phone cannot be empty",
|
||||
"Phone number is invalid": "Phone number is invalid",
|
||||
|
@ -19,7 +19,8 @@
|
||||
"The provider: %s is not enabled for the application": "Nhà cung cấp: %s không được kích hoạt cho ứng dụng",
|
||||
"Unauthorized operation": "Hoạt động không được ủy quyền",
|
||||
"Unknown authentication type (not password or provider), form = %s": "Loại xác thực không xác định (không phải mật khẩu hoặc nhà cung cấp), biểu mẫu = %s",
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags"
|
||||
"User's tag: %s is not listed in the application's tags": "User's tag: %s is not listed in the application's tags",
|
||||
"paid-user %s does not have active or pending subscription and the application: %s does not have default pricing": "paid-user %s does not have active or pending subscription and the application: %s does not have default pricing"
|
||||
},
|
||||
"cas": {
|
||||
"Service %s and %s do not match": "Dịch sang tiếng Việt: Dịch vụ %s và %s không khớp"
|
||||
@ -33,11 +34,12 @@
|
||||
"Email is invalid": "Địa chỉ email không hợp lệ",
|
||||
"Empty username.": "Tên đăng nhập trống.",
|
||||
"FirstName cannot be blank": "Tên không được để trống",
|
||||
"Invitation code cannot be blank": "Invitation code cannot be blank",
|
||||
"Invitation code is invalid": "Invitation code is invalid",
|
||||
"LDAP user name or password incorrect": "Tên người dùng hoặc mật khẩu Ldap không chính xác",
|
||||
"LastName cannot be blank": "Họ không thể để trống",
|
||||
"Multiple accounts with same uid, please check your ldap server": "Nhiều tài khoản với cùng một uid, vui lòng kiểm tra máy chủ ldap của bạn",
|
||||
"Organization does not exist": "Tổ chức không tồn tại",
|
||||
"Password must have at least 6 characters": "Mật khẩu phải ít nhất 6 ký tự",
|
||||
"Phone already exists": "Điện thoại đã tồn tại",
|
||||
"Phone cannot be empty": "Điện thoại không thể để trống",
|
||||
"Phone number is invalid": "Số điện thoại không hợp lệ",
|
||||
|
@ -19,7 +19,8 @@
|
||||
"The provider: %s is not enabled for the application": "该应用的提供商: %s未被启用",
|
||||
"Unauthorized operation": "未授权的操作",
|
||||
"Unknown authentication type (not password or provider), form = %s": "未知的认证类型(非密码或第三方提供商):%s",
|
||||
"User's tag: %s is not listed in the application's tags": "用户的标签: %s不在该应用的标签列表中"
|
||||
"User's tag: %s is not listed in the application's tags": "用户的标签: %s不在该应用的标签列表中",
|
||||
"paid-user %s does not have active or pending subscription and the application: %s does not have default pricing": "paid-user %s does not have active or pending subscription and the application: %s does not have default pricing"
|
||||
},
|
||||
"cas": {
|
||||
"Service %s and %s do not match": "服务%s与%s不匹配"
|
||||
@ -33,11 +34,12 @@
|
||||
"Email is invalid": "无效邮箱",
|
||||
"Empty username.": "用户名不可为空",
|
||||
"FirstName cannot be blank": "名不可以为空",
|
||||
"Invitation code cannot be blank": "Invitation code cannot be blank",
|
||||
"Invitation code is invalid": "Invitation code is invalid",
|
||||
"LDAP user name or password incorrect": "LDAP密码错误",
|
||||
"LastName cannot be blank": "姓不可以为空",
|
||||
"Multiple accounts with same uid, please check your ldap server": "多个帐户具有相同的uid,请检查您的 LDAP 服务器",
|
||||
"Organization does not exist": "组织不存在",
|
||||
"Password must have at least 6 characters": "新密码至少为6位",
|
||||
"Phone already exists": "该手机号已存在",
|
||||
"Phone cannot be empty": "手机号不可为空",
|
||||
"Phone number is invalid": "无效手机号",
|
||||
|
@ -85,10 +85,12 @@ func (idp *AdfsIdProvider) GetToken(code string) (*oauth2.Token, error) {
|
||||
payload.Set("client_id", idp.Config.ClientID)
|
||||
payload.Set("client_secret", idp.Config.ClientSecret)
|
||||
payload.Set("redirect_uri", idp.Config.RedirectURL)
|
||||
|
||||
resp, err := idp.Client.PostForm(idp.Config.Endpoint.TokenURL, payload)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
data, err := io.ReadAll(resp.Body)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
@ -97,10 +99,10 @@ func (idp *AdfsIdProvider) GetToken(code string) (*oauth2.Token, error) {
|
||||
pToken := &AdfsToken{}
|
||||
err = json.Unmarshal(data, pToken)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("fail to unmarshal token response: %s", err.Error())
|
||||
return nil, err
|
||||
}
|
||||
if pToken.ErrMsg != "" {
|
||||
return nil, fmt.Errorf("pToken.Errmsg = %s", pToken.ErrMsg)
|
||||
return nil, fmt.Errorf(pToken.ErrMsg)
|
||||
}
|
||||
|
||||
token := &oauth2.Token{
|
||||
|
126
idp/azuread_b2c.go
Normal file
126
idp/azuread_b2c.go
Normal file
@ -0,0 +1,126 @@
|
||||
// Copyright 2023 The Casdoor Authors. All Rights Reserved.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
package idp
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"io"
|
||||
"net/http"
|
||||
"net/url"
|
||||
"time"
|
||||
|
||||
"golang.org/x/oauth2"
|
||||
)
|
||||
|
||||
type AzureADB2CProvider struct {
|
||||
Client *http.Client
|
||||
Config *oauth2.Config
|
||||
Tenant string
|
||||
UserFlow string
|
||||
}
|
||||
|
||||
func NewAzureAdB2cProvider(clientId, clientSecret, redirectUrl, tenant string, userFlow string) *AzureADB2CProvider {
|
||||
return &AzureADB2CProvider{
|
||||
Config: &oauth2.Config{
|
||||
ClientID: clientId,
|
||||
ClientSecret: clientSecret,
|
||||
RedirectURL: redirectUrl,
|
||||
Endpoint: oauth2.Endpoint{
|
||||
AuthURL: fmt.Sprintf("https://%s.b2clogin.com/%s.onmicrosoft.com/%s/oauth2/v2.0/authorize", tenant, tenant, userFlow),
|
||||
TokenURL: fmt.Sprintf("https://%s.b2clogin.com/%s.onmicrosoft.com/%s/oauth2/v2.0/token", tenant, tenant, userFlow),
|
||||
},
|
||||
Scopes: []string{"openid", "email"},
|
||||
},
|
||||
Tenant: tenant,
|
||||
UserFlow: userFlow,
|
||||
}
|
||||
}
|
||||
|
||||
func (p *AzureADB2CProvider) SetHttpClient(client *http.Client) {
|
||||
p.Client = client
|
||||
}
|
||||
|
||||
type AzureadB2cToken struct {
|
||||
IdToken string `json:"id_token"`
|
||||
TokenType string `json:"token_type"`
|
||||
NotBefore int `json:"not_before"`
|
||||
IdTokenExpiresIn int `json:"id_token_expires_in"`
|
||||
ProfileInfo string `json:"profile_info"`
|
||||
Scope string `json:"scope"`
|
||||
}
|
||||
|
||||
func (p *AzureADB2CProvider) GetToken(code string) (*oauth2.Token, error) {
|
||||
payload := url.Values{}
|
||||
payload.Set("code", code)
|
||||
payload.Set("grant_type", "authorization_code")
|
||||
payload.Set("client_id", p.Config.ClientID)
|
||||
payload.Set("client_secret", p.Config.ClientSecret)
|
||||
payload.Set("redirect_uri", p.Config.RedirectURL)
|
||||
|
||||
resp, err := p.Client.PostForm(p.Config.Endpoint.TokenURL, payload)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
data, err := io.ReadAll(resp.Body)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
pToken := &AzureadB2cToken{}
|
||||
err = json.Unmarshal(data, pToken)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
token := &oauth2.Token{
|
||||
AccessToken: pToken.IdToken,
|
||||
Expiry: time.Unix(time.Now().Unix()+int64(pToken.IdTokenExpiresIn), 0),
|
||||
}
|
||||
return token, nil
|
||||
}
|
||||
|
||||
func (p *AzureADB2CProvider) GetUserInfo(token *oauth2.Token) (*UserInfo, error) {
|
||||
userInfoEndpoint := fmt.Sprintf("https://%s.b2clogin.com/%s.onmicrosoft.com/%s/openid/v2.0/userinfo", p.Tenant, p.Tenant, p.UserFlow)
|
||||
req, err := http.NewRequest("GET", userInfoEndpoint, nil)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
req.Header.Add("Authorization", "Bearer "+token.AccessToken)
|
||||
|
||||
resp, err := p.Client.Do(req)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
defer resp.Body.Close()
|
||||
|
||||
if resp.StatusCode != http.StatusOK {
|
||||
return nil, fmt.Errorf("error fetching user info: status code %d", resp.StatusCode)
|
||||
}
|
||||
|
||||
bodyBytes, err := io.ReadAll(resp.Body)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
var userInfo UserInfo
|
||||
err = json.Unmarshal(bodyBytes, &userInfo)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return &userInfo, nil
|
||||
}
|
@ -91,6 +91,8 @@ func GetIdProvider(idpInfo *ProviderInfo, redirectUrl string) (IdProvider, error
|
||||
return NewGitlabIdProvider(idpInfo.ClientId, idpInfo.ClientSecret, redirectUrl), nil
|
||||
case "ADFS":
|
||||
return NewAdfsIdProvider(idpInfo.ClientId, idpInfo.ClientSecret, redirectUrl, idpInfo.HostUrl), nil
|
||||
case "AzureADB2C":
|
||||
return NewAzureAdB2cProvider(idpInfo.ClientId, idpInfo.ClientSecret, redirectUrl, idpInfo.HostUrl, idpInfo.AppId), nil
|
||||
case "Baidu":
|
||||
return NewBaiduIdProvider(idpInfo.ClientId, idpInfo.ClientSecret, redirectUrl), nil
|
||||
case "Alipay":
|
||||
|
@ -104,7 +104,9 @@
|
||||
}
|
||||
],
|
||||
"redirectUris": [""],
|
||||
"expireInHours": 168
|
||||
"expireInHours": 168,
|
||||
"failedSigninLimit": 5,
|
||||
"failedSigninfrozenTime": 15
|
||||
}
|
||||
],
|
||||
"users": [
|
||||
|
@ -1,5 +1,5 @@
|
||||
apiVersion: v2
|
||||
name: casdoor
|
||||
name: casdoor-helm-charts
|
||||
description: A Helm chart for Kubernetes
|
||||
|
||||
# A chart can be either an 'application' or a 'library' chart.
|
||||
@ -15,10 +15,10 @@ type: application
|
||||
# This is the chart version. This version number should be incremented each time you make changes
|
||||
# to the chart and its templates, including the app version.
|
||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||
version: 0.2.0
|
||||
version: 0.3.0
|
||||
|
||||
# This is the version number of the application being deployed. This version number should be
|
||||
# incremented each time you make changes to the application. Versions are not expected to
|
||||
# follow Semantic Versioning. They should reflect the version the application is using.
|
||||
# It is recommended to use it with quotes.
|
||||
appVersion: "1.17.0"
|
||||
appVersion: "1.18.0"
|
||||
|
@ -90,6 +90,9 @@ type Application struct {
|
||||
FormOffset int `json:"formOffset"`
|
||||
FormSideHtml string `xorm:"mediumtext" json:"formSideHtml"`
|
||||
FormBackgroundUrl string `xorm:"varchar(200)" json:"formBackgroundUrl"`
|
||||
|
||||
FailedSigninLimit int `json:"failedSigninLimit"`
|
||||
FailedSigninfrozenTime int `json:"failedSigninfrozenTime"`
|
||||
}
|
||||
|
||||
func GetApplicationCount(owner, field, value string) (int64, error) {
|
||||
|
@ -28,8 +28,9 @@ import (
|
||||
)
|
||||
|
||||
const (
|
||||
SigninWrongTimesLimit = 5
|
||||
LastSignWrongTimeDuration = time.Minute * 15
|
||||
DefaultFailedSigninLimit = 5
|
||||
// DefaultFailedSigninfrozenTime The unit of frozen time is minutes
|
||||
DefaultFailedSigninfrozenTime = 15
|
||||
)
|
||||
|
||||
func CheckUserSignup(application *Application, organization *Organization, form *form.AuthForm, lang string) string {
|
||||
@ -143,10 +144,15 @@ func CheckUserSignup(application *Application, organization *Organization, form
|
||||
}
|
||||
|
||||
func checkSigninErrorTimes(user *User, lang string) error {
|
||||
if user.SigninWrongTimes >= SigninWrongTimesLimit {
|
||||
failedSigninLimit, failedSigninfrozenTime, err := GetFailedSigninConfigByUser(user)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
if user.SigninWrongTimes >= failedSigninLimit {
|
||||
lastSignWrongTime, _ := time.Parse(time.RFC3339, user.LastSigninWrongTime)
|
||||
passedTime := time.Now().UTC().Sub(lastSignWrongTime)
|
||||
minutes := int(LastSignWrongTimeDuration.Minutes() - passedTime.Minutes())
|
||||
minutes := failedSigninfrozenTime - int(passedTime.Minutes())
|
||||
|
||||
// deny the login if the error times is greater than the limit and the last login time is less than the duration
|
||||
if minutes > 0 {
|
||||
@ -479,7 +485,14 @@ func CheckToEnableCaptcha(application *Application, organization, username strin
|
||||
if err != nil {
|
||||
return false, err
|
||||
}
|
||||
return user != nil && user.SigninWrongTimes >= SigninWrongTimesLimit, nil
|
||||
|
||||
var failedSigninLimit int
|
||||
if application.FailedSigninLimit == 0 {
|
||||
failedSigninLimit = 5
|
||||
} else {
|
||||
failedSigninLimit = application.FailedSigninLimit
|
||||
}
|
||||
return user != nil && user.SigninWrongTimes >= failedSigninLimit, nil
|
||||
}
|
||||
return providerItem.Rule == "Always", nil
|
||||
}
|
||||
|
@ -47,18 +47,42 @@ func resetUserSigninErrorTimes(user *User) error {
|
||||
return err
|
||||
}
|
||||
|
||||
func GetFailedSigninConfigByUser(user *User) (int, int, error) {
|
||||
application, err := GetApplicationByUser(user)
|
||||
if err != nil {
|
||||
return 0, 0, err
|
||||
}
|
||||
failedSigninLimit := application.FailedSigninLimit
|
||||
failedSigninfrozenTime := application.FailedSigninfrozenTime
|
||||
|
||||
// 0 as an initialization value, corresponding to the default configuration parameters
|
||||
if failedSigninLimit == 0 {
|
||||
failedSigninLimit = DefaultFailedSigninLimit
|
||||
}
|
||||
if failedSigninfrozenTime == 0 {
|
||||
failedSigninfrozenTime = DefaultFailedSigninfrozenTime
|
||||
}
|
||||
|
||||
return failedSigninLimit, failedSigninfrozenTime, nil
|
||||
}
|
||||
|
||||
func recordSigninErrorInfo(user *User, lang string, options ...bool) error {
|
||||
enableCaptcha := false
|
||||
if len(options) > 0 {
|
||||
enableCaptcha = options[0]
|
||||
}
|
||||
|
||||
failedSigninLimit, failedSigninfrozenTime, errSignin := GetFailedSigninConfigByUser(user)
|
||||
if errSignin != nil {
|
||||
return errSignin
|
||||
}
|
||||
|
||||
// increase failed login count
|
||||
if user.SigninWrongTimes < SigninWrongTimesLimit {
|
||||
if user.SigninWrongTimes < failedSigninLimit {
|
||||
user.SigninWrongTimes++
|
||||
}
|
||||
|
||||
if user.SigninWrongTimes >= SigninWrongTimesLimit {
|
||||
if user.SigninWrongTimes >= failedSigninLimit {
|
||||
// record the latest failed login time
|
||||
user.LastSigninWrongTime = time.Now().UTC().Format(time.RFC3339)
|
||||
}
|
||||
@ -69,7 +93,7 @@ func recordSigninErrorInfo(user *User, lang string, options ...bool) error {
|
||||
return err
|
||||
}
|
||||
|
||||
leftChances := SigninWrongTimesLimit - user.SigninWrongTimes
|
||||
leftChances := failedSigninLimit - user.SigninWrongTimes
|
||||
if leftChances == 0 && enableCaptcha {
|
||||
return fmt.Errorf(i18n.Translate(lang, "check:password or code is incorrect"))
|
||||
} else if leftChances >= 0 {
|
||||
@ -77,5 +101,5 @@ func recordSigninErrorInfo(user *User, lang string, options ...bool) error {
|
||||
}
|
||||
|
||||
// don't show the chance error message if the user has no chance left
|
||||
return fmt.Errorf(i18n.Translate(lang, "check:You have entered the wrong password or code too many times, please wait for %d minutes and try again"), int(LastSignWrongTimeDuration.Minutes()))
|
||||
return fmt.Errorf(i18n.Translate(lang, "check:You have entered the wrong password or code too many times, please wait for %d minutes and try again"), failedSigninfrozenTime)
|
||||
}
|
||||
|
@ -125,6 +125,10 @@ func (enforcer *Enforcer) GetId() string {
|
||||
return fmt.Sprintf("%s/%s", enforcer.Owner, enforcer.Name)
|
||||
}
|
||||
|
||||
func (enforcer *Enforcer) GetModelAndAdapter() string {
|
||||
return util.GetId(enforcer.Model, enforcer.Adapter)
|
||||
}
|
||||
|
||||
func (enforcer *Enforcer) InitEnforcer() error {
|
||||
if enforcer.Enforcer != nil {
|
||||
return nil
|
||||
|
@ -446,9 +446,8 @@ func GetMaskedPermissions(permissions []*Permission) []*Permission {
|
||||
// as the policyFilter when the enforcer load policy).
|
||||
func GroupPermissionsByModelAdapter(permissions []*Permission) map[string][]string {
|
||||
m := make(map[string][]string)
|
||||
|
||||
for _, permission := range permissions {
|
||||
key := permission.Model + permission.Adapter
|
||||
key := permission.GetModelAndAdapter()
|
||||
permissionIds, ok := m[key]
|
||||
if !ok {
|
||||
m[key] = []string{permission.GetId()}
|
||||
@ -464,9 +463,17 @@ func (p *Permission) GetId() string {
|
||||
return util.GetId(p.Owner, p.Name)
|
||||
}
|
||||
|
||||
func (p *Permission) GetModelAndAdapter() string {
|
||||
return util.GetId(p.Model, p.Adapter)
|
||||
}
|
||||
|
||||
func (p *Permission) isUserHit(name string) bool {
|
||||
targetOrg, targetName := util.GetOwnerAndNameFromId(name)
|
||||
for _, user := range p.Users {
|
||||
if user == "*" {
|
||||
return true
|
||||
}
|
||||
|
||||
userOrg, userName := util.GetOwnerAndNameFromId(user)
|
||||
if userOrg == targetOrg && (userName == "*" || userName == targetName) {
|
||||
return true
|
||||
@ -480,9 +487,14 @@ func (p *Permission) isRoleHit(userId string) bool {
|
||||
if err != nil {
|
||||
return false
|
||||
}
|
||||
|
||||
for _, role := range p.Roles {
|
||||
if role == "*" {
|
||||
return true
|
||||
}
|
||||
|
||||
for _, targetRole := range targetRoles {
|
||||
if targetRole.GetId() == role {
|
||||
if role == targetRole.GetId() {
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
@ -284,24 +284,28 @@ func removeGroupingPolicies(permission *Permission) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
type CasbinRequest = []interface{}
|
||||
|
||||
func Enforce(permission *Permission, request *CasbinRequest, permissionIds ...string) (bool, error) {
|
||||
func Enforce(permission *Permission, request []string, permissionIds ...string) (bool, error) {
|
||||
enforcer, err := getPermissionEnforcer(permission, permissionIds...)
|
||||
if err != nil {
|
||||
return false, err
|
||||
}
|
||||
|
||||
return enforcer.Enforce(*request...)
|
||||
// type transformation
|
||||
interfaceRequest := util.StringToInterfaceArray(request)
|
||||
|
||||
return enforcer.Enforce(interfaceRequest...)
|
||||
}
|
||||
|
||||
func BatchEnforce(permission *Permission, requests *[]CasbinRequest, permissionIds ...string) ([]bool, error) {
|
||||
func BatchEnforce(permission *Permission, requests [][]string, permissionIds ...string) ([]bool, error) {
|
||||
enforcer, err := getPermissionEnforcer(permission, permissionIds...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return enforcer.BatchEnforce(*requests)
|
||||
// type transformation
|
||||
interfaceRequests := util.StringToInterfaceArray2d(requests)
|
||||
|
||||
return enforcer.BatchEnforce(interfaceRequests)
|
||||
}
|
||||
|
||||
func getAllValues(userId string, fn func(enforcer *casbin.Enforcer) []string) ([]string, error) {
|
||||
|
@ -417,7 +417,7 @@ func FromProviderToIdpInfo(ctx *context.Context, provider *Provider) *idp.Provid
|
||||
providerInfo.ClientId = provider.ClientId2
|
||||
providerInfo.ClientSecret = provider.ClientSecret2
|
||||
}
|
||||
} else if provider.Type == "AzureAD" || provider.Type == "ADFS" || provider.Type == "Okta" {
|
||||
} else if provider.Type == "AzureAD" || provider.Type == "AzureADB2C" || provider.Type == "ADFS" || provider.Type == "Okta" {
|
||||
providerInfo.HostUrl = provider.Domain
|
||||
}
|
||||
|
||||
|
@ -271,6 +271,9 @@ func getRolesByUserInternal(userId string) ([]*Role, error) {
|
||||
if err != nil {
|
||||
return roles, err
|
||||
}
|
||||
if user == nil {
|
||||
return nil, fmt.Errorf("The user: %s doesn't exist", userId)
|
||||
}
|
||||
|
||||
query := ormer.Engine.Alias("r").Where("r.users like ?", fmt.Sprintf("%%%s%%", userId))
|
||||
for _, group := range user.Groups {
|
||||
|
@ -28,10 +28,10 @@ import (
|
||||
"io"
|
||||
"time"
|
||||
|
||||
"github.com/RobotsAndPencils/go-saml"
|
||||
"github.com/beevik/etree"
|
||||
"github.com/golang-jwt/jwt/v4"
|
||||
"github.com/google/uuid"
|
||||
saml "github.com/russellhaering/gosaml2"
|
||||
dsig "github.com/russellhaering/goxmldsig"
|
||||
)
|
||||
|
||||
@ -283,15 +283,15 @@ func GetSamlResponse(application *Application, user *User, samlRequest string, h
|
||||
}
|
||||
}
|
||||
|
||||
var authnRequest saml.AuthnRequest
|
||||
var authnRequest saml.AuthNRequest
|
||||
err = xml.Unmarshal(buffer.Bytes(), &authnRequest)
|
||||
if err != nil {
|
||||
return "", "", method, fmt.Errorf("err: Failed to unmarshal AuthnRequest, please check the SAML request. %s", err.Error())
|
||||
}
|
||||
|
||||
// verify samlRequest
|
||||
if isValid := application.IsRedirectUriValid(authnRequest.Issuer.Url); !isValid {
|
||||
return "", "", method, fmt.Errorf("err: Issuer URI: %s doesn't exist in the allowed Redirect URI list", authnRequest.Issuer.Url)
|
||||
if isValid := application.IsRedirectUriValid(authnRequest.Issuer); !isValid {
|
||||
return "", "", method, fmt.Errorf("err: Issuer URI: %s doesn't exist in the allowed Redirect URI list", authnRequest.Issuer)
|
||||
}
|
||||
|
||||
// get certificate string
|
||||
@ -317,7 +317,7 @@ func GetSamlResponse(application *Application, user *User, samlRequest string, h
|
||||
|
||||
_, originBackend := getOriginFromHost(host)
|
||||
// build signedResponse
|
||||
samlResponse, _ := NewSamlResponse(application, user, originBackend, certificate, authnRequest.AssertionConsumerServiceURL, authnRequest.Issuer.Url, authnRequest.ID, application.RedirectUris)
|
||||
samlResponse, _ := NewSamlResponse(application, user, originBackend, certificate, authnRequest.AssertionConsumerServiceURL, authnRequest.Issuer, authnRequest.ID, application.RedirectUris)
|
||||
randomKeyStore := &X509Key{
|
||||
PrivateKey: cert.PrivateKey,
|
||||
X509Certificate: certificate,
|
||||
|
@ -117,6 +117,7 @@ type User struct {
|
||||
Infoflow string `xorm:"infoflow varchar(100)" json:"infoflow"`
|
||||
Apple string `xorm:"apple varchar(100)" json:"apple"`
|
||||
AzureAD string `xorm:"azuread varchar(100)" json:"azuread"`
|
||||
AzureADB2c string `xorm:"azureadb2c varchar(100)" json:"azureadb2c"`
|
||||
Slack string `xorm:"slack varchar(100)" json:"slack"`
|
||||
Steam string `xorm:"steam varchar(100)" json:"steam"`
|
||||
Bilibili string `xorm:"bilibili varchar(100)" json:"bilibili"`
|
||||
@ -622,7 +623,7 @@ func UpdateUser(id string, user *User, columns []string, isAdmin bool) (bool, er
|
||||
"is_admin", "is_forbidden", "is_deleted", "hash", "is_default_avatar", "properties", "webauthnCredentials", "managedAccounts",
|
||||
"signin_wrong_times", "last_signin_wrong_time", "groups", "access_key", "access_secret",
|
||||
"github", "google", "qq", "wechat", "facebook", "dingtalk", "weibo", "gitee", "linkedin", "wecom", "lark", "gitlab", "adfs",
|
||||
"baidu", "alipay", "casdoor", "infoflow", "apple", "azuread", "slack", "steam", "bilibili", "okta", "douyin", "line", "amazon",
|
||||
"baidu", "alipay", "casdoor", "infoflow", "apple", "azuread", "azureadb2c", "slack", "steam", "bilibili", "okta", "douyin", "line", "amazon",
|
||||
"auth0", "battlenet", "bitbucket", "box", "cloudfoundry", "dailymotion", "deezer", "digitalocean", "discord", "dropbox",
|
||||
"eveonline", "fitbit", "gitea", "heroku", "influxcloud", "instagram", "intercom", "kakao", "lastfm", "mailru", "meetup",
|
||||
"microsoftonline", "naver", "nextcloud", "onedrive", "oura", "patreon", "paypal", "salesforce", "shopify", "soundcloud",
|
||||
|
@ -22,12 +22,13 @@ import (
|
||||
|
||||
func NewAwsS3StorageProvider(clientId string, clientSecret string, region string, bucket string, endpoint string) oss.StorageInterface {
|
||||
sp := s3.New(&s3.Config{
|
||||
AccessID: clientId,
|
||||
AccessKey: clientSecret,
|
||||
Region: region,
|
||||
Bucket: bucket,
|
||||
Endpoint: endpoint,
|
||||
ACL: awss3.BucketCannedACLPublicRead,
|
||||
AccessID: clientId,
|
||||
AccessKey: clientSecret,
|
||||
Region: region,
|
||||
Bucket: bucket,
|
||||
Endpoint: endpoint,
|
||||
S3Endpoint: endpoint,
|
||||
ACL: awss3.BucketCannedACLPublicRead,
|
||||
})
|
||||
|
||||
return sp
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -322,3 +322,23 @@ func GetUsernameFromEmail(email string) string {
|
||||
return tokens[0]
|
||||
}
|
||||
}
|
||||
|
||||
func StringToInterfaceArray(array []string) []interface{} {
|
||||
var interfaceArray []interface{}
|
||||
for _, v := range array {
|
||||
interfaceArray = append(interfaceArray, v)
|
||||
}
|
||||
return interfaceArray
|
||||
}
|
||||
|
||||
func StringToInterfaceArray2d(arrays [][]string) [][]interface{} {
|
||||
var interfaceArrays [][]interface{}
|
||||
for _, req := range arrays {
|
||||
var interfaceArray []interface{}
|
||||
for _, r := range req {
|
||||
interfaceArray = append(interfaceArray, r)
|
||||
}
|
||||
interfaceArrays = append(interfaceArrays, interfaceArray)
|
||||
}
|
||||
return interfaceArrays
|
||||
}
|
||||
|
@ -32,6 +32,7 @@
|
||||
"file-saver": "^2.0.5",
|
||||
"i18n-iso-countries": "^7.0.0",
|
||||
"i18next": "^19.8.9",
|
||||
"jwt-decode": "^4.0.0",
|
||||
"libphonenumber-js": "^1.10.19",
|
||||
"moment": "^2.29.1",
|
||||
"qrcode.react": "^3.1.0",
|
||||
|
@ -13,7 +13,7 @@
|
||||
// limitations under the License.
|
||||
|
||||
import React from "react";
|
||||
import {Button, Card, Col, ConfigProvider, Input, List, Popover, Radio, Result, Row, Select, Space, Switch, Upload} from "antd";
|
||||
import {Button, Card, Col, ConfigProvider, Input, InputNumber, List, Popover, Radio, Result, Row, Select, Space, Switch, Upload} from "antd";
|
||||
import {CopyOutlined, LinkOutlined, UploadOutlined} from "@ant-design/icons";
|
||||
import * as ApplicationBackend from "./backend/ApplicationBackend";
|
||||
import * as CertBackend from "./backend/CertBackend";
|
||||
@ -199,7 +199,7 @@ class ApplicationEditPage extends React.Component {
|
||||
}
|
||||
|
||||
parseApplicationField(key, value) {
|
||||
if (["expireInHours", "refreshExpireInHours", "offset"].includes(key)) {
|
||||
if (["offset"].includes(key)) {
|
||||
value = Setting.myParseInt(value);
|
||||
}
|
||||
return value;
|
||||
@ -394,8 +394,8 @@ class ApplicationEditPage extends React.Component {
|
||||
{Setting.getLabel(i18next.t("application:Token expire"), i18next.t("application:Token expire - Tooltip"))} :
|
||||
</Col>
|
||||
<Col span={22} >
|
||||
<Input style={{width: "150px"}} value={this.state.application.expireInHours} suffix="Hours" onChange={e => {
|
||||
this.updateApplicationField("expireInHours", e.target.value);
|
||||
<InputNumber style={{width: "150px"}} value={this.state.application.expireInHours} min={1} step={1} precision={0} addonAfter="Hours" onChange={value => {
|
||||
this.updateApplicationField("expireInHours", value);
|
||||
}} />
|
||||
</Col>
|
||||
</Row>
|
||||
@ -404,8 +404,28 @@ class ApplicationEditPage extends React.Component {
|
||||
{Setting.getLabel(i18next.t("application:Refresh token expire"), i18next.t("application:Refresh token expire - Tooltip"))} :
|
||||
</Col>
|
||||
<Col span={22} >
|
||||
<Input style={{width: "150px"}} value={this.state.application.refreshExpireInHours} suffix="Hours" onChange={e => {
|
||||
this.updateApplicationField("refreshExpireInHours", e.target.value);
|
||||
<InputNumber style={{width: "150px"}} value={this.state.application.refreshExpireInHours} min={1} step={1} precision={0} addonAfter="Hours" onChange={value => {
|
||||
this.updateApplicationField("refreshExpireInHours", value);
|
||||
}} />
|
||||
</Col>
|
||||
</Row>
|
||||
<Row style={{marginTop: "20px"}} >
|
||||
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
||||
{Setting.getLabel(i18next.t("application:Failed signin limit"), i18next.t("application:Failed signin limit - Tooltip"))} :
|
||||
</Col>
|
||||
<Col span={22} >
|
||||
<InputNumber style={{width: "150px"}} value={this.state.application.failedSigninLimit} min={1} step={1} precision={0} addonAfter="Times" onChange={value => {
|
||||
this.updateApplicationField("failedSigninLimit", value);
|
||||
}} />
|
||||
</Col>
|
||||
</Row>
|
||||
<Row style={{marginTop: "20px"}} >
|
||||
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
||||
{Setting.getLabel(i18next.t("application:Failed signin frozen time"), i18next.t("application:Failed signin frozen time - Tooltip"))} :
|
||||
</Col>
|
||||
<Col span={22} >
|
||||
<InputNumber style={{width: "150px"}} value={this.state.application.failedSigninfrozenTime} min={1} step={1} precision={0} addonAfter="Minutes" onChange={value => {
|
||||
this.updateApplicationField("failedSigninfrozenTime", value);
|
||||
}} />
|
||||
</Col>
|
||||
</Row>
|
||||
@ -676,7 +696,7 @@ class ApplicationEditPage extends React.Component {
|
||||
<br />
|
||||
<Button style={{marginBottom: "10px"}} type="primary" shape="round" icon={<CopyOutlined />} onClick={() => {
|
||||
copy(`${window.location.origin}/api/saml/metadata?application=admin/${encodeURIComponent(this.state.applicationName)}`);
|
||||
Setting.showMessage("success", i18next.t("application:SAML metadata URL copied to clipboard successfully"));
|
||||
Setting.showMessage("success", i18next.t("general:Copied to clipboard successfully"));
|
||||
}}
|
||||
>
|
||||
{i18next.t("application:Copy SAML metadata URL")}
|
||||
@ -885,7 +905,7 @@ class ApplicationEditPage extends React.Component {
|
||||
<Space>
|
||||
<Button icon={<CopyOutlined />} onClick={() => {
|
||||
copy(item.code);
|
||||
Setting.showMessage("success", i18next.t("application:Invitation code copied to clipboard successfully"));
|
||||
Setting.showMessage("success", i18next.t("general:Copied to clipboard successfully"));
|
||||
}
|
||||
}>
|
||||
{i18next.t("general:Copy")}
|
||||
@ -939,7 +959,7 @@ class ApplicationEditPage extends React.Component {
|
||||
<Col span={previewGrid}>
|
||||
<Button style={{marginBottom: "10px"}} type="primary" shape="round" icon={<CopyOutlined />} onClick={() => {
|
||||
copy(`${window.location.origin}${signUpUrl}`);
|
||||
Setting.showMessage("success", i18next.t("application:Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser"));
|
||||
Setting.showMessage("success", i18next.t("general:Copied to clipboard successfully"));
|
||||
}}
|
||||
>
|
||||
{i18next.t("application:Copy signup page URL")}
|
||||
@ -971,7 +991,7 @@ class ApplicationEditPage extends React.Component {
|
||||
<Col span={previewGrid}>
|
||||
<Button style={{marginBottom: "10px", marginTop: Setting.isMobile() ? "15px" : "0"}} type="primary" shape="round" icon={<CopyOutlined />} onClick={() => {
|
||||
copy(`${window.location.origin}${signInUrl}`);
|
||||
Setting.showMessage("success", i18next.t("application:Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser"));
|
||||
Setting.showMessage("success", i18next.t("general:Copied to clipboard successfully"));
|
||||
}}
|
||||
>
|
||||
{i18next.t("application:Copy signin page URL")}
|
||||
@ -1004,7 +1024,7 @@ class ApplicationEditPage extends React.Component {
|
||||
<Col span={previewGrid}>
|
||||
<Button style={{marginBottom: "10px"}} type="primary" shape="round" icon={<CopyOutlined />} onClick={() => {
|
||||
copy(`${window.location.origin}${promptUrl}`);
|
||||
Setting.showMessage("success", i18next.t("application:Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser"));
|
||||
Setting.showMessage("success", i18next.t("general:Copied to clipboard successfully"));
|
||||
}}
|
||||
>
|
||||
{i18next.t("application:Copy prompt page URL")}
|
||||
|
@ -230,7 +230,7 @@ class CertEditPage extends React.Component {
|
||||
<Col span={editorWidth} >
|
||||
<Button style={{marginRight: "10px", marginBottom: "10px"}} disabled={this.state.cert.certificate === ""} onClick={() => {
|
||||
copy(this.state.cert.certificate);
|
||||
Setting.showMessage("success", i18next.t("cert:Certificate copied to clipboard successfully"));
|
||||
Setting.showMessage("success", i18next.t("general:Copied to clipboard successfully"));
|
||||
}}
|
||||
>
|
||||
{i18next.t("cert:Copy certificate")}
|
||||
@ -253,7 +253,7 @@ class CertEditPage extends React.Component {
|
||||
<Col span={editorWidth} >
|
||||
<Button style={{marginRight: "10px", marginBottom: "10px"}} disabled={this.state.cert.privateKey === ""} onClick={() => {
|
||||
copy(this.state.cert.privateKey);
|
||||
Setting.showMessage("success", i18next.t("cert:Private key copied to clipboard successfully"));
|
||||
Setting.showMessage("success", i18next.t("general:Copied to clipboard successfully"));
|
||||
}}
|
||||
>
|
||||
{i18next.t("cert:Copy private key")}
|
||||
|
@ -287,7 +287,7 @@ class PricingEditPage extends React.Component {
|
||||
<Col>
|
||||
<Button style={{marginBottom: "10px", marginTop: Setting.isMobile() ? "15px" : "0"}} type="primary" shape="round" icon={<CopyOutlined />} onClick={() => {
|
||||
copy(`${window.location.origin}${pricingUrl}`);
|
||||
Setting.showMessage("success", i18next.t("pricing:pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser"));
|
||||
Setting.showMessage("success", i18next.t("general:Copied to clipboard successfully"));
|
||||
}}
|
||||
>
|
||||
{i18next.t("pricing:Copy pricing page URL")}
|
||||
|
@ -311,6 +311,9 @@ class ProviderEditPage extends React.Component {
|
||||
} else if (provider.type === "Infoflow") {
|
||||
text = i18next.t("provider:Agent ID");
|
||||
tooltip = i18next.t("provider:Agent ID - Tooltip");
|
||||
} else if (provider.type === "AzureADB2C") {
|
||||
text = i18next.t("provider:User flow");
|
||||
tooltip = i18next.t("provider:User flow - Tooltip");
|
||||
}
|
||||
} else if (provider.category === "SMS") {
|
||||
if (provider.type === "Twilio SMS" || provider.type === "Azure ACS") {
|
||||
@ -758,7 +761,7 @@ class ProviderEditPage extends React.Component {
|
||||
)
|
||||
}
|
||||
{
|
||||
this.state.provider.type !== "ADFS" && this.state.provider.type !== "AzureAD" && this.state.provider.type !== "Casdoor" && this.state.provider.type !== "Okta" ? null : (
|
||||
this.state.provider.type !== "ADFS" && this.state.provider.type !== "AzureAD" && this.state.provider.type !== "AzureADB2C" && this.state.provider.type !== "Casdoor" && this.state.provider.type !== "Okta" ? null : (
|
||||
<Row style={{marginTop: "20px"}} >
|
||||
<Col style={{marginTop: "5px"}} span={2}>
|
||||
{Setting.getLabel(i18next.t("provider:Domain"), i18next.t("provider:Domain - Tooltip"))} :
|
||||
@ -1160,7 +1163,7 @@ class ProviderEditPage extends React.Component {
|
||||
<Col span={1}>
|
||||
<Button type="primary" onClick={() => {
|
||||
copy(`${authConfig.serverUrl}/api/acs`);
|
||||
Setting.showMessage("success", i18next.t("provider:Link copied to clipboard successfully"));
|
||||
Setting.showMessage("success", i18next.t("general:Copied to clipboard successfully"));
|
||||
}}>
|
||||
{i18next.t("provider:Copy")}
|
||||
</Button>
|
||||
@ -1176,7 +1179,7 @@ class ProviderEditPage extends React.Component {
|
||||
<Col span={1}>
|
||||
<Button type="primary" onClick={() => {
|
||||
copy(`${authConfig.serverUrl}/api/acs`);
|
||||
Setting.showMessage("success", i18next.t("provider:Link copied to clipboard successfully"));
|
||||
Setting.showMessage("success", i18next.t("general:Copied to clipboard successfully"));
|
||||
}}>
|
||||
{i18next.t("provider:Copy")}
|
||||
</Button>
|
||||
@ -1205,7 +1208,7 @@ class ProviderEditPage extends React.Component {
|
||||
(this.state.provider.type === "Alipay") ? (
|
||||
<Row style={{marginTop: "20px"}} >
|
||||
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
||||
{Setting.getLabel(i18next.t("general:Root Cert"), i18next.t("general:Root Cert - Tooltip"))} :
|
||||
{Setting.getLabel(i18next.t("general:Root cert"), i18next.t("general:Root cert - Tooltip"))} :
|
||||
</Col>
|
||||
<Col span={22} >
|
||||
<Select virtual={false} style={{width: "100%"}} value={this.state.provider.metadata} onChange={(value => {this.updateProviderField("metadata", value);})}>
|
||||
|
@ -248,7 +248,7 @@ class ResourceListPage extends BaseListPage {
|
||||
<div>
|
||||
<Button onClick={() => {
|
||||
copy(record.url);
|
||||
Setting.showMessage("success", i18next.t("provider:Link copied to clipboard successfully"));
|
||||
Setting.showMessage("success", i18next.t("general:Copied to clipboard successfully"));
|
||||
}}
|
||||
>
|
||||
{i18next.t("resource:Copy Link")}
|
||||
|
@ -924,7 +924,8 @@ export function getProviderTypeOptions(category) {
|
||||
{id: "Casdoor", name: "Casdoor"},
|
||||
{id: "Infoflow", name: "Infoflow"},
|
||||
{id: "Apple", name: "Apple"},
|
||||
{id: "AzureAD", name: "AzureAD"},
|
||||
{id: "AzureAD", name: "Azure AD"},
|
||||
{id: "AzureADB2C", name: "Azure AD B2C"},
|
||||
{id: "Slack", name: "Slack"},
|
||||
{id: "Steam", name: "Steam"},
|
||||
{id: "Bilibili", name: "Bilibili"},
|
||||
|
@ -280,12 +280,12 @@ class SubscriptionEditPage extends React.Component {
|
||||
this.updateSubscriptionField("state", value);
|
||||
})}
|
||||
options={[
|
||||
{value: "Pending", name: i18next.t("permission:Pending")},
|
||||
{value: "Active", name: i18next.t("permission:Active")},
|
||||
{value: "Upcoming", name: i18next.t("permission:Upcoming")},
|
||||
{value: "Expired", name: i18next.t("permission:Expired")},
|
||||
{value: "Error", name: i18next.t("permission:Error")},
|
||||
{value: "Suspended", name: i18next.t("permission:Suspended")},
|
||||
{value: "Pending", name: i18next.t("subscription:Pending")},
|
||||
{value: "Active", name: i18next.t("subscription:Active")},
|
||||
{value: "Upcoming", name: i18next.t("subscription:Upcoming")},
|
||||
{value: "Expired", name: i18next.t("subscription:Expired")},
|
||||
{value: "Error", name: i18next.t("subscription:Error")},
|
||||
{value: "Suspended", name: i18next.t("subscription:Suspended")},
|
||||
].map((item) => Setting.getOption(item.name, item.value))}
|
||||
/>
|
||||
</Col>
|
||||
|
@ -201,17 +201,17 @@ class SubscriptionListPage extends BaseListPage {
|
||||
render: (text, record, index) => {
|
||||
switch (text) {
|
||||
case "Pending":
|
||||
return Setting.getTag("processing", i18next.t("permission:Pending"), <ExclamationCircleOutlined />);
|
||||
return Setting.getTag("processing", i18next.t("subscription:Pending"), <ExclamationCircleOutlined />);
|
||||
case "Active":
|
||||
return Setting.getTag("success", i18next.t("permission:Active"), <SyncOutlined spin />);
|
||||
return Setting.getTag("success", i18next.t("subscription:Active"), <SyncOutlined spin />);
|
||||
case "Upcoming":
|
||||
return Setting.getTag("warning", i18next.t("permission:Upcoming"), <ClockCircleOutlined />);
|
||||
return Setting.getTag("warning", i18next.t("subscription:Upcoming"), <ClockCircleOutlined />);
|
||||
case "Expired":
|
||||
return Setting.getTag("warning", i18next.t("permission:Expired"), <ClockCircleOutlined />);
|
||||
return Setting.getTag("warning", i18next.t("subscription:Expired"), <ClockCircleOutlined />);
|
||||
case "Error":
|
||||
return Setting.getTag("error", i18next.t("permission:Error"), <CloseCircleOutlined />);
|
||||
return Setting.getTag("error", i18next.t("subscription:Error"), <CloseCircleOutlined />);
|
||||
case "Suspended":
|
||||
return Setting.getTag("default", i18next.t("permission:Suspended"), <MinusCircleOutlined />);
|
||||
return Setting.getTag("default", i18next.t("subscription:Suspended"), <MinusCircleOutlined />);
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
|
@ -17,6 +17,10 @@ import {Button, Card, Col, Input, Row} from "antd";
|
||||
import * as TokenBackend from "./backend/TokenBackend";
|
||||
import * as Setting from "./Setting";
|
||||
import i18next from "i18next";
|
||||
import copy from "copy-to-clipboard";
|
||||
import {jwtDecode} from "jwt-decode";
|
||||
|
||||
const {TextArea} = Input;
|
||||
|
||||
class TokenEditPage extends React.Component {
|
||||
constructor(props) {
|
||||
@ -69,7 +73,20 @@ class TokenEditPage extends React.Component {
|
||||
});
|
||||
}
|
||||
|
||||
parseAccessToken(accessToken) {
|
||||
try {
|
||||
const parsedHeader = JSON.stringify(jwtDecode(accessToken, {header: true}), null, 2);
|
||||
const parsedPayload = JSON.stringify(jwtDecode(accessToken), null, 2);
|
||||
const res = parsedHeader + "." + parsedPayload;
|
||||
return res;
|
||||
} catch (error) {
|
||||
return error.message;
|
||||
}
|
||||
}
|
||||
|
||||
renderToken() {
|
||||
const editorWidth = Setting.isMobile() ? 22 : 9;
|
||||
const parsedResult = this.parseAccessToken(this.state.token.accessToken);
|
||||
return (
|
||||
<Card size="small" title={
|
||||
<div>
|
||||
@ -81,7 +98,7 @@ class TokenEditPage extends React.Component {
|
||||
} style={(Setting.isMobile()) ? {margin: "5px"} : {}} type="inner">
|
||||
<Row style={{marginTop: "10px"}} >
|
||||
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
||||
{i18next.t("general:Name")}:
|
||||
{Setting.getLabel(i18next.t("general:Name"), i18next.t("general:Name - Tooltip"))} :
|
||||
</Col>
|
||||
<Col span={22} >
|
||||
<Input value={this.state.token.name} onChange={e => {
|
||||
@ -91,7 +108,7 @@ class TokenEditPage extends React.Component {
|
||||
</Row>
|
||||
<Row style={{marginTop: "20px"}} >
|
||||
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
||||
{i18next.t("general:Application")}:
|
||||
{Setting.getLabel(i18next.t("general:Application"), i18next.t("general:Application - Tooltip"))} :
|
||||
</Col>
|
||||
<Col span={22} >
|
||||
<Input value={this.state.token.application} onChange={e => {
|
||||
@ -101,7 +118,7 @@ class TokenEditPage extends React.Component {
|
||||
</Row>
|
||||
<Row style={{marginTop: "20px"}} >
|
||||
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
||||
{i18next.t("general:Organization")}:
|
||||
{Setting.getLabel(i18next.t("general:Organization"), i18next.t("general:Organization - Tooltip"))} :
|
||||
</Col>
|
||||
<Col span={22} >
|
||||
<Input disabled={!Setting.isAdminUser(this.props.account)} value={this.state.token.organization} onChange={e => {
|
||||
@ -111,7 +128,7 @@ class TokenEditPage extends React.Component {
|
||||
</Row>
|
||||
<Row style={{marginTop: "20px"}} >
|
||||
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
||||
{i18next.t("general:User")}:
|
||||
{Setting.getLabel(i18next.t("general:User"), i18next.t("general:User - Tooltip"))} :
|
||||
</Col>
|
||||
<Col span={22} >
|
||||
<Input value={this.state.token.user} onChange={e => {
|
||||
@ -121,7 +138,7 @@ class TokenEditPage extends React.Component {
|
||||
</Row>
|
||||
<Row style={{marginTop: "20px"}} >
|
||||
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
||||
{i18next.t("token:Authorization code")}:
|
||||
{Setting.getLabel(i18next.t("token:Authorization code"), i18next.t("token:Authorization code - Tooltip"))} :
|
||||
</Col>
|
||||
<Col span={22} >
|
||||
<Input value={this.state.token.code} onChange={e => {
|
||||
@ -131,17 +148,7 @@ class TokenEditPage extends React.Component {
|
||||
</Row>
|
||||
<Row style={{marginTop: "20px"}} >
|
||||
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
||||
{i18next.t("token:Access token")}:
|
||||
</Col>
|
||||
<Col span={22} >
|
||||
<Input value={this.state.token.accessToken} onChange={e => {
|
||||
this.updateTokenField("accessToken", e.target.value);
|
||||
}} />
|
||||
</Col>
|
||||
</Row>
|
||||
<Row style={{marginTop: "20px"}} >
|
||||
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
||||
{i18next.t("token:Expires in")}:
|
||||
{Setting.getLabel(i18next.t("token:Expires in"), i18next.t("token:Expires in - Tooltip"))} :
|
||||
</Col>
|
||||
<Col span={22} >
|
||||
<Input value={this.state.token.expiresIn} onChange={e => {
|
||||
@ -151,7 +158,7 @@ class TokenEditPage extends React.Component {
|
||||
</Row>
|
||||
<Row style={{marginTop: "20px"}} >
|
||||
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
||||
{i18next.t("provider:Scope")}:
|
||||
{Setting.getLabel(i18next.t("provider:Scope"), i18next.t("provider:Scope - Tooltip"))}
|
||||
</Col>
|
||||
<Col span={22} >
|
||||
<Input value={this.state.token.scope} onChange={e => {
|
||||
@ -161,7 +168,7 @@ class TokenEditPage extends React.Component {
|
||||
</Row>
|
||||
<Row style={{marginTop: "20px"}} >
|
||||
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
||||
{i18next.t("token:Token type")}:
|
||||
{Setting.getLabel(i18next.t("token:Token type"), i18next.t("token:Token type - Tooltip"))} :
|
||||
</Col>
|
||||
<Col span={22} >
|
||||
<Input value={this.state.token.tokenType} onChange={e => {
|
||||
@ -169,6 +176,37 @@ class TokenEditPage extends React.Component {
|
||||
}} />
|
||||
</Col>
|
||||
</Row>
|
||||
<Row style={{marginTop: "20px"}} >
|
||||
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
||||
{Setting.getLabel(i18next.t("token:Access token"), i18next.t("token:Access token - Tooltip"))} :
|
||||
</Col>
|
||||
<Col span={editorWidth} >
|
||||
<Button type="primary" style={{marginRight: "10px", marginBottom: "10px"}} disabled={this.state.token.accessToken === ""} onClick={() => {
|
||||
copy(this.state.token.accessToken);
|
||||
Setting.showMessage("success", i18next.t("general:Copied to clipboard successfully"));
|
||||
}}
|
||||
>
|
||||
{i18next.t("token:Copy access token")}
|
||||
</Button>
|
||||
<TextArea autoSize={{minRows: 10, maxRows: 200}} value={this.state.token.accessToken} onChange={e => {
|
||||
this.updateTokenField("accessToken", e.target.value);
|
||||
}} />
|
||||
</Col>
|
||||
<Col span={1} />
|
||||
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
||||
{Setting.getLabel(i18next.t("token:Parsed result"), i18next.t("token:Parsed result - Tooltip"))} :
|
||||
</Col>
|
||||
<Col span={editorWidth} >
|
||||
<Button type="primary" style={{marginRight: "10px", marginBottom: "10px"}} disabled={!parsedResult.includes("\"alg\":")} onClick={() => {
|
||||
copy(parsedResult);
|
||||
Setting.showMessage("success", i18next.t("general:Copied to clipboard successfully"));
|
||||
}}
|
||||
>
|
||||
{i18next.t("token:Copy parsed result")}
|
||||
</Button>
|
||||
<TextArea autoSize={{minRows: 10, maxRows: 200}} value={parsedResult} />
|
||||
</Col>
|
||||
</Row>
|
||||
</Card>
|
||||
);
|
||||
}
|
||||
|
@ -325,6 +325,10 @@ class UserListPage extends BaseListPage {
|
||||
sorter: true,
|
||||
...this.getColumnSearchProps("tag"),
|
||||
render: (text, record, index) => {
|
||||
if (this.state.organization?.tags?.length === 0) {
|
||||
return text;
|
||||
}
|
||||
|
||||
const tagMap = {};
|
||||
this.state.organization?.tags?.map((tag, index) => {
|
||||
const tokens = tag.split("|");
|
||||
|
32
web/src/auth/AzureADB2CLoginButton.js
Normal file
32
web/src/auth/AzureADB2CLoginButton.js
Normal file
@ -0,0 +1,32 @@
|
||||
// Copyright 2023 The Casdoor Authors. All Rights Reserved.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
import {createButton} from "react-social-login-buttons";
|
||||
import {StaticBaseUrl} from "../Setting";
|
||||
|
||||
function Icon({width = 24, height = 24, color}) {
|
||||
return <img src={`${StaticBaseUrl}/buttons/azuread.svg`} alt="Sign in with Azure AD B2C" style={{width: 24, height: 24}} />;
|
||||
}
|
||||
|
||||
const config = {
|
||||
text: "Sign in with Azure AD B2C",
|
||||
icon: Icon,
|
||||
iconFormat: name => `fa fa-${name}`,
|
||||
style: {background: "#ffffff", color: "#000000"},
|
||||
activeStyle: {background: "#ededee"},
|
||||
};
|
||||
|
||||
const AzureADB2CLoginButton = createButton(config);
|
||||
|
||||
export default AzureADB2CLoginButton;
|
@ -16,11 +16,11 @@ import {createButton} from "react-social-login-buttons";
|
||||
import {StaticBaseUrl} from "../Setting";
|
||||
|
||||
function Icon({width = 24, height = 24, color}) {
|
||||
return <img src={`${StaticBaseUrl}/buttons/azuread.svg`} alt="Sign in with AzureAD" style={{width: 24, height: 24}} />;
|
||||
return <img src={`${StaticBaseUrl}/buttons/azuread.svg`} alt="Sign in with Azure AD" style={{width: 24, height: 24}} />;
|
||||
}
|
||||
|
||||
const config = {
|
||||
text: "Sign in with AzureAD",
|
||||
text: "Sign in with Azure AD",
|
||||
icon: Icon,
|
||||
iconFormat: name => `fa fa-${name}`,
|
||||
style: {background: "#ffffff", color: "#000000"},
|
||||
|
@ -100,6 +100,10 @@ const authInfo = {
|
||||
scope: "user.read",
|
||||
endpoint: "https://login.microsoftonline.com/common/oauth2/v2.0/authorize",
|
||||
},
|
||||
AzureADB2C: {
|
||||
scope: "openid",
|
||||
endpoint: "https://tenant.b2clogin.com/tenant.onmicrosoft.com/userflow/oauth2/v2.0/authorize",
|
||||
},
|
||||
Slack: {
|
||||
scope: "users:read",
|
||||
endpoint: "https://slack.com/oauth/authorize",
|
||||
@ -406,6 +410,8 @@ export function getAuthUrl(application, provider, method) {
|
||||
|| provider.type === "Twitch" || provider.type === "Typetalk" || provider.type === "Uber" || provider.type === "VK" || provider.type === "Wepay"
|
||||
|| provider.type === "Xero" || provider.type === "Yahoo" || provider.type === "Yammer" || provider.type === "Yandex" || provider.type === "Zoom") {
|
||||
return `${endpoint}?client_id=${provider.clientId}&redirect_uri=${redirectUri}&scope=${scope}&response_type=code&state=${state}`;
|
||||
} else if (provider.type === "AzureADB2C") {
|
||||
return `https://${provider.domain}.b2clogin.com/${provider.domain}.onmicrosoft.com/${provider.appId}/oauth2/v2.0/authorize?client_id=${provider.clientId}&nonce=defaultNonce&redirect_uri=${encodeURIComponent(redirectUri)}&scope=${scope}&response_type=code&state=${state}&prompt=login`;
|
||||
} else if (provider.type === "DingTalk") {
|
||||
return `${endpoint}?client_id=${provider.clientId}&redirect_uri=${redirectUri}&scope=${scope}&response_type=code&prompt=consent&state=${state}`;
|
||||
} else if (provider.type === "WeChat") {
|
||||
|
@ -35,6 +35,7 @@ import AlipayLoginButton from "./AlipayLoginButton";
|
||||
import InfoflowLoginButton from "./InfoflowLoginButton";
|
||||
import AppleLoginButton from "./AppleLoginButton";
|
||||
import AzureADLoginButton from "./AzureADLoginButton";
|
||||
import AzureADB2CLoginButton from "./AzureADB2CLoginButton";
|
||||
import SlackLoginButton from "./SlackLoginButton";
|
||||
import SteamLoginButton from "./SteamLoginButton";
|
||||
import BilibiliLoginButton from "./BilibiliLoginButton";
|
||||
@ -85,6 +86,8 @@ function getSigninButton(provider) {
|
||||
return <AppleLoginButton text={text} align={"center"} />;
|
||||
} else if (provider.type === "AzureAD") {
|
||||
return <AzureADLoginButton text={text} align={"center"} />;
|
||||
} else if (provider.type === "AzureADB2C") {
|
||||
return <AzureADB2CLoginButton text={text} align={"center"} />;
|
||||
} else if (provider.type === "Slack") {
|
||||
return <SlackLoginButton text={text} align={"center"} />;
|
||||
} else if (provider.type === "Steam") {
|
||||
|
@ -27,18 +27,10 @@ export const MfaVerifyTotpForm = ({mfaProps, onFinish}) => {
|
||||
<Col span={24}>
|
||||
<Space>
|
||||
<Input value={mfaProps.secret} />
|
||||
<Button
|
||||
type="primary"
|
||||
shape="round"
|
||||
icon={<CopyOutlined />}
|
||||
onClick={() => {
|
||||
copy(`${mfaProps.secret}`);
|
||||
Setting.showMessage(
|
||||
"success",
|
||||
i18next.t("mfa:Multi-factor secret to clipboard successfully")
|
||||
);
|
||||
}}
|
||||
/>
|
||||
<Button type="primary" shape="round" icon={<CopyOutlined />} onClick={() => {
|
||||
copy(`${mfaProps.secret}`);
|
||||
Setting.showMessage("success", i18next.t("general:Copied to clipboard successfully"));
|
||||
}} />
|
||||
</Space>
|
||||
</Col>
|
||||
</React.Fragment>
|
||||
|
@ -12,7 +12,9 @@
|
||||
"Policies": "Policies",
|
||||
"Policies - Tooltip": "Casbin policy rules",
|
||||
"Rule type": "Rule type",
|
||||
"Sync policies successfully": "Sync policies successfully"
|
||||
"Sync policies successfully": "Sync policies successfully",
|
||||
"Use same DB": "Use same DB",
|
||||
"Use same DB - Tooltip": "Use same DB - Tooltip"
|
||||
},
|
||||
"application": {
|
||||
"Always": "Always",
|
||||
@ -30,6 +32,8 @@
|
||||
"Edit Application": "Edit Application",
|
||||
"Enable Email linking": "Enable Email linking",
|
||||
"Enable Email linking - Tooltip": "When using 3rd-party providers to log in, if there is a user in the organization with the same Email, the 3rd-party login method will be automatically associated with that user",
|
||||
"Enable SAML C14N10": "Enable SAML C14N10",
|
||||
"Enable SAML C14N10 - Tooltip": "Enable SAML C14N10 - Tooltip",
|
||||
"Enable SAML compression": "Enable SAML compression",
|
||||
"Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp",
|
||||
"Enable WebAuthn signin": "Enable WebAuthn signin",
|
||||
@ -42,6 +46,10 @@
|
||||
"Enable signin session - Tooltip": "Whether Casdoor maintains a session after logging into Casdoor from the application",
|
||||
"Enable signup": "Enable signup",
|
||||
"Enable signup - Tooltip": "Whether to allow users to register a new account",
|
||||
"Failed signin frozen time": "Failed signin frozen time",
|
||||
"Failed signin frozen time - Tooltip": "Failed signin frozen time - Tooltip",
|
||||
"Failed signin limit": "Failed signin limit",
|
||||
"Failed signin limit - Tooltip": "Failed signin limit - Tooltip",
|
||||
"Failed to sign in": "Failed to sign in",
|
||||
"File uploaded successfully": "File uploaded successfully",
|
||||
"First, last": "First, last",
|
||||
@ -60,7 +68,6 @@
|
||||
"Input": "Input",
|
||||
"Invitation code": "Invitation code",
|
||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||
"Left": "Left",
|
||||
"Logged in successfully": "Logged in successfully",
|
||||
"Logged out successfully": "Logged out successfully",
|
||||
@ -73,7 +80,6 @@
|
||||
"Please input your application!": "Please input your application!",
|
||||
"Please input your organization!": "Please input your organization!",
|
||||
"Please select a HTML file": "Please select a HTML file",
|
||||
"Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Random": "Random",
|
||||
"Real name": "Real name",
|
||||
"Redirect URL": "Redirect URL",
|
||||
@ -86,7 +92,6 @@
|
||||
"Rule": "Rule",
|
||||
"SAML metadata": "SAML metadata",
|
||||
"SAML metadata - Tooltip": "The metadata of SAML protocol",
|
||||
"SAML metadata URL copied to clipboard successfully": "SAML metadata URL copied to clipboard successfully",
|
||||
"SAML reply URL": "SAML reply URL",
|
||||
"Select": "Select",
|
||||
"Side panel HTML": "Side panel HTML",
|
||||
@ -95,11 +100,9 @@
|
||||
"Sign Up Error": "Sign Up Error",
|
||||
"Signin": "Signin",
|
||||
"Signin (Default True)": "Signin (Default True)",
|
||||
"Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Signin session": "Signin session",
|
||||
"Signup items": "Signup items",
|
||||
"Signup items - Tooltip": "Items for users to fill in when registering new accounts",
|
||||
"Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Tags - Tooltip": "Only users with the tag that is listed in the application tags can login",
|
||||
"The application does not allow to sign up new account": "The application does not allow to sign up new account",
|
||||
"Token expire": "Token expire",
|
||||
@ -113,7 +116,6 @@
|
||||
"Bit size - Tooltip": "Secret key length",
|
||||
"Certificate": "Certificate",
|
||||
"Certificate - Tooltip": "Public key certificate, used for decrypting the JWT signature of the Access Token. This certificate usually needs to be deployed on the Casdoor SDK side (i.e., the application) to parse the JWT",
|
||||
"Certificate copied to clipboard successfully": "Certificate copied to clipboard successfully",
|
||||
"Copy certificate": "Copy certificate",
|
||||
"Copy private key": "Copy private key",
|
||||
"Crypto algorithm": "Crypto algorithm",
|
||||
@ -126,7 +128,6 @@
|
||||
"New Cert": "New Cert",
|
||||
"Private key": "Private key",
|
||||
"Private key - Tooltip": "Private key corresponding to the public key certificate",
|
||||
"Private key copied to clipboard successfully": "Private key copied to clipboard successfully",
|
||||
"Scope - Tooltip": "Usage scenarios of the certificate",
|
||||
"Type - Tooltip": "Type of certificate"
|
||||
},
|
||||
@ -191,6 +192,7 @@
|
||||
"Click to Upload": "Click to Upload",
|
||||
"Close": "Close",
|
||||
"Confirm": "Confirm",
|
||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||
"Copy": "Copy",
|
||||
"Created time": "Created time",
|
||||
"Custom": "Custom",
|
||||
@ -200,6 +202,8 @@
|
||||
"Default application - Tooltip": "Default application for users registered directly from the organization page",
|
||||
"Default avatar": "Default avatar",
|
||||
"Default avatar - Tooltip": "Default avatar used when newly registered users do not set an avatar image",
|
||||
"Default password": "Default password",
|
||||
"Default password - Tooltip": "Default password - Tooltip",
|
||||
"Delete": "Delete",
|
||||
"Description": "Description",
|
||||
"Description - Tooltip": "Detailed description information for reference, Casdoor itself will not use it",
|
||||
@ -218,8 +222,10 @@
|
||||
"Failed to connect to server": "Failed to connect to server",
|
||||
"Failed to delete": "Failed to delete",
|
||||
"Failed to enable": "Failed to enable",
|
||||
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
|
||||
"Failed to remove": "Failed to remove",
|
||||
"Failed to save": "Failed to save",
|
||||
"Failed to sync": "Failed to sync",
|
||||
"Failed to verify": "Failed to verify",
|
||||
"Favicon": "Favicon",
|
||||
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
|
||||
@ -251,6 +257,8 @@
|
||||
"MFA items - Tooltip": "MFA items - Tooltip",
|
||||
"Master password": "Master password",
|
||||
"Master password - Tooltip": "Can be used to log in to all users under this organization, making it convenient for administrators to log in as this user to solve technical issues",
|
||||
"Master verification code": "Master verification code",
|
||||
"Master verification code - Tooltip": "Master verification code - Tooltip",
|
||||
"Menu": "Menu",
|
||||
"Method": "Method",
|
||||
"Model": "Model",
|
||||
@ -272,6 +280,8 @@
|
||||
"Password salt - Tooltip": "Random parameter used for password encryption",
|
||||
"Password type": "Password type",
|
||||
"Password type - Tooltip": "Storage format of passwords in the database",
|
||||
"Payment": "Payment",
|
||||
"Payment - Tooltip": "Payment - Tooltip",
|
||||
"Payments": "Payments",
|
||||
"Permissions": "Permissions",
|
||||
"Permissions - Tooltip": "Permissions owned by this user",
|
||||
@ -283,6 +293,8 @@
|
||||
"Plans - Tooltip": "Plans - Tooltip",
|
||||
"Preview": "Preview",
|
||||
"Preview - Tooltip": "Preview the configured effects",
|
||||
"Pricing": "Pricing",
|
||||
"Pricing - Tooltip": "Pricing - Tooltip",
|
||||
"Pricings": "Pricings",
|
||||
"Products": "Products",
|
||||
"Provider": "Provider",
|
||||
@ -296,6 +308,10 @@
|
||||
"Role - Tooltip": "Role - Tooltip",
|
||||
"Roles": "Roles",
|
||||
"Roles - Tooltip": "Roles that the user belongs to",
|
||||
"Root cert": "Root cert",
|
||||
"Root cert - Tooltip": "Root cert - Tooltip",
|
||||
"SAML attributes": "SAML attributes",
|
||||
"SAML attributes - Tooltip": "SAML attributes - Tooltip",
|
||||
"Save": "Save",
|
||||
"Save & Exit": "Save & Exit",
|
||||
"Session ID": "Session ID",
|
||||
@ -318,6 +334,7 @@
|
||||
"Successfully removed": "Successfully removed",
|
||||
"Successfully saved": "Successfully saved",
|
||||
"Successfully sent": "Successfully sent",
|
||||
"Successfully synced": "Successfully synced",
|
||||
"Supported country codes": "Supported country codes",
|
||||
"Supported country codes - Tooltip": "Country codes supported by the organization. These codes can be selected as a prefix when sending SMS verification codes",
|
||||
"Sure to delete": "Sure to delete",
|
||||
@ -440,7 +457,6 @@
|
||||
"Multi-factor methods": "Multi-factor methods",
|
||||
"Multi-factor recover": "Multi-factor recover",
|
||||
"Multi-factor recover description": "Multi-factor recover description",
|
||||
"Multi-factor secret to clipboard successfully": "Multi-factor secret to clipboard successfully",
|
||||
"Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
|
||||
"Passcode": "Passcode",
|
||||
"Please bind your email first, the system will automatically uses the mail for multi-factor authentication": "Please bind your email first, the system will automatically uses the mail for multi-factor authentication",
|
||||
@ -573,11 +589,13 @@
|
||||
"plan": {
|
||||
"Edit Plan": "Edit Plan",
|
||||
"New Plan": "New Plan",
|
||||
"Price per month": "Price per month",
|
||||
"Price per month - Tooltip": "Price per month - Tooltip",
|
||||
"Price per year": "Price per year",
|
||||
"Price per year - Tooltip": "Price per year - Tooltip",
|
||||
"per month": "per month"
|
||||
"Period": "Period",
|
||||
"Period - Tooltip": "Period - Tooltip",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price - Tooltip",
|
||||
"Related product": "Related product",
|
||||
"per month": "per month",
|
||||
"per year": "per year"
|
||||
},
|
||||
"pricing": {
|
||||
"Copy pricing page URL": "Copy pricing page URL",
|
||||
@ -589,7 +607,7 @@
|
||||
"Trial duration": "Trial duration",
|
||||
"Trial duration - Tooltip": "Trial duration period",
|
||||
"days trial available!": "days trial available!",
|
||||
"pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser"
|
||||
"paid-user do not have active subscription or pending subscription, please select a plan to buy": "paid-user do not have active subscription or pending subscription, please select a plan to buy"
|
||||
},
|
||||
"product": {
|
||||
"Alipay": "Alipay",
|
||||
@ -600,17 +618,16 @@
|
||||
"Detail - Tooltip": "Detail of product",
|
||||
"Dummy": "Dummy",
|
||||
"Edit Product": "Edit Product",
|
||||
"I have completed the payment": "I have completed the payment",
|
||||
"Image": "Image",
|
||||
"Image - Tooltip": "Image of product",
|
||||
"New Product": "New Product",
|
||||
"Pay": "Pay",
|
||||
"PayPal": "PayPal",
|
||||
"Payment cancelled": "Payment cancelled",
|
||||
"Payment failed": "Payment failed",
|
||||
"Payment providers": "Payment providers",
|
||||
"Payment providers - Tooltip": "Providers of payment services",
|
||||
"Placing order...": "Placing order...",
|
||||
"Please provide your username in the remark": "Please provide your username in the remark",
|
||||
"Please scan the QR code to pay": "Please scan the QR code to pay",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price of product",
|
||||
"Quantity": "Quantity",
|
||||
@ -672,8 +689,8 @@
|
||||
"Content": "Content",
|
||||
"Content - Tooltip": "Content - Tooltip",
|
||||
"Copy": "Copy",
|
||||
"DB Test": "DB Test",
|
||||
"DB Test - Tooltip": "DB Test - Tooltip",
|
||||
"DB test": "DB test",
|
||||
"DB test - Tooltip": "DB test - Tooltip",
|
||||
"Disable SSL": "Disable SSL",
|
||||
"Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server",
|
||||
"Domain": "Domain",
|
||||
@ -700,7 +717,10 @@
|
||||
"Internal": "Internal",
|
||||
"Issuer URL": "Issuer URL",
|
||||
"Issuer URL - Tooltip": "Issuer URL",
|
||||
"Link copied to clipboard successfully": "Link copied to clipboard successfully",
|
||||
"Key ID": "Key ID",
|
||||
"Key ID - Tooltip": "Key ID - Tooltip",
|
||||
"Key text": "Key text",
|
||||
"Key text - Tooltip": "Key text - Tooltip",
|
||||
"Metadata": "Metadata",
|
||||
"Metadata - Tooltip": "SAML metadata",
|
||||
"Method - Tooltip": "Login method, QR code or silent login",
|
||||
@ -754,6 +774,10 @@
|
||||
"Sender Id - Tooltip": "Sender Id - Tooltip",
|
||||
"Sender number": "Sender number",
|
||||
"Sender number - Tooltip": "Sender number - Tooltip",
|
||||
"Service ID identifier": "Service ID identifier",
|
||||
"Service ID identifier - Tooltip": "Service ID identifier - Tooltip",
|
||||
"Service account JSON": "Service account JSON",
|
||||
"Service account JSON - Tooltip": "Service account JSON - Tooltip",
|
||||
"Sign Name": "Sign Name",
|
||||
"Sign Name - Tooltip": "Name of the signature to be used",
|
||||
"Sign request": "Sign request",
|
||||
@ -764,12 +788,15 @@
|
||||
"Signup HTML": "Signup HTML",
|
||||
"Signup HTML - Edit": "Signup HTML - Edit",
|
||||
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
|
||||
"Signup group": "Signup group",
|
||||
"Silent": "Silent",
|
||||
"Site key": "Site key",
|
||||
"Site key - Tooltip": "Site key",
|
||||
"Sliding Validation": "Sliding Validation",
|
||||
"Sub type": "Sub type",
|
||||
"Sub type - Tooltip": "Sub type",
|
||||
"Team ID": "Team ID",
|
||||
"Team ID - Tooltip": "Team ID - Tooltip",
|
||||
"Template code": "Template code",
|
||||
"Template code - Tooltip": "Template code",
|
||||
"Test Email": "Test Email",
|
||||
@ -780,6 +807,8 @@
|
||||
"Token URL - Tooltip": "Token URL",
|
||||
"Type": "Type",
|
||||
"Type - Tooltip": "Select a type",
|
||||
"User flow": "User flow",
|
||||
"User flow - Tooltip": "User flow - Tooltip",
|
||||
"User mapping": "User mapping",
|
||||
"User mapping - Tooltip": "User mapping - Tooltip",
|
||||
"UserInfo URL": "UserInfo URL",
|
||||
@ -801,6 +830,8 @@
|
||||
"New Role": "New Role",
|
||||
"Sub domains": "Sub domains",
|
||||
"Sub domains - Tooltip": "Domains included in the current role",
|
||||
"Sub groups": "Sub groups",
|
||||
"Sub groups - Tooltip": "Sub groups - Tooltip",
|
||||
"Sub roles": "Sub roles",
|
||||
"Sub roles - Tooltip": "Roles included in the current role",
|
||||
"Sub users": "Sub users",
|
||||
@ -812,6 +843,9 @@
|
||||
"Confirm": "Confirm",
|
||||
"Decline": "Decline",
|
||||
"Have account?": "Have account?",
|
||||
"Label": "Label",
|
||||
"Label HTML": "Label HTML",
|
||||
"Placeholder": "Placeholder",
|
||||
"Please accept the agreement!": "Please accept the agreement!",
|
||||
"Please click the below button to sign in": "Please click the below button to sign in",
|
||||
"Please confirm your password!": "Please confirm your password!",
|
||||
@ -830,6 +864,11 @@
|
||||
"Please select your country/region!": "Please select your country/region!",
|
||||
"Terms of Use": "Terms of Use",
|
||||
"Terms of Use - Tooltip": "Terms of use that users need to read and agree to during registration",
|
||||
"Text 1": "Text 1",
|
||||
"Text 2": "Text 2",
|
||||
"Text 3": "Text 3",
|
||||
"Text 4": "Text 4",
|
||||
"Text 5": "Text 5",
|
||||
"The input is not invoice Tax ID!": "The input is not invoice Tax ID!",
|
||||
"The input is not invoice title!": "The input is not invoice title!",
|
||||
"The input is not valid Email!": "The input is not valid Email!",
|
||||
@ -841,14 +880,19 @@
|
||||
"sign in now": "sign in now"
|
||||
},
|
||||
"subscription": {
|
||||
"Duration": "Duration",
|
||||
"Duration - Tooltip": "Subscription duration",
|
||||
"Active": "Active",
|
||||
"Edit Subscription": "Edit Subscription",
|
||||
"End date": "End date",
|
||||
"End date - Tooltip": "End date",
|
||||
"End time": "End time",
|
||||
"End time - Tooltip": "End time - Tooltip",
|
||||
"Error": "Error",
|
||||
"Expired": "Expired",
|
||||
"New Subscription": "New Subscription",
|
||||
"Start date": "Start date",
|
||||
"Start date - Tooltip": "Start date"
|
||||
"Pending": "Pending",
|
||||
"Period": "Period",
|
||||
"Start time": "Start time",
|
||||
"Start time - Tooltip": "Start time - Tooltip",
|
||||
"Suspended": "Suspended",
|
||||
"Upcoming": "Upcoming"
|
||||
},
|
||||
"syncer": {
|
||||
"Affiliation table": "Affiliation table",
|
||||
@ -872,6 +916,8 @@
|
||||
"Is read-only": "Is read-only",
|
||||
"Is read-only - Tooltip": "Is read-only - Tooltip",
|
||||
"New Syncer": "New Syncer",
|
||||
"SSL mode": "SSL mode",
|
||||
"SSL mode - Tooltip": "SSL mode - Tooltip",
|
||||
"Sync interval": "Sync interval",
|
||||
"Sync interval - Tooltip": "Unit in seconds",
|
||||
"Table": "Table",
|
||||
@ -913,11 +959,19 @@
|
||||
},
|
||||
"token": {
|
||||
"Access token": "Access token",
|
||||
"Access token - Tooltip": "Access token - Tooltip",
|
||||
"Authorization code": "Authorization code",
|
||||
"Authorization code - Tooltip": "Authorization code - Tooltip",
|
||||
"Copy access token": "Copy access token",
|
||||
"Copy parsed result": "Copy parsed result",
|
||||
"Edit Token": "Edit Token",
|
||||
"Expires in": "Expires in",
|
||||
"Expires in - Tooltip": "Expires in - Tooltip",
|
||||
"New Token": "New Token",
|
||||
"Token type": "Token type"
|
||||
"Parsed result": "Parsed result",
|
||||
"Parsed result - Tooltip": "Parsed result - Tooltip",
|
||||
"Token type": "Token type",
|
||||
"Token type - Tooltip": "Token type - Tooltip"
|
||||
},
|
||||
"user": {
|
||||
"3rd-party logins": "3rd-party logins",
|
||||
@ -974,6 +1028,8 @@
|
||||
"Managed accounts": "Managed accounts",
|
||||
"Modify password...": "Modify password...",
|
||||
"Multi-factor authentication": "Multi-factor authentication",
|
||||
"Name": "Name",
|
||||
"Name format": "Name format",
|
||||
"New Email": "New Email",
|
||||
"New Password": "New Password",
|
||||
"New User": "New User",
|
||||
@ -1011,6 +1067,7 @@
|
||||
"Upload ID card front picture": "Upload ID card front picture",
|
||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||
"Upload a photo": "Upload a photo",
|
||||
"Value": "Value",
|
||||
"Values": "Values",
|
||||
"Verification code sent": "Verification code sent",
|
||||
"WebAuthn credentials": "WebAuthn credentials",
|
||||
|
@ -12,7 +12,9 @@
|
||||
"Policies": "Richtlinien",
|
||||
"Policies - Tooltip": "Casbin Richtlinienregeln",
|
||||
"Rule type": "Rule type",
|
||||
"Sync policies successfully": "Richtlinien synchronisiert"
|
||||
"Sync policies successfully": "Richtlinien synchronisiert",
|
||||
"Use same DB": "Use same DB",
|
||||
"Use same DB - Tooltip": "Use same DB - Tooltip"
|
||||
},
|
||||
"application": {
|
||||
"Always": "Immer",
|
||||
@ -30,6 +32,8 @@
|
||||
"Edit Application": "Bearbeitungsanwendung",
|
||||
"Enable Email linking": "E-Mail-Verknüpfung aktivieren",
|
||||
"Enable Email linking - Tooltip": "Bei der Verwendung von Drittanbietern zur Anmeldung wird, wenn es in der Organisation einen Benutzer mit der gleichen E-Mail gibt, automatisch die Drittanbieter-Anmelde-Methode mit diesem Benutzer verbunden",
|
||||
"Enable SAML C14N10": "Enable SAML C14N10",
|
||||
"Enable SAML C14N10 - Tooltip": "Enable SAML C14N10 - Tooltip",
|
||||
"Enable SAML compression": "Aktivieren Sie SAML-Komprimierung",
|
||||
"Enable SAML compression - Tooltip": "Ob SAML-Antwortnachrichten komprimiert werden sollen, wenn Casdoor als SAML-IdP verwendet wird",
|
||||
"Enable WebAuthn signin": "Anmeldung mit WebAuthn aktivieren",
|
||||
@ -42,6 +46,10 @@
|
||||
"Enable signin session - Tooltip": "Ob Casdoor eine Sitzung aufrechterhält, nachdem man sich von der Anwendung aus bei Casdoor angemeldet hat",
|
||||
"Enable signup": "Registrierung aktivieren",
|
||||
"Enable signup - Tooltip": "Ob Benutzern erlaubt werden soll, ein neues Konto zu registrieren",
|
||||
"Failed signin frozen time": "Failed signin frozen time",
|
||||
"Failed signin frozen time - Tooltip": "Failed signin frozen time - Tooltip",
|
||||
"Failed signin limit": "Failed signin limit",
|
||||
"Failed signin limit - Tooltip": "Failed signin limit - Tooltip",
|
||||
"Failed to sign in": "Fehler bei der Anmeldung",
|
||||
"File uploaded successfully": "Datei erfolgreich hochgeladen",
|
||||
"First, last": "First, last",
|
||||
@ -60,7 +68,6 @@
|
||||
"Input": "Input",
|
||||
"Invitation code": "Invitation code",
|
||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||
"Left": "Links",
|
||||
"Logged in successfully": "Erfolgreich eingeloggt",
|
||||
"Logged out successfully": "Erfolgreich ausgeloggt",
|
||||
@ -73,7 +80,6 @@
|
||||
"Please input your application!": "Bitte geben Sie Ihre Anwendung ein!",
|
||||
"Please input your organization!": "Bitte geben Sie Ihre Organisation ein!",
|
||||
"Please select a HTML file": "Bitte wählen Sie eine HTML-Datei aus",
|
||||
"Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Die URL der Seite wurde erfolgreich in die Zwischenablage kopiert. Bitte fügen Sie sie in einen Inkognito-Tab oder einen anderen Browser ein",
|
||||
"Random": "Random",
|
||||
"Real name": "Real name",
|
||||
"Redirect URL": "Weiterleitungs-URL",
|
||||
@ -86,7 +92,6 @@
|
||||
"Rule": "Regel",
|
||||
"SAML metadata": "SAML-Metadaten",
|
||||
"SAML metadata - Tooltip": "Die Metadaten des SAML-Protokolls",
|
||||
"SAML metadata URL copied to clipboard successfully": "SAML-Metadaten URL erfolgreich in die Zwischenablage kopiert",
|
||||
"SAML reply URL": "SAML Reply-URL",
|
||||
"Select": "Select",
|
||||
"Side panel HTML": "Sidepanel-HTML",
|
||||
@ -95,11 +100,9 @@
|
||||
"Sign Up Error": "Registrierungsfehler",
|
||||
"Signin": "Signin",
|
||||
"Signin (Default True)": "Signin (Default True)",
|
||||
"Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Die URL der Anmeldeseite wurde in die Zwischenablage kopiert. Bitte fügen Sie sie in einen Inkognito-Tab oder einen anderen Browser ein",
|
||||
"Signin session": "Anmeldesession",
|
||||
"Signup items": "Registrierungs Items",
|
||||
"Signup items - Tooltip": "Items, die Benutzer ausfüllen müssen, wenn sie neue Konten registrieren",
|
||||
"Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Die URL der Registrierungsseite wurde in die Zwischenablage kopiert. Bitte fügen Sie sie in einen Inkognito-Tab oder einen anderen Browser ein",
|
||||
"Tags - Tooltip": "Only users with the tag that is listed in the application tags can login",
|
||||
"The application does not allow to sign up new account": "Die Anwendung erlaubt es nicht, ein neues Konto zu registrieren",
|
||||
"Token expire": "Token läuft ab",
|
||||
@ -113,7 +116,6 @@
|
||||
"Bit size - Tooltip": "Länge des Secret-Keys",
|
||||
"Certificate": "Zertifikat",
|
||||
"Certificate - Tooltip": "Public-Key-Zertifikat, das zum Entschlüsseln der JWT-Signatur des Access Tokens verwendet wird. Dieses Zertifikat muss normalerweise auf der Casdoor SDK-Seite (d. h. der Anwendung) bereitgestellt werden, um das JWT zu parsen",
|
||||
"Certificate copied to clipboard successfully": "Zertifikat in die Zwischenablage kopiert",
|
||||
"Copy certificate": "Kopieren Sie das Zertifikat",
|
||||
"Copy private key": "Private-Key kopieren",
|
||||
"Crypto algorithm": "Kryptoalgorithmus",
|
||||
@ -126,7 +128,6 @@
|
||||
"New Cert": "Neues Zertifikat",
|
||||
"Private key": "Private-Key",
|
||||
"Private key - Tooltip": "Privater Schlüssel, der zum öffentlichen Schlüsselzertifikat gehört",
|
||||
"Private key copied to clipboard successfully": "Private-Key wurde erfolgreich in die Zwischenablage kopiert",
|
||||
"Scope - Tooltip": "Nutzungsszenarien des Zertifikats",
|
||||
"Type - Tooltip": "Art des Zertifikats"
|
||||
},
|
||||
@ -191,6 +192,7 @@
|
||||
"Click to Upload": "Klicken Sie zum Hochladen",
|
||||
"Close": "Schließen",
|
||||
"Confirm": "Confirm",
|
||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||
"Copy": "Copy",
|
||||
"Created time": "Erstellte Zeit",
|
||||
"Custom": "Custom",
|
||||
@ -200,6 +202,8 @@
|
||||
"Default application - Tooltip": "Standard-Anwendung für Benutzer, die direkt von der Organisationsseite registriert wurden",
|
||||
"Default avatar": "Standard-Avatar",
|
||||
"Default avatar - Tooltip": "Standard-Avatar, der verwendet wird, wenn neu registrierte Benutzer kein Avatar-Bild festlegen",
|
||||
"Default password": "Default password",
|
||||
"Default password - Tooltip": "Default password - Tooltip",
|
||||
"Delete": "Löschen",
|
||||
"Description": "Beschreibung",
|
||||
"Description - Tooltip": "Detaillierte Beschreibungsinformationen zur Referenz, Casdoor selbst wird es nicht verwenden",
|
||||
@ -218,8 +222,10 @@
|
||||
"Failed to connect to server": "Die Verbindung zum Server konnte nicht hergestellt werden",
|
||||
"Failed to delete": "Konnte nicht gelöscht werden",
|
||||
"Failed to enable": "Failed to enable",
|
||||
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
|
||||
"Failed to remove": "Failed to remove",
|
||||
"Failed to save": "Konnte nicht gespeichert werden",
|
||||
"Failed to sync": "Failed to sync",
|
||||
"Failed to verify": "Failed to verify",
|
||||
"Favicon": "Favicon",
|
||||
"Favicon - Tooltip": "Favicon-URL, die auf allen Casdoor-Seiten der Organisation verwendet wird",
|
||||
@ -251,6 +257,8 @@
|
||||
"MFA items - Tooltip": "MFA items - Tooltip",
|
||||
"Master password": "Hauptpasswort",
|
||||
"Master password - Tooltip": "Kann zum Einloggen aller Benutzer unter dieser Organisation verwendet werden, was es Administratoren bequem macht, sich als dieser Benutzer einzuloggen, um technische Probleme zu lösen",
|
||||
"Master verification code": "Master verification code",
|
||||
"Master verification code - Tooltip": "Master verification code - Tooltip",
|
||||
"Menu": "Menü",
|
||||
"Method": "Methode",
|
||||
"Model": "Modell",
|
||||
@ -272,6 +280,8 @@
|
||||
"Password salt - Tooltip": "Zufälliger Parameter, der für die Verschlüsselung von Passwörtern verwendet wird",
|
||||
"Password type": "Passworttyp",
|
||||
"Password type - Tooltip": "Speicherformat von Passwörtern in der Datenbank",
|
||||
"Payment": "Payment",
|
||||
"Payment - Tooltip": "Payment - Tooltip",
|
||||
"Payments": "Zahlungen",
|
||||
"Permissions": "Rechte",
|
||||
"Permissions - Tooltip": "Berechtigungen, die diesem Benutzer gehören",
|
||||
@ -283,6 +293,8 @@
|
||||
"Plans - Tooltip": "Plans - Tooltip",
|
||||
"Preview": "Vorschau",
|
||||
"Preview - Tooltip": "Vorschau der konfigurierten Effekte",
|
||||
"Pricing": "Pricing",
|
||||
"Pricing - Tooltip": "Pricing - Tooltip",
|
||||
"Pricings": "Preise",
|
||||
"Products": "Produkte",
|
||||
"Provider": "Anbieter",
|
||||
@ -296,6 +308,10 @@
|
||||
"Role - Tooltip": "Role - Tooltip",
|
||||
"Roles": "Rollen",
|
||||
"Roles - Tooltip": "Rollen, denen der Benutzer angehört",
|
||||
"Root cert": "Root cert",
|
||||
"Root cert - Tooltip": "Root cert - Tooltip",
|
||||
"SAML attributes": "SAML attributes",
|
||||
"SAML attributes - Tooltip": "SAML attributes - Tooltip",
|
||||
"Save": "Speichern",
|
||||
"Save & Exit": "Speichern und verlassen",
|
||||
"Session ID": "Session-ID",
|
||||
@ -318,6 +334,7 @@
|
||||
"Successfully removed": "Successfully removed",
|
||||
"Successfully saved": "Erfolgreich gespeichert",
|
||||
"Successfully sent": "Successfully sent",
|
||||
"Successfully synced": "Successfully synced",
|
||||
"Supported country codes": "Unterstützte Ländercodes",
|
||||
"Supported country codes - Tooltip": "Ländercodes, die von der Organisation unterstützt werden. Diese Codes können als Präfix ausgewählt werden, wenn SMS-Verifizierungscodes gesendet werden",
|
||||
"Sure to delete": "Sicher zu löschen",
|
||||
@ -440,7 +457,6 @@
|
||||
"Multi-factor methods": "Multi-factor methods",
|
||||
"Multi-factor recover": "Multi-factor recover",
|
||||
"Multi-factor recover description": "Multi-factor recover description",
|
||||
"Multi-factor secret to clipboard successfully": "Multi-factor secret to clipboard successfully",
|
||||
"Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
|
||||
"Passcode": "Passcode",
|
||||
"Please bind your email first, the system will automatically uses the mail for multi-factor authentication": "Please bind your email first, the system will automatically uses the mail for multi-factor authentication",
|
||||
@ -573,11 +589,13 @@
|
||||
"plan": {
|
||||
"Edit Plan": "Edit Plan",
|
||||
"New Plan": "New Plan",
|
||||
"Price per month": "Price per month",
|
||||
"Price per month - Tooltip": "Price per month - Tooltip",
|
||||
"Price per year": "Price per year",
|
||||
"Price per year - Tooltip": "Price per year - Tooltip",
|
||||
"per month": "pro Monat"
|
||||
"Period": "Period",
|
||||
"Period - Tooltip": "Period - Tooltip",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price - Tooltip",
|
||||
"Related product": "Related product",
|
||||
"per month": "pro Monat",
|
||||
"per year": "per year"
|
||||
},
|
||||
"pricing": {
|
||||
"Copy pricing page URL": "Preisseite URL kopieren",
|
||||
@ -589,7 +607,7 @@
|
||||
"Trial duration": "Testphase Dauer",
|
||||
"Trial duration - Tooltip": "Dauer der Testphase",
|
||||
"days trial available!": "Tage Testphase verfügbar!",
|
||||
"pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Preisseite URL erfolgreich in die Zwischenablage kopiert. Bitte fügen Sie sie in ein Inkognito-Fenster oder einen anderen Browser ein."
|
||||
"paid-user do not have active subscription or pending subscription, please select a plan to buy": "paid-user do not have active subscription or pending subscription, please select a plan to buy"
|
||||
},
|
||||
"product": {
|
||||
"Alipay": "Alipay",
|
||||
@ -600,17 +618,16 @@
|
||||
"Detail - Tooltip": "Detail des Produkts",
|
||||
"Dummy": "Dummy",
|
||||
"Edit Product": "Produkt bearbeiten",
|
||||
"I have completed the payment": "Ich habe die Zahlung abgeschlossen",
|
||||
"Image": "Bild",
|
||||
"Image - Tooltip": "Bild des Produkts",
|
||||
"New Product": "Neues Produkt",
|
||||
"Pay": "Zahlen",
|
||||
"PayPal": "PayPal",
|
||||
"Payment cancelled": "Payment cancelled",
|
||||
"Payment failed": "Payment failed",
|
||||
"Payment providers": "Zahlungsprovider",
|
||||
"Payment providers - Tooltip": "Provider von Zahlungsdiensten",
|
||||
"Placing order...": "Bestellung aufgeben...",
|
||||
"Please provide your username in the remark": "Bitte geben Sie Ihren Benutzernamen in der Anmerkung an",
|
||||
"Please scan the QR code to pay": "Bitte scannen Sie den QR-Code, um zu bezahlen",
|
||||
"Price": "Preis",
|
||||
"Price - Tooltip": "Preis des Produkts",
|
||||
"Quantity": "Menge",
|
||||
@ -672,8 +689,8 @@
|
||||
"Content": "Content",
|
||||
"Content - Tooltip": "Content - Tooltip",
|
||||
"Copy": "Kopieren",
|
||||
"DB Test": "DB Test",
|
||||
"DB Test - Tooltip": "DB Test - Tooltip",
|
||||
"DB test": "DB test",
|
||||
"DB test - Tooltip": "DB test - Tooltip",
|
||||
"Disable SSL": "SSL deaktivieren",
|
||||
"Disable SSL - Tooltip": "Ob die Deaktivierung des SSL-Protokolls bei der Kommunikation mit dem STMP-Server erfolgen soll",
|
||||
"Domain": "Domäne",
|
||||
@ -700,7 +717,10 @@
|
||||
"Internal": "Internal",
|
||||
"Issuer URL": "Issuer-URL",
|
||||
"Issuer URL - Tooltip": "Emittenten-URL",
|
||||
"Link copied to clipboard successfully": "Link wurde erfolgreich in die Zwischenablage kopiert",
|
||||
"Key ID": "Key ID",
|
||||
"Key ID - Tooltip": "Key ID - Tooltip",
|
||||
"Key text": "Key text",
|
||||
"Key text - Tooltip": "Key text - Tooltip",
|
||||
"Metadata": "Metadaten",
|
||||
"Metadata - Tooltip": "SAML-Metadaten",
|
||||
"Method - Tooltip": "Anmeldeverfahren, QR-Code oder Silent-Login",
|
||||
@ -754,6 +774,10 @@
|
||||
"Sender Id - Tooltip": "Sender Id - Tooltip",
|
||||
"Sender number": "Sender number",
|
||||
"Sender number - Tooltip": "Sender number - Tooltip",
|
||||
"Service ID identifier": "Service ID identifier",
|
||||
"Service ID identifier - Tooltip": "Service ID identifier - Tooltip",
|
||||
"Service account JSON": "Service account JSON",
|
||||
"Service account JSON - Tooltip": "Service account JSON - Tooltip",
|
||||
"Sign Name": "Signatur Namen",
|
||||
"Sign Name - Tooltip": "Name der Signatur, die verwendet werden soll",
|
||||
"Sign request": "Unterschriftsanforderung",
|
||||
@ -764,12 +788,15 @@
|
||||
"Signup HTML": "Registrierungs-HTML",
|
||||
"Signup HTML - Edit": "Registrierung HTML - Bearbeiten",
|
||||
"Signup HTML - Tooltip": "Benutzerdefiniertes HTML zur Ersetzung des Standard-Registrierungs-Seitenstils",
|
||||
"Signup group": "Signup group",
|
||||
"Silent": "Silent",
|
||||
"Site key": "Site-Key",
|
||||
"Site key - Tooltip": "Seitenschlüssel",
|
||||
"Sliding Validation": "Sliding Validation",
|
||||
"Sub type": "Untertyp",
|
||||
"Sub type - Tooltip": "Unterart",
|
||||
"Team ID": "Team ID",
|
||||
"Team ID - Tooltip": "Team ID - Tooltip",
|
||||
"Template code": "Template-Code",
|
||||
"Template code - Tooltip": "Template-Code",
|
||||
"Test Email": "Test E-Mail",
|
||||
@ -780,6 +807,8 @@
|
||||
"Token URL - Tooltip": "Token-URL",
|
||||
"Type": "Typ",
|
||||
"Type - Tooltip": "Wählen Sie einen Typ aus",
|
||||
"User flow": "User flow",
|
||||
"User flow - Tooltip": "User flow - Tooltip",
|
||||
"User mapping": "User mapping",
|
||||
"User mapping - Tooltip": "User mapping - Tooltip",
|
||||
"UserInfo URL": "UserInfo-URL",
|
||||
@ -801,6 +830,8 @@
|
||||
"New Role": "Neue Rolle",
|
||||
"Sub domains": "Subdomains",
|
||||
"Sub domains - Tooltip": "In der aktuellen Rolle enthaltene Domains",
|
||||
"Sub groups": "Sub groups",
|
||||
"Sub groups - Tooltip": "Sub groups - Tooltip",
|
||||
"Sub roles": "Unterrollen",
|
||||
"Sub roles - Tooltip": "Rollen, die in der aktuellen Rolle enthalten sind",
|
||||
"Sub users": "Unterbenutzer",
|
||||
@ -812,6 +843,9 @@
|
||||
"Confirm": "Bestätigen",
|
||||
"Decline": "Abnahme",
|
||||
"Have account?": "Haben Sie ein Konto?",
|
||||
"Label": "Label",
|
||||
"Label HTML": "Label HTML",
|
||||
"Placeholder": "Placeholder",
|
||||
"Please accept the agreement!": "Bitte akzeptieren Sie die Vereinbarung!",
|
||||
"Please click the below button to sign in": "Bitte klicken Sie auf den untenstehenden Button, um sich anzumelden",
|
||||
"Please confirm your password!": "Bitte bestätige dein Passwort!",
|
||||
@ -830,6 +864,11 @@
|
||||
"Please select your country/region!": "Bitte wählen Sie Ihr Land/Ihre Region aus!",
|
||||
"Terms of Use": "Nutzungsbedingungen",
|
||||
"Terms of Use - Tooltip": "Nutzungsbedingungen, die Benutzer während der Registrierung lesen und akzeptieren müssen",
|
||||
"Text 1": "Text 1",
|
||||
"Text 2": "Text 2",
|
||||
"Text 3": "Text 3",
|
||||
"Text 4": "Text 4",
|
||||
"Text 5": "Text 5",
|
||||
"The input is not invoice Tax ID!": "Die Eingabe ist keine Rechnungssteuer-ID!",
|
||||
"The input is not invoice title!": "Der Eingabewert ist nicht die Rechnungsbezeichnung!",
|
||||
"The input is not valid Email!": "Die Eingabe ist keine gültige E-Mail-Adresse!",
|
||||
@ -841,14 +880,19 @@
|
||||
"sign in now": "Jetzt anmelden"
|
||||
},
|
||||
"subscription": {
|
||||
"Duration": "Laufzeit",
|
||||
"Duration - Tooltip": "Laufzeit des Abonnements",
|
||||
"Active": "Active",
|
||||
"Edit Subscription": "Edit Subscription",
|
||||
"End date": "Enddatum",
|
||||
"End date - Tooltip": "Enddatum",
|
||||
"End time": "End time",
|
||||
"End time - Tooltip": "End time - Tooltip",
|
||||
"Error": "Error",
|
||||
"Expired": "Expired",
|
||||
"New Subscription": "New Subscription",
|
||||
"Start date": "Startdatum",
|
||||
"Start date - Tooltip": "Startdatum"
|
||||
"Pending": "Pending",
|
||||
"Period": "Period",
|
||||
"Start time": "Start time",
|
||||
"Start time - Tooltip": "Start time - Tooltip",
|
||||
"Suspended": "Suspended",
|
||||
"Upcoming": "Upcoming"
|
||||
},
|
||||
"syncer": {
|
||||
"Affiliation table": "Zuordnungstabelle",
|
||||
@ -872,6 +916,8 @@
|
||||
"Is read-only": "Is read-only",
|
||||
"Is read-only - Tooltip": "Is read-only - Tooltip",
|
||||
"New Syncer": "Neuer Syncer",
|
||||
"SSL mode": "SSL mode",
|
||||
"SSL mode - Tooltip": "SSL mode - Tooltip",
|
||||
"Sync interval": "Synchronisierungsintervall",
|
||||
"Sync interval - Tooltip": "Einheit in Sekunden",
|
||||
"Table": "Tabelle",
|
||||
@ -913,11 +959,19 @@
|
||||
},
|
||||
"token": {
|
||||
"Access token": "Access-Token",
|
||||
"Access token - Tooltip": "Access token - Tooltip",
|
||||
"Authorization code": "Authorisierungscode",
|
||||
"Authorization code - Tooltip": "Authorization code - Tooltip",
|
||||
"Copy access token": "Copy access token",
|
||||
"Copy parsed result": "Copy parsed result",
|
||||
"Edit Token": "Edit-Token bearbeiten",
|
||||
"Expires in": "läuft ab in",
|
||||
"Expires in - Tooltip": "Expires in - Tooltip",
|
||||
"New Token": "Neuer Token",
|
||||
"Token type": "Token-Typ"
|
||||
"Parsed result": "Parsed result",
|
||||
"Parsed result - Tooltip": "Parsed result - Tooltip",
|
||||
"Token type": "Token-Typ",
|
||||
"Token type - Tooltip": "Token type - Tooltip"
|
||||
},
|
||||
"user": {
|
||||
"3rd-party logins": "Drittanbieter-Logins",
|
||||
@ -974,6 +1028,8 @@
|
||||
"Managed accounts": "Verwaltete Konten",
|
||||
"Modify password...": "Passwort ändern...",
|
||||
"Multi-factor authentication": "Multi-factor authentication",
|
||||
"Name": "Name",
|
||||
"Name format": "Name format",
|
||||
"New Email": "Neue E-Mail",
|
||||
"New Password": "Neues Passwort",
|
||||
"New User": "Neuer Benutzer",
|
||||
@ -1011,6 +1067,7 @@
|
||||
"Upload ID card front picture": "Upload ID card front picture",
|
||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||
"Upload a photo": "Lade ein Foto hoch",
|
||||
"Value": "Value",
|
||||
"Values": "Werte",
|
||||
"Verification code sent": "Bestätigungscode gesendet",
|
||||
"WebAuthn credentials": "WebAuthn-Anmeldeinformationen",
|
||||
|
@ -12,7 +12,9 @@
|
||||
"Policies": "Policies",
|
||||
"Policies - Tooltip": "Casbin policy rules",
|
||||
"Rule type": "Rule type",
|
||||
"Sync policies successfully": "Sync policies successfully"
|
||||
"Sync policies successfully": "Sync policies successfully",
|
||||
"Use same DB": "Use same DB",
|
||||
"Use same DB - Tooltip": "Use the same DB as Casdoor"
|
||||
},
|
||||
"application": {
|
||||
"Always": "Always",
|
||||
@ -30,6 +32,8 @@
|
||||
"Edit Application": "Edit Application",
|
||||
"Enable Email linking": "Enable Email linking",
|
||||
"Enable Email linking - Tooltip": "When using 3rd-party providers to log in, if there is a user in the organization with the same Email, the 3rd-party login method will be automatically associated with that user",
|
||||
"Enable SAML C14N10": "Enable SAML C14N10",
|
||||
"Enable SAML C14N10 - Tooltip": "Use C14N10 instead of C14N11 in SAML",
|
||||
"Enable SAML compression": "Enable SAML compression",
|
||||
"Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp",
|
||||
"Enable WebAuthn signin": "Enable WebAuthn signin",
|
||||
@ -42,6 +46,10 @@
|
||||
"Enable signin session - Tooltip": "Whether Casdoor maintains a session after logging into Casdoor from the application",
|
||||
"Enable signup": "Enable signup",
|
||||
"Enable signup - Tooltip": "Whether to allow users to register a new account",
|
||||
"Failed signin frozen time": "Failed signin frozen time",
|
||||
"Failed signin frozen time - Tooltip": "Failed signin frozen time - Tooltip",
|
||||
"Failed signin limit": "Failed signin limit",
|
||||
"Failed signin limit - Tooltip": "Failed signin limit - Tooltip",
|
||||
"Failed to sign in": "Failed to sign in",
|
||||
"File uploaded successfully": "File uploaded successfully",
|
||||
"First, last": "First, last",
|
||||
@ -60,7 +68,6 @@
|
||||
"Input": "Input",
|
||||
"Invitation code": "Invitation code",
|
||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||
"Left": "Left",
|
||||
"Logged in successfully": "Logged in successfully",
|
||||
"Logged out successfully": "Logged out successfully",
|
||||
@ -73,7 +80,6 @@
|
||||
"Please input your application!": "Please input your application!",
|
||||
"Please input your organization!": "Please input your organization!",
|
||||
"Please select a HTML file": "Please select a HTML file",
|
||||
"Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Random": "Random",
|
||||
"Real name": "Real name",
|
||||
"Redirect URL": "Redirect URL",
|
||||
@ -86,7 +92,6 @@
|
||||
"Rule": "Rule",
|
||||
"SAML metadata": "SAML metadata",
|
||||
"SAML metadata - Tooltip": "The metadata of SAML protocol",
|
||||
"SAML metadata URL copied to clipboard successfully": "SAML metadata URL copied to clipboard successfully",
|
||||
"SAML reply URL": "SAML reply URL",
|
||||
"Select": "Select",
|
||||
"Side panel HTML": "Side panel HTML",
|
||||
@ -95,11 +100,9 @@
|
||||
"Sign Up Error": "Sign Up Error",
|
||||
"Signin": "Signin",
|
||||
"Signin (Default True)": "Signin (Default True)",
|
||||
"Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Signin session": "Signin session",
|
||||
"Signup items": "Signup items",
|
||||
"Signup items - Tooltip": "Items for users to fill in when registering new accounts",
|
||||
"Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Tags - Tooltip": "Only users with the tag that is listed in the application tags can login",
|
||||
"The application does not allow to sign up new account": "The application does not allow to sign up new account",
|
||||
"Token expire": "Token expire",
|
||||
@ -113,7 +116,6 @@
|
||||
"Bit size - Tooltip": "Secret key length",
|
||||
"Certificate": "Certificate",
|
||||
"Certificate - Tooltip": "Public key certificate, used for decrypting the JWT signature of the Access Token. This certificate usually needs to be deployed on the Casdoor SDK side (i.e., the application) to parse the JWT",
|
||||
"Certificate copied to clipboard successfully": "Certificate copied to clipboard successfully",
|
||||
"Copy certificate": "Copy certificate",
|
||||
"Copy private key": "Copy private key",
|
||||
"Crypto algorithm": "Crypto algorithm",
|
||||
@ -126,7 +128,6 @@
|
||||
"New Cert": "New Cert",
|
||||
"Private key": "Private key",
|
||||
"Private key - Tooltip": "Private key corresponding to the public key certificate",
|
||||
"Private key copied to clipboard successfully": "Private key copied to clipboard successfully",
|
||||
"Scope - Tooltip": "Usage scenarios of the certificate",
|
||||
"Type - Tooltip": "Type of certificate"
|
||||
},
|
||||
@ -191,6 +192,7 @@
|
||||
"Click to Upload": "Click to Upload",
|
||||
"Close": "Close",
|
||||
"Confirm": "Confirm",
|
||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||
"Copy": "Copy",
|
||||
"Created time": "Created time",
|
||||
"Custom": "Custom",
|
||||
@ -200,6 +202,8 @@
|
||||
"Default application - Tooltip": "Default application for users registered directly from the organization page",
|
||||
"Default avatar": "Default avatar",
|
||||
"Default avatar - Tooltip": "Default avatar used when newly registered users do not set an avatar image",
|
||||
"Default password": "Default password",
|
||||
"Default password - Tooltip": "When adding new user, if the user's password is not specified, the default password will be used as the user's password",
|
||||
"Delete": "Delete",
|
||||
"Description": "Description",
|
||||
"Description - Tooltip": "Detailed description information for reference, Casdoor itself will not use it",
|
||||
@ -218,8 +222,10 @@
|
||||
"Failed to connect to server": "Failed to connect to server",
|
||||
"Failed to delete": "Failed to delete",
|
||||
"Failed to enable": "Failed to enable",
|
||||
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
|
||||
"Failed to remove": "Failed to remove",
|
||||
"Failed to save": "Failed to save",
|
||||
"Failed to sync": "Failed to sync",
|
||||
"Failed to verify": "Failed to verify",
|
||||
"Favicon": "Favicon",
|
||||
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
|
||||
@ -251,6 +257,8 @@
|
||||
"MFA items - Tooltip": "MFA items - Tooltip",
|
||||
"Master password": "Master password",
|
||||
"Master password - Tooltip": "Can be used to log in to all users under this organization, making it convenient for administrators to log in as this user to solve technical issues",
|
||||
"Master verification code": "Master verification code",
|
||||
"Master verification code - Tooltip": "When the master verification code is set, all email and SMS verification codes sent under this organization will use this fixed code. It's mainly used for automated testing and CI purposes and is generally not used in normal environments",
|
||||
"Menu": "Menu",
|
||||
"Method": "Method",
|
||||
"Model": "Model",
|
||||
@ -272,6 +280,8 @@
|
||||
"Password salt - Tooltip": "Random parameter used for password encryption",
|
||||
"Password type": "Password type",
|
||||
"Password type - Tooltip": "Storage format of passwords in the database",
|
||||
"Payment": "Payment",
|
||||
"Payment - Tooltip": "Payment - Tooltip",
|
||||
"Payments": "Payments",
|
||||
"Permissions": "Permissions",
|
||||
"Permissions - Tooltip": "Permissions owned by this user",
|
||||
@ -283,6 +293,8 @@
|
||||
"Plans - Tooltip": "Plans - Tooltip",
|
||||
"Preview": "Preview",
|
||||
"Preview - Tooltip": "Preview the configured effects",
|
||||
"Pricing": "Pricing",
|
||||
"Pricing - Tooltip": "Pricing - Tooltip",
|
||||
"Pricings": "Pricings",
|
||||
"Products": "Products",
|
||||
"Provider": "Provider",
|
||||
@ -296,6 +308,10 @@
|
||||
"Role - Tooltip": "Role - Tooltip",
|
||||
"Roles": "Roles",
|
||||
"Roles - Tooltip": "Roles that the user belongs to",
|
||||
"Root cert": "Root cert",
|
||||
"Root cert - Tooltip": "Root cert - Tooltip",
|
||||
"SAML attributes": "SAML attributes",
|
||||
"SAML attributes - Tooltip": "SAML attributes - Tooltip",
|
||||
"Save": "Save",
|
||||
"Save & Exit": "Save & Exit",
|
||||
"Session ID": "Session ID",
|
||||
@ -318,6 +334,7 @@
|
||||
"Successfully removed": "Successfully removed",
|
||||
"Successfully saved": "Successfully saved",
|
||||
"Successfully sent": "Successfully sent",
|
||||
"Successfully synced": "Successfully synced",
|
||||
"Supported country codes": "Supported country codes",
|
||||
"Supported country codes - Tooltip": "Country codes supported by the organization. These codes can be selected as a prefix when sending SMS verification codes",
|
||||
"Sure to delete": "Sure to delete",
|
||||
@ -440,7 +457,6 @@
|
||||
"Multi-factor methods": "Multi-factor methods",
|
||||
"Multi-factor recover": "Multi-factor recover",
|
||||
"Multi-factor recover description": "Multi-factor recover description",
|
||||
"Multi-factor secret to clipboard successfully": "Multi-factor secret to clipboard successfully",
|
||||
"Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
|
||||
"Passcode": "Passcode",
|
||||
"Please bind your email first, the system will automatically uses the mail for multi-factor authentication": "Please bind your email first, the system will automatically uses the mail for multi-factor authentication",
|
||||
@ -573,11 +589,13 @@
|
||||
"plan": {
|
||||
"Edit Plan": "Edit Plan",
|
||||
"New Plan": "New Plan",
|
||||
"Price per month": "Price per month",
|
||||
"Price per month - Tooltip": "Price per month - Tooltip",
|
||||
"Price per year": "Price per year",
|
||||
"Price per year - Tooltip": "Price per year - Tooltip",
|
||||
"per month": "per month"
|
||||
"Period": "Period",
|
||||
"Period - Tooltip": "Period for the plan",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price needs to pay to subscribe the plan",
|
||||
"Related product": "Related product",
|
||||
"per month": "per month",
|
||||
"per year": "per year"
|
||||
},
|
||||
"pricing": {
|
||||
"Copy pricing page URL": "Copy pricing page URL",
|
||||
@ -589,7 +607,7 @@
|
||||
"Trial duration": "Trial duration",
|
||||
"Trial duration - Tooltip": "Trial duration period",
|
||||
"days trial available!": "days trial available!",
|
||||
"pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser"
|
||||
"paid-user do not have active subscription or pending subscription, please select a plan to buy": "paid-user do not have active subscription or pending subscription, please select a plan to buy"
|
||||
},
|
||||
"product": {
|
||||
"Alipay": "Alipay",
|
||||
@ -600,17 +618,16 @@
|
||||
"Detail - Tooltip": "Detail of product",
|
||||
"Dummy": "Dummy",
|
||||
"Edit Product": "Edit Product",
|
||||
"I have completed the payment": "I have completed the payment",
|
||||
"Image": "Image",
|
||||
"Image - Tooltip": "Image of product",
|
||||
"New Product": "New Product",
|
||||
"Pay": "Pay",
|
||||
"PayPal": "PayPal",
|
||||
"Payment cancelled": "Payment cancelled",
|
||||
"Payment failed": "Payment failed",
|
||||
"Payment providers": "Payment providers",
|
||||
"Payment providers - Tooltip": "Providers of payment services",
|
||||
"Placing order...": "Placing order...",
|
||||
"Please provide your username in the remark": "Please provide your username in the remark",
|
||||
"Please scan the QR code to pay": "Please scan the QR code to pay",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price of product",
|
||||
"Quantity": "Quantity",
|
||||
@ -672,8 +689,8 @@
|
||||
"Content": "Content",
|
||||
"Content - Tooltip": "Content - Tooltip",
|
||||
"Copy": "Copy",
|
||||
"DB Test": "DB Test",
|
||||
"DB Test - Tooltip": "DB Test - Tooltip",
|
||||
"DB test": "DB test",
|
||||
"DB test - Tooltip": "Test the connectivity to the database",
|
||||
"Disable SSL": "Disable SSL",
|
||||
"Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server",
|
||||
"Domain": "Domain",
|
||||
@ -700,7 +717,10 @@
|
||||
"Internal": "Internal",
|
||||
"Issuer URL": "Issuer URL",
|
||||
"Issuer URL - Tooltip": "Issuer URL",
|
||||
"Link copied to clipboard successfully": "Link copied to clipboard successfully",
|
||||
"Key ID": "Key ID",
|
||||
"Key ID - Tooltip": "Key ID",
|
||||
"Key text": "Key text",
|
||||
"Key text - Tooltip": "Key text",
|
||||
"Metadata": "Metadata",
|
||||
"Metadata - Tooltip": "SAML metadata",
|
||||
"Method - Tooltip": "Login method, QR code or silent login",
|
||||
@ -754,6 +774,10 @@
|
||||
"Sender Id - Tooltip": "Sender Id - Tooltip",
|
||||
"Sender number": "Sender number",
|
||||
"Sender number - Tooltip": "Sender number - Tooltip",
|
||||
"Service ID identifier": "Service ID identifier",
|
||||
"Service ID identifier - Tooltip": "Service ID identifier",
|
||||
"Service account JSON": "Service account JSON",
|
||||
"Service account JSON - Tooltip": "The JSON file content for the service account",
|
||||
"Sign Name": "Sign Name",
|
||||
"Sign Name - Tooltip": "Name of the signature to be used",
|
||||
"Sign request": "Sign request",
|
||||
@ -764,12 +788,15 @@
|
||||
"Signup HTML": "Signup HTML",
|
||||
"Signup HTML - Edit": "Signup HTML - Edit",
|
||||
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
|
||||
"Signup group": "Signup group",
|
||||
"Silent": "Silent",
|
||||
"Site key": "Site key",
|
||||
"Site key - Tooltip": "Site key",
|
||||
"Sliding Validation": "Sliding Validation",
|
||||
"Sub type": "Sub type",
|
||||
"Sub type - Tooltip": "Sub type",
|
||||
"Team ID": "Team ID",
|
||||
"Team ID - Tooltip": "Team ID",
|
||||
"Template code": "Template code",
|
||||
"Template code - Tooltip": "Template code",
|
||||
"Test Email": "Test Email",
|
||||
@ -780,6 +807,8 @@
|
||||
"Token URL - Tooltip": "Token URL",
|
||||
"Type": "Type",
|
||||
"Type - Tooltip": "Select a type",
|
||||
"User flow": "User flow",
|
||||
"User flow - Tooltip": "User flow",
|
||||
"User mapping": "User mapping",
|
||||
"User mapping - Tooltip": "User mapping - Tooltip",
|
||||
"UserInfo URL": "UserInfo URL",
|
||||
@ -801,6 +830,8 @@
|
||||
"New Role": "New Role",
|
||||
"Sub domains": "Sub domains",
|
||||
"Sub domains - Tooltip": "Domains included in the current role",
|
||||
"Sub groups": "Sub groups",
|
||||
"Sub groups - Tooltip": "Groups included in the current role",
|
||||
"Sub roles": "Sub roles",
|
||||
"Sub roles - Tooltip": "Roles included in the current role",
|
||||
"Sub users": "Sub users",
|
||||
@ -812,6 +843,9 @@
|
||||
"Confirm": "Confirm",
|
||||
"Decline": "Decline",
|
||||
"Have account?": "Have account?",
|
||||
"Label": "Label",
|
||||
"Label HTML": "Label HTML",
|
||||
"Placeholder": "Placeholder",
|
||||
"Please accept the agreement!": "Please accept the agreement!",
|
||||
"Please click the below button to sign in": "Please click the below button to sign in",
|
||||
"Please confirm your password!": "Please confirm your password!",
|
||||
@ -830,6 +864,11 @@
|
||||
"Please select your country/region!": "Please select your country/region!",
|
||||
"Terms of Use": "Terms of Use",
|
||||
"Terms of Use - Tooltip": "Terms of use that users need to read and agree to during registration",
|
||||
"Text 1": "Text 1",
|
||||
"Text 2": "Text 2",
|
||||
"Text 3": "Text 3",
|
||||
"Text 4": "Text 4",
|
||||
"Text 5": "Text 5",
|
||||
"The input is not invoice Tax ID!": "The input is not invoice Tax ID!",
|
||||
"The input is not invoice title!": "The input is not invoice title!",
|
||||
"The input is not valid Email!": "The input is not valid Email!",
|
||||
@ -841,14 +880,19 @@
|
||||
"sign in now": "sign in now"
|
||||
},
|
||||
"subscription": {
|
||||
"Duration": "Duration",
|
||||
"Duration - Tooltip": "Subscription duration",
|
||||
"Active": "Active",
|
||||
"Edit Subscription": "Edit Subscription",
|
||||
"End date": "End date",
|
||||
"End date - Tooltip": "End date",
|
||||
"End time": "End time",
|
||||
"End time - Tooltip": "End time of the subscription",
|
||||
"Error": "Error",
|
||||
"Expired": "Expired",
|
||||
"New Subscription": "New Subscription",
|
||||
"Start date": "Start date",
|
||||
"Start date - Tooltip": "Start date"
|
||||
"Pending": "Pending",
|
||||
"Period": "Period",
|
||||
"Start time": "Start time",
|
||||
"Start time - Tooltip": "Start time of the subscription",
|
||||
"Suspended": "Suspended",
|
||||
"Upcoming": "Upcoming"
|
||||
},
|
||||
"syncer": {
|
||||
"Affiliation table": "Affiliation table",
|
||||
@ -872,6 +916,8 @@
|
||||
"Is read-only": "Is read-only",
|
||||
"Is read-only - Tooltip": "Is read-only - Tooltip",
|
||||
"New Syncer": "New Syncer",
|
||||
"SSL mode": "SSL mode",
|
||||
"SSL mode - Tooltip": "The SSL mode used when connecting to the database",
|
||||
"Sync interval": "Sync interval",
|
||||
"Sync interval - Tooltip": "Unit in seconds",
|
||||
"Table": "Table",
|
||||
@ -913,11 +959,19 @@
|
||||
},
|
||||
"token": {
|
||||
"Access token": "Access token",
|
||||
"Access token - Tooltip": "Access token - Tooltip",
|
||||
"Authorization code": "Authorization code",
|
||||
"Authorization code - Tooltip": "Authorization code - Tooltip",
|
||||
"Copy access token": "Copy access token",
|
||||
"Copy parsed result": "Copy parsed result",
|
||||
"Edit Token": "Edit Token",
|
||||
"Expires in": "Expires in",
|
||||
"Expires in - Tooltip": "Expires in - Tooltip",
|
||||
"New Token": "New Token",
|
||||
"Token type": "Token type"
|
||||
"Parsed result": "Parsed result",
|
||||
"Parsed result - Tooltip": "Parsed result - Tooltip",
|
||||
"Token type": "Token type",
|
||||
"Token type - Tooltip": "Token type - Tooltip"
|
||||
},
|
||||
"user": {
|
||||
"3rd-party logins": "3rd-party logins",
|
||||
@ -974,6 +1028,8 @@
|
||||
"Managed accounts": "Managed accounts",
|
||||
"Modify password...": "Modify password...",
|
||||
"Multi-factor authentication": "Multi-factor authentication",
|
||||
"Name": "Name",
|
||||
"Name format": "Name format",
|
||||
"New Email": "New Email",
|
||||
"New Password": "New Password",
|
||||
"New User": "New User",
|
||||
@ -1011,6 +1067,7 @@
|
||||
"Upload ID card front picture": "Upload ID card front picture",
|
||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||
"Upload a photo": "Upload a photo",
|
||||
"Value": "Value",
|
||||
"Values": "Values",
|
||||
"Verification code sent": "Verification code sent",
|
||||
"WebAuthn credentials": "WebAuthn credentials",
|
||||
|
@ -12,7 +12,9 @@
|
||||
"Policies": "Políticas",
|
||||
"Policies - Tooltip": "Reglas de política de Casbin",
|
||||
"Rule type": "Rule type",
|
||||
"Sync policies successfully": "Sincronizar políticas correctamente"
|
||||
"Sync policies successfully": "Sincronizar políticas correctamente",
|
||||
"Use same DB": "Use same DB",
|
||||
"Use same DB - Tooltip": "Use same DB - Tooltip"
|
||||
},
|
||||
"application": {
|
||||
"Always": "siempre",
|
||||
@ -30,6 +32,8 @@
|
||||
"Edit Application": "Editar solicitud",
|
||||
"Enable Email linking": "Habilitar enlace de correo electrónico",
|
||||
"Enable Email linking - Tooltip": "Cuando se utilizan proveedores externos de inicio de sesión, si hay un usuario en la organización con el mismo correo electrónico, el método de inicio de sesión externo se asociará automáticamente con ese usuario",
|
||||
"Enable SAML C14N10": "Enable SAML C14N10",
|
||||
"Enable SAML C14N10 - Tooltip": "Enable SAML C14N10 - Tooltip",
|
||||
"Enable SAML compression": "Activar la compresión SAML",
|
||||
"Enable SAML compression - Tooltip": "Si comprimir o no los mensajes de respuesta SAML cuando se utiliza Casdoor como proveedor de identidad SAML",
|
||||
"Enable WebAuthn signin": "Permite iniciar sesión con WebAuthn",
|
||||
@ -42,6 +46,10 @@
|
||||
"Enable signin session - Tooltip": "Si Casdoor mantiene una sesión después de iniciar sesión en Casdoor desde la aplicación",
|
||||
"Enable signup": "Habilitar registro",
|
||||
"Enable signup - Tooltip": "Ya sea permitir que los usuarios registren una nueva cuenta",
|
||||
"Failed signin frozen time": "Failed signin frozen time",
|
||||
"Failed signin frozen time - Tooltip": "Failed signin frozen time - Tooltip",
|
||||
"Failed signin limit": "Failed signin limit",
|
||||
"Failed signin limit - Tooltip": "Failed signin limit - Tooltip",
|
||||
"Failed to sign in": "Error al iniciar sesión",
|
||||
"File uploaded successfully": "Archivo subido exitosamente",
|
||||
"First, last": "First, last",
|
||||
@ -60,7 +68,6 @@
|
||||
"Input": "Input",
|
||||
"Invitation code": "Invitation code",
|
||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||
"Left": "Izquierda",
|
||||
"Logged in successfully": "Acceso satisfactorio",
|
||||
"Logged out successfully": "Cerró sesión exitosamente",
|
||||
@ -73,7 +80,6 @@
|
||||
"Please input your application!": "¡Por favor, ingrese su solicitud!",
|
||||
"Please input your organization!": "¡Por favor, ingrese su organización!",
|
||||
"Please select a HTML file": "Por favor, seleccione un archivo HTML",
|
||||
"Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "URL de la página de acceso exitosamente copiada al portapapeles, por favor péguela en la ventana de incógnito o en otro navegador",
|
||||
"Random": "Random",
|
||||
"Real name": "Real name",
|
||||
"Redirect URL": "Redireccionar URL",
|
||||
@ -86,7 +92,6 @@
|
||||
"Rule": "Regla",
|
||||
"SAML metadata": "Metadatos de SAML",
|
||||
"SAML metadata - Tooltip": "Los metadatos del protocolo SAML",
|
||||
"SAML metadata URL copied to clipboard successfully": "La URL de metadatos de SAML se ha copiado correctamente en el portapapeles",
|
||||
"SAML reply URL": "URL de respuesta SAML",
|
||||
"Select": "Select",
|
||||
"Side panel HTML": "Panel lateral HTML",
|
||||
@ -95,11 +100,9 @@
|
||||
"Sign Up Error": "Error de registro",
|
||||
"Signin": "Signin",
|
||||
"Signin (Default True)": "Signin (Default True)",
|
||||
"Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "La URL de la página de inicio de sesión fue copiada al portapapeles exitosamente, por favor péguela en una ventana de incógnito o en otro navegador",
|
||||
"Signin session": "Sesión de inicio de sesión",
|
||||
"Signup items": "Artículos de registro",
|
||||
"Signup items - Tooltip": "Elementos para que los usuarios los completen al registrar nuevas cuentas",
|
||||
"Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "La URL de la página de registro se ha copiado correctamente en el portapapeles. Por favor, péguela en una ventana de incógnito o en otro navegador",
|
||||
"Tags - Tooltip": "Only users with the tag that is listed in the application tags can login",
|
||||
"The application does not allow to sign up new account": "La aplicación no permite registrarse una cuenta nueva",
|
||||
"Token expire": "Token expirado",
|
||||
@ -113,7 +116,6 @@
|
||||
"Bit size - Tooltip": "Longitud de clave secreta",
|
||||
"Certificate": "Certificado",
|
||||
"Certificate - Tooltip": "certificado de clave pública, utilizado para desencriptar la firma JWT del Token de Acceso. Este certificado generalmente debe ser desplegado en el lado del SDK de Casdoor (es decir, en la aplicación) para analizar el JWT",
|
||||
"Certificate copied to clipboard successfully": "Certificado copiado al portapapeles exitosamente",
|
||||
"Copy certificate": "Certificado de copia",
|
||||
"Copy private key": "Copiar clave privada",
|
||||
"Crypto algorithm": "Algoritmo criptográfico",
|
||||
@ -126,7 +128,6 @@
|
||||
"New Cert": "ificado",
|
||||
"Private key": "Clave privada",
|
||||
"Private key - Tooltip": "Clave privada correspondiente al certificado de clave pública",
|
||||
"Private key copied to clipboard successfully": "Clave privada copiada al portapapeles correctamente",
|
||||
"Scope - Tooltip": "Escenarios de uso del certificado",
|
||||
"Type - Tooltip": "Tipo de certificado"
|
||||
},
|
||||
@ -191,6 +192,7 @@
|
||||
"Click to Upload": "Haz clic para cargar",
|
||||
"Close": "Cerca",
|
||||
"Confirm": "Confirm",
|
||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||
"Copy": "Copy",
|
||||
"Created time": "Tiempo creado",
|
||||
"Custom": "Custom",
|
||||
@ -200,6 +202,8 @@
|
||||
"Default application - Tooltip": "Aplicación predeterminada para usuarios registrados directamente desde la página de la organización",
|
||||
"Default avatar": "Avatar predeterminado",
|
||||
"Default avatar - Tooltip": "Avatar predeterminado utilizado cuando los usuarios recién registrados no establecen una imagen de avatar",
|
||||
"Default password": "Default password",
|
||||
"Default password - Tooltip": "Default password - Tooltip",
|
||||
"Delete": "Eliminar",
|
||||
"Description": "Descripción",
|
||||
"Description - Tooltip": "Información detallada de descripción para referencia, Casdoor en sí no la utilizará",
|
||||
@ -218,8 +222,10 @@
|
||||
"Failed to connect to server": "No se pudo conectar al servidor",
|
||||
"Failed to delete": "No se pudo eliminar",
|
||||
"Failed to enable": "Failed to enable",
|
||||
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
|
||||
"Failed to remove": "Failed to remove",
|
||||
"Failed to save": "No se pudo guardar",
|
||||
"Failed to sync": "Failed to sync",
|
||||
"Failed to verify": "Failed to verify",
|
||||
"Favicon": "Favicon (ícono de favoritos)",
|
||||
"Favicon - Tooltip": "URL del icono Favicon utilizado en todas las páginas de Casdoor de la organización",
|
||||
@ -251,6 +257,8 @@
|
||||
"MFA items - Tooltip": "MFA items - Tooltip",
|
||||
"Master password": "Contraseña maestra",
|
||||
"Master password - Tooltip": "Se puede usar para iniciar sesión en todos los usuarios de esta organización, lo que hace conveniente que los administradores inicien sesión como este usuario para resolver problemas técnicos",
|
||||
"Master verification code": "Master verification code",
|
||||
"Master verification code - Tooltip": "Master verification code - Tooltip",
|
||||
"Menu": "Menú",
|
||||
"Method": "Método",
|
||||
"Model": "Modelo",
|
||||
@ -272,6 +280,8 @@
|
||||
"Password salt - Tooltip": "Parámetro aleatorio utilizado para la encriptación de contraseñas",
|
||||
"Password type": "Tipo de contraseña",
|
||||
"Password type - Tooltip": "Formato de almacenamiento de contraseñas en la base de datos",
|
||||
"Payment": "Payment",
|
||||
"Payment - Tooltip": "Payment - Tooltip",
|
||||
"Payments": "Pagos",
|
||||
"Permissions": "Permisos",
|
||||
"Permissions - Tooltip": "Permisos propiedad de este usuario",
|
||||
@ -283,6 +293,8 @@
|
||||
"Plans - Tooltip": "Plans - Tooltip",
|
||||
"Preview": "Avance",
|
||||
"Preview - Tooltip": "Vista previa de los efectos configurados",
|
||||
"Pricing": "Pricing",
|
||||
"Pricing - Tooltip": "Pricing - Tooltip",
|
||||
"Pricings": "Precios",
|
||||
"Products": "Productos",
|
||||
"Provider": "Proveedor",
|
||||
@ -296,6 +308,10 @@
|
||||
"Role - Tooltip": "Role - Tooltip",
|
||||
"Roles": "Roles",
|
||||
"Roles - Tooltip": "Roles a los que pertenece el usuario",
|
||||
"Root cert": "Root cert",
|
||||
"Root cert - Tooltip": "Root cert - Tooltip",
|
||||
"SAML attributes": "SAML attributes",
|
||||
"SAML attributes - Tooltip": "SAML attributes - Tooltip",
|
||||
"Save": "Guardar",
|
||||
"Save & Exit": "Guardar y salir",
|
||||
"Session ID": "ID de sesión",
|
||||
@ -318,6 +334,7 @@
|
||||
"Successfully removed": "Successfully removed",
|
||||
"Successfully saved": "Guardado exitosamente",
|
||||
"Successfully sent": "Successfully sent",
|
||||
"Successfully synced": "Successfully synced",
|
||||
"Supported country codes": "Códigos de país admitidos",
|
||||
"Supported country codes - Tooltip": "Códigos de país compatibles con la organización. Estos códigos se pueden seleccionar como prefijo al enviar códigos de verificación SMS",
|
||||
"Sure to delete": "Seguro que eliminar",
|
||||
@ -440,7 +457,6 @@
|
||||
"Multi-factor methods": "Multi-factor methods",
|
||||
"Multi-factor recover": "Multi-factor recover",
|
||||
"Multi-factor recover description": "Multi-factor recover description",
|
||||
"Multi-factor secret to clipboard successfully": "Multi-factor secret to clipboard successfully",
|
||||
"Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
|
||||
"Passcode": "Passcode",
|
||||
"Please bind your email first, the system will automatically uses the mail for multi-factor authentication": "Please bind your email first, the system will automatically uses the mail for multi-factor authentication",
|
||||
@ -573,11 +589,13 @@
|
||||
"plan": {
|
||||
"Edit Plan": "Edit Plan",
|
||||
"New Plan": "New Plan",
|
||||
"Price per month": "Price per month",
|
||||
"Price per month - Tooltip": "Price per month - Tooltip",
|
||||
"Price per year": "Price per year",
|
||||
"Price per year - Tooltip": "Price per year - Tooltip",
|
||||
"per month": "por mes"
|
||||
"Period": "Period",
|
||||
"Period - Tooltip": "Period - Tooltip",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price - Tooltip",
|
||||
"Related product": "Related product",
|
||||
"per month": "por mes",
|
||||
"per year": "per year"
|
||||
},
|
||||
"pricing": {
|
||||
"Copy pricing page URL": "Copiar URL de la página de precios",
|
||||
@ -589,7 +607,7 @@
|
||||
"Trial duration": "Duración del período de prueba",
|
||||
"Trial duration - Tooltip": "Duración del período de prueba",
|
||||
"days trial available!": "días de prueba disponibles",
|
||||
"pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "URL de la página de precios copiada correctamente al portapapeles, péguela en una ventana de incógnito u otro navegador"
|
||||
"paid-user do not have active subscription or pending subscription, please select a plan to buy": "paid-user do not have active subscription or pending subscription, please select a plan to buy"
|
||||
},
|
||||
"product": {
|
||||
"Alipay": "Alipay",
|
||||
@ -600,17 +618,16 @@
|
||||
"Detail - Tooltip": "Detalle del producto",
|
||||
"Dummy": "Dummy",
|
||||
"Edit Product": "Editar Producto",
|
||||
"I have completed the payment": "He completado el pago",
|
||||
"Image": "Imagen",
|
||||
"Image - Tooltip": "Imagen del producto",
|
||||
"New Product": "Nuevo producto",
|
||||
"Pay": "Pagar",
|
||||
"PayPal": "PayPal",
|
||||
"Payment cancelled": "Payment cancelled",
|
||||
"Payment failed": "Payment failed",
|
||||
"Payment providers": "Proveedores de pago",
|
||||
"Payment providers - Tooltip": "Proveedores de servicios de pago",
|
||||
"Placing order...": "Haciendo un pedido...",
|
||||
"Please provide your username in the remark": "Por favor proporcione su nombre de usuario en el comentario",
|
||||
"Please scan the QR code to pay": "Por favor, escanee el código QR para pagar",
|
||||
"Price": "Precio",
|
||||
"Price - Tooltip": "Precio del producto",
|
||||
"Quantity": "Cantidad",
|
||||
@ -672,8 +689,8 @@
|
||||
"Content": "Content",
|
||||
"Content - Tooltip": "Content - Tooltip",
|
||||
"Copy": "Copiar",
|
||||
"DB Test": "DB Test",
|
||||
"DB Test - Tooltip": "DB Test - Tooltip",
|
||||
"DB test": "DB test",
|
||||
"DB test - Tooltip": "DB test - Tooltip",
|
||||
"Disable SSL": "Desactivar SSL",
|
||||
"Disable SSL - Tooltip": "¿Hay que desactivar el protocolo SSL al comunicarse con el servidor STMP?",
|
||||
"Domain": "Dominio",
|
||||
@ -700,7 +717,10 @@
|
||||
"Internal": "Internal",
|
||||
"Issuer URL": "URL del emisor",
|
||||
"Issuer URL - Tooltip": "URL del emisor",
|
||||
"Link copied to clipboard successfully": "Enlace copiado al portapapeles satisfactoriamente",
|
||||
"Key ID": "Key ID",
|
||||
"Key ID - Tooltip": "Key ID - Tooltip",
|
||||
"Key text": "Key text",
|
||||
"Key text - Tooltip": "Key text - Tooltip",
|
||||
"Metadata": "Metadatos",
|
||||
"Metadata - Tooltip": "Metadatos SAML",
|
||||
"Method - Tooltip": "Método de inicio de sesión, código QR o inicio de sesión silencioso",
|
||||
@ -754,6 +774,10 @@
|
||||
"Sender Id - Tooltip": "Sender Id - Tooltip",
|
||||
"Sender number": "Sender number",
|
||||
"Sender number - Tooltip": "Sender number - Tooltip",
|
||||
"Service ID identifier": "Service ID identifier",
|
||||
"Service ID identifier - Tooltip": "Service ID identifier - Tooltip",
|
||||
"Service account JSON": "Service account JSON",
|
||||
"Service account JSON - Tooltip": "Service account JSON - Tooltip",
|
||||
"Sign Name": "Firma de Nombre",
|
||||
"Sign Name - Tooltip": "Nombre de la firma a ser utilizada",
|
||||
"Sign request": "Solicitud de firma",
|
||||
@ -764,12 +788,15 @@
|
||||
"Signup HTML": "Registro HTML",
|
||||
"Signup HTML - Edit": "Registro HTML - Editar",
|
||||
"Signup HTML - Tooltip": "HTML personalizado para reemplazar el estilo predeterminado de la página de registro",
|
||||
"Signup group": "Signup group",
|
||||
"Silent": "Silent",
|
||||
"Site key": "Clave del sitio",
|
||||
"Site key - Tooltip": "Clave del sitio",
|
||||
"Sliding Validation": "Sliding Validation",
|
||||
"Sub type": "Subtipo",
|
||||
"Sub type - Tooltip": "Subtipo",
|
||||
"Team ID": "Team ID",
|
||||
"Team ID - Tooltip": "Team ID - Tooltip",
|
||||
"Template code": "Código de plantilla",
|
||||
"Template code - Tooltip": "Código de plantilla",
|
||||
"Test Email": "Correo de prueba",
|
||||
@ -780,6 +807,8 @@
|
||||
"Token URL - Tooltip": "URL de token",
|
||||
"Type": "Tipo",
|
||||
"Type - Tooltip": "Seleccionar un tipo",
|
||||
"User flow": "User flow",
|
||||
"User flow - Tooltip": "User flow - Tooltip",
|
||||
"User mapping": "User mapping",
|
||||
"User mapping - Tooltip": "User mapping - Tooltip",
|
||||
"UserInfo URL": "URL de información del usuario",
|
||||
@ -801,6 +830,8 @@
|
||||
"New Role": "Nuevo rol",
|
||||
"Sub domains": "Subdominios",
|
||||
"Sub domains - Tooltip": "Dominios incluidos en el rol actual",
|
||||
"Sub groups": "Sub groups",
|
||||
"Sub groups - Tooltip": "Sub groups - Tooltip",
|
||||
"Sub roles": "Roles secundarios",
|
||||
"Sub roles - Tooltip": "Roles incluidos en el rol actual",
|
||||
"Sub users": "Subusuarios",
|
||||
@ -812,6 +843,9 @@
|
||||
"Confirm": "Confirmar",
|
||||
"Decline": "Declive",
|
||||
"Have account?": "¿Tiene una cuenta?",
|
||||
"Label": "Label",
|
||||
"Label HTML": "Label HTML",
|
||||
"Placeholder": "Placeholder",
|
||||
"Please accept the agreement!": "¡Por favor, acepta el acuerdo!",
|
||||
"Please click the below button to sign in": "Por favor, haga clic en el botón de abajo para iniciar sesión",
|
||||
"Please confirm your password!": "¡Por favor confirma tu contraseña!",
|
||||
@ -830,6 +864,11 @@
|
||||
"Please select your country/region!": "¡Por favor seleccione su país/región!",
|
||||
"Terms of Use": "Términos de uso",
|
||||
"Terms of Use - Tooltip": "Términos de uso que los usuarios necesitan leer y aceptar durante el registro",
|
||||
"Text 1": "Text 1",
|
||||
"Text 2": "Text 2",
|
||||
"Text 3": "Text 3",
|
||||
"Text 4": "Text 4",
|
||||
"Text 5": "Text 5",
|
||||
"The input is not invoice Tax ID!": "¡La entrada no es el ID fiscal de la factura!",
|
||||
"The input is not invoice title!": "¡El entrada no es el título de la factura!",
|
||||
"The input is not valid Email!": "¡La entrada no es un correo electrónico válido!",
|
||||
@ -841,14 +880,19 @@
|
||||
"sign in now": "Inicie sesión ahora"
|
||||
},
|
||||
"subscription": {
|
||||
"Duration": "Duración",
|
||||
"Duration - Tooltip": "Duración de la suscripción",
|
||||
"Active": "Active",
|
||||
"Edit Subscription": "Edit Subscription",
|
||||
"End date": "Fecha de finalización",
|
||||
"End date - Tooltip": "Fecha de finalización",
|
||||
"End time": "End time",
|
||||
"End time - Tooltip": "End time - Tooltip",
|
||||
"Error": "Error",
|
||||
"Expired": "Expired",
|
||||
"New Subscription": "New Subscription",
|
||||
"Start date": "Fecha de inicio",
|
||||
"Start date - Tooltip": "Fecha de inicio"
|
||||
"Pending": "Pending",
|
||||
"Period": "Period",
|
||||
"Start time": "Start time",
|
||||
"Start time - Tooltip": "Start time - Tooltip",
|
||||
"Suspended": "Suspended",
|
||||
"Upcoming": "Upcoming"
|
||||
},
|
||||
"syncer": {
|
||||
"Affiliation table": "Tabla de afiliación",
|
||||
@ -872,6 +916,8 @@
|
||||
"Is read-only": "Is read-only",
|
||||
"Is read-only - Tooltip": "Is read-only - Tooltip",
|
||||
"New Syncer": "Nuevo Syncer",
|
||||
"SSL mode": "SSL mode",
|
||||
"SSL mode - Tooltip": "SSL mode - Tooltip",
|
||||
"Sync interval": "Intervalo de sincronización",
|
||||
"Sync interval - Tooltip": "Unidad en segundos",
|
||||
"Table": "Mesa",
|
||||
@ -913,11 +959,19 @@
|
||||
},
|
||||
"token": {
|
||||
"Access token": "Token de acceso",
|
||||
"Access token - Tooltip": "Access token - Tooltip",
|
||||
"Authorization code": "Código de autorización",
|
||||
"Authorization code - Tooltip": "Authorization code - Tooltip",
|
||||
"Copy access token": "Copy access token",
|
||||
"Copy parsed result": "Copy parsed result",
|
||||
"Edit Token": "Editar Token",
|
||||
"Expires in": "Caduca en",
|
||||
"Expires in - Tooltip": "Expires in - Tooltip",
|
||||
"New Token": "Nuevo token",
|
||||
"Token type": "Tipo de token"
|
||||
"Parsed result": "Parsed result",
|
||||
"Parsed result - Tooltip": "Parsed result - Tooltip",
|
||||
"Token type": "Tipo de token",
|
||||
"Token type - Tooltip": "Token type - Tooltip"
|
||||
},
|
||||
"user": {
|
||||
"3rd-party logins": "Inicio de sesión de terceros",
|
||||
@ -974,6 +1028,8 @@
|
||||
"Managed accounts": "Cuentas gestionadas",
|
||||
"Modify password...": "Modificar contraseña...",
|
||||
"Multi-factor authentication": "Multi-factor authentication",
|
||||
"Name": "Name",
|
||||
"Name format": "Name format",
|
||||
"New Email": "Nuevo correo electrónico",
|
||||
"New Password": "Nueva contraseña",
|
||||
"New User": "Nuevo Usuario",
|
||||
@ -1011,6 +1067,7 @@
|
||||
"Upload ID card front picture": "Upload ID card front picture",
|
||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||
"Upload a photo": "Subir una foto",
|
||||
"Value": "Value",
|
||||
"Values": "Valores",
|
||||
"Verification code sent": "Código de verificación enviado",
|
||||
"WebAuthn credentials": "Credenciales de WebAuthn",
|
||||
|
@ -12,7 +12,9 @@
|
||||
"Policies": "Policies",
|
||||
"Policies - Tooltip": "Casbin policy rules",
|
||||
"Rule type": "Rule type",
|
||||
"Sync policies successfully": "Sync policies successfully"
|
||||
"Sync policies successfully": "Sync policies successfully",
|
||||
"Use same DB": "Use same DB",
|
||||
"Use same DB - Tooltip": "Use same DB - Tooltip"
|
||||
},
|
||||
"application": {
|
||||
"Always": "Always",
|
||||
@ -30,6 +32,8 @@
|
||||
"Edit Application": "Edit Application",
|
||||
"Enable Email linking": "Enable Email linking",
|
||||
"Enable Email linking - Tooltip": "When using 3rd-party providers to log in, if there is a user in the organization with the same Email, the 3rd-party login method will be automatically associated with that user",
|
||||
"Enable SAML C14N10": "Enable SAML C14N10",
|
||||
"Enable SAML C14N10 - Tooltip": "Enable SAML C14N10 - Tooltip",
|
||||
"Enable SAML compression": "Enable SAML compression",
|
||||
"Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp",
|
||||
"Enable WebAuthn signin": "Enable WebAuthn signin",
|
||||
@ -42,6 +46,10 @@
|
||||
"Enable signin session - Tooltip": "Whether Casdoor maintains a session after logging into Casdoor from the application",
|
||||
"Enable signup": "Enable signup",
|
||||
"Enable signup - Tooltip": "Whether to allow users to register a new account",
|
||||
"Failed signin frozen time": "Failed signin frozen time",
|
||||
"Failed signin frozen time - Tooltip": "Failed signin frozen time - Tooltip",
|
||||
"Failed signin limit": "Failed signin limit",
|
||||
"Failed signin limit - Tooltip": "Failed signin limit - Tooltip",
|
||||
"Failed to sign in": "Failed to sign in",
|
||||
"File uploaded successfully": "File uploaded successfully",
|
||||
"First, last": "First, last",
|
||||
@ -60,7 +68,6 @@
|
||||
"Input": "Input",
|
||||
"Invitation code": "Invitation code",
|
||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||
"Left": "Left",
|
||||
"Logged in successfully": "Logged in successfully",
|
||||
"Logged out successfully": "Logged out successfully",
|
||||
@ -73,7 +80,6 @@
|
||||
"Please input your application!": "Please input your application!",
|
||||
"Please input your organization!": "Please input your organization!",
|
||||
"Please select a HTML file": "Please select a HTML file",
|
||||
"Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Random": "Random",
|
||||
"Real name": "Real name",
|
||||
"Redirect URL": "Redirect URL",
|
||||
@ -86,7 +92,6 @@
|
||||
"Rule": "Rule",
|
||||
"SAML metadata": "SAML metadata",
|
||||
"SAML metadata - Tooltip": "The metadata of SAML protocol",
|
||||
"SAML metadata URL copied to clipboard successfully": "SAML metadata URL copied to clipboard successfully",
|
||||
"SAML reply URL": "SAML reply URL",
|
||||
"Select": "Select",
|
||||
"Side panel HTML": "Side panel HTML",
|
||||
@ -95,11 +100,9 @@
|
||||
"Sign Up Error": "Sign Up Error",
|
||||
"Signin": "Signin",
|
||||
"Signin (Default True)": "Signin (Default True)",
|
||||
"Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Signin session": "Signin session",
|
||||
"Signup items": "Signup items",
|
||||
"Signup items - Tooltip": "Items for users to fill in when registering new accounts",
|
||||
"Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Tags - Tooltip": "Only users with the tag that is listed in the application tags can login",
|
||||
"The application does not allow to sign up new account": "The application does not allow to sign up new account",
|
||||
"Token expire": "Token expire",
|
||||
@ -113,7 +116,6 @@
|
||||
"Bit size - Tooltip": "Secret key length",
|
||||
"Certificate": "Certificate",
|
||||
"Certificate - Tooltip": "Public key certificate, used for decrypting the JWT signature of the Access Token. This certificate usually needs to be deployed on the Casdoor SDK side (i.e., the application) to parse the JWT",
|
||||
"Certificate copied to clipboard successfully": "Certificate copied to clipboard successfully",
|
||||
"Copy certificate": "Copy certificate",
|
||||
"Copy private key": "Copy private key",
|
||||
"Crypto algorithm": "Crypto algorithm",
|
||||
@ -126,7 +128,6 @@
|
||||
"New Cert": "New Cert",
|
||||
"Private key": "Private key",
|
||||
"Private key - Tooltip": "Private key corresponding to the public key certificate",
|
||||
"Private key copied to clipboard successfully": "Private key copied to clipboard successfully",
|
||||
"Scope - Tooltip": "Usage scenarios of the certificate",
|
||||
"Type - Tooltip": "Type of certificate"
|
||||
},
|
||||
@ -191,6 +192,7 @@
|
||||
"Click to Upload": "Click to Upload",
|
||||
"Close": "Close",
|
||||
"Confirm": "Confirm",
|
||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||
"Copy": "Copy",
|
||||
"Created time": "Created time",
|
||||
"Custom": "Custom",
|
||||
@ -200,6 +202,8 @@
|
||||
"Default application - Tooltip": "Default application for users registered directly from the organization page",
|
||||
"Default avatar": "Default avatar",
|
||||
"Default avatar - Tooltip": "Default avatar used when newly registered users do not set an avatar image",
|
||||
"Default password": "Default password",
|
||||
"Default password - Tooltip": "Default password - Tooltip",
|
||||
"Delete": "Delete",
|
||||
"Description": "Description",
|
||||
"Description - Tooltip": "Detailed description information for reference, Casdoor itself will not use it",
|
||||
@ -218,8 +222,10 @@
|
||||
"Failed to connect to server": "Failed to connect to server",
|
||||
"Failed to delete": "Failed to delete",
|
||||
"Failed to enable": "Failed to enable",
|
||||
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
|
||||
"Failed to remove": "Failed to remove",
|
||||
"Failed to save": "Failed to save",
|
||||
"Failed to sync": "Failed to sync",
|
||||
"Failed to verify": "Failed to verify",
|
||||
"Favicon": "Favicon",
|
||||
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
|
||||
@ -251,6 +257,8 @@
|
||||
"MFA items - Tooltip": "MFA items - Tooltip",
|
||||
"Master password": "Master password",
|
||||
"Master password - Tooltip": "Can be used to log in to all users under this organization, making it convenient for administrators to log in as this user to solve technical issues",
|
||||
"Master verification code": "Master verification code",
|
||||
"Master verification code - Tooltip": "Master verification code - Tooltip",
|
||||
"Menu": "Menu",
|
||||
"Method": "Method",
|
||||
"Model": "Model",
|
||||
@ -272,6 +280,8 @@
|
||||
"Password salt - Tooltip": "Random parameter used for password encryption",
|
||||
"Password type": "Password type",
|
||||
"Password type - Tooltip": "Storage format of passwords in the database",
|
||||
"Payment": "Payment",
|
||||
"Payment - Tooltip": "Payment - Tooltip",
|
||||
"Payments": "Payments",
|
||||
"Permissions": "Permissions",
|
||||
"Permissions - Tooltip": "Permissions owned by this user",
|
||||
@ -283,6 +293,8 @@
|
||||
"Plans - Tooltip": "Plans - Tooltip",
|
||||
"Preview": "Preview",
|
||||
"Preview - Tooltip": "Preview the configured effects",
|
||||
"Pricing": "Pricing",
|
||||
"Pricing - Tooltip": "Pricing - Tooltip",
|
||||
"Pricings": "Pricings",
|
||||
"Products": "Products",
|
||||
"Provider": "Provider",
|
||||
@ -296,6 +308,10 @@
|
||||
"Role - Tooltip": "Role - Tooltip",
|
||||
"Roles": "Roles",
|
||||
"Roles - Tooltip": "Roles that the user belongs to",
|
||||
"Root cert": "Root cert",
|
||||
"Root cert - Tooltip": "Root cert - Tooltip",
|
||||
"SAML attributes": "SAML attributes",
|
||||
"SAML attributes - Tooltip": "SAML attributes - Tooltip",
|
||||
"Save": "Save",
|
||||
"Save & Exit": "Save & Exit",
|
||||
"Session ID": "Session ID",
|
||||
@ -318,6 +334,7 @@
|
||||
"Successfully removed": "Successfully removed",
|
||||
"Successfully saved": "Successfully saved",
|
||||
"Successfully sent": "Successfully sent",
|
||||
"Successfully synced": "Successfully synced",
|
||||
"Supported country codes": "Supported country codes",
|
||||
"Supported country codes - Tooltip": "Country codes supported by the organization. These codes can be selected as a prefix when sending SMS verification codes",
|
||||
"Sure to delete": "Sure to delete",
|
||||
@ -440,7 +457,6 @@
|
||||
"Multi-factor methods": "Multi-factor methods",
|
||||
"Multi-factor recover": "Multi-factor recover",
|
||||
"Multi-factor recover description": "Multi-factor recover description",
|
||||
"Multi-factor secret to clipboard successfully": "Multi-factor secret to clipboard successfully",
|
||||
"Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
|
||||
"Passcode": "Passcode",
|
||||
"Please bind your email first, the system will automatically uses the mail for multi-factor authentication": "Please bind your email first, the system will automatically uses the mail for multi-factor authentication",
|
||||
@ -573,11 +589,13 @@
|
||||
"plan": {
|
||||
"Edit Plan": "Edit Plan",
|
||||
"New Plan": "New Plan",
|
||||
"Price per month": "Price per month",
|
||||
"Price per month - Tooltip": "Price per month - Tooltip",
|
||||
"Price per year": "Price per year",
|
||||
"Price per year - Tooltip": "Price per year - Tooltip",
|
||||
"per month": "per month"
|
||||
"Period": "Period",
|
||||
"Period - Tooltip": "Period - Tooltip",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price - Tooltip",
|
||||
"Related product": "Related product",
|
||||
"per month": "per month",
|
||||
"per year": "per year"
|
||||
},
|
||||
"pricing": {
|
||||
"Copy pricing page URL": "Copy pricing page URL",
|
||||
@ -589,7 +607,7 @@
|
||||
"Trial duration": "Trial duration",
|
||||
"Trial duration - Tooltip": "Trial duration period",
|
||||
"days trial available!": "days trial available!",
|
||||
"pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser"
|
||||
"paid-user do not have active subscription or pending subscription, please select a plan to buy": "paid-user do not have active subscription or pending subscription, please select a plan to buy"
|
||||
},
|
||||
"product": {
|
||||
"Alipay": "Alipay",
|
||||
@ -600,17 +618,16 @@
|
||||
"Detail - Tooltip": "Detail of product",
|
||||
"Dummy": "Dummy",
|
||||
"Edit Product": "Edit Product",
|
||||
"I have completed the payment": "I have completed the payment",
|
||||
"Image": "Image",
|
||||
"Image - Tooltip": "Image of product",
|
||||
"New Product": "New Product",
|
||||
"Pay": "Pay",
|
||||
"PayPal": "PayPal",
|
||||
"Payment cancelled": "Payment cancelled",
|
||||
"Payment failed": "Payment failed",
|
||||
"Payment providers": "Payment providers",
|
||||
"Payment providers - Tooltip": "Providers of payment services",
|
||||
"Placing order...": "Placing order...",
|
||||
"Please provide your username in the remark": "Please provide your username in the remark",
|
||||
"Please scan the QR code to pay": "Please scan the QR code to pay",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price of product",
|
||||
"Quantity": "Quantity",
|
||||
@ -672,8 +689,8 @@
|
||||
"Content": "Content",
|
||||
"Content - Tooltip": "Content - Tooltip",
|
||||
"Copy": "Copy",
|
||||
"DB Test": "DB Test",
|
||||
"DB Test - Tooltip": "DB Test - Tooltip",
|
||||
"DB test": "DB test",
|
||||
"DB test - Tooltip": "DB test - Tooltip",
|
||||
"Disable SSL": "Disable SSL",
|
||||
"Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server",
|
||||
"Domain": "Domain",
|
||||
@ -700,7 +717,10 @@
|
||||
"Internal": "Internal",
|
||||
"Issuer URL": "Issuer URL",
|
||||
"Issuer URL - Tooltip": "Issuer URL",
|
||||
"Link copied to clipboard successfully": "Link copied to clipboard successfully",
|
||||
"Key ID": "Key ID",
|
||||
"Key ID - Tooltip": "Key ID - Tooltip",
|
||||
"Key text": "Key text",
|
||||
"Key text - Tooltip": "Key text - Tooltip",
|
||||
"Metadata": "Metadata",
|
||||
"Metadata - Tooltip": "SAML metadata",
|
||||
"Method - Tooltip": "Login method, QR code or silent login",
|
||||
@ -754,6 +774,10 @@
|
||||
"Sender Id - Tooltip": "Sender Id - Tooltip",
|
||||
"Sender number": "Sender number",
|
||||
"Sender number - Tooltip": "Sender number - Tooltip",
|
||||
"Service ID identifier": "Service ID identifier",
|
||||
"Service ID identifier - Tooltip": "Service ID identifier - Tooltip",
|
||||
"Service account JSON": "Service account JSON",
|
||||
"Service account JSON - Tooltip": "Service account JSON - Tooltip",
|
||||
"Sign Name": "Sign Name",
|
||||
"Sign Name - Tooltip": "Name of the signature to be used",
|
||||
"Sign request": "Sign request",
|
||||
@ -764,12 +788,15 @@
|
||||
"Signup HTML": "Signup HTML",
|
||||
"Signup HTML - Edit": "Signup HTML - Edit",
|
||||
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
|
||||
"Signup group": "Signup group",
|
||||
"Silent": "Silent",
|
||||
"Site key": "Site key",
|
||||
"Site key - Tooltip": "Site key",
|
||||
"Sliding Validation": "Sliding Validation",
|
||||
"Sub type": "Sub type",
|
||||
"Sub type - Tooltip": "Sub type",
|
||||
"Team ID": "Team ID",
|
||||
"Team ID - Tooltip": "Team ID - Tooltip",
|
||||
"Template code": "Template code",
|
||||
"Template code - Tooltip": "Template code",
|
||||
"Test Email": "Test Email",
|
||||
@ -780,6 +807,8 @@
|
||||
"Token URL - Tooltip": "Token URL",
|
||||
"Type": "Type",
|
||||
"Type - Tooltip": "Select a type",
|
||||
"User flow": "User flow",
|
||||
"User flow - Tooltip": "User flow - Tooltip",
|
||||
"User mapping": "User mapping",
|
||||
"User mapping - Tooltip": "User mapping - Tooltip",
|
||||
"UserInfo URL": "UserInfo URL",
|
||||
@ -801,6 +830,8 @@
|
||||
"New Role": "New Role",
|
||||
"Sub domains": "Sub domains",
|
||||
"Sub domains - Tooltip": "Domains included in the current role",
|
||||
"Sub groups": "Sub groups",
|
||||
"Sub groups - Tooltip": "Sub groups - Tooltip",
|
||||
"Sub roles": "Sub roles",
|
||||
"Sub roles - Tooltip": "Roles included in the current role",
|
||||
"Sub users": "Sub users",
|
||||
@ -812,6 +843,9 @@
|
||||
"Confirm": "Confirm",
|
||||
"Decline": "Decline",
|
||||
"Have account?": "Have account?",
|
||||
"Label": "Label",
|
||||
"Label HTML": "Label HTML",
|
||||
"Placeholder": "Placeholder",
|
||||
"Please accept the agreement!": "Please accept the agreement!",
|
||||
"Please click the below button to sign in": "Please click the below button to sign in",
|
||||
"Please confirm your password!": "Please confirm your password!",
|
||||
@ -830,6 +864,11 @@
|
||||
"Please select your country/region!": "Please select your country/region!",
|
||||
"Terms of Use": "Terms of Use",
|
||||
"Terms of Use - Tooltip": "Terms of use that users need to read and agree to during registration",
|
||||
"Text 1": "Text 1",
|
||||
"Text 2": "Text 2",
|
||||
"Text 3": "Text 3",
|
||||
"Text 4": "Text 4",
|
||||
"Text 5": "Text 5",
|
||||
"The input is not invoice Tax ID!": "The input is not invoice Tax ID!",
|
||||
"The input is not invoice title!": "The input is not invoice title!",
|
||||
"The input is not valid Email!": "The input is not valid Email!",
|
||||
@ -841,14 +880,19 @@
|
||||
"sign in now": "sign in now"
|
||||
},
|
||||
"subscription": {
|
||||
"Duration": "Duration",
|
||||
"Duration - Tooltip": "Subscription duration",
|
||||
"Active": "Active",
|
||||
"Edit Subscription": "Edit Subscription",
|
||||
"End date": "End date",
|
||||
"End date - Tooltip": "End date",
|
||||
"End time": "End time",
|
||||
"End time - Tooltip": "End time - Tooltip",
|
||||
"Error": "Error",
|
||||
"Expired": "Expired",
|
||||
"New Subscription": "New Subscription",
|
||||
"Start date": "Start date",
|
||||
"Start date - Tooltip": "Start date"
|
||||
"Pending": "Pending",
|
||||
"Period": "Period",
|
||||
"Start time": "Start time",
|
||||
"Start time - Tooltip": "Start time - Tooltip",
|
||||
"Suspended": "Suspended",
|
||||
"Upcoming": "Upcoming"
|
||||
},
|
||||
"syncer": {
|
||||
"Affiliation table": "Affiliation table",
|
||||
@ -872,6 +916,8 @@
|
||||
"Is read-only": "Is read-only",
|
||||
"Is read-only - Tooltip": "Is read-only - Tooltip",
|
||||
"New Syncer": "New Syncer",
|
||||
"SSL mode": "SSL mode",
|
||||
"SSL mode - Tooltip": "SSL mode - Tooltip",
|
||||
"Sync interval": "Sync interval",
|
||||
"Sync interval - Tooltip": "Unit in seconds",
|
||||
"Table": "Table",
|
||||
@ -913,11 +959,19 @@
|
||||
},
|
||||
"token": {
|
||||
"Access token": "Access token",
|
||||
"Access token - Tooltip": "Access token - Tooltip",
|
||||
"Authorization code": "Authorization code",
|
||||
"Authorization code - Tooltip": "Authorization code - Tooltip",
|
||||
"Copy access token": "Copy access token",
|
||||
"Copy parsed result": "Copy parsed result",
|
||||
"Edit Token": "Edit Token",
|
||||
"Expires in": "Expires in",
|
||||
"Expires in - Tooltip": "Expires in - Tooltip",
|
||||
"New Token": "New Token",
|
||||
"Token type": "Token type"
|
||||
"Parsed result": "Parsed result",
|
||||
"Parsed result - Tooltip": "Parsed result - Tooltip",
|
||||
"Token type": "Token type",
|
||||
"Token type - Tooltip": "Token type - Tooltip"
|
||||
},
|
||||
"user": {
|
||||
"3rd-party logins": "3rd-party logins",
|
||||
@ -974,6 +1028,8 @@
|
||||
"Managed accounts": "Managed accounts",
|
||||
"Modify password...": "Modify password...",
|
||||
"Multi-factor authentication": "Multi-factor authentication",
|
||||
"Name": "Name",
|
||||
"Name format": "Name format",
|
||||
"New Email": "New Email",
|
||||
"New Password": "New Password",
|
||||
"New User": "New User",
|
||||
@ -1011,6 +1067,7 @@
|
||||
"Upload ID card front picture": "Upload ID card front picture",
|
||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||
"Upload a photo": "Upload a photo",
|
||||
"Value": "Value",
|
||||
"Values": "Values",
|
||||
"Verification code sent": "Verification code sent",
|
||||
"WebAuthn credentials": "WebAuthn credentials",
|
||||
|
@ -12,7 +12,9 @@
|
||||
"Policies": "Policies",
|
||||
"Policies - Tooltip": "Casbin policy rules",
|
||||
"Rule type": "Rule type",
|
||||
"Sync policies successfully": "Sync policies successfully"
|
||||
"Sync policies successfully": "Sync policies successfully",
|
||||
"Use same DB": "Use same DB",
|
||||
"Use same DB - Tooltip": "Use same DB - Tooltip"
|
||||
},
|
||||
"application": {
|
||||
"Always": "Always",
|
||||
@ -30,6 +32,8 @@
|
||||
"Edit Application": "Edit Application",
|
||||
"Enable Email linking": "Enable Email linking",
|
||||
"Enable Email linking - Tooltip": "When using 3rd-party providers to log in, if there is a user in the organization with the same Email, the 3rd-party login method will be automatically associated with that user",
|
||||
"Enable SAML C14N10": "Enable SAML C14N10",
|
||||
"Enable SAML C14N10 - Tooltip": "Enable SAML C14N10 - Tooltip",
|
||||
"Enable SAML compression": "Enable SAML compression",
|
||||
"Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp",
|
||||
"Enable WebAuthn signin": "Enable WebAuthn signin",
|
||||
@ -42,6 +46,10 @@
|
||||
"Enable signin session - Tooltip": "Whether Casdoor maintains a session after logging into Casdoor from the application",
|
||||
"Enable signup": "Enable signup",
|
||||
"Enable signup - Tooltip": "Whether to allow users to register a new account",
|
||||
"Failed signin frozen time": "Failed signin frozen time",
|
||||
"Failed signin frozen time - Tooltip": "Failed signin frozen time - Tooltip",
|
||||
"Failed signin limit": "Failed signin limit",
|
||||
"Failed signin limit - Tooltip": "Failed signin limit - Tooltip",
|
||||
"Failed to sign in": "Failed to sign in",
|
||||
"File uploaded successfully": "File uploaded successfully",
|
||||
"First, last": "First, last",
|
||||
@ -60,7 +68,6 @@
|
||||
"Input": "Input",
|
||||
"Invitation code": "Invitation code",
|
||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||
"Left": "Left",
|
||||
"Logged in successfully": "Logged in successfully",
|
||||
"Logged out successfully": "Logged out successfully",
|
||||
@ -73,7 +80,6 @@
|
||||
"Please input your application!": "Please input your application!",
|
||||
"Please input your organization!": "Please input your organization!",
|
||||
"Please select a HTML file": "Please select a HTML file",
|
||||
"Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Random": "Random",
|
||||
"Real name": "Real name",
|
||||
"Redirect URL": "Redirect URL",
|
||||
@ -86,7 +92,6 @@
|
||||
"Rule": "Rule",
|
||||
"SAML metadata": "SAML metadata",
|
||||
"SAML metadata - Tooltip": "The metadata of SAML protocol",
|
||||
"SAML metadata URL copied to clipboard successfully": "SAML metadata URL copied to clipboard successfully",
|
||||
"SAML reply URL": "SAML reply URL",
|
||||
"Select": "Select",
|
||||
"Side panel HTML": "Side panel HTML",
|
||||
@ -95,11 +100,9 @@
|
||||
"Sign Up Error": "Sign Up Error",
|
||||
"Signin": "Signin",
|
||||
"Signin (Default True)": "Signin (Default True)",
|
||||
"Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Signin session": "Signin session",
|
||||
"Signup items": "Signup items",
|
||||
"Signup items - Tooltip": "Items for users to fill in when registering new accounts",
|
||||
"Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Tags - Tooltip": "Only users with the tag that is listed in the application tags can login",
|
||||
"The application does not allow to sign up new account": "The application does not allow to sign up new account",
|
||||
"Token expire": "Token expire",
|
||||
@ -113,7 +116,6 @@
|
||||
"Bit size - Tooltip": "Secret key length",
|
||||
"Certificate": "Certificate",
|
||||
"Certificate - Tooltip": "Public key certificate, used for decrypting the JWT signature of the Access Token. This certificate usually needs to be deployed on the Casdoor SDK side (i.e., the application) to parse the JWT",
|
||||
"Certificate copied to clipboard successfully": "Certificate copied to clipboard successfully",
|
||||
"Copy certificate": "Copy certificate",
|
||||
"Copy private key": "Copy private key",
|
||||
"Crypto algorithm": "Crypto algorithm",
|
||||
@ -126,7 +128,6 @@
|
||||
"New Cert": "New Cert",
|
||||
"Private key": "Private key",
|
||||
"Private key - Tooltip": "Private key corresponding to the public key certificate",
|
||||
"Private key copied to clipboard successfully": "Private key copied to clipboard successfully",
|
||||
"Scope - Tooltip": "Usage scenarios of the certificate",
|
||||
"Type - Tooltip": "Type of certificate"
|
||||
},
|
||||
@ -191,6 +192,7 @@
|
||||
"Click to Upload": "Click to Upload",
|
||||
"Close": "Close",
|
||||
"Confirm": "Confirm",
|
||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||
"Copy": "Copy",
|
||||
"Created time": "Created time",
|
||||
"Custom": "Custom",
|
||||
@ -200,6 +202,8 @@
|
||||
"Default application - Tooltip": "Default application for users registered directly from the organization page",
|
||||
"Default avatar": "Default avatar",
|
||||
"Default avatar - Tooltip": "Default avatar used when newly registered users do not set an avatar image",
|
||||
"Default password": "Default password",
|
||||
"Default password - Tooltip": "Default password - Tooltip",
|
||||
"Delete": "Delete",
|
||||
"Description": "Description",
|
||||
"Description - Tooltip": "Detailed description information for reference, Casdoor itself will not use it",
|
||||
@ -218,8 +222,10 @@
|
||||
"Failed to connect to server": "Failed to connect to server",
|
||||
"Failed to delete": "Failed to delete",
|
||||
"Failed to enable": "Failed to enable",
|
||||
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
|
||||
"Failed to remove": "Failed to remove",
|
||||
"Failed to save": "Failed to save",
|
||||
"Failed to sync": "Failed to sync",
|
||||
"Failed to verify": "Failed to verify",
|
||||
"Favicon": "Favicon",
|
||||
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
|
||||
@ -251,6 +257,8 @@
|
||||
"MFA items - Tooltip": "MFA items - Tooltip",
|
||||
"Master password": "Master password",
|
||||
"Master password - Tooltip": "Can be used to log in to all users under this organization, making it convenient for administrators to log in as this user to solve technical issues",
|
||||
"Master verification code": "Master verification code",
|
||||
"Master verification code - Tooltip": "Master verification code - Tooltip",
|
||||
"Menu": "Menu",
|
||||
"Method": "Method",
|
||||
"Model": "Model",
|
||||
@ -272,6 +280,8 @@
|
||||
"Password salt - Tooltip": "Random parameter used for password encryption",
|
||||
"Password type": "Password type",
|
||||
"Password type - Tooltip": "Storage format of passwords in the database",
|
||||
"Payment": "Payment",
|
||||
"Payment - Tooltip": "Payment - Tooltip",
|
||||
"Payments": "Payments",
|
||||
"Permissions": "Permissions",
|
||||
"Permissions - Tooltip": "Permissions owned by this user",
|
||||
@ -283,6 +293,8 @@
|
||||
"Plans - Tooltip": "Plans - Tooltip",
|
||||
"Preview": "Preview",
|
||||
"Preview - Tooltip": "Preview the configured effects",
|
||||
"Pricing": "Pricing",
|
||||
"Pricing - Tooltip": "Pricing - Tooltip",
|
||||
"Pricings": "Pricings",
|
||||
"Products": "Products",
|
||||
"Provider": "Provider",
|
||||
@ -296,6 +308,10 @@
|
||||
"Role - Tooltip": "Role - Tooltip",
|
||||
"Roles": "Roles",
|
||||
"Roles - Tooltip": "Roles that the user belongs to",
|
||||
"Root cert": "Root cert",
|
||||
"Root cert - Tooltip": "Root cert - Tooltip",
|
||||
"SAML attributes": "SAML attributes",
|
||||
"SAML attributes - Tooltip": "SAML attributes - Tooltip",
|
||||
"Save": "Save",
|
||||
"Save & Exit": "Save & Exit",
|
||||
"Session ID": "Session ID",
|
||||
@ -318,6 +334,7 @@
|
||||
"Successfully removed": "Successfully removed",
|
||||
"Successfully saved": "Successfully saved",
|
||||
"Successfully sent": "Successfully sent",
|
||||
"Successfully synced": "Successfully synced",
|
||||
"Supported country codes": "Supported country codes",
|
||||
"Supported country codes - Tooltip": "Country codes supported by the organization. These codes can be selected as a prefix when sending SMS verification codes",
|
||||
"Sure to delete": "Sure to delete",
|
||||
@ -440,7 +457,6 @@
|
||||
"Multi-factor methods": "Multi-factor methods",
|
||||
"Multi-factor recover": "Multi-factor recover",
|
||||
"Multi-factor recover description": "Multi-factor recover description",
|
||||
"Multi-factor secret to clipboard successfully": "Multi-factor secret to clipboard successfully",
|
||||
"Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
|
||||
"Passcode": "Passcode",
|
||||
"Please bind your email first, the system will automatically uses the mail for multi-factor authentication": "Please bind your email first, the system will automatically uses the mail for multi-factor authentication",
|
||||
@ -573,11 +589,13 @@
|
||||
"plan": {
|
||||
"Edit Plan": "Edit Plan",
|
||||
"New Plan": "New Plan",
|
||||
"Price per month": "Price per month",
|
||||
"Price per month - Tooltip": "Price per month - Tooltip",
|
||||
"Price per year": "Price per year",
|
||||
"Price per year - Tooltip": "Price per year - Tooltip",
|
||||
"per month": "per month"
|
||||
"Period": "Period",
|
||||
"Period - Tooltip": "Period - Tooltip",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price - Tooltip",
|
||||
"Related product": "Related product",
|
||||
"per month": "per month",
|
||||
"per year": "per year"
|
||||
},
|
||||
"pricing": {
|
||||
"Copy pricing page URL": "Copy pricing page URL",
|
||||
@ -589,7 +607,7 @@
|
||||
"Trial duration": "Trial duration",
|
||||
"Trial duration - Tooltip": "Trial duration period",
|
||||
"days trial available!": "days trial available!",
|
||||
"pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser"
|
||||
"paid-user do not have active subscription or pending subscription, please select a plan to buy": "paid-user do not have active subscription or pending subscription, please select a plan to buy"
|
||||
},
|
||||
"product": {
|
||||
"Alipay": "Alipay",
|
||||
@ -600,17 +618,16 @@
|
||||
"Detail - Tooltip": "Detail of product",
|
||||
"Dummy": "Dummy",
|
||||
"Edit Product": "Edit Product",
|
||||
"I have completed the payment": "I have completed the payment",
|
||||
"Image": "Image",
|
||||
"Image - Tooltip": "Image of product",
|
||||
"New Product": "New Product",
|
||||
"Pay": "Pay",
|
||||
"PayPal": "PayPal",
|
||||
"Payment cancelled": "Payment cancelled",
|
||||
"Payment failed": "Payment failed",
|
||||
"Payment providers": "Payment providers",
|
||||
"Payment providers - Tooltip": "Providers of payment services",
|
||||
"Placing order...": "Placing order...",
|
||||
"Please provide your username in the remark": "Please provide your username in the remark",
|
||||
"Please scan the QR code to pay": "Please scan the QR code to pay",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price of product",
|
||||
"Quantity": "Quantity",
|
||||
@ -672,8 +689,8 @@
|
||||
"Content": "Content",
|
||||
"Content - Tooltip": "Content - Tooltip",
|
||||
"Copy": "Copy",
|
||||
"DB Test": "DB Test",
|
||||
"DB Test - Tooltip": "DB Test - Tooltip",
|
||||
"DB test": "DB test",
|
||||
"DB test - Tooltip": "DB test - Tooltip",
|
||||
"Disable SSL": "Disable SSL",
|
||||
"Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server",
|
||||
"Domain": "Domain",
|
||||
@ -700,7 +717,10 @@
|
||||
"Internal": "Internal",
|
||||
"Issuer URL": "Issuer URL",
|
||||
"Issuer URL - Tooltip": "Issuer URL",
|
||||
"Link copied to clipboard successfully": "Link copied to clipboard successfully",
|
||||
"Key ID": "Key ID",
|
||||
"Key ID - Tooltip": "Key ID - Tooltip",
|
||||
"Key text": "Key text",
|
||||
"Key text - Tooltip": "Key text - Tooltip",
|
||||
"Metadata": "Metadata",
|
||||
"Metadata - Tooltip": "SAML metadata",
|
||||
"Method - Tooltip": "Login method, QR code or silent login",
|
||||
@ -754,6 +774,10 @@
|
||||
"Sender Id - Tooltip": "Sender Id - Tooltip",
|
||||
"Sender number": "Sender number",
|
||||
"Sender number - Tooltip": "Sender number - Tooltip",
|
||||
"Service ID identifier": "Service ID identifier",
|
||||
"Service ID identifier - Tooltip": "Service ID identifier - Tooltip",
|
||||
"Service account JSON": "Service account JSON",
|
||||
"Service account JSON - Tooltip": "Service account JSON - Tooltip",
|
||||
"Sign Name": "Sign Name",
|
||||
"Sign Name - Tooltip": "Name of the signature to be used",
|
||||
"Sign request": "Sign request",
|
||||
@ -764,12 +788,15 @@
|
||||
"Signup HTML": "Signup HTML",
|
||||
"Signup HTML - Edit": "Signup HTML - Edit",
|
||||
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
|
||||
"Signup group": "Signup group",
|
||||
"Silent": "Silent",
|
||||
"Site key": "Site key",
|
||||
"Site key - Tooltip": "Site key",
|
||||
"Sliding Validation": "Sliding Validation",
|
||||
"Sub type": "Sub type",
|
||||
"Sub type - Tooltip": "Sub type",
|
||||
"Team ID": "Team ID",
|
||||
"Team ID - Tooltip": "Team ID - Tooltip",
|
||||
"Template code": "Template code",
|
||||
"Template code - Tooltip": "Template code",
|
||||
"Test Email": "Test Email",
|
||||
@ -780,6 +807,8 @@
|
||||
"Token URL - Tooltip": "Token URL",
|
||||
"Type": "Type",
|
||||
"Type - Tooltip": "Select a type",
|
||||
"User flow": "User flow",
|
||||
"User flow - Tooltip": "User flow - Tooltip",
|
||||
"User mapping": "User mapping",
|
||||
"User mapping - Tooltip": "User mapping - Tooltip",
|
||||
"UserInfo URL": "UserInfo URL",
|
||||
@ -801,6 +830,8 @@
|
||||
"New Role": "New Role",
|
||||
"Sub domains": "Sub domains",
|
||||
"Sub domains - Tooltip": "Domains included in the current role",
|
||||
"Sub groups": "Sub groups",
|
||||
"Sub groups - Tooltip": "Sub groups - Tooltip",
|
||||
"Sub roles": "Sub roles",
|
||||
"Sub roles - Tooltip": "Roles included in the current role",
|
||||
"Sub users": "Sub users",
|
||||
@ -812,6 +843,9 @@
|
||||
"Confirm": "Confirm",
|
||||
"Decline": "Decline",
|
||||
"Have account?": "Have account?",
|
||||
"Label": "Label",
|
||||
"Label HTML": "Label HTML",
|
||||
"Placeholder": "Placeholder",
|
||||
"Please accept the agreement!": "Please accept the agreement!",
|
||||
"Please click the below button to sign in": "Please click the below button to sign in",
|
||||
"Please confirm your password!": "Please confirm your password!",
|
||||
@ -830,6 +864,11 @@
|
||||
"Please select your country/region!": "Please select your country/region!",
|
||||
"Terms of Use": "Terms of Use",
|
||||
"Terms of Use - Tooltip": "Terms of use that users need to read and agree to during registration",
|
||||
"Text 1": "Text 1",
|
||||
"Text 2": "Text 2",
|
||||
"Text 3": "Text 3",
|
||||
"Text 4": "Text 4",
|
||||
"Text 5": "Text 5",
|
||||
"The input is not invoice Tax ID!": "The input is not invoice Tax ID!",
|
||||
"The input is not invoice title!": "The input is not invoice title!",
|
||||
"The input is not valid Email!": "The input is not valid Email!",
|
||||
@ -841,14 +880,19 @@
|
||||
"sign in now": "sign in now"
|
||||
},
|
||||
"subscription": {
|
||||
"Duration": "Duration",
|
||||
"Duration - Tooltip": "Subscription duration",
|
||||
"Active": "Active",
|
||||
"Edit Subscription": "Edit Subscription",
|
||||
"End date": "End date",
|
||||
"End date - Tooltip": "End date",
|
||||
"End time": "End time",
|
||||
"End time - Tooltip": "End time - Tooltip",
|
||||
"Error": "Error",
|
||||
"Expired": "Expired",
|
||||
"New Subscription": "New Subscription",
|
||||
"Start date": "Start date",
|
||||
"Start date - Tooltip": "Start date"
|
||||
"Pending": "Pending",
|
||||
"Period": "Period",
|
||||
"Start time": "Start time",
|
||||
"Start time - Tooltip": "Start time - Tooltip",
|
||||
"Suspended": "Suspended",
|
||||
"Upcoming": "Upcoming"
|
||||
},
|
||||
"syncer": {
|
||||
"Affiliation table": "Affiliation table",
|
||||
@ -872,6 +916,8 @@
|
||||
"Is read-only": "Is read-only",
|
||||
"Is read-only - Tooltip": "Is read-only - Tooltip",
|
||||
"New Syncer": "New Syncer",
|
||||
"SSL mode": "SSL mode",
|
||||
"SSL mode - Tooltip": "SSL mode - Tooltip",
|
||||
"Sync interval": "Sync interval",
|
||||
"Sync interval - Tooltip": "Unit in seconds",
|
||||
"Table": "Table",
|
||||
@ -913,11 +959,19 @@
|
||||
},
|
||||
"token": {
|
||||
"Access token": "Access token",
|
||||
"Access token - Tooltip": "Access token - Tooltip",
|
||||
"Authorization code": "Authorization code",
|
||||
"Authorization code - Tooltip": "Authorization code - Tooltip",
|
||||
"Copy access token": "Copy access token",
|
||||
"Copy parsed result": "Copy parsed result",
|
||||
"Edit Token": "Edit Token",
|
||||
"Expires in": "Expires in",
|
||||
"Expires in - Tooltip": "Expires in - Tooltip",
|
||||
"New Token": "New Token",
|
||||
"Token type": "Token type"
|
||||
"Parsed result": "Parsed result",
|
||||
"Parsed result - Tooltip": "Parsed result - Tooltip",
|
||||
"Token type": "Token type",
|
||||
"Token type - Tooltip": "Token type - Tooltip"
|
||||
},
|
||||
"user": {
|
||||
"3rd-party logins": "3rd-party logins",
|
||||
@ -974,6 +1028,8 @@
|
||||
"Managed accounts": "Managed accounts",
|
||||
"Modify password...": "Modify password...",
|
||||
"Multi-factor authentication": "Multi-factor authentication",
|
||||
"Name": "Name",
|
||||
"Name format": "Name format",
|
||||
"New Email": "New Email",
|
||||
"New Password": "New Password",
|
||||
"New User": "New User",
|
||||
@ -1011,6 +1067,7 @@
|
||||
"Upload ID card front picture": "Upload ID card front picture",
|
||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||
"Upload a photo": "Upload a photo",
|
||||
"Value": "Value",
|
||||
"Values": "Values",
|
||||
"Verification code sent": "Verification code sent",
|
||||
"WebAuthn credentials": "WebAuthn credentials",
|
||||
|
@ -12,7 +12,9 @@
|
||||
"Policies": "Règles",
|
||||
"Policies - Tooltip": "Règles de Casbin",
|
||||
"Rule type": "Type de règle",
|
||||
"Sync policies successfully": "Synchronisation des règles réussie"
|
||||
"Sync policies successfully": "Synchronisation des règles réussie",
|
||||
"Use same DB": "Use same DB",
|
||||
"Use same DB - Tooltip": "Use same DB - Tooltip"
|
||||
},
|
||||
"application": {
|
||||
"Always": "Toujours",
|
||||
@ -30,6 +32,8 @@
|
||||
"Edit Application": "Modifier l'application",
|
||||
"Enable Email linking": "Autoriser à lier l'e-mail",
|
||||
"Enable Email linking - Tooltip": "Lorsqu'un fournisseur tiers est utilisé pour se connecter, si un compte existe dans l'organisation avec la même adresse e-mail, la méthode de connexion tierce sera automatiquement associée à ce compte",
|
||||
"Enable SAML C14N10": "Enable SAML C14N10",
|
||||
"Enable SAML C14N10 - Tooltip": "Enable SAML C14N10 - Tooltip",
|
||||
"Enable SAML compression": "Activer la compression SAML",
|
||||
"Enable SAML compression - Tooltip": "Compresser ou non les messages de réponse SAML lorsque Casdoor est utilisé en tant que fournisseur d'identité SAML",
|
||||
"Enable WebAuthn signin": "Autoriser la connexion via WebAuthn",
|
||||
@ -42,6 +46,10 @@
|
||||
"Enable signin session - Tooltip": "Conserver une session après la connexion à Casdoor à partir de l'application",
|
||||
"Enable signup": "Activer l'inscription",
|
||||
"Enable signup - Tooltip": "Autoriser la création de nouveaux comptes",
|
||||
"Failed signin frozen time": "Failed signin frozen time",
|
||||
"Failed signin frozen time - Tooltip": "Failed signin frozen time - Tooltip",
|
||||
"Failed signin limit": "Failed signin limit",
|
||||
"Failed signin limit - Tooltip": "Failed signin limit - Tooltip",
|
||||
"Failed to sign in": "Échec de la connexion",
|
||||
"File uploaded successfully": "Fichier téléchargé avec succès",
|
||||
"First, last": "Prénom, nom",
|
||||
@ -60,7 +68,6 @@
|
||||
"Input": "Saisie",
|
||||
"Invitation code": "Code d'invitation",
|
||||
"Invitation code - Tooltip": "Code d'invitation - infobulle",
|
||||
"Invitation code copied to clipboard successfully": "Code d'invitation copié dans le presse-papiers avec succès",
|
||||
"Left": "Gauche",
|
||||
"Logged in successfully": "Connexion réussie",
|
||||
"Logged out successfully": "Déconnexion réussie",
|
||||
@ -73,7 +80,6 @@
|
||||
"Please input your application!": "Veuillez saisir votre application !",
|
||||
"Please input your organization!": "Veuillez saisir votre organisation !",
|
||||
"Please select a HTML file": "Veuillez sélectionner un fichier HTML",
|
||||
"Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "URL de la page de saisie copiée avec succès dans le presse-papiers, veuillez la coller dans une fenêtre de navigation privée ou dans un autre navigateur",
|
||||
"Random": "Aléatoire",
|
||||
"Real name": "Nom complet",
|
||||
"Redirect URL": "URL de redirection",
|
||||
@ -86,7 +92,6 @@
|
||||
"Rule": "Règle",
|
||||
"SAML metadata": "Métadonnées SAML",
|
||||
"SAML metadata - Tooltip": "Les métadonnées du protocole SAML",
|
||||
"SAML metadata URL copied to clipboard successfully": "URL des métadonnées SAML copiée dans le presse-papiers avec succès",
|
||||
"SAML reply URL": "URL de réponse SAML",
|
||||
"Select": "Sélectionner",
|
||||
"Side panel HTML": "HTML du panneau latéral",
|
||||
@ -95,11 +100,9 @@
|
||||
"Sign Up Error": "Erreur d'inscription",
|
||||
"Signin": "Connexion",
|
||||
"Signin (Default True)": "Connexion (Vrai par défaut)",
|
||||
"Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "L'URL de la page de connexion a été copiée avec succès dans le presse-papiers, veuillez la coller dans une fenêtre de navigation privée ou dans un autre navigateur",
|
||||
"Signin session": "Session de connexion",
|
||||
"Signup items": "Champs d'inscription",
|
||||
"Signup items - Tooltip": "Champs à remplir lors de l'enregistrement de nouveaux comptes",
|
||||
"Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "URL de la page d'inscription copiée avec succès dans le presse-papiers, veuillez la coller dans une fenêtre de navigation privée ou dans un autre navigateur",
|
||||
"Tags - Tooltip": "Seuls les comptes ayant leur étiquette listée dans les étiquettes de l'application peuvent se connecter",
|
||||
"The application does not allow to sign up new account": "L'application ne permet pas de créer un nouveau compte",
|
||||
"Token expire": "Expiration du jeton",
|
||||
@ -113,7 +116,6 @@
|
||||
"Bit size - Tooltip": "Longueur de la clé secrète",
|
||||
"Certificate": "Certificat",
|
||||
"Certificate - Tooltip": "Certificat de clé publique, utilisé pour décrypter la signature JWT du jeton d'accès. Ce certificat doit généralement être déployé du côté du SDK Casdoor (c'est-à-dire de l'application) pour analyser le JWT",
|
||||
"Certificate copied to clipboard successfully": "Certificat copié dans le presse-papiers avec succès",
|
||||
"Copy certificate": "Copier le certificat",
|
||||
"Copy private key": "Copier la clé privée",
|
||||
"Crypto algorithm": "Algorithme cryptographique",
|
||||
@ -126,7 +128,6 @@
|
||||
"New Cert": "Nouveau Certificat",
|
||||
"Private key": "Clé privée",
|
||||
"Private key - Tooltip": "Clé privée correspondant au certificat de la clé publique",
|
||||
"Private key copied to clipboard successfully": "Clé privée copiée dans le presse-papiers avec succès",
|
||||
"Scope - Tooltip": "Scénarios d'utilisation du certificat",
|
||||
"Type - Tooltip": "Type de certificat"
|
||||
},
|
||||
@ -191,6 +192,7 @@
|
||||
"Click to Upload": "Cliquer pour télécharger",
|
||||
"Close": "Fermer",
|
||||
"Confirm": "Confirmer",
|
||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||
"Copy": "Copier",
|
||||
"Created time": "Date de création",
|
||||
"Custom": "Personnalisée",
|
||||
@ -200,6 +202,8 @@
|
||||
"Default application - Tooltip": "Application par défaut pour les comptes enregistrés directement depuis la page de l'organisation",
|
||||
"Default avatar": "Avatar par défaut",
|
||||
"Default avatar - Tooltip": "Avatar par défaut utilisé lorsque des comptes nouvellement enregistrés ne définissent pas d'image d'avatar",
|
||||
"Default password": "Default password",
|
||||
"Default password - Tooltip": "Default password - Tooltip",
|
||||
"Delete": "Supprimer",
|
||||
"Description": "Description",
|
||||
"Description - Tooltip": "Description détaillée pour référence, Casdoor ne l'utilisera pas en soi",
|
||||
@ -218,8 +222,10 @@
|
||||
"Failed to connect to server": "Échec de la connexion au serveur",
|
||||
"Failed to delete": "Échec de la suppression",
|
||||
"Failed to enable": "Échec de l'activation",
|
||||
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
|
||||
"Failed to remove": "Échec de la suppression",
|
||||
"Failed to save": "Échec de sauvegarde",
|
||||
"Failed to sync": "Failed to sync",
|
||||
"Failed to verify": "Échec de la vérification",
|
||||
"Favicon": "Icône du site",
|
||||
"Favicon - Tooltip": "L'URL de l'icône « favicon » utilisée dans toutes les pages Casdoor de l'organisation",
|
||||
@ -251,6 +257,8 @@
|
||||
"MFA items - Tooltip": "Types d'authentification multifacteur - Infobulle",
|
||||
"Master password": "Mot de passe passe-partout",
|
||||
"Master password - Tooltip": "Mot de passe qui peut être utilisé pour se connecter à tous les comptes sous cette organisation, ce qui facilite la connexion des administrateurs et administratrices en tant que ce compte pour résoudre les problèmes techniques",
|
||||
"Master verification code": "Master verification code",
|
||||
"Master verification code - Tooltip": "Master verification code - Tooltip",
|
||||
"Menu": "Menu",
|
||||
"Method": "Méthode",
|
||||
"Model": "Modèle",
|
||||
@ -272,6 +280,8 @@
|
||||
"Password salt - Tooltip": "Paramètre aléatoire utilisé pour le chiffrement des mots de passe",
|
||||
"Password type": "Type de mot de passe",
|
||||
"Password type - Tooltip": "Format de stockage des mots de passe dans la base de données",
|
||||
"Payment": "Payment",
|
||||
"Payment - Tooltip": "Payment - Tooltip",
|
||||
"Payments": "Paiements",
|
||||
"Permissions": "Permissions",
|
||||
"Permissions - Tooltip": "Permissions détenues par ce compte",
|
||||
@ -283,6 +293,8 @@
|
||||
"Plans - Tooltip": "Offres - Infobulle",
|
||||
"Preview": "Aperçu",
|
||||
"Preview - Tooltip": "Prévisualisation des effets configurés",
|
||||
"Pricing": "Pricing",
|
||||
"Pricing - Tooltip": "Pricing - Tooltip",
|
||||
"Pricings": "Tarifs",
|
||||
"Products": "Produits",
|
||||
"Provider": "Fournisseur",
|
||||
@ -296,6 +308,10 @@
|
||||
"Role - Tooltip": "Rôle - Infobulle",
|
||||
"Roles": "Rôles",
|
||||
"Roles - Tooltip": "Les rôles auxquels le compte appartient",
|
||||
"Root cert": "Root cert",
|
||||
"Root cert - Tooltip": "Root cert - Tooltip",
|
||||
"SAML attributes": "SAML attributes",
|
||||
"SAML attributes - Tooltip": "SAML attributes - Tooltip",
|
||||
"Save": "Enregistrer",
|
||||
"Save & Exit": "Enregistrer et quitter",
|
||||
"Session ID": "Identifiant de session",
|
||||
@ -318,6 +334,7 @@
|
||||
"Successfully removed": "Retiré avec succès",
|
||||
"Successfully saved": "Enregistré avec succès",
|
||||
"Successfully sent": "Envoyé avec succès",
|
||||
"Successfully synced": "Successfully synced",
|
||||
"Supported country codes": "Indicatifs téléphoniques acceptés",
|
||||
"Supported country codes - Tooltip": "Indicatifs téléphoniques internationaux acceptés par l'organisation. Ces indicatifs peuvent être sélectionnés comme préfixe lors de l'envoi de codes de vérification par SMS",
|
||||
"Sure to delete": "Certain⋅e de supprimer",
|
||||
@ -440,7 +457,6 @@
|
||||
"Multi-factor methods": "Méthodes d'authentification multifacteur",
|
||||
"Multi-factor recover": "Restauration de l'authentification multifacteur",
|
||||
"Multi-factor recover description": "Description de la restauration de l'authentification multifacteur",
|
||||
"Multi-factor secret to clipboard successfully": "Clé secrète d'authentification multifacteur copiée avec succès",
|
||||
"Or copy the secret to your Authenticator App": "Ou copiez la clé secrète dans votre application d'authentification",
|
||||
"Passcode": "Code d'accès",
|
||||
"Please bind your email first, the system will automatically uses the mail for multi-factor authentication": "Veuillez lier votre e-mail en premier, le système l'utilisera automatiquement pour l'authentification multifacteur",
|
||||
@ -573,11 +589,13 @@
|
||||
"plan": {
|
||||
"Edit Plan": "Modifier l'offre",
|
||||
"New Plan": "Nouvelle offre",
|
||||
"Price per month": "Prix par mois",
|
||||
"Price per month - Tooltip": "Prix par mois - Infobulle",
|
||||
"Price per year": "Prix annuel",
|
||||
"Price per year - Tooltip": "Prix annuel - Infobulle",
|
||||
"per month": "par mois"
|
||||
"Period": "Period",
|
||||
"Period - Tooltip": "Period - Tooltip",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price - Tooltip",
|
||||
"Related product": "Related product",
|
||||
"per month": "par mois",
|
||||
"per year": "per year"
|
||||
},
|
||||
"pricing": {
|
||||
"Copy pricing page URL": "Copier l'URL de la page tarifs",
|
||||
@ -589,7 +607,7 @@
|
||||
"Trial duration": "Durée de l'essai",
|
||||
"Trial duration - Tooltip": "Durée de la période d'essai",
|
||||
"days trial available!": "jours d'essai disponibles !",
|
||||
"pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "URL de la page tarifs copiée avec succès dans le presse-papiers, veuillez la coller dans une fenêtre de navigation privée ou un autre navigateur"
|
||||
"paid-user do not have active subscription or pending subscription, please select a plan to buy": "paid-user do not have active subscription or pending subscription, please select a plan to buy"
|
||||
},
|
||||
"product": {
|
||||
"Alipay": "Alipay",
|
||||
@ -600,17 +618,16 @@
|
||||
"Detail - Tooltip": "Détail du produit",
|
||||
"Dummy": "Exemple",
|
||||
"Edit Product": "Modifier le produit",
|
||||
"I have completed the payment": "J'ai effectué le paiement",
|
||||
"Image": "Image",
|
||||
"Image - Tooltip": "Image du produit",
|
||||
"New Product": "Nouveau produit",
|
||||
"Pay": "Payer",
|
||||
"PayPal": "PayPal",
|
||||
"Payment cancelled": "Payment cancelled",
|
||||
"Payment failed": "Payment failed",
|
||||
"Payment providers": "Fournisseurs de paiement",
|
||||
"Payment providers - Tooltip": "Fournisseurs de services de paiement",
|
||||
"Placing order...": "Passer une commande...",
|
||||
"Please provide your username in the remark": "Veuillez indiquer votre identifiant dans la remarque",
|
||||
"Please scan the QR code to pay": "Veuillez scanner le code QR pour effectuer le paiement",
|
||||
"Price": "Prix",
|
||||
"Price - Tooltip": "Prix du produit",
|
||||
"Quantity": "Quantité",
|
||||
@ -672,8 +689,8 @@
|
||||
"Content": "Contenu",
|
||||
"Content - Tooltip": "Contenu - Infobulle",
|
||||
"Copy": "Copie",
|
||||
"DB Test": "Test de la BD",
|
||||
"DB Test - Tooltip": "Test de la BD - Infobulle",
|
||||
"DB test": "DB test",
|
||||
"DB test - Tooltip": "DB test - Tooltip",
|
||||
"Disable SSL": "Désactiver SSL",
|
||||
"Disable SSL - Tooltip": "Désactiver le protocole SSL lors de la communication avec le serveur STMP",
|
||||
"Domain": "Domaine",
|
||||
@ -700,7 +717,10 @@
|
||||
"Internal": "Interne",
|
||||
"Issuer URL": "URL de l'émetteur",
|
||||
"Issuer URL - Tooltip": "URL de l'émetteur",
|
||||
"Link copied to clipboard successfully": "Lien copié avec succès dans le presse-papiers",
|
||||
"Key ID": "Key ID",
|
||||
"Key ID - Tooltip": "Key ID - Tooltip",
|
||||
"Key text": "Key text",
|
||||
"Key text - Tooltip": "Key text - Tooltip",
|
||||
"Metadata": "Métadonnées",
|
||||
"Metadata - Tooltip": "Métadonnées SAML",
|
||||
"Method - Tooltip": "Méthode de connexion, code QR ou connexion silencieuse",
|
||||
@ -754,6 +774,10 @@
|
||||
"Sender Id - Tooltip": "ID de l'expéditeur - Infobulle",
|
||||
"Sender number": "Numéro de l'expéditeur",
|
||||
"Sender number - Tooltip": "Numéro de l'expéditeur - Infobulle",
|
||||
"Service ID identifier": "Service ID identifier",
|
||||
"Service ID identifier - Tooltip": "Service ID identifier - Tooltip",
|
||||
"Service account JSON": "Service account JSON",
|
||||
"Service account JSON - Tooltip": "Service account JSON - Tooltip",
|
||||
"Sign Name": "Nom de signature",
|
||||
"Sign Name - Tooltip": "Nom de la signature à utiliser",
|
||||
"Sign request": "Demande de signature",
|
||||
@ -764,12 +788,15 @@
|
||||
"Signup HTML": "HTML de la page d'inscription",
|
||||
"Signup HTML - Edit": "HTML de la page d'inscription - Modifier",
|
||||
"Signup HTML - Tooltip": "HTML personnalisé pour remplacer le style par défaut de la page d'inscription",
|
||||
"Signup group": "Signup group",
|
||||
"Silent": "Silencieux",
|
||||
"Site key": "Clé de site",
|
||||
"Site key - Tooltip": "Clé de site",
|
||||
"Sliding Validation": "Validation glissante",
|
||||
"Sub type": "Sous-type",
|
||||
"Sub type - Tooltip": "Sous-type",
|
||||
"Team ID": "Team ID",
|
||||
"Team ID - Tooltip": "Team ID - Tooltip",
|
||||
"Template code": "Code modèle",
|
||||
"Template code - Tooltip": "Code de modèle",
|
||||
"Test Email": "E-mail de test",
|
||||
@ -780,6 +807,8 @@
|
||||
"Token URL - Tooltip": "URL de jeton",
|
||||
"Type": "Type de texte",
|
||||
"Type - Tooltip": "Sélectionnez un type",
|
||||
"User flow": "User flow",
|
||||
"User flow - Tooltip": "User flow - Tooltip",
|
||||
"User mapping": "Association de compte",
|
||||
"User mapping - Tooltip": "Mapping utilisateur - Infobulle",
|
||||
"UserInfo URL": "URL d'informations utilisateur",
|
||||
@ -801,6 +830,8 @@
|
||||
"New Role": "Nouveau rôle",
|
||||
"Sub domains": "Domaines",
|
||||
"Sub domains - Tooltip": "Domaines pour lesquels s'appliquent le rôle ou la permission",
|
||||
"Sub groups": "Sub groups",
|
||||
"Sub groups - Tooltip": "Sub groups - Tooltip",
|
||||
"Sub roles": "Rôles",
|
||||
"Sub roles - Tooltip": "Rôles pour lesquels s'appliquent le rôle ou la permission",
|
||||
"Sub users": "Comptes",
|
||||
@ -812,6 +843,9 @@
|
||||
"Confirm": "Confirmer",
|
||||
"Decline": "Décliner",
|
||||
"Have account?": "Avez-vous un compte ?",
|
||||
"Label": "Label",
|
||||
"Label HTML": "Label HTML",
|
||||
"Placeholder": "Placeholder",
|
||||
"Please accept the agreement!": "Veuillez accepter l'accord !",
|
||||
"Please click the below button to sign in": "Veuillez cliquer sur le bouton ci-dessous pour vous connecter",
|
||||
"Please confirm your password!": "Veuillez confirmer votre mot de passe !",
|
||||
@ -830,6 +864,11 @@
|
||||
"Please select your country/region!": "Veuillez sélectionner votre pays/région !",
|
||||
"Terms of Use": "Conditions d'utilisation",
|
||||
"Terms of Use - Tooltip": "Conditions d'utilisation qui doivent être lus acceptés lors de l'enregistrement du compte",
|
||||
"Text 1": "Text 1",
|
||||
"Text 2": "Text 2",
|
||||
"Text 3": "Text 3",
|
||||
"Text 4": "Text 4",
|
||||
"Text 5": "Text 5",
|
||||
"The input is not invoice Tax ID!": "L'entrée n'est pas l'identifiant fiscal de la facture !",
|
||||
"The input is not invoice title!": "L'entrée n'est pas un nom ou une dénomination sociale !",
|
||||
"The input is not valid Email!": "L'entrée n'est pas une adresse e-mail valide !",
|
||||
@ -841,14 +880,19 @@
|
||||
"sign in now": "Connectez-vous maintenant"
|
||||
},
|
||||
"subscription": {
|
||||
"Duration": "Durée",
|
||||
"Duration - Tooltip": "Durée de l'abonnement",
|
||||
"Active": "Active",
|
||||
"Edit Subscription": "Modifier l’abonnement",
|
||||
"End date": "Date de fin",
|
||||
"End date - Tooltip": "Date de fin",
|
||||
"End time": "End time",
|
||||
"End time - Tooltip": "End time - Tooltip",
|
||||
"Error": "Error",
|
||||
"Expired": "Expired",
|
||||
"New Subscription": "Nouvel abonnement",
|
||||
"Start date": "Date de début",
|
||||
"Start date - Tooltip": "Date de début"
|
||||
"Pending": "Pending",
|
||||
"Period": "Period",
|
||||
"Start time": "Start time",
|
||||
"Start time - Tooltip": "Start time - Tooltip",
|
||||
"Suspended": "Suspended",
|
||||
"Upcoming": "Upcoming"
|
||||
},
|
||||
"syncer": {
|
||||
"Affiliation table": "Table d'affiliation",
|
||||
@ -872,6 +916,8 @@
|
||||
"Is read-only": "Est en lecture seule",
|
||||
"Is read-only - Tooltip": "En lecture seule - Infobulle",
|
||||
"New Syncer": "Nouveau synchroniseur",
|
||||
"SSL mode": "SSL mode",
|
||||
"SSL mode - Tooltip": "SSL mode - Tooltip",
|
||||
"Sync interval": "Intervalle de synchronisation",
|
||||
"Sync interval - Tooltip": "Unité en secondes",
|
||||
"Table": "Tableau",
|
||||
@ -913,11 +959,19 @@
|
||||
},
|
||||
"token": {
|
||||
"Access token": "Token d'accès",
|
||||
"Access token - Tooltip": "Access token - Tooltip",
|
||||
"Authorization code": "Code d'autorisation",
|
||||
"Authorization code - Tooltip": "Authorization code - Tooltip",
|
||||
"Copy access token": "Copy access token",
|
||||
"Copy parsed result": "Copy parsed result",
|
||||
"Edit Token": "Modifier le jeton",
|
||||
"Expires in": "Expire dans",
|
||||
"Expires in - Tooltip": "Expires in - Tooltip",
|
||||
"New Token": "Nouveau jeton",
|
||||
"Token type": "Type de jeton"
|
||||
"Parsed result": "Parsed result",
|
||||
"Parsed result - Tooltip": "Parsed result - Tooltip",
|
||||
"Token type": "Type de jeton",
|
||||
"Token type - Tooltip": "Token type - Tooltip"
|
||||
},
|
||||
"user": {
|
||||
"3rd-party logins": "Services de connexions tiers",
|
||||
@ -974,6 +1028,8 @@
|
||||
"Managed accounts": "Comptes gérés",
|
||||
"Modify password...": "Modifier le mot de passe...",
|
||||
"Multi-factor authentication": "Authentification multifacteur",
|
||||
"Name": "Name",
|
||||
"Name format": "Name format",
|
||||
"New Email": "Nouvelle adresse e-mail",
|
||||
"New Password": "Nouveau mot de passe",
|
||||
"New User": "Nouveau compte",
|
||||
@ -1011,6 +1067,7 @@
|
||||
"Upload ID card front picture": "Télécharger une photo de l'endroit de la pièce d'identité",
|
||||
"Upload ID card with person picture": "Télécharger une photo la pièce d'identité avec une personne",
|
||||
"Upload a photo": "Télécharger une photo",
|
||||
"Value": "Value",
|
||||
"Values": "Valeurs",
|
||||
"Verification code sent": "Code de vérification envoyé",
|
||||
"WebAuthn credentials": "Identifiants WebAuthn",
|
||||
|
@ -12,7 +12,9 @@
|
||||
"Policies": "Policies",
|
||||
"Policies - Tooltip": "Casbin policy rules",
|
||||
"Rule type": "Rule type",
|
||||
"Sync policies successfully": "Sync policies successfully"
|
||||
"Sync policies successfully": "Sync policies successfully",
|
||||
"Use same DB": "Use same DB",
|
||||
"Use same DB - Tooltip": "Use same DB - Tooltip"
|
||||
},
|
||||
"application": {
|
||||
"Always": "Always",
|
||||
@ -30,6 +32,8 @@
|
||||
"Edit Application": "Edit Application",
|
||||
"Enable Email linking": "Enable Email linking",
|
||||
"Enable Email linking - Tooltip": "When using 3rd-party providers to log in, if there is a user in the organization with the same Email, the 3rd-party login method will be automatically associated with that user",
|
||||
"Enable SAML C14N10": "Enable SAML C14N10",
|
||||
"Enable SAML C14N10 - Tooltip": "Enable SAML C14N10 - Tooltip",
|
||||
"Enable SAML compression": "Enable SAML compression",
|
||||
"Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp",
|
||||
"Enable WebAuthn signin": "Enable WebAuthn signin",
|
||||
@ -42,6 +46,10 @@
|
||||
"Enable signin session - Tooltip": "Whether Casdoor maintains a session after logging into Casdoor from the application",
|
||||
"Enable signup": "Enable signup",
|
||||
"Enable signup - Tooltip": "Whether to allow users to register a new account",
|
||||
"Failed signin frozen time": "Failed signin frozen time",
|
||||
"Failed signin frozen time - Tooltip": "Failed signin frozen time - Tooltip",
|
||||
"Failed signin limit": "Failed signin limit",
|
||||
"Failed signin limit - Tooltip": "Failed signin limit - Tooltip",
|
||||
"Failed to sign in": "Failed to sign in",
|
||||
"File uploaded successfully": "File uploaded successfully",
|
||||
"First, last": "First, last",
|
||||
@ -60,7 +68,6 @@
|
||||
"Input": "Input",
|
||||
"Invitation code": "Invitation code",
|
||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||
"Left": "Left",
|
||||
"Logged in successfully": "Logged in successfully",
|
||||
"Logged out successfully": "Logged out successfully",
|
||||
@ -73,7 +80,6 @@
|
||||
"Please input your application!": "Please input your application!",
|
||||
"Please input your organization!": "Please input your organization!",
|
||||
"Please select a HTML file": "Please select a HTML file",
|
||||
"Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Random": "Random",
|
||||
"Real name": "Real name",
|
||||
"Redirect URL": "Redirect URL",
|
||||
@ -86,7 +92,6 @@
|
||||
"Rule": "Rule",
|
||||
"SAML metadata": "SAML metadata",
|
||||
"SAML metadata - Tooltip": "The metadata of SAML protocol",
|
||||
"SAML metadata URL copied to clipboard successfully": "SAML metadata URL copied to clipboard successfully",
|
||||
"SAML reply URL": "SAML reply URL",
|
||||
"Select": "Select",
|
||||
"Side panel HTML": "Side panel HTML",
|
||||
@ -95,11 +100,9 @@
|
||||
"Sign Up Error": "Sign Up Error",
|
||||
"Signin": "Signin",
|
||||
"Signin (Default True)": "Signin (Default True)",
|
||||
"Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Signin session": "Signin session",
|
||||
"Signup items": "Signup items",
|
||||
"Signup items - Tooltip": "Items for users to fill in when registering new accounts",
|
||||
"Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Tags - Tooltip": "Only users with the tag that is listed in the application tags can login",
|
||||
"The application does not allow to sign up new account": "The application does not allow to sign up new account",
|
||||
"Token expire": "Token expire",
|
||||
@ -113,7 +116,6 @@
|
||||
"Bit size - Tooltip": "Secret key length",
|
||||
"Certificate": "Certificate",
|
||||
"Certificate - Tooltip": "Public key certificate, used for decrypting the JWT signature of the Access Token. This certificate usually needs to be deployed on the Casdoor SDK side (i.e., the application) to parse the JWT",
|
||||
"Certificate copied to clipboard successfully": "Certificate copied to clipboard successfully",
|
||||
"Copy certificate": "Copy certificate",
|
||||
"Copy private key": "Copy private key",
|
||||
"Crypto algorithm": "Crypto algorithm",
|
||||
@ -126,7 +128,6 @@
|
||||
"New Cert": "New Cert",
|
||||
"Private key": "Private key",
|
||||
"Private key - Tooltip": "Private key corresponding to the public key certificate",
|
||||
"Private key copied to clipboard successfully": "Private key copied to clipboard successfully",
|
||||
"Scope - Tooltip": "Usage scenarios of the certificate",
|
||||
"Type - Tooltip": "Type of certificate"
|
||||
},
|
||||
@ -191,6 +192,7 @@
|
||||
"Click to Upload": "Click to Upload",
|
||||
"Close": "Close",
|
||||
"Confirm": "Confirm",
|
||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||
"Copy": "Copy",
|
||||
"Created time": "Created time",
|
||||
"Custom": "Custom",
|
||||
@ -200,6 +202,8 @@
|
||||
"Default application - Tooltip": "Default application for users registered directly from the organization page",
|
||||
"Default avatar": "Default avatar",
|
||||
"Default avatar - Tooltip": "Default avatar used when newly registered users do not set an avatar image",
|
||||
"Default password": "Default password",
|
||||
"Default password - Tooltip": "Default password - Tooltip",
|
||||
"Delete": "Delete",
|
||||
"Description": "Description",
|
||||
"Description - Tooltip": "Detailed description information for reference, Casdoor itself will not use it",
|
||||
@ -218,8 +222,10 @@
|
||||
"Failed to connect to server": "Failed to connect to server",
|
||||
"Failed to delete": "Failed to delete",
|
||||
"Failed to enable": "Failed to enable",
|
||||
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
|
||||
"Failed to remove": "Failed to remove",
|
||||
"Failed to save": "Failed to save",
|
||||
"Failed to sync": "Failed to sync",
|
||||
"Failed to verify": "Failed to verify",
|
||||
"Favicon": "Favicon",
|
||||
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
|
||||
@ -251,6 +257,8 @@
|
||||
"MFA items - Tooltip": "MFA items - Tooltip",
|
||||
"Master password": "Master password",
|
||||
"Master password - Tooltip": "Can be used to log in to all users under this organization, making it convenient for administrators to log in as this user to solve technical issues",
|
||||
"Master verification code": "Master verification code",
|
||||
"Master verification code - Tooltip": "Master verification code - Tooltip",
|
||||
"Menu": "Menu",
|
||||
"Method": "Method",
|
||||
"Model": "Model",
|
||||
@ -272,6 +280,8 @@
|
||||
"Password salt - Tooltip": "Random parameter used for password encryption",
|
||||
"Password type": "Password type",
|
||||
"Password type - Tooltip": "Storage format of passwords in the database",
|
||||
"Payment": "Payment",
|
||||
"Payment - Tooltip": "Payment - Tooltip",
|
||||
"Payments": "Payments",
|
||||
"Permissions": "Permissions",
|
||||
"Permissions - Tooltip": "Permissions owned by this user",
|
||||
@ -283,6 +293,8 @@
|
||||
"Plans - Tooltip": "Plans - Tooltip",
|
||||
"Preview": "Preview",
|
||||
"Preview - Tooltip": "Preview the configured effects",
|
||||
"Pricing": "Pricing",
|
||||
"Pricing - Tooltip": "Pricing - Tooltip",
|
||||
"Pricings": "Pricings",
|
||||
"Products": "Products",
|
||||
"Provider": "Provider",
|
||||
@ -296,6 +308,10 @@
|
||||
"Role - Tooltip": "Role - Tooltip",
|
||||
"Roles": "Roles",
|
||||
"Roles - Tooltip": "Roles that the user belongs to",
|
||||
"Root cert": "Root cert",
|
||||
"Root cert - Tooltip": "Root cert - Tooltip",
|
||||
"SAML attributes": "SAML attributes",
|
||||
"SAML attributes - Tooltip": "SAML attributes - Tooltip",
|
||||
"Save": "Save",
|
||||
"Save & Exit": "Save & Exit",
|
||||
"Session ID": "Session ID",
|
||||
@ -318,6 +334,7 @@
|
||||
"Successfully removed": "Successfully removed",
|
||||
"Successfully saved": "Successfully saved",
|
||||
"Successfully sent": "Successfully sent",
|
||||
"Successfully synced": "Successfully synced",
|
||||
"Supported country codes": "Supported country codes",
|
||||
"Supported country codes - Tooltip": "Country codes supported by the organization. These codes can be selected as a prefix when sending SMS verification codes",
|
||||
"Sure to delete": "Sure to delete",
|
||||
@ -440,7 +457,6 @@
|
||||
"Multi-factor methods": "Multi-factor methods",
|
||||
"Multi-factor recover": "Multi-factor recover",
|
||||
"Multi-factor recover description": "Multi-factor recover description",
|
||||
"Multi-factor secret to clipboard successfully": "Multi-factor secret to clipboard successfully",
|
||||
"Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
|
||||
"Passcode": "Passcode",
|
||||
"Please bind your email first, the system will automatically uses the mail for multi-factor authentication": "Please bind your email first, the system will automatically uses the mail for multi-factor authentication",
|
||||
@ -573,11 +589,13 @@
|
||||
"plan": {
|
||||
"Edit Plan": "Edit Plan",
|
||||
"New Plan": "New Plan",
|
||||
"Price per month": "Price per month",
|
||||
"Price per month - Tooltip": "Price per month - Tooltip",
|
||||
"Price per year": "Price per year",
|
||||
"Price per year - Tooltip": "Price per year - Tooltip",
|
||||
"per month": "per month"
|
||||
"Period": "Period",
|
||||
"Period - Tooltip": "Period - Tooltip",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price - Tooltip",
|
||||
"Related product": "Related product",
|
||||
"per month": "per month",
|
||||
"per year": "per year"
|
||||
},
|
||||
"pricing": {
|
||||
"Copy pricing page URL": "Copy pricing page URL",
|
||||
@ -589,7 +607,7 @@
|
||||
"Trial duration": "Trial duration",
|
||||
"Trial duration - Tooltip": "Trial duration period",
|
||||
"days trial available!": "days trial available!",
|
||||
"pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser"
|
||||
"paid-user do not have active subscription or pending subscription, please select a plan to buy": "paid-user do not have active subscription or pending subscription, please select a plan to buy"
|
||||
},
|
||||
"product": {
|
||||
"Alipay": "Alipay",
|
||||
@ -600,17 +618,16 @@
|
||||
"Detail - Tooltip": "Detail of product",
|
||||
"Dummy": "Dummy",
|
||||
"Edit Product": "Edit Product",
|
||||
"I have completed the payment": "I have completed the payment",
|
||||
"Image": "Image",
|
||||
"Image - Tooltip": "Image of product",
|
||||
"New Product": "New Product",
|
||||
"Pay": "Pay",
|
||||
"PayPal": "PayPal",
|
||||
"Payment cancelled": "Payment cancelled",
|
||||
"Payment failed": "Payment failed",
|
||||
"Payment providers": "Payment providers",
|
||||
"Payment providers - Tooltip": "Providers of payment services",
|
||||
"Placing order...": "Placing order...",
|
||||
"Please provide your username in the remark": "Please provide your username in the remark",
|
||||
"Please scan the QR code to pay": "Please scan the QR code to pay",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price of product",
|
||||
"Quantity": "Quantity",
|
||||
@ -672,8 +689,8 @@
|
||||
"Content": "Content",
|
||||
"Content - Tooltip": "Content - Tooltip",
|
||||
"Copy": "Copy",
|
||||
"DB Test": "DB Test",
|
||||
"DB Test - Tooltip": "DB Test - Tooltip",
|
||||
"DB test": "DB test",
|
||||
"DB test - Tooltip": "DB test - Tooltip",
|
||||
"Disable SSL": "Disable SSL",
|
||||
"Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server",
|
||||
"Domain": "Domain",
|
||||
@ -700,7 +717,10 @@
|
||||
"Internal": "Internal",
|
||||
"Issuer URL": "Issuer URL",
|
||||
"Issuer URL - Tooltip": "Issuer URL",
|
||||
"Link copied to clipboard successfully": "Link copied to clipboard successfully",
|
||||
"Key ID": "Key ID",
|
||||
"Key ID - Tooltip": "Key ID - Tooltip",
|
||||
"Key text": "Key text",
|
||||
"Key text - Tooltip": "Key text - Tooltip",
|
||||
"Metadata": "Metadata",
|
||||
"Metadata - Tooltip": "SAML metadata",
|
||||
"Method - Tooltip": "Login method, QR code or silent login",
|
||||
@ -754,6 +774,10 @@
|
||||
"Sender Id - Tooltip": "Sender Id - Tooltip",
|
||||
"Sender number": "Sender number",
|
||||
"Sender number - Tooltip": "Sender number - Tooltip",
|
||||
"Service ID identifier": "Service ID identifier",
|
||||
"Service ID identifier - Tooltip": "Service ID identifier - Tooltip",
|
||||
"Service account JSON": "Service account JSON",
|
||||
"Service account JSON - Tooltip": "Service account JSON - Tooltip",
|
||||
"Sign Name": "Sign Name",
|
||||
"Sign Name - Tooltip": "Name of the signature to be used",
|
||||
"Sign request": "Sign request",
|
||||
@ -764,12 +788,15 @@
|
||||
"Signup HTML": "Signup HTML",
|
||||
"Signup HTML - Edit": "Signup HTML - Edit",
|
||||
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
|
||||
"Signup group": "Signup group",
|
||||
"Silent": "Silent",
|
||||
"Site key": "Site key",
|
||||
"Site key - Tooltip": "Site key",
|
||||
"Sliding Validation": "Sliding Validation",
|
||||
"Sub type": "Sub type",
|
||||
"Sub type - Tooltip": "Sub type",
|
||||
"Team ID": "Team ID",
|
||||
"Team ID - Tooltip": "Team ID - Tooltip",
|
||||
"Template code": "Template code",
|
||||
"Template code - Tooltip": "Template code",
|
||||
"Test Email": "Test Email",
|
||||
@ -780,6 +807,8 @@
|
||||
"Token URL - Tooltip": "Token URL",
|
||||
"Type": "Type",
|
||||
"Type - Tooltip": "Select a type",
|
||||
"User flow": "User flow",
|
||||
"User flow - Tooltip": "User flow - Tooltip",
|
||||
"User mapping": "User mapping",
|
||||
"User mapping - Tooltip": "User mapping - Tooltip",
|
||||
"UserInfo URL": "UserInfo URL",
|
||||
@ -801,6 +830,8 @@
|
||||
"New Role": "New Role",
|
||||
"Sub domains": "Sub domains",
|
||||
"Sub domains - Tooltip": "Domains included in the current role",
|
||||
"Sub groups": "Sub groups",
|
||||
"Sub groups - Tooltip": "Sub groups - Tooltip",
|
||||
"Sub roles": "Sub roles",
|
||||
"Sub roles - Tooltip": "Roles included in the current role",
|
||||
"Sub users": "Sub users",
|
||||
@ -812,6 +843,9 @@
|
||||
"Confirm": "Confirm",
|
||||
"Decline": "Decline",
|
||||
"Have account?": "Have account?",
|
||||
"Label": "Label",
|
||||
"Label HTML": "Label HTML",
|
||||
"Placeholder": "Placeholder",
|
||||
"Please accept the agreement!": "Please accept the agreement!",
|
||||
"Please click the below button to sign in": "Please click the below button to sign in",
|
||||
"Please confirm your password!": "Please confirm your password!",
|
||||
@ -830,6 +864,11 @@
|
||||
"Please select your country/region!": "Please select your country/region!",
|
||||
"Terms of Use": "Terms of Use",
|
||||
"Terms of Use - Tooltip": "Terms of use that users need to read and agree to during registration",
|
||||
"Text 1": "Text 1",
|
||||
"Text 2": "Text 2",
|
||||
"Text 3": "Text 3",
|
||||
"Text 4": "Text 4",
|
||||
"Text 5": "Text 5",
|
||||
"The input is not invoice Tax ID!": "The input is not invoice Tax ID!",
|
||||
"The input is not invoice title!": "The input is not invoice title!",
|
||||
"The input is not valid Email!": "The input is not valid Email!",
|
||||
@ -841,14 +880,19 @@
|
||||
"sign in now": "sign in now"
|
||||
},
|
||||
"subscription": {
|
||||
"Duration": "Duration",
|
||||
"Duration - Tooltip": "Subscription duration",
|
||||
"Active": "Active",
|
||||
"Edit Subscription": "Edit Subscription",
|
||||
"End date": "End date",
|
||||
"End date - Tooltip": "End date",
|
||||
"End time": "End time",
|
||||
"End time - Tooltip": "End time - Tooltip",
|
||||
"Error": "Error",
|
||||
"Expired": "Expired",
|
||||
"New Subscription": "New Subscription",
|
||||
"Start date": "Start date",
|
||||
"Start date - Tooltip": "Start date"
|
||||
"Pending": "Pending",
|
||||
"Period": "Period",
|
||||
"Start time": "Start time",
|
||||
"Start time - Tooltip": "Start time - Tooltip",
|
||||
"Suspended": "Suspended",
|
||||
"Upcoming": "Upcoming"
|
||||
},
|
||||
"syncer": {
|
||||
"Affiliation table": "Affiliation table",
|
||||
@ -872,6 +916,8 @@
|
||||
"Is read-only": "Is read-only",
|
||||
"Is read-only - Tooltip": "Is read-only - Tooltip",
|
||||
"New Syncer": "New Syncer",
|
||||
"SSL mode": "SSL mode",
|
||||
"SSL mode - Tooltip": "SSL mode - Tooltip",
|
||||
"Sync interval": "Sync interval",
|
||||
"Sync interval - Tooltip": "Unit in seconds",
|
||||
"Table": "Table",
|
||||
@ -913,11 +959,19 @@
|
||||
},
|
||||
"token": {
|
||||
"Access token": "Access token",
|
||||
"Access token - Tooltip": "Access token - Tooltip",
|
||||
"Authorization code": "Authorization code",
|
||||
"Authorization code - Tooltip": "Authorization code - Tooltip",
|
||||
"Copy access token": "Copy access token",
|
||||
"Copy parsed result": "Copy parsed result",
|
||||
"Edit Token": "Edit Token",
|
||||
"Expires in": "Expires in",
|
||||
"Expires in - Tooltip": "Expires in - Tooltip",
|
||||
"New Token": "New Token",
|
||||
"Token type": "Token type"
|
||||
"Parsed result": "Parsed result",
|
||||
"Parsed result - Tooltip": "Parsed result - Tooltip",
|
||||
"Token type": "Token type",
|
||||
"Token type - Tooltip": "Token type - Tooltip"
|
||||
},
|
||||
"user": {
|
||||
"3rd-party logins": "3rd-party logins",
|
||||
@ -974,6 +1028,8 @@
|
||||
"Managed accounts": "Managed accounts",
|
||||
"Modify password...": "Modify password...",
|
||||
"Multi-factor authentication": "Multi-factor authentication",
|
||||
"Name": "Name",
|
||||
"Name format": "Name format",
|
||||
"New Email": "New Email",
|
||||
"New Password": "New Password",
|
||||
"New User": "New User",
|
||||
@ -1011,6 +1067,7 @@
|
||||
"Upload ID card front picture": "Upload ID card front picture",
|
||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||
"Upload a photo": "Upload a photo",
|
||||
"Value": "Value",
|
||||
"Values": "Values",
|
||||
"Verification code sent": "Verification code sent",
|
||||
"WebAuthn credentials": "WebAuthn credentials",
|
||||
|
@ -12,7 +12,9 @@
|
||||
"Policies": "Kebijakan",
|
||||
"Policies - Tooltip": "Kebijakan aturan Casbin",
|
||||
"Rule type": "Rule type",
|
||||
"Sync policies successfully": "Sinkronisasi kebijakan berhasil dilakukan"
|
||||
"Sync policies successfully": "Sinkronisasi kebijakan berhasil dilakukan",
|
||||
"Use same DB": "Use same DB",
|
||||
"Use same DB - Tooltip": "Use same DB - Tooltip"
|
||||
},
|
||||
"application": {
|
||||
"Always": "Selalu",
|
||||
@ -30,6 +32,8 @@
|
||||
"Edit Application": "Mengedit aplikasi",
|
||||
"Enable Email linking": "Aktifkan pengaitan email",
|
||||
"Enable Email linking - Tooltip": "Ketika menggunakan penyedia layanan pihak ketiga untuk masuk, jika ada pengguna di organisasi dengan email yang sama, metode login pihak ketiga akan secara otomatis terhubung dengan pengguna tersebut",
|
||||
"Enable SAML C14N10": "Enable SAML C14N10",
|
||||
"Enable SAML C14N10 - Tooltip": "Enable SAML C14N10 - Tooltip",
|
||||
"Enable SAML compression": "Aktifkan kompresi SAML",
|
||||
"Enable SAML compression - Tooltip": "Apakah pesan respons SAML harus dikompres saat Casdoor digunakan sebagai SAML idp?",
|
||||
"Enable WebAuthn signin": "Aktifkan masuk WebAuthn",
|
||||
@ -42,6 +46,10 @@
|
||||
"Enable signin session - Tooltip": "Apakah Casdoor mempertahankan sesi setelah login ke Casdoor dari aplikasi",
|
||||
"Enable signup": "Aktifkan pendaftaran",
|
||||
"Enable signup - Tooltip": "Apakah akan mengizinkan pengguna untuk mendaftar akun baru",
|
||||
"Failed signin frozen time": "Failed signin frozen time",
|
||||
"Failed signin frozen time - Tooltip": "Failed signin frozen time - Tooltip",
|
||||
"Failed signin limit": "Failed signin limit",
|
||||
"Failed signin limit - Tooltip": "Failed signin limit - Tooltip",
|
||||
"Failed to sign in": "Gagal masuk",
|
||||
"File uploaded successfully": "Berkas telah diunggah dengan sukses",
|
||||
"First, last": "First, last",
|
||||
@ -60,7 +68,6 @@
|
||||
"Input": "Input",
|
||||
"Invitation code": "Invitation code",
|
||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||
"Left": "Kiri",
|
||||
"Logged in successfully": "Berhasil masuk",
|
||||
"Logged out successfully": "Berhasil keluar dari sistem",
|
||||
@ -73,7 +80,6 @@
|
||||
"Please input your application!": "Silakan masukkan aplikasi Anda!",
|
||||
"Please input your organization!": "Silakan masukkan organisasi Anda!",
|
||||
"Please select a HTML file": "Silahkan pilih file HTML",
|
||||
"Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Tautan halaman Prompt berhasil disalin ke papan klip, silakan tempelkan ke jendela penyamaran atau browser lainnya",
|
||||
"Random": "Random",
|
||||
"Real name": "Real name",
|
||||
"Redirect URL": "Mengalihkan URL",
|
||||
@ -86,7 +92,6 @@
|
||||
"Rule": "Aturan",
|
||||
"SAML metadata": "Metadata SAML",
|
||||
"SAML metadata - Tooltip": "Metadata dari protokol SAML",
|
||||
"SAML metadata URL copied to clipboard successfully": "URL metadata SAML berhasil disalin ke clipboard",
|
||||
"SAML reply URL": "Alamat URL Balasan SAML",
|
||||
"Select": "Select",
|
||||
"Side panel HTML": "Panel samping HTML",
|
||||
@ -95,11 +100,9 @@
|
||||
"Sign Up Error": "Kesalahan Pendaftaran",
|
||||
"Signin": "Signin",
|
||||
"Signin (Default True)": "Signin (Default True)",
|
||||
"Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "URL halaman masuk berhasil disalin ke clipboard, silakan tempelkan di jendela penyamaran atau browser lainnya",
|
||||
"Signin session": "Sesi masuk",
|
||||
"Signup items": "Item pendaftaran",
|
||||
"Signup items - Tooltip": "Item-item yang harus diisi pengguna saat mendaftar untuk akun baru",
|
||||
"Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Tautan halaman pendaftaran URL berhasil disalin ke papan klip, silakan tempelkan ke dalam jendela incognito atau browser lain",
|
||||
"Tags - Tooltip": "Only users with the tag that is listed in the application tags can login",
|
||||
"The application does not allow to sign up new account": "Aplikasi tidak memperbolehkan untuk mendaftar akun baru",
|
||||
"Token expire": "Token kadaluarsa",
|
||||
@ -113,7 +116,6 @@
|
||||
"Bit size - Tooltip": "Panjang kunci rahasia",
|
||||
"Certificate": "Sertifikat",
|
||||
"Certificate - Tooltip": "Sertifikat kunci publik, digunakan untuk mendekripsi tanda tangan JWT pada Access Token. Sertifikat ini biasanya perlu diimplementasikan pada sisi SDK Casdoor (yaitu aplikasi) untuk memecahkan JWT",
|
||||
"Certificate copied to clipboard successfully": "Sertifikat berhasil disalin ke clipboard",
|
||||
"Copy certificate": "Salin sertifikat",
|
||||
"Copy private key": "Salin kunci pribadi",
|
||||
"Crypto algorithm": "Algoritma kriptografi",
|
||||
@ -126,7 +128,6 @@
|
||||
"New Cert": "Sertifikat Baru",
|
||||
"Private key": "Kunci pribadi",
|
||||
"Private key - Tooltip": "Kunci pribadi yang sesuai dengan sertifikat kunci publik",
|
||||
"Private key copied to clipboard successfully": "Kunci pribadi berhasil disalin ke clipboard",
|
||||
"Scope - Tooltip": "Skema penggunaan sertifikat:",
|
||||
"Type - Tooltip": "Jenis sertifikat"
|
||||
},
|
||||
@ -191,6 +192,7 @@
|
||||
"Click to Upload": "Klik untuk Mengunggah",
|
||||
"Close": "Tutup",
|
||||
"Confirm": "Confirm",
|
||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||
"Copy": "Copy",
|
||||
"Created time": "Waktu dibuat",
|
||||
"Custom": "Custom",
|
||||
@ -200,6 +202,8 @@
|
||||
"Default application - Tooltip": "Aplikasi default untuk pengguna yang terdaftar langsung dari halaman organisasi",
|
||||
"Default avatar": "Avatar default",
|
||||
"Default avatar - Tooltip": "Avatar default yang digunakan ketika pengguna yang baru terdaftar tidak mengatur gambar avatar",
|
||||
"Default password": "Default password",
|
||||
"Default password - Tooltip": "Default password - Tooltip",
|
||||
"Delete": "Hapus",
|
||||
"Description": "Deskripsi",
|
||||
"Description - Tooltip": "Informasi deskripsi terperinci untuk referensi, Casdoor itu sendiri tidak akan menggunakannya",
|
||||
@ -218,8 +222,10 @@
|
||||
"Failed to connect to server": "Gagal terhubung ke server",
|
||||
"Failed to delete": "Gagal menghapus",
|
||||
"Failed to enable": "Failed to enable",
|
||||
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
|
||||
"Failed to remove": "Failed to remove",
|
||||
"Failed to save": "Gagal menyimpan",
|
||||
"Failed to sync": "Failed to sync",
|
||||
"Failed to verify": "Failed to verify",
|
||||
"Favicon": "Favicon",
|
||||
"Favicon - Tooltip": "URL ikon Favicon yang digunakan di semua halaman Casdoor organisasi",
|
||||
@ -251,6 +257,8 @@
|
||||
"MFA items - Tooltip": "MFA items - Tooltip",
|
||||
"Master password": "Kata sandi utama",
|
||||
"Master password - Tooltip": "Dapat digunakan untuk masuk ke semua pengguna di bawah organisasi ini, sehingga memudahkan administrator untuk masuk sebagai pengguna ini untuk menyelesaikan masalah teknis",
|
||||
"Master verification code": "Master verification code",
|
||||
"Master verification code - Tooltip": "Master verification code - Tooltip",
|
||||
"Menu": "Daftar makanan",
|
||||
"Method": "Metode",
|
||||
"Model": "Model",
|
||||
@ -272,6 +280,8 @@
|
||||
"Password salt - Tooltip": "Parameter acak yang digunakan untuk enkripsi kata sandi",
|
||||
"Password type": "Jenis kata sandi",
|
||||
"Password type - Tooltip": "Format penyimpanan kata sandi di database",
|
||||
"Payment": "Payment",
|
||||
"Payment - Tooltip": "Payment - Tooltip",
|
||||
"Payments": "Pembayaran-pembayaran",
|
||||
"Permissions": "Izin-izin",
|
||||
"Permissions - Tooltip": "Izin dimiliki oleh pengguna ini",
|
||||
@ -283,6 +293,8 @@
|
||||
"Plans - Tooltip": "Plans - Tooltip",
|
||||
"Preview": "Tinjauan",
|
||||
"Preview - Tooltip": "Mengawali pratinjau efek yang sudah dikonfigurasi",
|
||||
"Pricing": "Pricing",
|
||||
"Pricing - Tooltip": "Pricing - Tooltip",
|
||||
"Pricings": "Harga",
|
||||
"Products": "Produk",
|
||||
"Provider": "Penyedia",
|
||||
@ -296,6 +308,10 @@
|
||||
"Role - Tooltip": "Role - Tooltip",
|
||||
"Roles": "Peran-peran",
|
||||
"Roles - Tooltip": "Peran-peran yang diikuti oleh pengguna",
|
||||
"Root cert": "Root cert",
|
||||
"Root cert - Tooltip": "Root cert - Tooltip",
|
||||
"SAML attributes": "SAML attributes",
|
||||
"SAML attributes - Tooltip": "SAML attributes - Tooltip",
|
||||
"Save": "Menyimpan",
|
||||
"Save & Exit": "Simpan & Keluar",
|
||||
"Session ID": "ID sesi",
|
||||
@ -318,6 +334,7 @@
|
||||
"Successfully removed": "Successfully removed",
|
||||
"Successfully saved": "Berhasil disimpan",
|
||||
"Successfully sent": "Successfully sent",
|
||||
"Successfully synced": "Successfully synced",
|
||||
"Supported country codes": "Kode negara yang didukung",
|
||||
"Supported country codes - Tooltip": "Kode negara yang didukung oleh organisasi. Kode-kode ini dapat dipilih sebagai awalan saat mengirim kode verifikasi SMS",
|
||||
"Sure to delete": "Pasti untuk menghapus",
|
||||
@ -440,7 +457,6 @@
|
||||
"Multi-factor methods": "Multi-factor methods",
|
||||
"Multi-factor recover": "Multi-factor recover",
|
||||
"Multi-factor recover description": "Multi-factor recover description",
|
||||
"Multi-factor secret to clipboard successfully": "Multi-factor secret to clipboard successfully",
|
||||
"Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
|
||||
"Passcode": "Passcode",
|
||||
"Please bind your email first, the system will automatically uses the mail for multi-factor authentication": "Please bind your email first, the system will automatically uses the mail for multi-factor authentication",
|
||||
@ -573,11 +589,13 @@
|
||||
"plan": {
|
||||
"Edit Plan": "Edit Plan",
|
||||
"New Plan": "New Plan",
|
||||
"Price per month": "Price per month",
|
||||
"Price per month - Tooltip": "Price per month - Tooltip",
|
||||
"Price per year": "Price per year",
|
||||
"Price per year - Tooltip": "Price per year - Tooltip",
|
||||
"per month": "per bulan"
|
||||
"Period": "Period",
|
||||
"Period - Tooltip": "Period - Tooltip",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price - Tooltip",
|
||||
"Related product": "Related product",
|
||||
"per month": "per bulan",
|
||||
"per year": "per year"
|
||||
},
|
||||
"pricing": {
|
||||
"Copy pricing page URL": "Salin URL halaman harga",
|
||||
@ -589,7 +607,7 @@
|
||||
"Trial duration": "Durasi percobaan",
|
||||
"Trial duration - Tooltip": "Durasi periode percobaan",
|
||||
"days trial available!": "hari percobaan tersedia!",
|
||||
"pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "URL halaman harga berhasil disalin ke clipboard, silakan tempelkan ke dalam jendela mode penyamaran atau browser lainnya"
|
||||
"paid-user do not have active subscription or pending subscription, please select a plan to buy": "paid-user do not have active subscription or pending subscription, please select a plan to buy"
|
||||
},
|
||||
"product": {
|
||||
"Alipay": "Alipay",
|
||||
@ -600,17 +618,16 @@
|
||||
"Detail - Tooltip": "Detail produk",
|
||||
"Dummy": "Dummy",
|
||||
"Edit Product": "Edit Produk",
|
||||
"I have completed the payment": "Saya telah menyelesaikan pembayaran",
|
||||
"Image": "Gambar",
|
||||
"Image - Tooltip": "Gambar produk",
|
||||
"New Product": "Produk Baru",
|
||||
"Pay": "Bayar",
|
||||
"PayPal": "Paypal",
|
||||
"Payment cancelled": "Payment cancelled",
|
||||
"Payment failed": "Payment failed",
|
||||
"Payment providers": "Penyedia pembayaran",
|
||||
"Payment providers - Tooltip": "Penyedia layanan pembayaran",
|
||||
"Placing order...": "Menempatkan pesanan...",
|
||||
"Please provide your username in the remark": "Tolong berikan nama pengguna Anda dalam komentar",
|
||||
"Please scan the QR code to pay": "Silakan pemindaian kode QR untuk pembayaran",
|
||||
"Price": "Harga",
|
||||
"Price - Tooltip": "Harga produk",
|
||||
"Quantity": "Kuantitas",
|
||||
@ -672,8 +689,8 @@
|
||||
"Content": "Content",
|
||||
"Content - Tooltip": "Content - Tooltip",
|
||||
"Copy": "Salin",
|
||||
"DB Test": "DB Test",
|
||||
"DB Test - Tooltip": "DB Test - Tooltip",
|
||||
"DB test": "DB test",
|
||||
"DB test - Tooltip": "DB test - Tooltip",
|
||||
"Disable SSL": "Menonaktifkan SSL",
|
||||
"Disable SSL - Tooltip": "Apakah perlu menonaktifkan protokol SSL saat berkomunikasi dengan server STMP?",
|
||||
"Domain": "Domain",
|
||||
@ -700,7 +717,10 @@
|
||||
"Internal": "Internal",
|
||||
"Issuer URL": "URL penerbit",
|
||||
"Issuer URL - Tooltip": "URL Penerbit",
|
||||
"Link copied to clipboard successfully": "Tautan berhasil disalin ke papan klip",
|
||||
"Key ID": "Key ID",
|
||||
"Key ID - Tooltip": "Key ID - Tooltip",
|
||||
"Key text": "Key text",
|
||||
"Key text - Tooltip": "Key text - Tooltip",
|
||||
"Metadata": "Metadata: data yang menjelaskan atau memberikan informasi tentang data atau informasi digital lainnya, seperti informasi mengenai sumber data, format, waktu pembuatan, penulis, dan informasi lainnya yang dapat membantu dalam pengelolaan dan pemrosesan data",
|
||||
"Metadata - Tooltip": "Metadata SAML",
|
||||
"Method - Tooltip": "Metode login, kode QR atau login tanpa suara",
|
||||
@ -754,6 +774,10 @@
|
||||
"Sender Id - Tooltip": "Sender Id - Tooltip",
|
||||
"Sender number": "Sender number",
|
||||
"Sender number - Tooltip": "Sender number - Tooltip",
|
||||
"Service ID identifier": "Service ID identifier",
|
||||
"Service ID identifier - Tooltip": "Service ID identifier - Tooltip",
|
||||
"Service account JSON": "Service account JSON",
|
||||
"Service account JSON - Tooltip": "Service account JSON - Tooltip",
|
||||
"Sign Name": "Tanda Tangan",
|
||||
"Sign Name - Tooltip": "Nama tanda tangan yang akan digunakan",
|
||||
"Sign request": "Permintaan tanda tangan",
|
||||
@ -764,12 +788,15 @@
|
||||
"Signup HTML": "Pendaftaran HTML",
|
||||
"Signup HTML - Edit": "Pendaftaran HTML - Sunting",
|
||||
"Signup HTML - Tooltip": "HTML khusus untuk mengganti gaya halaman pendaftaran bawaan",
|
||||
"Signup group": "Signup group",
|
||||
"Silent": "Silent",
|
||||
"Site key": "Kunci situs",
|
||||
"Site key - Tooltip": "Kunci situs atau kunci halaman web",
|
||||
"Sliding Validation": "Sliding Validation",
|
||||
"Sub type": "Sub jenis",
|
||||
"Sub type - Tooltip": "Sub jenis",
|
||||
"Team ID": "Team ID",
|
||||
"Team ID - Tooltip": "Team ID - Tooltip",
|
||||
"Template code": "Kode template",
|
||||
"Template code - Tooltip": "Kode template",
|
||||
"Test Email": "Email Uji Coba",
|
||||
@ -780,6 +807,8 @@
|
||||
"Token URL - Tooltip": "Token URL: URL Token",
|
||||
"Type": "Jenis",
|
||||
"Type - Tooltip": "Pilih tipe",
|
||||
"User flow": "User flow",
|
||||
"User flow - Tooltip": "User flow - Tooltip",
|
||||
"User mapping": "User mapping",
|
||||
"User mapping - Tooltip": "User mapping - Tooltip",
|
||||
"UserInfo URL": "URL UserInfo",
|
||||
@ -801,6 +830,8 @@
|
||||
"New Role": "Peran Baru",
|
||||
"Sub domains": "Sub domain-sub domain",
|
||||
"Sub domains - Tooltip": "Domain yang termasuk dalam peran saat ini",
|
||||
"Sub groups": "Sub groups",
|
||||
"Sub groups - Tooltip": "Sub groups - Tooltip",
|
||||
"Sub roles": "Peran tambahan",
|
||||
"Sub roles - Tooltip": "Terjemahkan ke bahasa Indonesia: Peran yang termasuk dalam peran saat ini",
|
||||
"Sub users": "Pengguna sub",
|
||||
@ -812,6 +843,9 @@
|
||||
"Confirm": "Konfirmasi",
|
||||
"Decline": "Menurun",
|
||||
"Have account?": "Punya akun?",
|
||||
"Label": "Label",
|
||||
"Label HTML": "Label HTML",
|
||||
"Placeholder": "Placeholder",
|
||||
"Please accept the agreement!": "Tolong terima perjanjian ini!",
|
||||
"Please click the below button to sign in": "Silakan klik tombol di bawah ini untuk masuk",
|
||||
"Please confirm your password!": "Tolong konfirmasi kata sandi Anda!",
|
||||
@ -830,6 +864,11 @@
|
||||
"Please select your country/region!": "Silakan pilih negara/region Anda!",
|
||||
"Terms of Use": "Syarat Penggunaan",
|
||||
"Terms of Use - Tooltip": "Syarat penggunaan yang harus dibaca dan disetujui oleh pengguna selama proses registrasi",
|
||||
"Text 1": "Text 1",
|
||||
"Text 2": "Text 2",
|
||||
"Text 3": "Text 3",
|
||||
"Text 4": "Text 4",
|
||||
"Text 5": "Text 5",
|
||||
"The input is not invoice Tax ID!": "Input ini bukan Tax ID faktur!",
|
||||
"The input is not invoice title!": "Masukan bukan judul faktur!",
|
||||
"The input is not valid Email!": "Input yang dimasukkan bukan sesuai dengan format Email yang valid!",
|
||||
@ -841,14 +880,19 @@
|
||||
"sign in now": "Masuk sekarang"
|
||||
},
|
||||
"subscription": {
|
||||
"Duration": "Durasi",
|
||||
"Duration - Tooltip": "Durasi langganan",
|
||||
"Active": "Active",
|
||||
"Edit Subscription": "Edit Subscription",
|
||||
"End date": "Tanggal Berakhir",
|
||||
"End date - Tooltip": "Tanggal Berakhir",
|
||||
"End time": "End time",
|
||||
"End time - Tooltip": "End time - Tooltip",
|
||||
"Error": "Error",
|
||||
"Expired": "Expired",
|
||||
"New Subscription": "New Subscription",
|
||||
"Start date": "Tanggal Mulai",
|
||||
"Start date - Tooltip": "Tanggal Mulai"
|
||||
"Pending": "Pending",
|
||||
"Period": "Period",
|
||||
"Start time": "Start time",
|
||||
"Start time - Tooltip": "Start time - Tooltip",
|
||||
"Suspended": "Suspended",
|
||||
"Upcoming": "Upcoming"
|
||||
},
|
||||
"syncer": {
|
||||
"Affiliation table": "Tabel afiliasi",
|
||||
@ -872,6 +916,8 @@
|
||||
"Is read-only": "Is read-only",
|
||||
"Is read-only - Tooltip": "Is read-only - Tooltip",
|
||||
"New Syncer": "Sinkronisasi Baru",
|
||||
"SSL mode": "SSL mode",
|
||||
"SSL mode - Tooltip": "SSL mode - Tooltip",
|
||||
"Sync interval": "Interval sinkronisasi",
|
||||
"Sync interval - Tooltip": "Satuan dalam detik",
|
||||
"Table": "Tabel",
|
||||
@ -913,11 +959,19 @@
|
||||
},
|
||||
"token": {
|
||||
"Access token": "Token akses",
|
||||
"Access token - Tooltip": "Access token - Tooltip",
|
||||
"Authorization code": "Kode otorisasi",
|
||||
"Authorization code - Tooltip": "Authorization code - Tooltip",
|
||||
"Copy access token": "Copy access token",
|
||||
"Copy parsed result": "Copy parsed result",
|
||||
"Edit Token": "Mengedit Token",
|
||||
"Expires in": "Berakhir pada",
|
||||
"Expires in - Tooltip": "Expires in - Tooltip",
|
||||
"New Token": "Token baru",
|
||||
"Token type": "Jenis token"
|
||||
"Parsed result": "Parsed result",
|
||||
"Parsed result - Tooltip": "Parsed result - Tooltip",
|
||||
"Token type": "Jenis token",
|
||||
"Token type - Tooltip": "Token type - Tooltip"
|
||||
},
|
||||
"user": {
|
||||
"3rd-party logins": "Masuk pihak ketiga",
|
||||
@ -974,6 +1028,8 @@
|
||||
"Managed accounts": "Akun yang dikelola",
|
||||
"Modify password...": "Mengubah kata sandi...",
|
||||
"Multi-factor authentication": "Multi-factor authentication",
|
||||
"Name": "Name",
|
||||
"Name format": "Name format",
|
||||
"New Email": "Email baru",
|
||||
"New Password": "Kata Sandi Baru",
|
||||
"New User": "Pengguna Baru",
|
||||
@ -1011,6 +1067,7 @@
|
||||
"Upload ID card front picture": "Upload ID card front picture",
|
||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||
"Upload a photo": "Unggah foto",
|
||||
"Value": "Value",
|
||||
"Values": "Nilai-nilai",
|
||||
"Verification code sent": "Kode verifikasi telah dikirim",
|
||||
"WebAuthn credentials": "Kredensial WebAuthn",
|
||||
|
@ -12,7 +12,9 @@
|
||||
"Policies": "Policy",
|
||||
"Policies - Tooltip": "Regole Casbin",
|
||||
"Rule type": "Rule type",
|
||||
"Sync policies successfully": "Sincronizzazione delle policy completata correttamente"
|
||||
"Sync policies successfully": "Sincronizzazione delle policy completata correttamente",
|
||||
"Use same DB": "Use same DB",
|
||||
"Use same DB - Tooltip": "Use same DB - Tooltip"
|
||||
},
|
||||
"application": {
|
||||
"Always": "Sempre",
|
||||
@ -30,6 +32,8 @@
|
||||
"Edit Application": "Edit Application",
|
||||
"Enable Email linking": "Enable Email linking",
|
||||
"Enable Email linking - Tooltip": "When using 3rd-party providers to log in, if there is a user in the organization with the same Email, the 3rd-party login method will be automatically associated with that user",
|
||||
"Enable SAML C14N10": "Enable SAML C14N10",
|
||||
"Enable SAML C14N10 - Tooltip": "Enable SAML C14N10 - Tooltip",
|
||||
"Enable SAML compression": "Enable SAML compression",
|
||||
"Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp",
|
||||
"Enable WebAuthn signin": "Enable WebAuthn signin",
|
||||
@ -42,6 +46,10 @@
|
||||
"Enable signin session - Tooltip": "Whether Casdoor maintains a session after logging into Casdoor from the application",
|
||||
"Enable signup": "Enable signup",
|
||||
"Enable signup - Tooltip": "Whether to allow users to register a new account",
|
||||
"Failed signin frozen time": "Failed signin frozen time",
|
||||
"Failed signin frozen time - Tooltip": "Failed signin frozen time - Tooltip",
|
||||
"Failed signin limit": "Failed signin limit",
|
||||
"Failed signin limit - Tooltip": "Failed signin limit - Tooltip",
|
||||
"Failed to sign in": "Failed to sign in",
|
||||
"File uploaded successfully": "File uploaded successfully",
|
||||
"First, last": "First, last",
|
||||
@ -60,7 +68,6 @@
|
||||
"Input": "Input",
|
||||
"Invitation code": "Invitation code",
|
||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||
"Left": "Left",
|
||||
"Logged in successfully": "Logged in successfully",
|
||||
"Logged out successfully": "Logged out successfully",
|
||||
@ -73,7 +80,6 @@
|
||||
"Please input your application!": "Please input your application!",
|
||||
"Please input your organization!": "Please input your organization!",
|
||||
"Please select a HTML file": "Please select a HTML file",
|
||||
"Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Random": "Random",
|
||||
"Real name": "Real name",
|
||||
"Redirect URL": "Redirect URL",
|
||||
@ -86,7 +92,6 @@
|
||||
"Rule": "Rule",
|
||||
"SAML metadata": "SAML metadata",
|
||||
"SAML metadata - Tooltip": "The metadata of SAML protocol",
|
||||
"SAML metadata URL copied to clipboard successfully": "SAML metadata URL copied to clipboard successfully",
|
||||
"SAML reply URL": "SAML reply URL",
|
||||
"Select": "Select",
|
||||
"Side panel HTML": "Side panel HTML",
|
||||
@ -95,11 +100,9 @@
|
||||
"Sign Up Error": "Sign Up Error",
|
||||
"Signin": "Signin",
|
||||
"Signin (Default True)": "Signin (Default True)",
|
||||
"Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Signin session": "Signin session",
|
||||
"Signup items": "Signup items",
|
||||
"Signup items - Tooltip": "Items for users to fill in when registering new accounts",
|
||||
"Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Tags - Tooltip": "Only users with the tag that is listed in the application tags can login",
|
||||
"The application does not allow to sign up new account": "The application does not allow to sign up new account",
|
||||
"Token expire": "Token expire",
|
||||
@ -113,7 +116,6 @@
|
||||
"Bit size - Tooltip": "Secret key length",
|
||||
"Certificate": "Certificate",
|
||||
"Certificate - Tooltip": "Public key certificate, used for decrypting the JWT signature of the Access Token. This certificate usually needs to be deployed on the Casdoor SDK side (i.e., the application) to parse the JWT",
|
||||
"Certificate copied to clipboard successfully": "Certificate copied to clipboard successfully",
|
||||
"Copy certificate": "Copy certificate",
|
||||
"Copy private key": "Copy private key",
|
||||
"Crypto algorithm": "Crypto algorithm",
|
||||
@ -126,7 +128,6 @@
|
||||
"New Cert": "New Cert",
|
||||
"Private key": "Private key",
|
||||
"Private key - Tooltip": "Private key corresponding to the public key certificate",
|
||||
"Private key copied to clipboard successfully": "Private key copied to clipboard successfully",
|
||||
"Scope - Tooltip": "Usage scenarios of the certificate",
|
||||
"Type - Tooltip": "Type of certificate"
|
||||
},
|
||||
@ -191,6 +192,7 @@
|
||||
"Click to Upload": "Click to Upload",
|
||||
"Close": "Close",
|
||||
"Confirm": "Confirm",
|
||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||
"Copy": "Copy",
|
||||
"Created time": "Created time",
|
||||
"Custom": "Custom",
|
||||
@ -200,6 +202,8 @@
|
||||
"Default application - Tooltip": "Default application for users registered directly from the organization page",
|
||||
"Default avatar": "Default avatar",
|
||||
"Default avatar - Tooltip": "Default avatar used when newly registered users do not set an avatar image",
|
||||
"Default password": "Default password",
|
||||
"Default password - Tooltip": "Default password - Tooltip",
|
||||
"Delete": "Delete",
|
||||
"Description": "Description",
|
||||
"Description - Tooltip": "Detailed description information for reference, Casdoor itself will not use it",
|
||||
@ -218,8 +222,10 @@
|
||||
"Failed to connect to server": "Failed to connect to server",
|
||||
"Failed to delete": "Failed to delete",
|
||||
"Failed to enable": "Failed to enable",
|
||||
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
|
||||
"Failed to remove": "Failed to remove",
|
||||
"Failed to save": "Failed to save",
|
||||
"Failed to sync": "Failed to sync",
|
||||
"Failed to verify": "Failed to verify",
|
||||
"Favicon": "Favicon",
|
||||
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
|
||||
@ -251,6 +257,8 @@
|
||||
"MFA items - Tooltip": "MFA items - Tooltip",
|
||||
"Master password": "Master password",
|
||||
"Master password - Tooltip": "Can be used to log in to all users under this organization, making it convenient for administrators to log in as this user to solve technical issues",
|
||||
"Master verification code": "Master verification code",
|
||||
"Master verification code - Tooltip": "Master verification code - Tooltip",
|
||||
"Menu": "Menu",
|
||||
"Method": "Method",
|
||||
"Model": "Model",
|
||||
@ -272,6 +280,8 @@
|
||||
"Password salt - Tooltip": "Random parameter used for password encryption",
|
||||
"Password type": "Password type",
|
||||
"Password type - Tooltip": "Storage format of passwords in the database",
|
||||
"Payment": "Payment",
|
||||
"Payment - Tooltip": "Payment - Tooltip",
|
||||
"Payments": "Payments",
|
||||
"Permissions": "Permissions",
|
||||
"Permissions - Tooltip": "Permissions owned by this user",
|
||||
@ -283,6 +293,8 @@
|
||||
"Plans - Tooltip": "Plans - Tooltip",
|
||||
"Preview": "Preview",
|
||||
"Preview - Tooltip": "Preview the configured effects",
|
||||
"Pricing": "Pricing",
|
||||
"Pricing - Tooltip": "Pricing - Tooltip",
|
||||
"Pricings": "Pricings",
|
||||
"Products": "Products",
|
||||
"Provider": "Provider",
|
||||
@ -296,6 +308,10 @@
|
||||
"Role - Tooltip": "Role - Tooltip",
|
||||
"Roles": "Roles",
|
||||
"Roles - Tooltip": "Roles that the user belongs to",
|
||||
"Root cert": "Root cert",
|
||||
"Root cert - Tooltip": "Root cert - Tooltip",
|
||||
"SAML attributes": "SAML attributes",
|
||||
"SAML attributes - Tooltip": "SAML attributes - Tooltip",
|
||||
"Save": "Save",
|
||||
"Save & Exit": "Save & Exit",
|
||||
"Session ID": "Session ID",
|
||||
@ -318,6 +334,7 @@
|
||||
"Successfully removed": "Successfully removed",
|
||||
"Successfully saved": "Successfully saved",
|
||||
"Successfully sent": "Successfully sent",
|
||||
"Successfully synced": "Successfully synced",
|
||||
"Supported country codes": "Supported country codes",
|
||||
"Supported country codes - Tooltip": "Country codes supported by the organization. These codes can be selected as a prefix when sending SMS verification codes",
|
||||
"Sure to delete": "Sure to delete",
|
||||
@ -440,7 +457,6 @@
|
||||
"Multi-factor methods": "Multi-factor methods",
|
||||
"Multi-factor recover": "Multi-factor recover",
|
||||
"Multi-factor recover description": "Multi-factor recover description",
|
||||
"Multi-factor secret to clipboard successfully": "Multi-factor secret to clipboard successfully",
|
||||
"Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
|
||||
"Passcode": "Passcode",
|
||||
"Please bind your email first, the system will automatically uses the mail for multi-factor authentication": "Please bind your email first, the system will automatically uses the mail for multi-factor authentication",
|
||||
@ -573,11 +589,13 @@
|
||||
"plan": {
|
||||
"Edit Plan": "Edit Plan",
|
||||
"New Plan": "New Plan",
|
||||
"Price per month": "Price per month",
|
||||
"Price per month - Tooltip": "Price per month - Tooltip",
|
||||
"Price per year": "Price per year",
|
||||
"Price per year - Tooltip": "Price per year - Tooltip",
|
||||
"per month": "per month"
|
||||
"Period": "Period",
|
||||
"Period - Tooltip": "Period - Tooltip",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price - Tooltip",
|
||||
"Related product": "Related product",
|
||||
"per month": "per month",
|
||||
"per year": "per year"
|
||||
},
|
||||
"pricing": {
|
||||
"Copy pricing page URL": "Copy pricing page URL",
|
||||
@ -589,7 +607,7 @@
|
||||
"Trial duration": "Trial duration",
|
||||
"Trial duration - Tooltip": "Trial duration period",
|
||||
"days trial available!": "days trial available!",
|
||||
"pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser"
|
||||
"paid-user do not have active subscription or pending subscription, please select a plan to buy": "paid-user do not have active subscription or pending subscription, please select a plan to buy"
|
||||
},
|
||||
"product": {
|
||||
"Alipay": "Alipay",
|
||||
@ -600,17 +618,16 @@
|
||||
"Detail - Tooltip": "Detail of product",
|
||||
"Dummy": "Dummy",
|
||||
"Edit Product": "Edit Product",
|
||||
"I have completed the payment": "I have completed the payment",
|
||||
"Image": "Image",
|
||||
"Image - Tooltip": "Image of product",
|
||||
"New Product": "New Product",
|
||||
"Pay": "Pay",
|
||||
"PayPal": "PayPal",
|
||||
"Payment cancelled": "Payment cancelled",
|
||||
"Payment failed": "Payment failed",
|
||||
"Payment providers": "Payment providers",
|
||||
"Payment providers - Tooltip": "Providers of payment services",
|
||||
"Placing order...": "Placing order...",
|
||||
"Please provide your username in the remark": "Please provide your username in the remark",
|
||||
"Please scan the QR code to pay": "Please scan the QR code to pay",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price of product",
|
||||
"Quantity": "Quantity",
|
||||
@ -672,8 +689,8 @@
|
||||
"Content": "Content",
|
||||
"Content - Tooltip": "Content - Tooltip",
|
||||
"Copy": "Copy",
|
||||
"DB Test": "DB Test",
|
||||
"DB Test - Tooltip": "DB Test - Tooltip",
|
||||
"DB test": "DB test",
|
||||
"DB test - Tooltip": "DB test - Tooltip",
|
||||
"Disable SSL": "Disable SSL",
|
||||
"Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server",
|
||||
"Domain": "Domain",
|
||||
@ -700,7 +717,10 @@
|
||||
"Internal": "Internal",
|
||||
"Issuer URL": "Issuer URL",
|
||||
"Issuer URL - Tooltip": "Issuer URL",
|
||||
"Link copied to clipboard successfully": "Link copied to clipboard successfully",
|
||||
"Key ID": "Key ID",
|
||||
"Key ID - Tooltip": "Key ID - Tooltip",
|
||||
"Key text": "Key text",
|
||||
"Key text - Tooltip": "Key text - Tooltip",
|
||||
"Metadata": "Metadata",
|
||||
"Metadata - Tooltip": "SAML metadata",
|
||||
"Method - Tooltip": "Login method, QR code or silent login",
|
||||
@ -754,6 +774,10 @@
|
||||
"Sender Id - Tooltip": "Sender Id - Tooltip",
|
||||
"Sender number": "Sender number",
|
||||
"Sender number - Tooltip": "Sender number - Tooltip",
|
||||
"Service ID identifier": "Service ID identifier",
|
||||
"Service ID identifier - Tooltip": "Service ID identifier - Tooltip",
|
||||
"Service account JSON": "Service account JSON",
|
||||
"Service account JSON - Tooltip": "Service account JSON - Tooltip",
|
||||
"Sign Name": "Sign Name",
|
||||
"Sign Name - Tooltip": "Name of the signature to be used",
|
||||
"Sign request": "Sign request",
|
||||
@ -764,12 +788,15 @@
|
||||
"Signup HTML": "Signup HTML",
|
||||
"Signup HTML - Edit": "Signup HTML - Edit",
|
||||
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
|
||||
"Signup group": "Signup group",
|
||||
"Silent": "Silent",
|
||||
"Site key": "Site key",
|
||||
"Site key - Tooltip": "Site key",
|
||||
"Sliding Validation": "Sliding Validation",
|
||||
"Sub type": "Sub type",
|
||||
"Sub type - Tooltip": "Sub type",
|
||||
"Team ID": "Team ID",
|
||||
"Team ID - Tooltip": "Team ID - Tooltip",
|
||||
"Template code": "Template code",
|
||||
"Template code - Tooltip": "Template code",
|
||||
"Test Email": "Test Email",
|
||||
@ -780,6 +807,8 @@
|
||||
"Token URL - Tooltip": "Token URL",
|
||||
"Type": "Type",
|
||||
"Type - Tooltip": "Select a type",
|
||||
"User flow": "User flow",
|
||||
"User flow - Tooltip": "User flow - Tooltip",
|
||||
"User mapping": "User mapping",
|
||||
"User mapping - Tooltip": "User mapping - Tooltip",
|
||||
"UserInfo URL": "UserInfo URL",
|
||||
@ -801,6 +830,8 @@
|
||||
"New Role": "New Role",
|
||||
"Sub domains": "Sub domains",
|
||||
"Sub domains - Tooltip": "Domains included in the current role",
|
||||
"Sub groups": "Sub groups",
|
||||
"Sub groups - Tooltip": "Sub groups - Tooltip",
|
||||
"Sub roles": "Sub roles",
|
||||
"Sub roles - Tooltip": "Roles included in the current role",
|
||||
"Sub users": "Sub users",
|
||||
@ -812,6 +843,9 @@
|
||||
"Confirm": "Confirm",
|
||||
"Decline": "Decline",
|
||||
"Have account?": "Have account?",
|
||||
"Label": "Label",
|
||||
"Label HTML": "Label HTML",
|
||||
"Placeholder": "Placeholder",
|
||||
"Please accept the agreement!": "Please accept the agreement!",
|
||||
"Please click the below button to sign in": "Please click the below button to sign in",
|
||||
"Please confirm your password!": "Please confirm your password!",
|
||||
@ -830,6 +864,11 @@
|
||||
"Please select your country/region!": "Please select your country/region!",
|
||||
"Terms of Use": "Terms of Use",
|
||||
"Terms of Use - Tooltip": "Terms of use that users need to read and agree to during registration",
|
||||
"Text 1": "Text 1",
|
||||
"Text 2": "Text 2",
|
||||
"Text 3": "Text 3",
|
||||
"Text 4": "Text 4",
|
||||
"Text 5": "Text 5",
|
||||
"The input is not invoice Tax ID!": "The input is not invoice Tax ID!",
|
||||
"The input is not invoice title!": "The input is not invoice title!",
|
||||
"The input is not valid Email!": "The input is not valid Email!",
|
||||
@ -841,14 +880,19 @@
|
||||
"sign in now": "sign in now"
|
||||
},
|
||||
"subscription": {
|
||||
"Duration": "Duration",
|
||||
"Duration - Tooltip": "Subscription duration",
|
||||
"Active": "Active",
|
||||
"Edit Subscription": "Edit Subscription",
|
||||
"End date": "End date",
|
||||
"End date - Tooltip": "End date",
|
||||
"End time": "End time",
|
||||
"End time - Tooltip": "End time - Tooltip",
|
||||
"Error": "Error",
|
||||
"Expired": "Expired",
|
||||
"New Subscription": "New Subscription",
|
||||
"Start date": "Start date",
|
||||
"Start date - Tooltip": "Start date"
|
||||
"Pending": "Pending",
|
||||
"Period": "Period",
|
||||
"Start time": "Start time",
|
||||
"Start time - Tooltip": "Start time - Tooltip",
|
||||
"Suspended": "Suspended",
|
||||
"Upcoming": "Upcoming"
|
||||
},
|
||||
"syncer": {
|
||||
"Affiliation table": "Affiliation table",
|
||||
@ -872,6 +916,8 @@
|
||||
"Is read-only": "Is read-only",
|
||||
"Is read-only - Tooltip": "Is read-only - Tooltip",
|
||||
"New Syncer": "New Syncer",
|
||||
"SSL mode": "SSL mode",
|
||||
"SSL mode - Tooltip": "SSL mode - Tooltip",
|
||||
"Sync interval": "Sync interval",
|
||||
"Sync interval - Tooltip": "Unit in seconds",
|
||||
"Table": "Table",
|
||||
@ -913,11 +959,19 @@
|
||||
},
|
||||
"token": {
|
||||
"Access token": "Access token",
|
||||
"Access token - Tooltip": "Access token - Tooltip",
|
||||
"Authorization code": "Authorization code",
|
||||
"Authorization code - Tooltip": "Authorization code - Tooltip",
|
||||
"Copy access token": "Copy access token",
|
||||
"Copy parsed result": "Copy parsed result",
|
||||
"Edit Token": "Edit Token",
|
||||
"Expires in": "Expires in",
|
||||
"Expires in - Tooltip": "Expires in - Tooltip",
|
||||
"New Token": "New Token",
|
||||
"Token type": "Token type"
|
||||
"Parsed result": "Parsed result",
|
||||
"Parsed result - Tooltip": "Parsed result - Tooltip",
|
||||
"Token type": "Token type",
|
||||
"Token type - Tooltip": "Token type - Tooltip"
|
||||
},
|
||||
"user": {
|
||||
"3rd-party logins": "3rd-party logins",
|
||||
@ -974,6 +1028,8 @@
|
||||
"Managed accounts": "Managed accounts",
|
||||
"Modify password...": "Modify password...",
|
||||
"Multi-factor authentication": "Multi-factor authentication",
|
||||
"Name": "Name",
|
||||
"Name format": "Name format",
|
||||
"New Email": "New Email",
|
||||
"New Password": "New Password",
|
||||
"New User": "New User",
|
||||
@ -1011,6 +1067,7 @@
|
||||
"Upload ID card front picture": "Upload ID card front picture",
|
||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||
"Upload a photo": "Upload a photo",
|
||||
"Value": "Value",
|
||||
"Values": "Values",
|
||||
"Verification code sent": "Verification code sent",
|
||||
"WebAuthn credentials": "WebAuthn credentials",
|
||||
|
@ -12,7 +12,9 @@
|
||||
"Policies": "政策",
|
||||
"Policies - Tooltip": "Casbinのポリシールール",
|
||||
"Rule type": "Rule type",
|
||||
"Sync policies successfully": "ポリシーを同期できました"
|
||||
"Sync policies successfully": "ポリシーを同期できました",
|
||||
"Use same DB": "Use same DB",
|
||||
"Use same DB - Tooltip": "Use same DB - Tooltip"
|
||||
},
|
||||
"application": {
|
||||
"Always": "常に",
|
||||
@ -30,6 +32,8 @@
|
||||
"Edit Application": "アプリケーションを編集する",
|
||||
"Enable Email linking": "イーメールリンクの有効化",
|
||||
"Enable Email linking - Tooltip": "組織内に同じメールアドレスを持つユーザーがいる場合、サードパーティのログイン方法は自動的にそのユーザーに関連付けられます",
|
||||
"Enable SAML C14N10": "Enable SAML C14N10",
|
||||
"Enable SAML C14N10 - Tooltip": "Enable SAML C14N10 - Tooltip",
|
||||
"Enable SAML compression": "SAMLの圧縮を有効にする",
|
||||
"Enable SAML compression - Tooltip": "CasdoorをSAML IdPとして使用する場合、SAMLレスポンスメッセージを圧縮するかどうか。圧縮する: 圧縮するかどうか。圧縮しない: 圧縮しないかどうか",
|
||||
"Enable WebAuthn signin": "WebAuthnのサインインを可能にする",
|
||||
@ -42,6 +46,10 @@
|
||||
"Enable signin session - Tooltip": "アプリケーションから Casdoor にログイン後、Casdoor がセッションを維持しているかどうか",
|
||||
"Enable signup": "サインアップを有効にする",
|
||||
"Enable signup - Tooltip": "新しいアカウントの登録をユーザーに許可するかどうか",
|
||||
"Failed signin frozen time": "Failed signin frozen time",
|
||||
"Failed signin frozen time - Tooltip": "Failed signin frozen time - Tooltip",
|
||||
"Failed signin limit": "Failed signin limit",
|
||||
"Failed signin limit - Tooltip": "Failed signin limit - Tooltip",
|
||||
"Failed to sign in": "ログインに失敗しました",
|
||||
"File uploaded successfully": "ファイルが正常にアップロードされました",
|
||||
"First, last": "First, last",
|
||||
@ -60,7 +68,6 @@
|
||||
"Input": "Input",
|
||||
"Invitation code": "Invitation code",
|
||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||
"Left": "左",
|
||||
"Logged in successfully": "正常にログインしました",
|
||||
"Logged out successfully": "正常にログアウトしました",
|
||||
@ -73,7 +80,6 @@
|
||||
"Please input your application!": "あなたの申請を入力してください!",
|
||||
"Please input your organization!": "あなたの組織を入力してください!",
|
||||
"Please select a HTML file": "HTMLファイルを選択してください",
|
||||
"Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "プロンプトページのURLが正常にクリップボードにコピーされました。インコグニートウィンドウまたは別のブラウザに貼り付けてください",
|
||||
"Random": "Random",
|
||||
"Real name": "Real name",
|
||||
"Redirect URL": "リダイレクトURL",
|
||||
@ -86,7 +92,6 @@
|
||||
"Rule": "ルール",
|
||||
"SAML metadata": "SAMLメタデータ",
|
||||
"SAML metadata - Tooltip": "SAMLプロトコルのメタデータ",
|
||||
"SAML metadata URL copied to clipboard successfully": "SAMLメタデータURLが正常にクリップボードにコピーされました",
|
||||
"SAML reply URL": "SAMLリプライURL",
|
||||
"Select": "Select",
|
||||
"Side panel HTML": "サイドパネルのHTML",
|
||||
@ -95,11 +100,9 @@
|
||||
"Sign Up Error": "サインアップエラー",
|
||||
"Signin": "Signin",
|
||||
"Signin (Default True)": "Signin (Default True)",
|
||||
"Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "サインインページのURLがクリップボードに正常にコピーされました。インコグニートウィンドウまたは別のブラウザに貼り付けてください",
|
||||
"Signin session": "サインインセッション",
|
||||
"Signup items": "サインアップアイテム",
|
||||
"Signup items - Tooltip": "新しいアカウントを登録する際にユーザーが入力するアイテム",
|
||||
"Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "サインアップページのURLがクリップボードに正常にコピーされました。シークレットウィンドウまたは別のブラウザに貼り付けてください",
|
||||
"Tags - Tooltip": "Only users with the tag that is listed in the application tags can login",
|
||||
"The application does not allow to sign up new account": "アプリケーションでは新しいアカウントの登録ができません",
|
||||
"Token expire": "トークンの有効期限が切れました",
|
||||
@ -113,7 +116,6 @@
|
||||
"Bit size - Tooltip": "秘密鍵の長さ",
|
||||
"Certificate": "証明書 ",
|
||||
"Certificate - Tooltip": "アクセストークンのJWT署名を復号化するために使用される公開鍵証明書。この証明書は通常、Casdoor SDK側(つまり、アプリケーション)に展開する必要があります",
|
||||
"Certificate copied to clipboard successfully": "証明書はクリップボードに正常にコピーされました",
|
||||
"Copy certificate": "コピー証明書",
|
||||
"Copy private key": "秘密鍵をコピーする",
|
||||
"Crypto algorithm": "暗号アルゴリズム",
|
||||
@ -126,7 +128,6 @@
|
||||
"New Cert": "新しい証明書",
|
||||
"Private key": "プライベートキー",
|
||||
"Private key - Tooltip": "公開鍵証明書に対応する秘密鍵",
|
||||
"Private key copied to clipboard successfully": "プライベートキーが正常にクリップボードにコピーされました",
|
||||
"Scope - Tooltip": "証明書の使用シナリオ",
|
||||
"Type - Tooltip": "証明書の種類"
|
||||
},
|
||||
@ -191,6 +192,7 @@
|
||||
"Click to Upload": "アップロードするにはクリックしてください",
|
||||
"Close": "閉じる",
|
||||
"Confirm": "Confirm",
|
||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||
"Copy": "Copy",
|
||||
"Created time": "作成された時間",
|
||||
"Custom": "Custom",
|
||||
@ -200,6 +202,8 @@
|
||||
"Default application - Tooltip": "組織ページから直接登録されたユーザーのデフォルトアプリケーション",
|
||||
"Default avatar": "デフォルトのアバター",
|
||||
"Default avatar - Tooltip": "新規登録ユーザーがアバター画像を設定しない場合に使用されるデフォルトのアバター",
|
||||
"Default password": "Default password",
|
||||
"Default password - Tooltip": "Default password - Tooltip",
|
||||
"Delete": "削除",
|
||||
"Description": "説明",
|
||||
"Description - Tooltip": "参照用の詳細な説明情報です。Casdoor自体はそれを使用しません",
|
||||
@ -218,8 +222,10 @@
|
||||
"Failed to connect to server": "サーバーに接続できませんでした",
|
||||
"Failed to delete": "削除に失敗しました",
|
||||
"Failed to enable": "Failed to enable",
|
||||
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
|
||||
"Failed to remove": "Failed to remove",
|
||||
"Failed to save": "保存に失敗しました",
|
||||
"Failed to sync": "Failed to sync",
|
||||
"Failed to verify": "Failed to verify",
|
||||
"Favicon": "ファビコン",
|
||||
"Favicon - Tooltip": "組織のすべてのCasdoorページに使用されるFaviconアイコンのURL",
|
||||
@ -251,6 +257,8 @@
|
||||
"MFA items - Tooltip": "MFA items - Tooltip",
|
||||
"Master password": "マスターパスワード",
|
||||
"Master password - Tooltip": "この組織のすべてのユーザーにログインするために使用でき、管理者が技術的な問題を解決するためにこのユーザーとしてログインするのに便利です",
|
||||
"Master verification code": "Master verification code",
|
||||
"Master verification code - Tooltip": "Master verification code - Tooltip",
|
||||
"Menu": "メニュー",
|
||||
"Method": "方法",
|
||||
"Model": "モデル",
|
||||
@ -272,6 +280,8 @@
|
||||
"Password salt - Tooltip": "ランダムパラメーターは、パスワードの暗号化に使用されます",
|
||||
"Password type": "パスワードタイプ",
|
||||
"Password type - Tooltip": "データベース内のパスワードの格納形式",
|
||||
"Payment": "Payment",
|
||||
"Payment - Tooltip": "Payment - Tooltip",
|
||||
"Payments": "支払い",
|
||||
"Permissions": "許可",
|
||||
"Permissions - Tooltip": "このユーザーが所有する権限",
|
||||
@ -283,6 +293,8 @@
|
||||
"Plans - Tooltip": "Plans - Tooltip",
|
||||
"Preview": "プレビュー",
|
||||
"Preview - Tooltip": "構成されたエフェクトをプレビューする",
|
||||
"Pricing": "Pricing",
|
||||
"Pricing - Tooltip": "Pricing - Tooltip",
|
||||
"Pricings": "価格設定",
|
||||
"Products": "製品",
|
||||
"Provider": "プロバイダー",
|
||||
@ -296,6 +308,10 @@
|
||||
"Role - Tooltip": "Role - Tooltip",
|
||||
"Roles": "役割",
|
||||
"Roles - Tooltip": "ユーザーが所属する役割",
|
||||
"Root cert": "Root cert",
|
||||
"Root cert - Tooltip": "Root cert - Tooltip",
|
||||
"SAML attributes": "SAML attributes",
|
||||
"SAML attributes - Tooltip": "SAML attributes - Tooltip",
|
||||
"Save": "保存",
|
||||
"Save & Exit": "保存して終了",
|
||||
"Session ID": "セッションID",
|
||||
@ -318,6 +334,7 @@
|
||||
"Successfully removed": "Successfully removed",
|
||||
"Successfully saved": "成功的に保存されました",
|
||||
"Successfully sent": "Successfully sent",
|
||||
"Successfully synced": "Successfully synced",
|
||||
"Supported country codes": "サポートされている国コード",
|
||||
"Supported country codes - Tooltip": "組織でサポートされている国コード。これらのコードは、SMS認証コードのプレフィックスとして選択できます",
|
||||
"Sure to delete": "削除することが確実です",
|
||||
@ -440,7 +457,6 @@
|
||||
"Multi-factor methods": "Multi-factor methods",
|
||||
"Multi-factor recover": "Multi-factor recover",
|
||||
"Multi-factor recover description": "Multi-factor recover description",
|
||||
"Multi-factor secret to clipboard successfully": "Multi-factor secret to clipboard successfully",
|
||||
"Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
|
||||
"Passcode": "Passcode",
|
||||
"Please bind your email first, the system will automatically uses the mail for multi-factor authentication": "Please bind your email first, the system will automatically uses the mail for multi-factor authentication",
|
||||
@ -573,11 +589,13 @@
|
||||
"plan": {
|
||||
"Edit Plan": "Edit Plan",
|
||||
"New Plan": "New Plan",
|
||||
"Price per month": "Price per month",
|
||||
"Price per month - Tooltip": "Price per month - Tooltip",
|
||||
"Price per year": "Price per year",
|
||||
"Price per year - Tooltip": "Price per year - Tooltip",
|
||||
"per month": "月毎"
|
||||
"Period": "Period",
|
||||
"Period - Tooltip": "Period - Tooltip",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price - Tooltip",
|
||||
"Related product": "Related product",
|
||||
"per month": "月毎",
|
||||
"per year": "per year"
|
||||
},
|
||||
"pricing": {
|
||||
"Copy pricing page URL": "価格ページのURLをコピー",
|
||||
@ -589,7 +607,7 @@
|
||||
"Trial duration": "トライアル期間の長さ",
|
||||
"Trial duration - Tooltip": "トライアル期間の長さ",
|
||||
"days trial available!": "日間のトライアルが利用可能です!",
|
||||
"pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "価格ページのURLが正常にクリップボードにコピーされました。シークレットウィンドウや別のブラウザに貼り付けてください。"
|
||||
"paid-user do not have active subscription or pending subscription, please select a plan to buy": "paid-user do not have active subscription or pending subscription, please select a plan to buy"
|
||||
},
|
||||
"product": {
|
||||
"Alipay": "Alipay",
|
||||
@ -600,17 +618,16 @@
|
||||
"Detail - Tooltip": "製品の詳細",
|
||||
"Dummy": "Dummy",
|
||||
"Edit Product": "製品を編集",
|
||||
"I have completed the payment": "私は支払いを完了しました",
|
||||
"Image": "画像",
|
||||
"Image - Tooltip": "製品のイメージ",
|
||||
"New Product": "新製品",
|
||||
"Pay": "支払う",
|
||||
"PayPal": "PayPal",
|
||||
"Payment cancelled": "Payment cancelled",
|
||||
"Payment failed": "Payment failed",
|
||||
"Payment providers": "支払いプロバイダー",
|
||||
"Payment providers - Tooltip": "支払いサービスの提供者",
|
||||
"Placing order...": "注文をする...",
|
||||
"Please provide your username in the remark": "備考欄にユーザー名を入力してください",
|
||||
"Please scan the QR code to pay": "QRコードをスキャンして支払ってください",
|
||||
"Price": "価格",
|
||||
"Price - Tooltip": "製品の価格",
|
||||
"Quantity": "量",
|
||||
@ -672,8 +689,8 @@
|
||||
"Content": "Content",
|
||||
"Content - Tooltip": "Content - Tooltip",
|
||||
"Copy": "コピー",
|
||||
"DB Test": "DB Test",
|
||||
"DB Test - Tooltip": "DB Test - Tooltip",
|
||||
"DB test": "DB test",
|
||||
"DB test - Tooltip": "DB test - Tooltip",
|
||||
"Disable SSL": "SSLを無効にする",
|
||||
"Disable SSL - Tooltip": "SMTPサーバーと通信する場合にSSLプロトコルを無効にするかどうか",
|
||||
"Domain": "ドメイン",
|
||||
@ -700,7 +717,10 @@
|
||||
"Internal": "Internal",
|
||||
"Issuer URL": "発行者のURL",
|
||||
"Issuer URL - Tooltip": "発行者URL",
|
||||
"Link copied to clipboard successfully": "リンクがクリップボードに正常にコピーされました",
|
||||
"Key ID": "Key ID",
|
||||
"Key ID - Tooltip": "Key ID - Tooltip",
|
||||
"Key text": "Key text",
|
||||
"Key text - Tooltip": "Key text - Tooltip",
|
||||
"Metadata": "メタデータ",
|
||||
"Metadata - Tooltip": "SAMLのメタデータ",
|
||||
"Method - Tooltip": "ログイン方法、QRコードまたはサイレントログイン",
|
||||
@ -754,6 +774,10 @@
|
||||
"Sender Id - Tooltip": "Sender Id - Tooltip",
|
||||
"Sender number": "Sender number",
|
||||
"Sender number - Tooltip": "Sender number - Tooltip",
|
||||
"Service ID identifier": "Service ID identifier",
|
||||
"Service ID identifier - Tooltip": "Service ID identifier - Tooltip",
|
||||
"Service account JSON": "Service account JSON",
|
||||
"Service account JSON - Tooltip": "Service account JSON - Tooltip",
|
||||
"Sign Name": "署名",
|
||||
"Sign Name - Tooltip": "使用する署名の名前",
|
||||
"Sign request": "サインリクエスト",
|
||||
@ -764,12 +788,15 @@
|
||||
"Signup HTML": "サインアップ HTML",
|
||||
"Signup HTML - Edit": "サインアップ HTML - 編集",
|
||||
"Signup HTML - Tooltip": "デフォルトのサインアップページスタイルを置き換えるためのカスタムHTML",
|
||||
"Signup group": "Signup group",
|
||||
"Silent": "Silent",
|
||||
"Site key": "サイトキー",
|
||||
"Site key - Tooltip": "サイトキー",
|
||||
"Sliding Validation": "Sliding Validation",
|
||||
"Sub type": "サブタイプ",
|
||||
"Sub type - Tooltip": "サブタイプ",
|
||||
"Team ID": "Team ID",
|
||||
"Team ID - Tooltip": "Team ID - Tooltip",
|
||||
"Template code": "テンプレートコード",
|
||||
"Template code - Tooltip": "テンプレートコード",
|
||||
"Test Email": "テストメール",
|
||||
@ -780,6 +807,8 @@
|
||||
"Token URL - Tooltip": "トークンURL",
|
||||
"Type": "タイプ",
|
||||
"Type - Tooltip": "タイプを選択してください",
|
||||
"User flow": "User flow",
|
||||
"User flow - Tooltip": "User flow - Tooltip",
|
||||
"User mapping": "User mapping",
|
||||
"User mapping - Tooltip": "User mapping - Tooltip",
|
||||
"UserInfo URL": "UserInfo URLを日本語に翻訳すると、「ユーザー情報のURL」となります",
|
||||
@ -801,6 +830,8 @@
|
||||
"New Role": "新しい役割",
|
||||
"Sub domains": "サブドメイン",
|
||||
"Sub domains - Tooltip": "現在の役割に含まれるドメイン",
|
||||
"Sub groups": "Sub groups",
|
||||
"Sub groups - Tooltip": "Sub groups - Tooltip",
|
||||
"Sub roles": "サブロール",
|
||||
"Sub roles - Tooltip": "現在の役割に含まれる役割",
|
||||
"Sub users": "サブユーザー",
|
||||
@ -812,6 +843,9 @@
|
||||
"Confirm": "確認",
|
||||
"Decline": "拒否",
|
||||
"Have account?": "アカウントはありますか?",
|
||||
"Label": "Label",
|
||||
"Label HTML": "Label HTML",
|
||||
"Placeholder": "Placeholder",
|
||||
"Please accept the agreement!": "合意に同意してください!",
|
||||
"Please click the below button to sign in": "以下のボタンをクリックしてログインしてください",
|
||||
"Please confirm your password!": "パスワードを確認してください!",
|
||||
@ -830,6 +864,11 @@
|
||||
"Please select your country/region!": "あなたの国/地域を選択してください!",
|
||||
"Terms of Use": "利用規約",
|
||||
"Terms of Use - Tooltip": "ユーザーが登録する際に読んで同意する必要がある利用規約",
|
||||
"Text 1": "Text 1",
|
||||
"Text 2": "Text 2",
|
||||
"Text 3": "Text 3",
|
||||
"Text 4": "Text 4",
|
||||
"Text 5": "Text 5",
|
||||
"The input is not invoice Tax ID!": "入力されたものは請求書の税番号ではありません!",
|
||||
"The input is not invoice title!": "インプットは請求書タイトルではありません!",
|
||||
"The input is not valid Email!": "入力されたものは有効なメールではありません",
|
||||
@ -841,14 +880,19 @@
|
||||
"sign in now": "今すぐサインインしてください"
|
||||
},
|
||||
"subscription": {
|
||||
"Duration": "期間",
|
||||
"Duration - Tooltip": "購読の期間",
|
||||
"Active": "Active",
|
||||
"Edit Subscription": "Edit Subscription",
|
||||
"End date": "終了日",
|
||||
"End date - Tooltip": "終了日",
|
||||
"End time": "End time",
|
||||
"End time - Tooltip": "End time - Tooltip",
|
||||
"Error": "Error",
|
||||
"Expired": "Expired",
|
||||
"New Subscription": "New Subscription",
|
||||
"Start date": "開始日",
|
||||
"Start date - Tooltip": "開始日"
|
||||
"Pending": "Pending",
|
||||
"Period": "Period",
|
||||
"Start time": "Start time",
|
||||
"Start time - Tooltip": "Start time - Tooltip",
|
||||
"Suspended": "Suspended",
|
||||
"Upcoming": "Upcoming"
|
||||
},
|
||||
"syncer": {
|
||||
"Affiliation table": "所属テーブル",
|
||||
@ -872,6 +916,8 @@
|
||||
"Is read-only": "Is read-only",
|
||||
"Is read-only - Tooltip": "Is read-only - Tooltip",
|
||||
"New Syncer": "新しいシンクロナイザー",
|
||||
"SSL mode": "SSL mode",
|
||||
"SSL mode - Tooltip": "SSL mode - Tooltip",
|
||||
"Sync interval": "同期の間隔",
|
||||
"Sync interval - Tooltip": "単位は秒です",
|
||||
"Table": "テーブル",
|
||||
@ -913,11 +959,19 @@
|
||||
},
|
||||
"token": {
|
||||
"Access token": "アクセストークン",
|
||||
"Access token - Tooltip": "Access token - Tooltip",
|
||||
"Authorization code": "承認コード",
|
||||
"Authorization code - Tooltip": "Authorization code - Tooltip",
|
||||
"Copy access token": "Copy access token",
|
||||
"Copy parsed result": "Copy parsed result",
|
||||
"Edit Token": "編集トークン",
|
||||
"Expires in": "期限切れ",
|
||||
"Expires in - Tooltip": "Expires in - Tooltip",
|
||||
"New Token": "新しいトークン",
|
||||
"Token type": "トークンタイプ"
|
||||
"Parsed result": "Parsed result",
|
||||
"Parsed result - Tooltip": "Parsed result - Tooltip",
|
||||
"Token type": "トークンタイプ",
|
||||
"Token type - Tooltip": "Token type - Tooltip"
|
||||
},
|
||||
"user": {
|
||||
"3rd-party logins": "サードパーティログイン",
|
||||
@ -974,6 +1028,8 @@
|
||||
"Managed accounts": "管理アカウント",
|
||||
"Modify password...": "パスワードを変更する...",
|
||||
"Multi-factor authentication": "Multi-factor authentication",
|
||||
"Name": "Name",
|
||||
"Name format": "Name format",
|
||||
"New Email": "新しいメール",
|
||||
"New Password": "新しいパスワード",
|
||||
"New User": "新しいユーザー",
|
||||
@ -1011,6 +1067,7 @@
|
||||
"Upload ID card front picture": "Upload ID card front picture",
|
||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||
"Upload a photo": "写真をアップロードしてください",
|
||||
"Value": "Value",
|
||||
"Values": "価値観",
|
||||
"Verification code sent": "確認コードを送信しました",
|
||||
"WebAuthn credentials": "WebAuthnの資格情報",
|
||||
|
@ -12,7 +12,9 @@
|
||||
"Policies": "Policies",
|
||||
"Policies - Tooltip": "Casbin policy rules",
|
||||
"Rule type": "Rule type",
|
||||
"Sync policies successfully": "Sync policies successfully"
|
||||
"Sync policies successfully": "Sync policies successfully",
|
||||
"Use same DB": "Use same DB",
|
||||
"Use same DB - Tooltip": "Use same DB - Tooltip"
|
||||
},
|
||||
"application": {
|
||||
"Always": "Always",
|
||||
@ -30,6 +32,8 @@
|
||||
"Edit Application": "Edit Application",
|
||||
"Enable Email linking": "Enable Email linking",
|
||||
"Enable Email linking - Tooltip": "When using 3rd-party providers to log in, if there is a user in the organization with the same Email, the 3rd-party login method will be automatically associated with that user",
|
||||
"Enable SAML C14N10": "Enable SAML C14N10",
|
||||
"Enable SAML C14N10 - Tooltip": "Enable SAML C14N10 - Tooltip",
|
||||
"Enable SAML compression": "Enable SAML compression",
|
||||
"Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp",
|
||||
"Enable WebAuthn signin": "Enable WebAuthn signin",
|
||||
@ -42,6 +46,10 @@
|
||||
"Enable signin session - Tooltip": "Whether Casdoor maintains a session after logging into Casdoor from the application",
|
||||
"Enable signup": "Enable signup",
|
||||
"Enable signup - Tooltip": "Whether to allow users to register a new account",
|
||||
"Failed signin frozen time": "Failed signin frozen time",
|
||||
"Failed signin frozen time - Tooltip": "Failed signin frozen time - Tooltip",
|
||||
"Failed signin limit": "Failed signin limit",
|
||||
"Failed signin limit - Tooltip": "Failed signin limit - Tooltip",
|
||||
"Failed to sign in": "Failed to sign in",
|
||||
"File uploaded successfully": "File uploaded successfully",
|
||||
"First, last": "First, last",
|
||||
@ -60,7 +68,6 @@
|
||||
"Input": "Input",
|
||||
"Invitation code": "Invitation code",
|
||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||
"Left": "Left",
|
||||
"Logged in successfully": "Logged in successfully",
|
||||
"Logged out successfully": "Logged out successfully",
|
||||
@ -73,7 +80,6 @@
|
||||
"Please input your application!": "Please input your application!",
|
||||
"Please input your organization!": "Please input your organization!",
|
||||
"Please select a HTML file": "Please select a HTML file",
|
||||
"Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Random": "Random",
|
||||
"Real name": "Real name",
|
||||
"Redirect URL": "Redirect URL",
|
||||
@ -86,7 +92,6 @@
|
||||
"Rule": "Rule",
|
||||
"SAML metadata": "SAML metadata",
|
||||
"SAML metadata - Tooltip": "The metadata of SAML protocol",
|
||||
"SAML metadata URL copied to clipboard successfully": "SAML metadata URL copied to clipboard successfully",
|
||||
"SAML reply URL": "SAML reply URL",
|
||||
"Select": "Select",
|
||||
"Side panel HTML": "Side panel HTML",
|
||||
@ -95,11 +100,9 @@
|
||||
"Sign Up Error": "Sign Up Error",
|
||||
"Signin": "Signin",
|
||||
"Signin (Default True)": "Signin (Default True)",
|
||||
"Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Signin session": "Signin session",
|
||||
"Signup items": "Signup items",
|
||||
"Signup items - Tooltip": "Items for users to fill in when registering new accounts",
|
||||
"Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Tags - Tooltip": "Only users with the tag that is listed in the application tags can login",
|
||||
"The application does not allow to sign up new account": "The application does not allow to sign up new account",
|
||||
"Token expire": "Token expire",
|
||||
@ -113,7 +116,6 @@
|
||||
"Bit size - Tooltip": "Secret key length",
|
||||
"Certificate": "Certificate",
|
||||
"Certificate - Tooltip": "Public key certificate, used for decrypting the JWT signature of the Access Token. This certificate usually needs to be deployed on the Casdoor SDK side (i.e., the application) to parse the JWT",
|
||||
"Certificate copied to clipboard successfully": "Certificate copied to clipboard successfully",
|
||||
"Copy certificate": "Copy certificate",
|
||||
"Copy private key": "Copy private key",
|
||||
"Crypto algorithm": "Crypto algorithm",
|
||||
@ -126,7 +128,6 @@
|
||||
"New Cert": "New Cert",
|
||||
"Private key": "Private key",
|
||||
"Private key - Tooltip": "Private key corresponding to the public key certificate",
|
||||
"Private key copied to clipboard successfully": "Private key copied to clipboard successfully",
|
||||
"Scope - Tooltip": "Usage scenarios of the certificate",
|
||||
"Type - Tooltip": "Type of certificate"
|
||||
},
|
||||
@ -191,6 +192,7 @@
|
||||
"Click to Upload": "Click to Upload",
|
||||
"Close": "Close",
|
||||
"Confirm": "Confirm",
|
||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||
"Copy": "Copy",
|
||||
"Created time": "Created time",
|
||||
"Custom": "Custom",
|
||||
@ -200,6 +202,8 @@
|
||||
"Default application - Tooltip": "Default application for users registered directly from the organization page",
|
||||
"Default avatar": "Default avatar",
|
||||
"Default avatar - Tooltip": "Default avatar used when newly registered users do not set an avatar image",
|
||||
"Default password": "Default password",
|
||||
"Default password - Tooltip": "Default password - Tooltip",
|
||||
"Delete": "Delete",
|
||||
"Description": "Description",
|
||||
"Description - Tooltip": "Detailed description information for reference, Casdoor itself will not use it",
|
||||
@ -218,8 +222,10 @@
|
||||
"Failed to connect to server": "Failed to connect to server",
|
||||
"Failed to delete": "Failed to delete",
|
||||
"Failed to enable": "Failed to enable",
|
||||
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
|
||||
"Failed to remove": "Failed to remove",
|
||||
"Failed to save": "Failed to save",
|
||||
"Failed to sync": "Failed to sync",
|
||||
"Failed to verify": "Failed to verify",
|
||||
"Favicon": "Favicon",
|
||||
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
|
||||
@ -251,6 +257,8 @@
|
||||
"MFA items - Tooltip": "MFA items - Tooltip",
|
||||
"Master password": "Master password",
|
||||
"Master password - Tooltip": "Can be used to log in to all users under this organization, making it convenient for administrators to log in as this user to solve technical issues",
|
||||
"Master verification code": "Master verification code",
|
||||
"Master verification code - Tooltip": "Master verification code - Tooltip",
|
||||
"Menu": "Menu",
|
||||
"Method": "Method",
|
||||
"Model": "Model",
|
||||
@ -272,6 +280,8 @@
|
||||
"Password salt - Tooltip": "Random parameter used for password encryption",
|
||||
"Password type": "Password type",
|
||||
"Password type - Tooltip": "Storage format of passwords in the database",
|
||||
"Payment": "Payment",
|
||||
"Payment - Tooltip": "Payment - Tooltip",
|
||||
"Payments": "Payments",
|
||||
"Permissions": "Permissions",
|
||||
"Permissions - Tooltip": "Permissions owned by this user",
|
||||
@ -283,6 +293,8 @@
|
||||
"Plans - Tooltip": "Plans - Tooltip",
|
||||
"Preview": "Preview",
|
||||
"Preview - Tooltip": "Preview the configured effects",
|
||||
"Pricing": "Pricing",
|
||||
"Pricing - Tooltip": "Pricing - Tooltip",
|
||||
"Pricings": "Pricings",
|
||||
"Products": "Products",
|
||||
"Provider": "Provider",
|
||||
@ -296,6 +308,10 @@
|
||||
"Role - Tooltip": "Role - Tooltip",
|
||||
"Roles": "Roles",
|
||||
"Roles - Tooltip": "Roles that the user belongs to",
|
||||
"Root cert": "Root cert",
|
||||
"Root cert - Tooltip": "Root cert - Tooltip",
|
||||
"SAML attributes": "SAML attributes",
|
||||
"SAML attributes - Tooltip": "SAML attributes - Tooltip",
|
||||
"Save": "Save",
|
||||
"Save & Exit": "Save & Exit",
|
||||
"Session ID": "Session ID",
|
||||
@ -318,6 +334,7 @@
|
||||
"Successfully removed": "Successfully removed",
|
||||
"Successfully saved": "Successfully saved",
|
||||
"Successfully sent": "Successfully sent",
|
||||
"Successfully synced": "Successfully synced",
|
||||
"Supported country codes": "Supported country codes",
|
||||
"Supported country codes - Tooltip": "Country codes supported by the organization. These codes can be selected as a prefix when sending SMS verification codes",
|
||||
"Sure to delete": "Sure to delete",
|
||||
@ -440,7 +457,6 @@
|
||||
"Multi-factor methods": "Multi-factor methods",
|
||||
"Multi-factor recover": "Multi-factor recover",
|
||||
"Multi-factor recover description": "Multi-factor recover description",
|
||||
"Multi-factor secret to clipboard successfully": "Multi-factor secret to clipboard successfully",
|
||||
"Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
|
||||
"Passcode": "Passcode",
|
||||
"Please bind your email first, the system will automatically uses the mail for multi-factor authentication": "Please bind your email first, the system will automatically uses the mail for multi-factor authentication",
|
||||
@ -573,11 +589,13 @@
|
||||
"plan": {
|
||||
"Edit Plan": "Edit Plan",
|
||||
"New Plan": "New Plan",
|
||||
"Price per month": "Price per month",
|
||||
"Price per month - Tooltip": "Price per month - Tooltip",
|
||||
"Price per year": "Price per year",
|
||||
"Price per year - Tooltip": "Price per year - Tooltip",
|
||||
"per month": "per month"
|
||||
"Period": "Period",
|
||||
"Period - Tooltip": "Period - Tooltip",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price - Tooltip",
|
||||
"Related product": "Related product",
|
||||
"per month": "per month",
|
||||
"per year": "per year"
|
||||
},
|
||||
"pricing": {
|
||||
"Copy pricing page URL": "Copy pricing page URL",
|
||||
@ -589,7 +607,7 @@
|
||||
"Trial duration": "Trial duration",
|
||||
"Trial duration - Tooltip": "Trial duration period",
|
||||
"days trial available!": "days trial available!",
|
||||
"pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser"
|
||||
"paid-user do not have active subscription or pending subscription, please select a plan to buy": "paid-user do not have active subscription or pending subscription, please select a plan to buy"
|
||||
},
|
||||
"product": {
|
||||
"Alipay": "Alipay",
|
||||
@ -600,17 +618,16 @@
|
||||
"Detail - Tooltip": "Detail of product",
|
||||
"Dummy": "Dummy",
|
||||
"Edit Product": "Edit Product",
|
||||
"I have completed the payment": "I have completed the payment",
|
||||
"Image": "Image",
|
||||
"Image - Tooltip": "Image of product",
|
||||
"New Product": "New Product",
|
||||
"Pay": "Pay",
|
||||
"PayPal": "PayPal",
|
||||
"Payment cancelled": "Payment cancelled",
|
||||
"Payment failed": "Payment failed",
|
||||
"Payment providers": "Payment providers",
|
||||
"Payment providers - Tooltip": "Providers of payment services",
|
||||
"Placing order...": "Placing order...",
|
||||
"Please provide your username in the remark": "Please provide your username in the remark",
|
||||
"Please scan the QR code to pay": "Please scan the QR code to pay",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price of product",
|
||||
"Quantity": "Quantity",
|
||||
@ -672,8 +689,8 @@
|
||||
"Content": "Content",
|
||||
"Content - Tooltip": "Content - Tooltip",
|
||||
"Copy": "Copy",
|
||||
"DB Test": "DB Test",
|
||||
"DB Test - Tooltip": "DB Test - Tooltip",
|
||||
"DB test": "DB test",
|
||||
"DB test - Tooltip": "DB test - Tooltip",
|
||||
"Disable SSL": "Disable SSL",
|
||||
"Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server",
|
||||
"Domain": "Domain",
|
||||
@ -700,7 +717,10 @@
|
||||
"Internal": "Internal",
|
||||
"Issuer URL": "Issuer URL",
|
||||
"Issuer URL - Tooltip": "Issuer URL",
|
||||
"Link copied to clipboard successfully": "Link copied to clipboard successfully",
|
||||
"Key ID": "Key ID",
|
||||
"Key ID - Tooltip": "Key ID - Tooltip",
|
||||
"Key text": "Key text",
|
||||
"Key text - Tooltip": "Key text - Tooltip",
|
||||
"Metadata": "Metadata",
|
||||
"Metadata - Tooltip": "SAML metadata",
|
||||
"Method - Tooltip": "Login method, QR code or silent login",
|
||||
@ -754,6 +774,10 @@
|
||||
"Sender Id - Tooltip": "Sender Id - Tooltip",
|
||||
"Sender number": "Sender number",
|
||||
"Sender number - Tooltip": "Sender number - Tooltip",
|
||||
"Service ID identifier": "Service ID identifier",
|
||||
"Service ID identifier - Tooltip": "Service ID identifier - Tooltip",
|
||||
"Service account JSON": "Service account JSON",
|
||||
"Service account JSON - Tooltip": "Service account JSON - Tooltip",
|
||||
"Sign Name": "Sign Name",
|
||||
"Sign Name - Tooltip": "Name of the signature to be used",
|
||||
"Sign request": "Sign request",
|
||||
@ -764,12 +788,15 @@
|
||||
"Signup HTML": "Signup HTML",
|
||||
"Signup HTML - Edit": "Signup HTML - Edit",
|
||||
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
|
||||
"Signup group": "Signup group",
|
||||
"Silent": "Silent",
|
||||
"Site key": "Site key",
|
||||
"Site key - Tooltip": "Site key",
|
||||
"Sliding Validation": "Sliding Validation",
|
||||
"Sub type": "Sub type",
|
||||
"Sub type - Tooltip": "Sub type",
|
||||
"Team ID": "Team ID",
|
||||
"Team ID - Tooltip": "Team ID - Tooltip",
|
||||
"Template code": "Template code",
|
||||
"Template code - Tooltip": "Template code",
|
||||
"Test Email": "Test Email",
|
||||
@ -780,6 +807,8 @@
|
||||
"Token URL - Tooltip": "Token URL",
|
||||
"Type": "Type",
|
||||
"Type - Tooltip": "Select a type",
|
||||
"User flow": "User flow",
|
||||
"User flow - Tooltip": "User flow - Tooltip",
|
||||
"User mapping": "User mapping",
|
||||
"User mapping - Tooltip": "User mapping - Tooltip",
|
||||
"UserInfo URL": "UserInfo URL",
|
||||
@ -801,6 +830,8 @@
|
||||
"New Role": "New Role",
|
||||
"Sub domains": "Sub domains",
|
||||
"Sub domains - Tooltip": "Domains included in the current role",
|
||||
"Sub groups": "Sub groups",
|
||||
"Sub groups - Tooltip": "Sub groups - Tooltip",
|
||||
"Sub roles": "Sub roles",
|
||||
"Sub roles - Tooltip": "Roles included in the current role",
|
||||
"Sub users": "Sub users",
|
||||
@ -812,6 +843,9 @@
|
||||
"Confirm": "Confirm",
|
||||
"Decline": "Decline",
|
||||
"Have account?": "Have account?",
|
||||
"Label": "Label",
|
||||
"Label HTML": "Label HTML",
|
||||
"Placeholder": "Placeholder",
|
||||
"Please accept the agreement!": "Please accept the agreement!",
|
||||
"Please click the below button to sign in": "Please click the below button to sign in",
|
||||
"Please confirm your password!": "Please confirm your password!",
|
||||
@ -830,6 +864,11 @@
|
||||
"Please select your country/region!": "Please select your country/region!",
|
||||
"Terms of Use": "Terms of Use",
|
||||
"Terms of Use - Tooltip": "Terms of use that users need to read and agree to during registration",
|
||||
"Text 1": "Text 1",
|
||||
"Text 2": "Text 2",
|
||||
"Text 3": "Text 3",
|
||||
"Text 4": "Text 4",
|
||||
"Text 5": "Text 5",
|
||||
"The input is not invoice Tax ID!": "The input is not invoice Tax ID!",
|
||||
"The input is not invoice title!": "The input is not invoice title!",
|
||||
"The input is not valid Email!": "The input is not valid Email!",
|
||||
@ -841,14 +880,19 @@
|
||||
"sign in now": "sign in now"
|
||||
},
|
||||
"subscription": {
|
||||
"Duration": "Duration",
|
||||
"Duration - Tooltip": "Subscription duration",
|
||||
"Active": "Active",
|
||||
"Edit Subscription": "Edit Subscription",
|
||||
"End date": "End date",
|
||||
"End date - Tooltip": "End date",
|
||||
"End time": "End time",
|
||||
"End time - Tooltip": "End time - Tooltip",
|
||||
"Error": "Error",
|
||||
"Expired": "Expired",
|
||||
"New Subscription": "New Subscription",
|
||||
"Start date": "Start date",
|
||||
"Start date - Tooltip": "Start date"
|
||||
"Pending": "Pending",
|
||||
"Period": "Period",
|
||||
"Start time": "Start time",
|
||||
"Start time - Tooltip": "Start time - Tooltip",
|
||||
"Suspended": "Suspended",
|
||||
"Upcoming": "Upcoming"
|
||||
},
|
||||
"syncer": {
|
||||
"Affiliation table": "Affiliation table",
|
||||
@ -872,6 +916,8 @@
|
||||
"Is read-only": "Is read-only",
|
||||
"Is read-only - Tooltip": "Is read-only - Tooltip",
|
||||
"New Syncer": "New Syncer",
|
||||
"SSL mode": "SSL mode",
|
||||
"SSL mode - Tooltip": "SSL mode - Tooltip",
|
||||
"Sync interval": "Sync interval",
|
||||
"Sync interval - Tooltip": "Unit in seconds",
|
||||
"Table": "Table",
|
||||
@ -913,11 +959,19 @@
|
||||
},
|
||||
"token": {
|
||||
"Access token": "Access token",
|
||||
"Access token - Tooltip": "Access token - Tooltip",
|
||||
"Authorization code": "Authorization code",
|
||||
"Authorization code - Tooltip": "Authorization code - Tooltip",
|
||||
"Copy access token": "Copy access token",
|
||||
"Copy parsed result": "Copy parsed result",
|
||||
"Edit Token": "Edit Token",
|
||||
"Expires in": "Expires in",
|
||||
"Expires in - Tooltip": "Expires in - Tooltip",
|
||||
"New Token": "New Token",
|
||||
"Token type": "Token type"
|
||||
"Parsed result": "Parsed result",
|
||||
"Parsed result - Tooltip": "Parsed result - Tooltip",
|
||||
"Token type": "Token type",
|
||||
"Token type - Tooltip": "Token type - Tooltip"
|
||||
},
|
||||
"user": {
|
||||
"3rd-party logins": "3rd-party logins",
|
||||
@ -974,6 +1028,8 @@
|
||||
"Managed accounts": "Managed accounts",
|
||||
"Modify password...": "Modify password...",
|
||||
"Multi-factor authentication": "Multi-factor authentication",
|
||||
"Name": "Name",
|
||||
"Name format": "Name format",
|
||||
"New Email": "New Email",
|
||||
"New Password": "New Password",
|
||||
"New User": "New User",
|
||||
@ -1011,6 +1067,7 @@
|
||||
"Upload ID card front picture": "Upload ID card front picture",
|
||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||
"Upload a photo": "Upload a photo",
|
||||
"Value": "Value",
|
||||
"Values": "Values",
|
||||
"Verification code sent": "Verification code sent",
|
||||
"WebAuthn credentials": "WebAuthn credentials",
|
||||
|
@ -12,7 +12,9 @@
|
||||
"Policies": "정책",
|
||||
"Policies - Tooltip": "Casbin 정책 규칙",
|
||||
"Rule type": "Rule type",
|
||||
"Sync policies successfully": "정책을 성공적으로 동기화했습니다"
|
||||
"Sync policies successfully": "정책을 성공적으로 동기화했습니다",
|
||||
"Use same DB": "Use same DB",
|
||||
"Use same DB - Tooltip": "Use same DB - Tooltip"
|
||||
},
|
||||
"application": {
|
||||
"Always": "항상",
|
||||
@ -30,6 +32,8 @@
|
||||
"Edit Application": "앱 편집하기",
|
||||
"Enable Email linking": "이메일 링크 사용 가능하도록 설정하기",
|
||||
"Enable Email linking - Tooltip": "3rd-party 로그인 공급자를 사용할 때, 만약 조직 내에 동일한 이메일을 사용하는 사용자가 있다면, 3rd-party 로그인 방법은 자동으로 해당 사용자와 연동됩니다",
|
||||
"Enable SAML C14N10": "Enable SAML C14N10",
|
||||
"Enable SAML C14N10 - Tooltip": "Enable SAML C14N10 - Tooltip",
|
||||
"Enable SAML compression": "SAML 압축 사용 가능하게 설정하기",
|
||||
"Enable SAML compression - Tooltip": "카스도어가 SAML idp로 사용될 때 SAML 응답 메시지를 압축할 것인지 여부",
|
||||
"Enable WebAuthn signin": "WebAuthn 로그인 기능 활성화",
|
||||
@ -42,6 +46,10 @@
|
||||
"Enable signin session - Tooltip": "애플리케이션에서 Casdoor에 로그인 한 후 Casdoor가 세션을 유지하는 지 여부",
|
||||
"Enable signup": "가입 가능하게 만들기",
|
||||
"Enable signup - Tooltip": "사용자가 새로운 계정을 등록할지 여부",
|
||||
"Failed signin frozen time": "Failed signin frozen time",
|
||||
"Failed signin frozen time - Tooltip": "Failed signin frozen time - Tooltip",
|
||||
"Failed signin limit": "Failed signin limit",
|
||||
"Failed signin limit - Tooltip": "Failed signin limit - Tooltip",
|
||||
"Failed to sign in": "로그인 실패했습니다",
|
||||
"File uploaded successfully": "파일이 성공적으로 업로드되었습니다",
|
||||
"First, last": "First, last",
|
||||
@ -60,7 +68,6 @@
|
||||
"Input": "Input",
|
||||
"Invitation code": "Invitation code",
|
||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||
"Left": "왼쪽",
|
||||
"Logged in successfully": "성공적으로 로그인했습니다",
|
||||
"Logged out successfully": "로그아웃이 성공적으로 되었습니다",
|
||||
@ -73,7 +80,6 @@
|
||||
"Please input your application!": "당신의 신청서를 입력해주세요!",
|
||||
"Please input your organization!": "귀하의 조직을 입력해 주세요!",
|
||||
"Please select a HTML file": "HTML 파일을 선택해 주세요",
|
||||
"Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "프롬프트 페이지 URL이 클립 보드에 성공적으로 복사되었습니다. 시크릿 모드 창이나 다른 브라우저에 붙여 넣으세요",
|
||||
"Random": "Random",
|
||||
"Real name": "Real name",
|
||||
"Redirect URL": "리디렉트 URL",
|
||||
@ -86,7 +92,6 @@
|
||||
"Rule": "규칙",
|
||||
"SAML metadata": "SAML 메타데이터",
|
||||
"SAML metadata - Tooltip": "SAML 프로토콜의 메타 데이터",
|
||||
"SAML metadata URL copied to clipboard successfully": "SAML 메타데이터의 URL이 성공적으로 클립보드로 복사되었습니다",
|
||||
"SAML reply URL": "SAML 응답 URL",
|
||||
"Select": "Select",
|
||||
"Side panel HTML": "사이드 패널 HTML",
|
||||
@ -95,11 +100,9 @@
|
||||
"Sign Up Error": "가입 오류",
|
||||
"Signin": "Signin",
|
||||
"Signin (Default True)": "Signin (Default True)",
|
||||
"Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "로그인 페이지 URL이 클립보드에 성공적으로 복사되었습니다. 익명 창이나 다른 브라우저에 붙여넣어주세요",
|
||||
"Signin session": "로그인 세션",
|
||||
"Signup items": "가입 항목",
|
||||
"Signup items - Tooltip": "새로운 계정 등록시 사용자가 작성해야하는 항목들",
|
||||
"Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "가입 페이지 URL이 클립보드에 성공적으로 복사되었습니다. 시크릿 창이나 다른 브라우저에 붙여넣어 주십시오",
|
||||
"Tags - Tooltip": "Only users with the tag that is listed in the application tags can login",
|
||||
"The application does not allow to sign up new account": "이 어플리케이션은 새 계정 등록을 허용하지 않습니다",
|
||||
"Token expire": "토큰 만료",
|
||||
@ -113,7 +116,6 @@
|
||||
"Bit size - Tooltip": "비밀 키 길이",
|
||||
"Certificate": "증명서",
|
||||
"Certificate - Tooltip": "액세스 토큰의 JWT 서명을 해독하는 데 사용되는 공개 키 인증서입니다. 이 인증서는 보통 Casdoor SDK 측 (즉, 어플리케이션)에 배치되어 JWT를 구문 분석하는 데 사용됩니다",
|
||||
"Certificate copied to clipboard successfully": "인증서가 클립보드에 성공적으로 복사되었습니다",
|
||||
"Copy certificate": "인증서 복사",
|
||||
"Copy private key": "개인 키 복사",
|
||||
"Crypto algorithm": "암호화 알고리즘",
|
||||
@ -126,7 +128,6 @@
|
||||
"New Cert": "새로운 인증서",
|
||||
"Private key": "개인 키",
|
||||
"Private key - Tooltip": "공개 키 인증서에 해당하는 개인 키",
|
||||
"Private key copied to clipboard successfully": "개인 키가 클립 보드에 성공적으로 복사되었습니다",
|
||||
"Scope - Tooltip": "인증서의 사용 시나리오",
|
||||
"Type - Tooltip": "증명서 유형"
|
||||
},
|
||||
@ -191,6 +192,7 @@
|
||||
"Click to Upload": "클릭하여 업로드하세요",
|
||||
"Close": "닫다",
|
||||
"Confirm": "Confirm",
|
||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||
"Copy": "Copy",
|
||||
"Created time": "작성한 시간",
|
||||
"Custom": "Custom",
|
||||
@ -200,6 +202,8 @@
|
||||
"Default application - Tooltip": "조직 페이지에서 직접 등록한 사용자의 기본 응용 프로그램",
|
||||
"Default avatar": "기본 아바타",
|
||||
"Default avatar - Tooltip": "새로 등록된 사용자가 아바타 이미지를 설정하지 않았을 때 사용되는 기본 아바타입니다",
|
||||
"Default password": "Default password",
|
||||
"Default password - Tooltip": "Default password - Tooltip",
|
||||
"Delete": "삭제하기",
|
||||
"Description": "설명",
|
||||
"Description - Tooltip": "참고용으로 자세한 설명 정보가 제공됩니다. Casdoor 자체는 사용하지 않습니다",
|
||||
@ -218,8 +222,10 @@
|
||||
"Failed to connect to server": "서버에 연결하지 못했습니다",
|
||||
"Failed to delete": "삭제에 실패했습니다",
|
||||
"Failed to enable": "Failed to enable",
|
||||
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
|
||||
"Failed to remove": "Failed to remove",
|
||||
"Failed to save": "저장에 실패했습니다",
|
||||
"Failed to sync": "Failed to sync",
|
||||
"Failed to verify": "Failed to verify",
|
||||
"Favicon": "파비콘",
|
||||
"Favicon - Tooltip": "조직의 모든 Casdoor 페이지에서 사용되는 Favicon 아이콘 URL",
|
||||
@ -251,6 +257,8 @@
|
||||
"MFA items - Tooltip": "MFA items - Tooltip",
|
||||
"Master password": "마스터 비밀번호",
|
||||
"Master password - Tooltip": "이 조직의 모든 사용자에게 로그인하는 데 사용될 수 있으며, 이 사용자로 로그인하여 기술 문제를 해결하는 관리자에게 편리합니다",
|
||||
"Master verification code": "Master verification code",
|
||||
"Master verification code - Tooltip": "Master verification code - Tooltip",
|
||||
"Menu": "메뉴",
|
||||
"Method": "방법",
|
||||
"Model": "모델",
|
||||
@ -272,6 +280,8 @@
|
||||
"Password salt - Tooltip": "암호화에 사용되는 임의 매개변수",
|
||||
"Password type": "암호 유형",
|
||||
"Password type - Tooltip": "데이터베이스 내 비밀번호의 저장 형식",
|
||||
"Payment": "Payment",
|
||||
"Payment - Tooltip": "Payment - Tooltip",
|
||||
"Payments": "지불",
|
||||
"Permissions": "허가",
|
||||
"Permissions - Tooltip": "이 사용자가 소유한 권한",
|
||||
@ -283,6 +293,8 @@
|
||||
"Plans - Tooltip": "Plans - Tooltip",
|
||||
"Preview": "미리보기",
|
||||
"Preview - Tooltip": "구성된 효과를 미리보기합니다",
|
||||
"Pricing": "Pricing",
|
||||
"Pricing - Tooltip": "Pricing - Tooltip",
|
||||
"Pricings": "가격",
|
||||
"Products": "제품들",
|
||||
"Provider": "공급자",
|
||||
@ -296,6 +308,10 @@
|
||||
"Role - Tooltip": "Role - Tooltip",
|
||||
"Roles": "역할들",
|
||||
"Roles - Tooltip": "사용자가 속한 역할들",
|
||||
"Root cert": "Root cert",
|
||||
"Root cert - Tooltip": "Root cert - Tooltip",
|
||||
"SAML attributes": "SAML attributes",
|
||||
"SAML attributes - Tooltip": "SAML attributes - Tooltip",
|
||||
"Save": "저장하다",
|
||||
"Save & Exit": "저장하고 종료하기",
|
||||
"Session ID": "세션 ID",
|
||||
@ -318,6 +334,7 @@
|
||||
"Successfully removed": "Successfully removed",
|
||||
"Successfully saved": "성공적으로 저장되었습니다",
|
||||
"Successfully sent": "Successfully sent",
|
||||
"Successfully synced": "Successfully synced",
|
||||
"Supported country codes": "지원되는 국가 코드들",
|
||||
"Supported country codes - Tooltip": "조직에서 지원하는 국가 코드입니다. 이 코드들은 SMS 인증 코드를 보낼 때 접두사로 선택할 수 있습니다",
|
||||
"Sure to delete": "삭제하시겠습니까?",
|
||||
@ -440,7 +457,6 @@
|
||||
"Multi-factor methods": "Multi-factor methods",
|
||||
"Multi-factor recover": "Multi-factor recover",
|
||||
"Multi-factor recover description": "Multi-factor recover description",
|
||||
"Multi-factor secret to clipboard successfully": "Multi-factor secret to clipboard successfully",
|
||||
"Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
|
||||
"Passcode": "Passcode",
|
||||
"Please bind your email first, the system will automatically uses the mail for multi-factor authentication": "Please bind your email first, the system will automatically uses the mail for multi-factor authentication",
|
||||
@ -573,11 +589,13 @@
|
||||
"plan": {
|
||||
"Edit Plan": "Edit Plan",
|
||||
"New Plan": "New Plan",
|
||||
"Price per month": "Price per month",
|
||||
"Price per month - Tooltip": "Price per month - Tooltip",
|
||||
"Price per year": "Price per year",
|
||||
"Price per year - Tooltip": "Price per year - Tooltip",
|
||||
"per month": "월"
|
||||
"Period": "Period",
|
||||
"Period - Tooltip": "Period - Tooltip",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price - Tooltip",
|
||||
"Related product": "Related product",
|
||||
"per month": "월",
|
||||
"per year": "per year"
|
||||
},
|
||||
"pricing": {
|
||||
"Copy pricing page URL": "가격 페이지 URL 복사",
|
||||
@ -589,7 +607,7 @@
|
||||
"Trial duration": "체험 기간",
|
||||
"Trial duration - Tooltip": "체험 기간의 기간",
|
||||
"days trial available!": "일 무료 체험 가능!",
|
||||
"pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "가격 페이지 URL이 클립보드에 성공적으로 복사되었습니다. 시크릿 창이나 다른 브라우저에 붙여넣기해주세요."
|
||||
"paid-user do not have active subscription or pending subscription, please select a plan to buy": "paid-user do not have active subscription or pending subscription, please select a plan to buy"
|
||||
},
|
||||
"product": {
|
||||
"Alipay": "Alipay",
|
||||
@ -600,17 +618,16 @@
|
||||
"Detail - Tooltip": "제품의 세부사항",
|
||||
"Dummy": "Dummy",
|
||||
"Edit Product": "제품 편집",
|
||||
"I have completed the payment": "저는 지불을 완료했습니다",
|
||||
"Image": "이미지",
|
||||
"Image - Tooltip": "제품 이미지",
|
||||
"New Product": "새로운 제품",
|
||||
"Pay": "결제하다",
|
||||
"PayPal": "페이팔",
|
||||
"Payment cancelled": "Payment cancelled",
|
||||
"Payment failed": "Payment failed",
|
||||
"Payment providers": "지불 공급자",
|
||||
"Payment providers - Tooltip": "결제 서비스 제공자",
|
||||
"Placing order...": "주문하기...",
|
||||
"Please provide your username in the remark": "비고란에 사용자 이름을 제공해 주세요",
|
||||
"Please scan the QR code to pay": "QR 코드를 스캔하여 결제하십시오",
|
||||
"Price": "가격",
|
||||
"Price - Tooltip": "제품 가격",
|
||||
"Quantity": "양량",
|
||||
@ -672,8 +689,8 @@
|
||||
"Content": "Content",
|
||||
"Content - Tooltip": "Content - Tooltip",
|
||||
"Copy": "복사하다",
|
||||
"DB Test": "DB Test",
|
||||
"DB Test - Tooltip": "DB Test - Tooltip",
|
||||
"DB test": "DB test",
|
||||
"DB test - Tooltip": "DB test - Tooltip",
|
||||
"Disable SSL": "SSL을 사용하지 않도록 설정하십시오",
|
||||
"Disable SSL - Tooltip": "STMP 서버와 통신할 때 SSL 프로토콜을 비활성화할지 여부",
|
||||
"Domain": "도메인",
|
||||
@ -700,7 +717,10 @@
|
||||
"Internal": "Internal",
|
||||
"Issuer URL": "발행자 URL",
|
||||
"Issuer URL - Tooltip": "발급자 URL",
|
||||
"Link copied to clipboard successfully": "링크가 클립보드에 성공적으로 복사되었습니다",
|
||||
"Key ID": "Key ID",
|
||||
"Key ID - Tooltip": "Key ID - Tooltip",
|
||||
"Key text": "Key text",
|
||||
"Key text - Tooltip": "Key text - Tooltip",
|
||||
"Metadata": "메타 데이터",
|
||||
"Metadata - Tooltip": "SAML 메타데이터",
|
||||
"Method - Tooltip": "로그인 방법, QR 코드 또는 음성 로그인",
|
||||
@ -754,6 +774,10 @@
|
||||
"Sender Id - Tooltip": "Sender Id - Tooltip",
|
||||
"Sender number": "Sender number",
|
||||
"Sender number - Tooltip": "Sender number - Tooltip",
|
||||
"Service ID identifier": "Service ID identifier",
|
||||
"Service ID identifier - Tooltip": "Service ID identifier - Tooltip",
|
||||
"Service account JSON": "Service account JSON",
|
||||
"Service account JSON - Tooltip": "Service account JSON - Tooltip",
|
||||
"Sign Name": "신명서",
|
||||
"Sign Name - Tooltip": "사용할 서명의 이름",
|
||||
"Sign request": "표지 요청",
|
||||
@ -764,12 +788,15 @@
|
||||
"Signup HTML": "가입 양식 HTML",
|
||||
"Signup HTML - Edit": "가입 HTML - 수정",
|
||||
"Signup HTML - Tooltip": "기본 가입 페이지 스타일을 바꾸기 위한 사용자 지정 HTML",
|
||||
"Signup group": "Signup group",
|
||||
"Silent": "Silent",
|
||||
"Site key": "사이트 키",
|
||||
"Site key - Tooltip": "사이트 키",
|
||||
"Sliding Validation": "Sliding Validation",
|
||||
"Sub type": "하위 유형",
|
||||
"Sub type - Tooltip": "서브 타입",
|
||||
"Team ID": "Team ID",
|
||||
"Team ID - Tooltip": "Team ID - Tooltip",
|
||||
"Template code": "템플릿 코드",
|
||||
"Template code - Tooltip": "템플릿 코드",
|
||||
"Test Email": "테스트 이메일",
|
||||
@ -780,6 +807,8 @@
|
||||
"Token URL - Tooltip": "토큰 URL",
|
||||
"Type": "타입",
|
||||
"Type - Tooltip": "유형을 선택하세요",
|
||||
"User flow": "User flow",
|
||||
"User flow - Tooltip": "User flow - Tooltip",
|
||||
"User mapping": "User mapping",
|
||||
"User mapping - Tooltip": "User mapping - Tooltip",
|
||||
"UserInfo URL": "사용자 정보 URL",
|
||||
@ -801,6 +830,8 @@
|
||||
"New Role": "새로운 역할",
|
||||
"Sub domains": "하위 도메인",
|
||||
"Sub domains - Tooltip": "현재 역할에 포함된 도메인",
|
||||
"Sub groups": "Sub groups",
|
||||
"Sub groups - Tooltip": "Sub groups - Tooltip",
|
||||
"Sub roles": "서브 역할",
|
||||
"Sub roles - Tooltip": "현재 역할에 포함된 역할",
|
||||
"Sub users": "하위 사용자들",
|
||||
@ -812,6 +843,9 @@
|
||||
"Confirm": "확인하다",
|
||||
"Decline": "쇠퇴하다",
|
||||
"Have account?": "계정이 있나요?",
|
||||
"Label": "Label",
|
||||
"Label HTML": "Label HTML",
|
||||
"Placeholder": "Placeholder",
|
||||
"Please accept the agreement!": "계약서를 승인해주세요!",
|
||||
"Please click the below button to sign in": "아래 버튼을 클릭하여 로그인하세요",
|
||||
"Please confirm your password!": "비밀번호를 확인해주세요!",
|
||||
@ -830,6 +864,11 @@
|
||||
"Please select your country/region!": "국가 / 지역을 선택해주세요!",
|
||||
"Terms of Use": "사용 약관",
|
||||
"Terms of Use - Tooltip": "등록 중 사용자가 읽어야 하고 동의해야하는 이용 약관",
|
||||
"Text 1": "Text 1",
|
||||
"Text 2": "Text 2",
|
||||
"Text 3": "Text 3",
|
||||
"Text 4": "Text 4",
|
||||
"Text 5": "Text 5",
|
||||
"The input is not invoice Tax ID!": "입력한 것은 송장 세금 ID가 아닙니다!",
|
||||
"The input is not invoice title!": "입력값은 송장 제목이 아닙니다!",
|
||||
"The input is not valid Email!": "입력 값은 유효한 이메일이 아닙니다!",
|
||||
@ -841,14 +880,19 @@
|
||||
"sign in now": "지금 로그인하십시오"
|
||||
},
|
||||
"subscription": {
|
||||
"Duration": "기간",
|
||||
"Duration - Tooltip": "구독 기간",
|
||||
"Active": "Active",
|
||||
"Edit Subscription": "Edit Subscription",
|
||||
"End date": "종료일",
|
||||
"End date - Tooltip": "종료일",
|
||||
"End time": "End time",
|
||||
"End time - Tooltip": "End time - Tooltip",
|
||||
"Error": "Error",
|
||||
"Expired": "Expired",
|
||||
"New Subscription": "New Subscription",
|
||||
"Start date": "시작일",
|
||||
"Start date - Tooltip": "시작일"
|
||||
"Pending": "Pending",
|
||||
"Period": "Period",
|
||||
"Start time": "Start time",
|
||||
"Start time - Tooltip": "Start time - Tooltip",
|
||||
"Suspended": "Suspended",
|
||||
"Upcoming": "Upcoming"
|
||||
},
|
||||
"syncer": {
|
||||
"Affiliation table": "소속 테이블",
|
||||
@ -872,6 +916,8 @@
|
||||
"Is read-only": "Is read-only",
|
||||
"Is read-only - Tooltip": "Is read-only - Tooltip",
|
||||
"New Syncer": "신규 싱크어",
|
||||
"SSL mode": "SSL mode",
|
||||
"SSL mode - Tooltip": "SSL mode - Tooltip",
|
||||
"Sync interval": "동기화 간격",
|
||||
"Sync interval - Tooltip": "초 단위의 단위",
|
||||
"Table": "테이블",
|
||||
@ -913,11 +959,19 @@
|
||||
},
|
||||
"token": {
|
||||
"Access token": "액세스 토큰",
|
||||
"Access token - Tooltip": "Access token - Tooltip",
|
||||
"Authorization code": "승인 코드",
|
||||
"Authorization code - Tooltip": "Authorization code - Tooltip",
|
||||
"Copy access token": "Copy access token",
|
||||
"Copy parsed result": "Copy parsed result",
|
||||
"Edit Token": "편집 토큰",
|
||||
"Expires in": "만료일",
|
||||
"Expires in - Tooltip": "Expires in - Tooltip",
|
||||
"New Token": "새로운 토큰",
|
||||
"Token type": "토큰 유형"
|
||||
"Parsed result": "Parsed result",
|
||||
"Parsed result - Tooltip": "Parsed result - Tooltip",
|
||||
"Token type": "토큰 유형",
|
||||
"Token type - Tooltip": "Token type - Tooltip"
|
||||
},
|
||||
"user": {
|
||||
"3rd-party logins": "제3자 로그인",
|
||||
@ -974,6 +1028,8 @@
|
||||
"Managed accounts": "관리 계정",
|
||||
"Modify password...": "비밀번호 수정하기...",
|
||||
"Multi-factor authentication": "Multi-factor authentication",
|
||||
"Name": "Name",
|
||||
"Name format": "Name format",
|
||||
"New Email": "새 이메일",
|
||||
"New Password": "새로운 비밀번호",
|
||||
"New User": "새로운 사용자",
|
||||
@ -1011,6 +1067,7 @@
|
||||
"Upload ID card front picture": "Upload ID card front picture",
|
||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||
"Upload a photo": "사진을 업로드하세요",
|
||||
"Value": "Value",
|
||||
"Values": "가치들",
|
||||
"Verification code sent": "인증 코드가 전송되었습니다",
|
||||
"WebAuthn credentials": "웹 인증 자격증명",
|
||||
|
@ -12,7 +12,9 @@
|
||||
"Policies": "Policies",
|
||||
"Policies - Tooltip": "Casbin policy rules",
|
||||
"Rule type": "Rule type",
|
||||
"Sync policies successfully": "Sync policies successfully"
|
||||
"Sync policies successfully": "Sync policies successfully",
|
||||
"Use same DB": "Use same DB",
|
||||
"Use same DB - Tooltip": "Use same DB - Tooltip"
|
||||
},
|
||||
"application": {
|
||||
"Always": "Always",
|
||||
@ -30,6 +32,8 @@
|
||||
"Edit Application": "Edit Application",
|
||||
"Enable Email linking": "Enable Email linking",
|
||||
"Enable Email linking - Tooltip": "When using 3rd-party providers to log in, if there is a user in the organization with the same Email, the 3rd-party login method will be automatically associated with that user",
|
||||
"Enable SAML C14N10": "Enable SAML C14N10",
|
||||
"Enable SAML C14N10 - Tooltip": "Enable SAML C14N10 - Tooltip",
|
||||
"Enable SAML compression": "Enable SAML compression",
|
||||
"Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp",
|
||||
"Enable WebAuthn signin": "Enable WebAuthn signin",
|
||||
@ -42,6 +46,10 @@
|
||||
"Enable signin session - Tooltip": "Whether Casdoor maintains a session after logging into Casdoor from the application",
|
||||
"Enable signup": "Enable signup",
|
||||
"Enable signup - Tooltip": "Whether to allow users to register a new account",
|
||||
"Failed signin frozen time": "Failed signin frozen time",
|
||||
"Failed signin frozen time - Tooltip": "Failed signin frozen time - Tooltip",
|
||||
"Failed signin limit": "Failed signin limit",
|
||||
"Failed signin limit - Tooltip": "Failed signin limit - Tooltip",
|
||||
"Failed to sign in": "Failed to sign in",
|
||||
"File uploaded successfully": "File uploaded successfully",
|
||||
"First, last": "First, last",
|
||||
@ -60,7 +68,6 @@
|
||||
"Input": "Input",
|
||||
"Invitation code": "Invitation code",
|
||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||
"Left": "Left",
|
||||
"Logged in successfully": "Logged in successfully",
|
||||
"Logged out successfully": "Logged out successfully",
|
||||
@ -73,7 +80,6 @@
|
||||
"Please input your application!": "Please input your application!",
|
||||
"Please input your organization!": "Please input your organization!",
|
||||
"Please select a HTML file": "Please select a HTML file",
|
||||
"Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Random": "Random",
|
||||
"Real name": "Real name",
|
||||
"Redirect URL": "Redirect URL",
|
||||
@ -86,7 +92,6 @@
|
||||
"Rule": "Rule",
|
||||
"SAML metadata": "SAML metadata",
|
||||
"SAML metadata - Tooltip": "The metadata of SAML protocol",
|
||||
"SAML metadata URL copied to clipboard successfully": "SAML metadata URL copied to clipboard successfully",
|
||||
"SAML reply URL": "SAML reply URL",
|
||||
"Select": "Select",
|
||||
"Side panel HTML": "Side panel HTML",
|
||||
@ -95,11 +100,9 @@
|
||||
"Sign Up Error": "Sign Up Error",
|
||||
"Signin": "Signin",
|
||||
"Signin (Default True)": "Signin (Default True)",
|
||||
"Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Signin session": "Signin session",
|
||||
"Signup items": "Signup items",
|
||||
"Signup items - Tooltip": "Items for users to fill in when registering new accounts",
|
||||
"Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Tags - Tooltip": "Only users with the tag that is listed in the application tags can login",
|
||||
"The application does not allow to sign up new account": "The application does not allow to sign up new account",
|
||||
"Token expire": "Token expire",
|
||||
@ -113,7 +116,6 @@
|
||||
"Bit size - Tooltip": "Secret key length",
|
||||
"Certificate": "Certificate",
|
||||
"Certificate - Tooltip": "Public key certificate, used for decrypting the JWT signature of the Access Token. This certificate usually needs to be deployed on the Casdoor SDK side (i.e., the application) to parse the JWT",
|
||||
"Certificate copied to clipboard successfully": "Certificate copied to clipboard successfully",
|
||||
"Copy certificate": "Copy certificate",
|
||||
"Copy private key": "Copy private key",
|
||||
"Crypto algorithm": "Crypto algorithm",
|
||||
@ -126,7 +128,6 @@
|
||||
"New Cert": "New Cert",
|
||||
"Private key": "Private key",
|
||||
"Private key - Tooltip": "Private key corresponding to the public key certificate",
|
||||
"Private key copied to clipboard successfully": "Private key copied to clipboard successfully",
|
||||
"Scope - Tooltip": "Usage scenarios of the certificate",
|
||||
"Type - Tooltip": "Type of certificate"
|
||||
},
|
||||
@ -191,6 +192,7 @@
|
||||
"Click to Upload": "Click to Upload",
|
||||
"Close": "Close",
|
||||
"Confirm": "Confirm",
|
||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||
"Copy": "Copy",
|
||||
"Created time": "Created time",
|
||||
"Custom": "Custom",
|
||||
@ -200,6 +202,8 @@
|
||||
"Default application - Tooltip": "Default application for users registered directly from the organization page",
|
||||
"Default avatar": "Default avatar",
|
||||
"Default avatar - Tooltip": "Default avatar used when newly registered users do not set an avatar image",
|
||||
"Default password": "Default password",
|
||||
"Default password - Tooltip": "Default password - Tooltip",
|
||||
"Delete": "Delete",
|
||||
"Description": "Description",
|
||||
"Description - Tooltip": "Detailed description information for reference, Casdoor itself will not use it",
|
||||
@ -218,8 +222,10 @@
|
||||
"Failed to connect to server": "Failed to connect to server",
|
||||
"Failed to delete": "Failed to delete",
|
||||
"Failed to enable": "Failed to enable",
|
||||
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
|
||||
"Failed to remove": "Failed to remove",
|
||||
"Failed to save": "Failed to save",
|
||||
"Failed to sync": "Failed to sync",
|
||||
"Failed to verify": "Failed to verify",
|
||||
"Favicon": "Favicon",
|
||||
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
|
||||
@ -251,6 +257,8 @@
|
||||
"MFA items - Tooltip": "MFA items - Tooltip",
|
||||
"Master password": "Master password",
|
||||
"Master password - Tooltip": "Can be used to log in to all users under this organization, making it convenient for administrators to log in as this user to solve technical issues",
|
||||
"Master verification code": "Master verification code",
|
||||
"Master verification code - Tooltip": "Master verification code - Tooltip",
|
||||
"Menu": "Menu",
|
||||
"Method": "Method",
|
||||
"Model": "Model",
|
||||
@ -272,6 +280,8 @@
|
||||
"Password salt - Tooltip": "Random parameter used for password encryption",
|
||||
"Password type": "Password type",
|
||||
"Password type - Tooltip": "Storage format of passwords in the database",
|
||||
"Payment": "Payment",
|
||||
"Payment - Tooltip": "Payment - Tooltip",
|
||||
"Payments": "Payments",
|
||||
"Permissions": "Permissions",
|
||||
"Permissions - Tooltip": "Permissions owned by this user",
|
||||
@ -283,6 +293,8 @@
|
||||
"Plans - Tooltip": "Plans - Tooltip",
|
||||
"Preview": "Preview",
|
||||
"Preview - Tooltip": "Preview the configured effects",
|
||||
"Pricing": "Pricing",
|
||||
"Pricing - Tooltip": "Pricing - Tooltip",
|
||||
"Pricings": "Pricings",
|
||||
"Products": "Products",
|
||||
"Provider": "Provider",
|
||||
@ -296,6 +308,10 @@
|
||||
"Role - Tooltip": "Role - Tooltip",
|
||||
"Roles": "Roles",
|
||||
"Roles - Tooltip": "Roles that the user belongs to",
|
||||
"Root cert": "Root cert",
|
||||
"Root cert - Tooltip": "Root cert - Tooltip",
|
||||
"SAML attributes": "SAML attributes",
|
||||
"SAML attributes - Tooltip": "SAML attributes - Tooltip",
|
||||
"Save": "Save",
|
||||
"Save & Exit": "Save & Exit",
|
||||
"Session ID": "Session ID",
|
||||
@ -318,6 +334,7 @@
|
||||
"Successfully removed": "Successfully removed",
|
||||
"Successfully saved": "Successfully saved",
|
||||
"Successfully sent": "Successfully sent",
|
||||
"Successfully synced": "Successfully synced",
|
||||
"Supported country codes": "Supported country codes",
|
||||
"Supported country codes - Tooltip": "Country codes supported by the organization. These codes can be selected as a prefix when sending SMS verification codes",
|
||||
"Sure to delete": "Sure to delete",
|
||||
@ -440,7 +457,6 @@
|
||||
"Multi-factor methods": "Multi-factor methods",
|
||||
"Multi-factor recover": "Multi-factor recover",
|
||||
"Multi-factor recover description": "Multi-factor recover description",
|
||||
"Multi-factor secret to clipboard successfully": "Multi-factor secret to clipboard successfully",
|
||||
"Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
|
||||
"Passcode": "Passcode",
|
||||
"Please bind your email first, the system will automatically uses the mail for multi-factor authentication": "Please bind your email first, the system will automatically uses the mail for multi-factor authentication",
|
||||
@ -573,11 +589,13 @@
|
||||
"plan": {
|
||||
"Edit Plan": "Edit Plan",
|
||||
"New Plan": "New Plan",
|
||||
"Price per month": "Price per month",
|
||||
"Price per month - Tooltip": "Price per month - Tooltip",
|
||||
"Price per year": "Price per year",
|
||||
"Price per year - Tooltip": "Price per year - Tooltip",
|
||||
"per month": "per month"
|
||||
"Period": "Period",
|
||||
"Period - Tooltip": "Period - Tooltip",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price - Tooltip",
|
||||
"Related product": "Related product",
|
||||
"per month": "per month",
|
||||
"per year": "per year"
|
||||
},
|
||||
"pricing": {
|
||||
"Copy pricing page URL": "Copy pricing page URL",
|
||||
@ -589,7 +607,7 @@
|
||||
"Trial duration": "Trial duration",
|
||||
"Trial duration - Tooltip": "Trial duration period",
|
||||
"days trial available!": "days trial available!",
|
||||
"pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser"
|
||||
"paid-user do not have active subscription or pending subscription, please select a plan to buy": "paid-user do not have active subscription or pending subscription, please select a plan to buy"
|
||||
},
|
||||
"product": {
|
||||
"Alipay": "Alipay",
|
||||
@ -600,17 +618,16 @@
|
||||
"Detail - Tooltip": "Detail of product",
|
||||
"Dummy": "Dummy",
|
||||
"Edit Product": "Edit Product",
|
||||
"I have completed the payment": "I have completed the payment",
|
||||
"Image": "Image",
|
||||
"Image - Tooltip": "Image of product",
|
||||
"New Product": "New Product",
|
||||
"Pay": "Pay",
|
||||
"PayPal": "PayPal",
|
||||
"Payment cancelled": "Payment cancelled",
|
||||
"Payment failed": "Payment failed",
|
||||
"Payment providers": "Payment providers",
|
||||
"Payment providers - Tooltip": "Providers of payment services",
|
||||
"Placing order...": "Placing order...",
|
||||
"Please provide your username in the remark": "Please provide your username in the remark",
|
||||
"Please scan the QR code to pay": "Please scan the QR code to pay",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price of product",
|
||||
"Quantity": "Quantity",
|
||||
@ -672,8 +689,8 @@
|
||||
"Content": "Content",
|
||||
"Content - Tooltip": "Content - Tooltip",
|
||||
"Copy": "Copy",
|
||||
"DB Test": "DB Test",
|
||||
"DB Test - Tooltip": "DB Test - Tooltip",
|
||||
"DB test": "DB test",
|
||||
"DB test - Tooltip": "DB test - Tooltip",
|
||||
"Disable SSL": "Disable SSL",
|
||||
"Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server",
|
||||
"Domain": "Domain",
|
||||
@ -700,7 +717,10 @@
|
||||
"Internal": "Internal",
|
||||
"Issuer URL": "Issuer URL",
|
||||
"Issuer URL - Tooltip": "Issuer URL",
|
||||
"Link copied to clipboard successfully": "Link copied to clipboard successfully",
|
||||
"Key ID": "Key ID",
|
||||
"Key ID - Tooltip": "Key ID - Tooltip",
|
||||
"Key text": "Key text",
|
||||
"Key text - Tooltip": "Key text - Tooltip",
|
||||
"Metadata": "Metadata",
|
||||
"Metadata - Tooltip": "SAML metadata",
|
||||
"Method - Tooltip": "Login method, QR code or silent login",
|
||||
@ -754,6 +774,10 @@
|
||||
"Sender Id - Tooltip": "Sender Id - Tooltip",
|
||||
"Sender number": "Sender number",
|
||||
"Sender number - Tooltip": "Sender number - Tooltip",
|
||||
"Service ID identifier": "Service ID identifier",
|
||||
"Service ID identifier - Tooltip": "Service ID identifier - Tooltip",
|
||||
"Service account JSON": "Service account JSON",
|
||||
"Service account JSON - Tooltip": "Service account JSON - Tooltip",
|
||||
"Sign Name": "Sign Name",
|
||||
"Sign Name - Tooltip": "Name of the signature to be used",
|
||||
"Sign request": "Sign request",
|
||||
@ -764,12 +788,15 @@
|
||||
"Signup HTML": "Signup HTML",
|
||||
"Signup HTML - Edit": "Signup HTML - Edit",
|
||||
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
|
||||
"Signup group": "Signup group",
|
||||
"Silent": "Silent",
|
||||
"Site key": "Site key",
|
||||
"Site key - Tooltip": "Site key",
|
||||
"Sliding Validation": "Sliding Validation",
|
||||
"Sub type": "Sub type",
|
||||
"Sub type - Tooltip": "Sub type",
|
||||
"Team ID": "Team ID",
|
||||
"Team ID - Tooltip": "Team ID - Tooltip",
|
||||
"Template code": "Template code",
|
||||
"Template code - Tooltip": "Template code",
|
||||
"Test Email": "Test Email",
|
||||
@ -780,6 +807,8 @@
|
||||
"Token URL - Tooltip": "Token URL",
|
||||
"Type": "Type",
|
||||
"Type - Tooltip": "Select a type",
|
||||
"User flow": "User flow",
|
||||
"User flow - Tooltip": "User flow - Tooltip",
|
||||
"User mapping": "User mapping",
|
||||
"User mapping - Tooltip": "User mapping - Tooltip",
|
||||
"UserInfo URL": "UserInfo URL",
|
||||
@ -801,6 +830,8 @@
|
||||
"New Role": "New Role",
|
||||
"Sub domains": "Sub domains",
|
||||
"Sub domains - Tooltip": "Domains included in the current role",
|
||||
"Sub groups": "Sub groups",
|
||||
"Sub groups - Tooltip": "Sub groups - Tooltip",
|
||||
"Sub roles": "Sub roles",
|
||||
"Sub roles - Tooltip": "Roles included in the current role",
|
||||
"Sub users": "Sub users",
|
||||
@ -812,6 +843,9 @@
|
||||
"Confirm": "Confirm",
|
||||
"Decline": "Decline",
|
||||
"Have account?": "Have account?",
|
||||
"Label": "Label",
|
||||
"Label HTML": "Label HTML",
|
||||
"Placeholder": "Placeholder",
|
||||
"Please accept the agreement!": "Please accept the agreement!",
|
||||
"Please click the below button to sign in": "Please click the below button to sign in",
|
||||
"Please confirm your password!": "Please confirm your password!",
|
||||
@ -830,6 +864,11 @@
|
||||
"Please select your country/region!": "Please select your country/region!",
|
||||
"Terms of Use": "Terms of Use",
|
||||
"Terms of Use - Tooltip": "Terms of use that users need to read and agree to during registration",
|
||||
"Text 1": "Text 1",
|
||||
"Text 2": "Text 2",
|
||||
"Text 3": "Text 3",
|
||||
"Text 4": "Text 4",
|
||||
"Text 5": "Text 5",
|
||||
"The input is not invoice Tax ID!": "The input is not invoice Tax ID!",
|
||||
"The input is not invoice title!": "The input is not invoice title!",
|
||||
"The input is not valid Email!": "The input is not valid Email!",
|
||||
@ -841,14 +880,19 @@
|
||||
"sign in now": "sign in now"
|
||||
},
|
||||
"subscription": {
|
||||
"Duration": "Duration",
|
||||
"Duration - Tooltip": "Subscription duration",
|
||||
"Active": "Active",
|
||||
"Edit Subscription": "Edit Subscription",
|
||||
"End date": "End date",
|
||||
"End date - Tooltip": "End date",
|
||||
"End time": "End time",
|
||||
"End time - Tooltip": "End time - Tooltip",
|
||||
"Error": "Error",
|
||||
"Expired": "Expired",
|
||||
"New Subscription": "New Subscription",
|
||||
"Start date": "Start date",
|
||||
"Start date - Tooltip": "Start date"
|
||||
"Pending": "Pending",
|
||||
"Period": "Period",
|
||||
"Start time": "Start time",
|
||||
"Start time - Tooltip": "Start time - Tooltip",
|
||||
"Suspended": "Suspended",
|
||||
"Upcoming": "Upcoming"
|
||||
},
|
||||
"syncer": {
|
||||
"Affiliation table": "Affiliation table",
|
||||
@ -872,6 +916,8 @@
|
||||
"Is read-only": "Is read-only",
|
||||
"Is read-only - Tooltip": "Is read-only - Tooltip",
|
||||
"New Syncer": "New Syncer",
|
||||
"SSL mode": "SSL mode",
|
||||
"SSL mode - Tooltip": "SSL mode - Tooltip",
|
||||
"Sync interval": "Sync interval",
|
||||
"Sync interval - Tooltip": "Unit in seconds",
|
||||
"Table": "Table",
|
||||
@ -913,11 +959,19 @@
|
||||
},
|
||||
"token": {
|
||||
"Access token": "Access token",
|
||||
"Access token - Tooltip": "Access token - Tooltip",
|
||||
"Authorization code": "Authorization code",
|
||||
"Authorization code - Tooltip": "Authorization code - Tooltip",
|
||||
"Copy access token": "Copy access token",
|
||||
"Copy parsed result": "Copy parsed result",
|
||||
"Edit Token": "Edit Token",
|
||||
"Expires in": "Expires in",
|
||||
"Expires in - Tooltip": "Expires in - Tooltip",
|
||||
"New Token": "New Token",
|
||||
"Token type": "Token type"
|
||||
"Parsed result": "Parsed result",
|
||||
"Parsed result - Tooltip": "Parsed result - Tooltip",
|
||||
"Token type": "Token type",
|
||||
"Token type - Tooltip": "Token type - Tooltip"
|
||||
},
|
||||
"user": {
|
||||
"3rd-party logins": "3rd-party logins",
|
||||
@ -974,6 +1028,8 @@
|
||||
"Managed accounts": "Managed accounts",
|
||||
"Modify password...": "Modify password...",
|
||||
"Multi-factor authentication": "Multi-factor authentication",
|
||||
"Name": "Name",
|
||||
"Name format": "Name format",
|
||||
"New Email": "New Email",
|
||||
"New Password": "New Password",
|
||||
"New User": "New User",
|
||||
@ -1011,6 +1067,7 @@
|
||||
"Upload ID card front picture": "Upload ID card front picture",
|
||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||
"Upload a photo": "Upload a photo",
|
||||
"Value": "Value",
|
||||
"Values": "Values",
|
||||
"Verification code sent": "Verification code sent",
|
||||
"WebAuthn credentials": "WebAuthn credentials",
|
||||
|
@ -12,7 +12,9 @@
|
||||
"Policies": "Policies",
|
||||
"Policies - Tooltip": "Casbin policy rules",
|
||||
"Rule type": "Rule type",
|
||||
"Sync policies successfully": "Sync policies successfully"
|
||||
"Sync policies successfully": "Sync policies successfully",
|
||||
"Use same DB": "Use same DB",
|
||||
"Use same DB - Tooltip": "Use same DB - Tooltip"
|
||||
},
|
||||
"application": {
|
||||
"Always": "Always",
|
||||
@ -30,6 +32,8 @@
|
||||
"Edit Application": "Edit Application",
|
||||
"Enable Email linking": "Enable Email linking",
|
||||
"Enable Email linking - Tooltip": "When using 3rd-party providers to log in, if there is a user in the organization with the same Email, the 3rd-party login method will be automatically associated with that user",
|
||||
"Enable SAML C14N10": "Enable SAML C14N10",
|
||||
"Enable SAML C14N10 - Tooltip": "Enable SAML C14N10 - Tooltip",
|
||||
"Enable SAML compression": "Enable SAML compression",
|
||||
"Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp",
|
||||
"Enable WebAuthn signin": "Enable WebAuthn signin",
|
||||
@ -42,6 +46,10 @@
|
||||
"Enable signin session - Tooltip": "Whether Casdoor maintains a session after logging into Casdoor from the application",
|
||||
"Enable signup": "Enable signup",
|
||||
"Enable signup - Tooltip": "Whether to allow users to register a new account",
|
||||
"Failed signin frozen time": "Failed signin frozen time",
|
||||
"Failed signin frozen time - Tooltip": "Failed signin frozen time - Tooltip",
|
||||
"Failed signin limit": "Failed signin limit",
|
||||
"Failed signin limit - Tooltip": "Failed signin limit - Tooltip",
|
||||
"Failed to sign in": "Failed to sign in",
|
||||
"File uploaded successfully": "File uploaded successfully",
|
||||
"First, last": "First, last",
|
||||
@ -60,7 +68,6 @@
|
||||
"Input": "Input",
|
||||
"Invitation code": "Invitation code",
|
||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||
"Left": "Left",
|
||||
"Logged in successfully": "Logged in successfully",
|
||||
"Logged out successfully": "Logged out successfully",
|
||||
@ -73,7 +80,6 @@
|
||||
"Please input your application!": "Please input your application!",
|
||||
"Please input your organization!": "Please input your organization!",
|
||||
"Please select a HTML file": "Please select a HTML file",
|
||||
"Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Random": "Random",
|
||||
"Real name": "Real name",
|
||||
"Redirect URL": "Redirect URL",
|
||||
@ -86,7 +92,6 @@
|
||||
"Rule": "Rule",
|
||||
"SAML metadata": "SAML metadata",
|
||||
"SAML metadata - Tooltip": "The metadata of SAML protocol",
|
||||
"SAML metadata URL copied to clipboard successfully": "SAML metadata URL copied to clipboard successfully",
|
||||
"SAML reply URL": "SAML reply URL",
|
||||
"Select": "Select",
|
||||
"Side panel HTML": "Side panel HTML",
|
||||
@ -95,11 +100,9 @@
|
||||
"Sign Up Error": "Sign Up Error",
|
||||
"Signin": "Signin",
|
||||
"Signin (Default True)": "Signin (Default True)",
|
||||
"Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Signin session": "Signin session",
|
||||
"Signup items": "Signup items",
|
||||
"Signup items - Tooltip": "Items for users to fill in when registering new accounts",
|
||||
"Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Tags - Tooltip": "Only users with the tag that is listed in the application tags can login",
|
||||
"The application does not allow to sign up new account": "The application does not allow to sign up new account",
|
||||
"Token expire": "Token expire",
|
||||
@ -113,7 +116,6 @@
|
||||
"Bit size - Tooltip": "Secret key length",
|
||||
"Certificate": "Certificate",
|
||||
"Certificate - Tooltip": "Public key certificate, used for decrypting the JWT signature of the Access Token. This certificate usually needs to be deployed on the Casdoor SDK side (i.e., the application) to parse the JWT",
|
||||
"Certificate copied to clipboard successfully": "Certificate copied to clipboard successfully",
|
||||
"Copy certificate": "Copy certificate",
|
||||
"Copy private key": "Copy private key",
|
||||
"Crypto algorithm": "Crypto algorithm",
|
||||
@ -126,7 +128,6 @@
|
||||
"New Cert": "New Cert",
|
||||
"Private key": "Private key",
|
||||
"Private key - Tooltip": "Private key corresponding to the public key certificate",
|
||||
"Private key copied to clipboard successfully": "Private key copied to clipboard successfully",
|
||||
"Scope - Tooltip": "Usage scenarios of the certificate",
|
||||
"Type - Tooltip": "Type of certificate"
|
||||
},
|
||||
@ -191,6 +192,7 @@
|
||||
"Click to Upload": "Click to Upload",
|
||||
"Close": "Close",
|
||||
"Confirm": "Confirm",
|
||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||
"Copy": "Copy",
|
||||
"Created time": "Created time",
|
||||
"Custom": "Custom",
|
||||
@ -200,6 +202,8 @@
|
||||
"Default application - Tooltip": "Default application for users registered directly from the organization page",
|
||||
"Default avatar": "Default avatar",
|
||||
"Default avatar - Tooltip": "Default avatar used when newly registered users do not set an avatar image",
|
||||
"Default password": "Default password",
|
||||
"Default password - Tooltip": "Default password - Tooltip",
|
||||
"Delete": "Delete",
|
||||
"Description": "Description",
|
||||
"Description - Tooltip": "Detailed description information for reference, Casdoor itself will not use it",
|
||||
@ -218,8 +222,10 @@
|
||||
"Failed to connect to server": "Failed to connect to server",
|
||||
"Failed to delete": "Failed to delete",
|
||||
"Failed to enable": "Failed to enable",
|
||||
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
|
||||
"Failed to remove": "Failed to remove",
|
||||
"Failed to save": "Failed to save",
|
||||
"Failed to sync": "Failed to sync",
|
||||
"Failed to verify": "Failed to verify",
|
||||
"Favicon": "Favicon",
|
||||
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
|
||||
@ -251,6 +257,8 @@
|
||||
"MFA items - Tooltip": "MFA items - Tooltip",
|
||||
"Master password": "Master password",
|
||||
"Master password - Tooltip": "Can be used to log in to all users under this organization, making it convenient for administrators to log in as this user to solve technical issues",
|
||||
"Master verification code": "Master verification code",
|
||||
"Master verification code - Tooltip": "Master verification code - Tooltip",
|
||||
"Menu": "Menu",
|
||||
"Method": "Method",
|
||||
"Model": "Model",
|
||||
@ -272,6 +280,8 @@
|
||||
"Password salt - Tooltip": "Random parameter used for password encryption",
|
||||
"Password type": "Password type",
|
||||
"Password type - Tooltip": "Storage format of passwords in the database",
|
||||
"Payment": "Payment",
|
||||
"Payment - Tooltip": "Payment - Tooltip",
|
||||
"Payments": "Payments",
|
||||
"Permissions": "Permissions",
|
||||
"Permissions - Tooltip": "Permissions owned by this user",
|
||||
@ -283,6 +293,8 @@
|
||||
"Plans - Tooltip": "Plans - Tooltip",
|
||||
"Preview": "Preview",
|
||||
"Preview - Tooltip": "Preview the configured effects",
|
||||
"Pricing": "Pricing",
|
||||
"Pricing - Tooltip": "Pricing - Tooltip",
|
||||
"Pricings": "Pricings",
|
||||
"Products": "Products",
|
||||
"Provider": "Provider",
|
||||
@ -296,6 +308,10 @@
|
||||
"Role - Tooltip": "Role - Tooltip",
|
||||
"Roles": "Roles",
|
||||
"Roles - Tooltip": "Roles that the user belongs to",
|
||||
"Root cert": "Root cert",
|
||||
"Root cert - Tooltip": "Root cert - Tooltip",
|
||||
"SAML attributes": "SAML attributes",
|
||||
"SAML attributes - Tooltip": "SAML attributes - Tooltip",
|
||||
"Save": "Save",
|
||||
"Save & Exit": "Save & Exit",
|
||||
"Session ID": "Session ID",
|
||||
@ -318,6 +334,7 @@
|
||||
"Successfully removed": "Successfully removed",
|
||||
"Successfully saved": "Successfully saved",
|
||||
"Successfully sent": "Successfully sent",
|
||||
"Successfully synced": "Successfully synced",
|
||||
"Supported country codes": "Supported country codes",
|
||||
"Supported country codes - Tooltip": "Country codes supported by the organization. These codes can be selected as a prefix when sending SMS verification codes",
|
||||
"Sure to delete": "Sure to delete",
|
||||
@ -440,7 +457,6 @@
|
||||
"Multi-factor methods": "Multi-factor methods",
|
||||
"Multi-factor recover": "Multi-factor recover",
|
||||
"Multi-factor recover description": "Multi-factor recover description",
|
||||
"Multi-factor secret to clipboard successfully": "Multi-factor secret to clipboard successfully",
|
||||
"Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
|
||||
"Passcode": "Passcode",
|
||||
"Please bind your email first, the system will automatically uses the mail for multi-factor authentication": "Please bind your email first, the system will automatically uses the mail for multi-factor authentication",
|
||||
@ -573,11 +589,13 @@
|
||||
"plan": {
|
||||
"Edit Plan": "Edit Plan",
|
||||
"New Plan": "New Plan",
|
||||
"Price per month": "Price per month",
|
||||
"Price per month - Tooltip": "Price per month - Tooltip",
|
||||
"Price per year": "Price per year",
|
||||
"Price per year - Tooltip": "Price per year - Tooltip",
|
||||
"per month": "per month"
|
||||
"Period": "Period",
|
||||
"Period - Tooltip": "Period - Tooltip",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price - Tooltip",
|
||||
"Related product": "Related product",
|
||||
"per month": "per month",
|
||||
"per year": "per year"
|
||||
},
|
||||
"pricing": {
|
||||
"Copy pricing page URL": "Copy pricing page URL",
|
||||
@ -589,7 +607,7 @@
|
||||
"Trial duration": "Trial duration",
|
||||
"Trial duration - Tooltip": "Trial duration period",
|
||||
"days trial available!": "days trial available!",
|
||||
"pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser"
|
||||
"paid-user do not have active subscription or pending subscription, please select a plan to buy": "paid-user do not have active subscription or pending subscription, please select a plan to buy"
|
||||
},
|
||||
"product": {
|
||||
"Alipay": "Alipay",
|
||||
@ -600,17 +618,16 @@
|
||||
"Detail - Tooltip": "Detail of product",
|
||||
"Dummy": "Dummy",
|
||||
"Edit Product": "Edit Product",
|
||||
"I have completed the payment": "I have completed the payment",
|
||||
"Image": "Image",
|
||||
"Image - Tooltip": "Image of product",
|
||||
"New Product": "New Product",
|
||||
"Pay": "Pay",
|
||||
"PayPal": "PayPal",
|
||||
"Payment cancelled": "Payment cancelled",
|
||||
"Payment failed": "Payment failed",
|
||||
"Payment providers": "Payment providers",
|
||||
"Payment providers - Tooltip": "Providers of payment services",
|
||||
"Placing order...": "Placing order...",
|
||||
"Please provide your username in the remark": "Please provide your username in the remark",
|
||||
"Please scan the QR code to pay": "Please scan the QR code to pay",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price of product",
|
||||
"Quantity": "Quantity",
|
||||
@ -672,8 +689,8 @@
|
||||
"Content": "Content",
|
||||
"Content - Tooltip": "Content - Tooltip",
|
||||
"Copy": "Copy",
|
||||
"DB Test": "DB Test",
|
||||
"DB Test - Tooltip": "DB Test - Tooltip",
|
||||
"DB test": "DB test",
|
||||
"DB test - Tooltip": "DB test - Tooltip",
|
||||
"Disable SSL": "Disable SSL",
|
||||
"Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server",
|
||||
"Domain": "Domain",
|
||||
@ -700,7 +717,10 @@
|
||||
"Internal": "Internal",
|
||||
"Issuer URL": "Issuer URL",
|
||||
"Issuer URL - Tooltip": "Issuer URL",
|
||||
"Link copied to clipboard successfully": "Link copied to clipboard successfully",
|
||||
"Key ID": "Key ID",
|
||||
"Key ID - Tooltip": "Key ID - Tooltip",
|
||||
"Key text": "Key text",
|
||||
"Key text - Tooltip": "Key text - Tooltip",
|
||||
"Metadata": "Metadata",
|
||||
"Metadata - Tooltip": "SAML metadata",
|
||||
"Method - Tooltip": "Login method, QR code or silent login",
|
||||
@ -754,6 +774,10 @@
|
||||
"Sender Id - Tooltip": "Sender Id - Tooltip",
|
||||
"Sender number": "Sender number",
|
||||
"Sender number - Tooltip": "Sender number - Tooltip",
|
||||
"Service ID identifier": "Service ID identifier",
|
||||
"Service ID identifier - Tooltip": "Service ID identifier - Tooltip",
|
||||
"Service account JSON": "Service account JSON",
|
||||
"Service account JSON - Tooltip": "Service account JSON - Tooltip",
|
||||
"Sign Name": "Sign Name",
|
||||
"Sign Name - Tooltip": "Name of the signature to be used",
|
||||
"Sign request": "Sign request",
|
||||
@ -764,12 +788,15 @@
|
||||
"Signup HTML": "Signup HTML",
|
||||
"Signup HTML - Edit": "Signup HTML - Edit",
|
||||
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
|
||||
"Signup group": "Signup group",
|
||||
"Silent": "Silent",
|
||||
"Site key": "Site key",
|
||||
"Site key - Tooltip": "Site key",
|
||||
"Sliding Validation": "Sliding Validation",
|
||||
"Sub type": "Sub type",
|
||||
"Sub type - Tooltip": "Sub type",
|
||||
"Team ID": "Team ID",
|
||||
"Team ID - Tooltip": "Team ID - Tooltip",
|
||||
"Template code": "Template code",
|
||||
"Template code - Tooltip": "Template code",
|
||||
"Test Email": "Test Email",
|
||||
@ -780,6 +807,8 @@
|
||||
"Token URL - Tooltip": "Token URL",
|
||||
"Type": "Type",
|
||||
"Type - Tooltip": "Select a type",
|
||||
"User flow": "User flow",
|
||||
"User flow - Tooltip": "User flow - Tooltip",
|
||||
"User mapping": "User mapping",
|
||||
"User mapping - Tooltip": "User mapping - Tooltip",
|
||||
"UserInfo URL": "UserInfo URL",
|
||||
@ -801,6 +830,8 @@
|
||||
"New Role": "New Role",
|
||||
"Sub domains": "Sub domains",
|
||||
"Sub domains - Tooltip": "Domains included in the current role",
|
||||
"Sub groups": "Sub groups",
|
||||
"Sub groups - Tooltip": "Sub groups - Tooltip",
|
||||
"Sub roles": "Sub roles",
|
||||
"Sub roles - Tooltip": "Roles included in the current role",
|
||||
"Sub users": "Sub users",
|
||||
@ -812,6 +843,9 @@
|
||||
"Confirm": "Confirm",
|
||||
"Decline": "Decline",
|
||||
"Have account?": "Have account?",
|
||||
"Label": "Label",
|
||||
"Label HTML": "Label HTML",
|
||||
"Placeholder": "Placeholder",
|
||||
"Please accept the agreement!": "Please accept the agreement!",
|
||||
"Please click the below button to sign in": "Please click the below button to sign in",
|
||||
"Please confirm your password!": "Please confirm your password!",
|
||||
@ -830,6 +864,11 @@
|
||||
"Please select your country/region!": "Please select your country/region!",
|
||||
"Terms of Use": "Terms of Use",
|
||||
"Terms of Use - Tooltip": "Terms of use that users need to read and agree to during registration",
|
||||
"Text 1": "Text 1",
|
||||
"Text 2": "Text 2",
|
||||
"Text 3": "Text 3",
|
||||
"Text 4": "Text 4",
|
||||
"Text 5": "Text 5",
|
||||
"The input is not invoice Tax ID!": "The input is not invoice Tax ID!",
|
||||
"The input is not invoice title!": "The input is not invoice title!",
|
||||
"The input is not valid Email!": "The input is not valid Email!",
|
||||
@ -841,14 +880,19 @@
|
||||
"sign in now": "sign in now"
|
||||
},
|
||||
"subscription": {
|
||||
"Duration": "Duration",
|
||||
"Duration - Tooltip": "Subscription duration",
|
||||
"Active": "Active",
|
||||
"Edit Subscription": "Edit Subscription",
|
||||
"End date": "End date",
|
||||
"End date - Tooltip": "End date",
|
||||
"End time": "End time",
|
||||
"End time - Tooltip": "End time - Tooltip",
|
||||
"Error": "Error",
|
||||
"Expired": "Expired",
|
||||
"New Subscription": "New Subscription",
|
||||
"Start date": "Start date",
|
||||
"Start date - Tooltip": "Start date"
|
||||
"Pending": "Pending",
|
||||
"Period": "Period",
|
||||
"Start time": "Start time",
|
||||
"Start time - Tooltip": "Start time - Tooltip",
|
||||
"Suspended": "Suspended",
|
||||
"Upcoming": "Upcoming"
|
||||
},
|
||||
"syncer": {
|
||||
"Affiliation table": "Affiliation table",
|
||||
@ -872,6 +916,8 @@
|
||||
"Is read-only": "Is read-only",
|
||||
"Is read-only - Tooltip": "Is read-only - Tooltip",
|
||||
"New Syncer": "New Syncer",
|
||||
"SSL mode": "SSL mode",
|
||||
"SSL mode - Tooltip": "SSL mode - Tooltip",
|
||||
"Sync interval": "Sync interval",
|
||||
"Sync interval - Tooltip": "Unit in seconds",
|
||||
"Table": "Table",
|
||||
@ -913,11 +959,19 @@
|
||||
},
|
||||
"token": {
|
||||
"Access token": "Access token",
|
||||
"Access token - Tooltip": "Access token - Tooltip",
|
||||
"Authorization code": "Authorization code",
|
||||
"Authorization code - Tooltip": "Authorization code - Tooltip",
|
||||
"Copy access token": "Copy access token",
|
||||
"Copy parsed result": "Copy parsed result",
|
||||
"Edit Token": "Edit Token",
|
||||
"Expires in": "Expires in",
|
||||
"Expires in - Tooltip": "Expires in - Tooltip",
|
||||
"New Token": "New Token",
|
||||
"Token type": "Token type"
|
||||
"Parsed result": "Parsed result",
|
||||
"Parsed result - Tooltip": "Parsed result - Tooltip",
|
||||
"Token type": "Token type",
|
||||
"Token type - Tooltip": "Token type - Tooltip"
|
||||
},
|
||||
"user": {
|
||||
"3rd-party logins": "3rd-party logins",
|
||||
@ -974,6 +1028,8 @@
|
||||
"Managed accounts": "Managed accounts",
|
||||
"Modify password...": "Modify password...",
|
||||
"Multi-factor authentication": "Multi-factor authentication",
|
||||
"Name": "Name",
|
||||
"Name format": "Name format",
|
||||
"New Email": "New Email",
|
||||
"New Password": "New Password",
|
||||
"New User": "New User",
|
||||
@ -1011,6 +1067,7 @@
|
||||
"Upload ID card front picture": "Upload ID card front picture",
|
||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||
"Upload a photo": "Upload a photo",
|
||||
"Value": "Value",
|
||||
"Values": "Values",
|
||||
"Verification code sent": "Verification code sent",
|
||||
"WebAuthn credentials": "WebAuthn credentials",
|
||||
|
@ -12,7 +12,9 @@
|
||||
"Policies": "Policies",
|
||||
"Policies - Tooltip": "Casbin policy rules",
|
||||
"Rule type": "Rule type",
|
||||
"Sync policies successfully": "Sync policies successfully"
|
||||
"Sync policies successfully": "Sync policies successfully",
|
||||
"Use same DB": "Use same DB",
|
||||
"Use same DB - Tooltip": "Use same DB - Tooltip"
|
||||
},
|
||||
"application": {
|
||||
"Always": "Always",
|
||||
@ -30,6 +32,8 @@
|
||||
"Edit Application": "Edit Application",
|
||||
"Enable Email linking": "Enable Email linking",
|
||||
"Enable Email linking - Tooltip": "When using 3rd-party providers to log in, if there is a user in the organization with the same Email, the 3rd-party login method will be automatically associated with that user",
|
||||
"Enable SAML C14N10": "Enable SAML C14N10",
|
||||
"Enable SAML C14N10 - Tooltip": "Enable SAML C14N10 - Tooltip",
|
||||
"Enable SAML compression": "Enable SAML compression",
|
||||
"Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp",
|
||||
"Enable WebAuthn signin": "Enable WebAuthn signin",
|
||||
@ -42,6 +46,10 @@
|
||||
"Enable signin session - Tooltip": "Whether Casdoor maintains a session after logging into Casdoor from the application",
|
||||
"Enable signup": "Enable signup",
|
||||
"Enable signup - Tooltip": "Whether to allow users to register a new account",
|
||||
"Failed signin frozen time": "Failed signin frozen time",
|
||||
"Failed signin frozen time - Tooltip": "Failed signin frozen time - Tooltip",
|
||||
"Failed signin limit": "Failed signin limit",
|
||||
"Failed signin limit - Tooltip": "Failed signin limit - Tooltip",
|
||||
"Failed to sign in": "Failed to sign in",
|
||||
"File uploaded successfully": "File uploaded successfully",
|
||||
"First, last": "First, last",
|
||||
@ -60,7 +68,6 @@
|
||||
"Input": "Input",
|
||||
"Invitation code": "Invitation code",
|
||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||
"Left": "Left",
|
||||
"Logged in successfully": "Logged in successfully",
|
||||
"Logged out successfully": "Logged out successfully",
|
||||
@ -73,7 +80,6 @@
|
||||
"Please input your application!": "Please input your application!",
|
||||
"Please input your organization!": "Please input your organization!",
|
||||
"Please select a HTML file": "Please select a HTML file",
|
||||
"Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Random": "Random",
|
||||
"Real name": "Real name",
|
||||
"Redirect URL": "Redirect URL",
|
||||
@ -86,7 +92,6 @@
|
||||
"Rule": "Rule",
|
||||
"SAML metadata": "SAML metadata",
|
||||
"SAML metadata - Tooltip": "The metadata of SAML protocol",
|
||||
"SAML metadata URL copied to clipboard successfully": "SAML metadata URL copied to clipboard successfully",
|
||||
"SAML reply URL": "SAML reply URL",
|
||||
"Select": "Select",
|
||||
"Side panel HTML": "Side panel HTML",
|
||||
@ -95,11 +100,9 @@
|
||||
"Sign Up Error": "Sign Up Error",
|
||||
"Signin": "Signin",
|
||||
"Signin (Default True)": "Signin (Default True)",
|
||||
"Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Signin session": "Signin session",
|
||||
"Signup items": "Signup items",
|
||||
"Signup items - Tooltip": "Items for users to fill in when registering new accounts",
|
||||
"Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Tags - Tooltip": "Only users with the tag that is listed in the application tags can login",
|
||||
"The application does not allow to sign up new account": "The application does not allow to sign up new account",
|
||||
"Token expire": "Token expire",
|
||||
@ -113,7 +116,6 @@
|
||||
"Bit size - Tooltip": "Secret key length",
|
||||
"Certificate": "Certificate",
|
||||
"Certificate - Tooltip": "Public key certificate, used for decrypting the JWT signature of the Access Token. This certificate usually needs to be deployed on the Casdoor SDK side (i.e., the application) to parse the JWT",
|
||||
"Certificate copied to clipboard successfully": "Certificate copied to clipboard successfully",
|
||||
"Copy certificate": "Copy certificate",
|
||||
"Copy private key": "Copy private key",
|
||||
"Crypto algorithm": "Crypto algorithm",
|
||||
@ -126,7 +128,6 @@
|
||||
"New Cert": "New Cert",
|
||||
"Private key": "Private key",
|
||||
"Private key - Tooltip": "Private key corresponding to the public key certificate",
|
||||
"Private key copied to clipboard successfully": "Private key copied to clipboard successfully",
|
||||
"Scope - Tooltip": "Usage scenarios of the certificate",
|
||||
"Type - Tooltip": "Type of certificate"
|
||||
},
|
||||
@ -191,6 +192,7 @@
|
||||
"Click to Upload": "Click to Upload",
|
||||
"Close": "Close",
|
||||
"Confirm": "Confirm",
|
||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||
"Copy": "Copy",
|
||||
"Created time": "Created time",
|
||||
"Custom": "Custom",
|
||||
@ -200,6 +202,8 @@
|
||||
"Default application - Tooltip": "Default application for users registered directly from the organization page",
|
||||
"Default avatar": "Default avatar",
|
||||
"Default avatar - Tooltip": "Default avatar used when newly registered users do not set an avatar image",
|
||||
"Default password": "Default password",
|
||||
"Default password - Tooltip": "Default password - Tooltip",
|
||||
"Delete": "Delete",
|
||||
"Description": "Description",
|
||||
"Description - Tooltip": "Detailed description information for reference, Casdoor itself will not use it",
|
||||
@ -218,8 +222,10 @@
|
||||
"Failed to connect to server": "Failed to connect to server",
|
||||
"Failed to delete": "Failed to delete",
|
||||
"Failed to enable": "Failed to enable",
|
||||
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
|
||||
"Failed to remove": "Failed to remove",
|
||||
"Failed to save": "Failed to save",
|
||||
"Failed to sync": "Failed to sync",
|
||||
"Failed to verify": "Failed to verify",
|
||||
"Favicon": "Favicon",
|
||||
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
|
||||
@ -251,6 +257,8 @@
|
||||
"MFA items - Tooltip": "MFA items - Tooltip",
|
||||
"Master password": "Master password",
|
||||
"Master password - Tooltip": "Can be used to log in to all users under this organization, making it convenient for administrators to log in as this user to solve technical issues",
|
||||
"Master verification code": "Master verification code",
|
||||
"Master verification code - Tooltip": "Master verification code - Tooltip",
|
||||
"Menu": "Menu",
|
||||
"Method": "Method",
|
||||
"Model": "Model",
|
||||
@ -272,6 +280,8 @@
|
||||
"Password salt - Tooltip": "Random parameter used for password encryption",
|
||||
"Password type": "Password type",
|
||||
"Password type - Tooltip": "Storage format of passwords in the database",
|
||||
"Payment": "Payment",
|
||||
"Payment - Tooltip": "Payment - Tooltip",
|
||||
"Payments": "Payments",
|
||||
"Permissions": "Permissions",
|
||||
"Permissions - Tooltip": "Permissions owned by this user",
|
||||
@ -283,6 +293,8 @@
|
||||
"Plans - Tooltip": "Plans - Tooltip",
|
||||
"Preview": "Preview",
|
||||
"Preview - Tooltip": "Preview the configured effects",
|
||||
"Pricing": "Pricing",
|
||||
"Pricing - Tooltip": "Pricing - Tooltip",
|
||||
"Pricings": "Pricings",
|
||||
"Products": "Products",
|
||||
"Provider": "Provider",
|
||||
@ -296,6 +308,10 @@
|
||||
"Role - Tooltip": "Role - Tooltip",
|
||||
"Roles": "Roles",
|
||||
"Roles - Tooltip": "Roles that the user belongs to",
|
||||
"Root cert": "Root cert",
|
||||
"Root cert - Tooltip": "Root cert - Tooltip",
|
||||
"SAML attributes": "SAML attributes",
|
||||
"SAML attributes - Tooltip": "SAML attributes - Tooltip",
|
||||
"Save": "Save",
|
||||
"Save & Exit": "Save & Exit",
|
||||
"Session ID": "Session ID",
|
||||
@ -318,6 +334,7 @@
|
||||
"Successfully removed": "Successfully removed",
|
||||
"Successfully saved": "Successfully saved",
|
||||
"Successfully sent": "Successfully sent",
|
||||
"Successfully synced": "Successfully synced",
|
||||
"Supported country codes": "Supported country codes",
|
||||
"Supported country codes - Tooltip": "Country codes supported by the organization. These codes can be selected as a prefix when sending SMS verification codes",
|
||||
"Sure to delete": "Sure to delete",
|
||||
@ -440,7 +457,6 @@
|
||||
"Multi-factor methods": "Multi-factor methods",
|
||||
"Multi-factor recover": "Multi-factor recover",
|
||||
"Multi-factor recover description": "Multi-factor recover description",
|
||||
"Multi-factor secret to clipboard successfully": "Multi-factor secret to clipboard successfully",
|
||||
"Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
|
||||
"Passcode": "Passcode",
|
||||
"Please bind your email first, the system will automatically uses the mail for multi-factor authentication": "Please bind your email first, the system will automatically uses the mail for multi-factor authentication",
|
||||
@ -573,11 +589,13 @@
|
||||
"plan": {
|
||||
"Edit Plan": "Edit Plan",
|
||||
"New Plan": "New Plan",
|
||||
"Price per month": "Price per month",
|
||||
"Price per month - Tooltip": "Price per month - Tooltip",
|
||||
"Price per year": "Price per year",
|
||||
"Price per year - Tooltip": "Price per year - Tooltip",
|
||||
"per month": "per month"
|
||||
"Period": "Period",
|
||||
"Period - Tooltip": "Period - Tooltip",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price - Tooltip",
|
||||
"Related product": "Related product",
|
||||
"per month": "per month",
|
||||
"per year": "per year"
|
||||
},
|
||||
"pricing": {
|
||||
"Copy pricing page URL": "Copy pricing page URL",
|
||||
@ -589,7 +607,7 @@
|
||||
"Trial duration": "Trial duration",
|
||||
"Trial duration - Tooltip": "Trial duration period",
|
||||
"days trial available!": "days trial available!",
|
||||
"pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser"
|
||||
"paid-user do not have active subscription or pending subscription, please select a plan to buy": "paid-user do not have active subscription or pending subscription, please select a plan to buy"
|
||||
},
|
||||
"product": {
|
||||
"Alipay": "Alipay",
|
||||
@ -600,17 +618,16 @@
|
||||
"Detail - Tooltip": "Detail of product",
|
||||
"Dummy": "Dummy",
|
||||
"Edit Product": "Edit Product",
|
||||
"I have completed the payment": "I have completed the payment",
|
||||
"Image": "Image",
|
||||
"Image - Tooltip": "Image of product",
|
||||
"New Product": "New Product",
|
||||
"Pay": "Pay",
|
||||
"PayPal": "PayPal",
|
||||
"Payment cancelled": "Payment cancelled",
|
||||
"Payment failed": "Payment failed",
|
||||
"Payment providers": "Payment providers",
|
||||
"Payment providers - Tooltip": "Providers of payment services",
|
||||
"Placing order...": "Placing order...",
|
||||
"Please provide your username in the remark": "Please provide your username in the remark",
|
||||
"Please scan the QR code to pay": "Please scan the QR code to pay",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price of product",
|
||||
"Quantity": "Quantity",
|
||||
@ -672,8 +689,8 @@
|
||||
"Content": "Content",
|
||||
"Content - Tooltip": "Content - Tooltip",
|
||||
"Copy": "Copy",
|
||||
"DB Test": "DB Test",
|
||||
"DB Test - Tooltip": "DB Test - Tooltip",
|
||||
"DB test": "DB test",
|
||||
"DB test - Tooltip": "DB test - Tooltip",
|
||||
"Disable SSL": "Disable SSL",
|
||||
"Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server",
|
||||
"Domain": "Domain",
|
||||
@ -700,7 +717,10 @@
|
||||
"Internal": "Internal",
|
||||
"Issuer URL": "Issuer URL",
|
||||
"Issuer URL - Tooltip": "Issuer URL",
|
||||
"Link copied to clipboard successfully": "Link copied to clipboard successfully",
|
||||
"Key ID": "Key ID",
|
||||
"Key ID - Tooltip": "Key ID - Tooltip",
|
||||
"Key text": "Key text",
|
||||
"Key text - Tooltip": "Key text - Tooltip",
|
||||
"Metadata": "Metadata",
|
||||
"Metadata - Tooltip": "SAML metadata",
|
||||
"Method - Tooltip": "Login method, QR code or silent login",
|
||||
@ -754,6 +774,10 @@
|
||||
"Sender Id - Tooltip": "Sender Id - Tooltip",
|
||||
"Sender number": "Sender number",
|
||||
"Sender number - Tooltip": "Sender number - Tooltip",
|
||||
"Service ID identifier": "Service ID identifier",
|
||||
"Service ID identifier - Tooltip": "Service ID identifier - Tooltip",
|
||||
"Service account JSON": "Service account JSON",
|
||||
"Service account JSON - Tooltip": "Service account JSON - Tooltip",
|
||||
"Sign Name": "Sign Name",
|
||||
"Sign Name - Tooltip": "Name of the signature to be used",
|
||||
"Sign request": "Sign request",
|
||||
@ -764,12 +788,15 @@
|
||||
"Signup HTML": "Signup HTML",
|
||||
"Signup HTML - Edit": "Signup HTML - Edit",
|
||||
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
|
||||
"Signup group": "Signup group",
|
||||
"Silent": "Silent",
|
||||
"Site key": "Site key",
|
||||
"Site key - Tooltip": "Site key",
|
||||
"Sliding Validation": "Sliding Validation",
|
||||
"Sub type": "Sub type",
|
||||
"Sub type - Tooltip": "Sub type",
|
||||
"Team ID": "Team ID",
|
||||
"Team ID - Tooltip": "Team ID - Tooltip",
|
||||
"Template code": "Template code",
|
||||
"Template code - Tooltip": "Template code",
|
||||
"Test Email": "Test Email",
|
||||
@ -780,6 +807,8 @@
|
||||
"Token URL - Tooltip": "Token URL",
|
||||
"Type": "Type",
|
||||
"Type - Tooltip": "Select a type",
|
||||
"User flow": "User flow",
|
||||
"User flow - Tooltip": "User flow - Tooltip",
|
||||
"User mapping": "User mapping",
|
||||
"User mapping - Tooltip": "User mapping - Tooltip",
|
||||
"UserInfo URL": "UserInfo URL",
|
||||
@ -801,6 +830,8 @@
|
||||
"New Role": "New Role",
|
||||
"Sub domains": "Sub domains",
|
||||
"Sub domains - Tooltip": "Domains included in the current role",
|
||||
"Sub groups": "Sub groups",
|
||||
"Sub groups - Tooltip": "Sub groups - Tooltip",
|
||||
"Sub roles": "Sub roles",
|
||||
"Sub roles - Tooltip": "Roles included in the current role",
|
||||
"Sub users": "Sub users",
|
||||
@ -812,6 +843,9 @@
|
||||
"Confirm": "Confirm",
|
||||
"Decline": "Decline",
|
||||
"Have account?": "Have account?",
|
||||
"Label": "Label",
|
||||
"Label HTML": "Label HTML",
|
||||
"Placeholder": "Placeholder",
|
||||
"Please accept the agreement!": "Please accept the agreement!",
|
||||
"Please click the below button to sign in": "Please click the below button to sign in",
|
||||
"Please confirm your password!": "Please confirm your password!",
|
||||
@ -830,6 +864,11 @@
|
||||
"Please select your country/region!": "Please select your country/region!",
|
||||
"Terms of Use": "Terms of Use",
|
||||
"Terms of Use - Tooltip": "Terms of use that users need to read and agree to during registration",
|
||||
"Text 1": "Text 1",
|
||||
"Text 2": "Text 2",
|
||||
"Text 3": "Text 3",
|
||||
"Text 4": "Text 4",
|
||||
"Text 5": "Text 5",
|
||||
"The input is not invoice Tax ID!": "The input is not invoice Tax ID!",
|
||||
"The input is not invoice title!": "The input is not invoice title!",
|
||||
"The input is not valid Email!": "The input is not valid Email!",
|
||||
@ -841,14 +880,19 @@
|
||||
"sign in now": "sign in now"
|
||||
},
|
||||
"subscription": {
|
||||
"Duration": "Duration",
|
||||
"Duration - Tooltip": "Subscription duration",
|
||||
"Active": "Active",
|
||||
"Edit Subscription": "Edit Subscription",
|
||||
"End date": "End date",
|
||||
"End date - Tooltip": "End date",
|
||||
"End time": "End time",
|
||||
"End time - Tooltip": "End time - Tooltip",
|
||||
"Error": "Error",
|
||||
"Expired": "Expired",
|
||||
"New Subscription": "New Subscription",
|
||||
"Start date": "Start date",
|
||||
"Start date - Tooltip": "Start date"
|
||||
"Pending": "Pending",
|
||||
"Period": "Period",
|
||||
"Start time": "Start time",
|
||||
"Start time - Tooltip": "Start time - Tooltip",
|
||||
"Suspended": "Suspended",
|
||||
"Upcoming": "Upcoming"
|
||||
},
|
||||
"syncer": {
|
||||
"Affiliation table": "Affiliation table",
|
||||
@ -872,6 +916,8 @@
|
||||
"Is read-only": "Is read-only",
|
||||
"Is read-only - Tooltip": "Is read-only - Tooltip",
|
||||
"New Syncer": "New Syncer",
|
||||
"SSL mode": "SSL mode",
|
||||
"SSL mode - Tooltip": "SSL mode - Tooltip",
|
||||
"Sync interval": "Sync interval",
|
||||
"Sync interval - Tooltip": "Unit in seconds",
|
||||
"Table": "Table",
|
||||
@ -913,11 +959,19 @@
|
||||
},
|
||||
"token": {
|
||||
"Access token": "Access token",
|
||||
"Access token - Tooltip": "Access token - Tooltip",
|
||||
"Authorization code": "Authorization code",
|
||||
"Authorization code - Tooltip": "Authorization code - Tooltip",
|
||||
"Copy access token": "Copy access token",
|
||||
"Copy parsed result": "Copy parsed result",
|
||||
"Edit Token": "Edit Token",
|
||||
"Expires in": "Expires in",
|
||||
"Expires in - Tooltip": "Expires in - Tooltip",
|
||||
"New Token": "New Token",
|
||||
"Token type": "Token type"
|
||||
"Parsed result": "Parsed result",
|
||||
"Parsed result - Tooltip": "Parsed result - Tooltip",
|
||||
"Token type": "Token type",
|
||||
"Token type - Tooltip": "Token type - Tooltip"
|
||||
},
|
||||
"user": {
|
||||
"3rd-party logins": "3rd-party logins",
|
||||
@ -974,6 +1028,8 @@
|
||||
"Managed accounts": "Managed accounts",
|
||||
"Modify password...": "Modify password...",
|
||||
"Multi-factor authentication": "Multi-factor authentication",
|
||||
"Name": "Name",
|
||||
"Name format": "Name format",
|
||||
"New Email": "New Email",
|
||||
"New Password": "New Password",
|
||||
"New User": "New User",
|
||||
@ -1011,6 +1067,7 @@
|
||||
"Upload ID card front picture": "Upload ID card front picture",
|
||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||
"Upload a photo": "Upload a photo",
|
||||
"Value": "Value",
|
||||
"Values": "Values",
|
||||
"Verification code sent": "Verification code sent",
|
||||
"WebAuthn credentials": "WebAuthn credentials",
|
||||
|
@ -12,7 +12,9 @@
|
||||
"Policies": "Políticas",
|
||||
"Policies - Tooltip": "Regras de política do Casbin",
|
||||
"Rule type": "Rule type",
|
||||
"Sync policies successfully": "Políticas sincronizadas com sucesso"
|
||||
"Sync policies successfully": "Políticas sincronizadas com sucesso",
|
||||
"Use same DB": "Use same DB",
|
||||
"Use same DB - Tooltip": "Use same DB - Tooltip"
|
||||
},
|
||||
"application": {
|
||||
"Always": "Sempre",
|
||||
@ -30,6 +32,8 @@
|
||||
"Edit Application": "Editar Aplicação",
|
||||
"Enable Email linking": "Ativar vinculação de e-mail",
|
||||
"Enable Email linking - Tooltip": "Ao usar provedores de terceiros para fazer login, se houver um usuário na organização com o mesmo e-mail, o método de login de terceiros será automaticamente associado a esse usuário",
|
||||
"Enable SAML C14N10": "Enable SAML C14N10",
|
||||
"Enable SAML C14N10 - Tooltip": "Enable SAML C14N10 - Tooltip",
|
||||
"Enable SAML compression": "Ativar compressão SAML",
|
||||
"Enable SAML compression - Tooltip": "Se deve comprimir as mensagens de resposta SAML quando o Casdoor é usado como provedor de identidade SAML",
|
||||
"Enable WebAuthn signin": "Ativar login WebAuthn",
|
||||
@ -42,6 +46,10 @@
|
||||
"Enable signin session - Tooltip": "Se o Casdoor mantém uma sessão depois de fazer login no Casdoor a partir da aplicação",
|
||||
"Enable signup": "Ativar registro",
|
||||
"Enable signup - Tooltip": "Se permite que os usuários registrem uma nova conta",
|
||||
"Failed signin frozen time": "Failed signin frozen time",
|
||||
"Failed signin frozen time - Tooltip": "Failed signin frozen time - Tooltip",
|
||||
"Failed signin limit": "Failed signin limit",
|
||||
"Failed signin limit - Tooltip": "Failed signin limit - Tooltip",
|
||||
"Failed to sign in": "Falha ao fazer login",
|
||||
"File uploaded successfully": "Arquivo enviado com sucesso",
|
||||
"First, last": "Primeiro, último",
|
||||
@ -60,7 +68,6 @@
|
||||
"Input": "Input",
|
||||
"Invitation code": "Invitation code",
|
||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||
"Left": "Esquerda",
|
||||
"Logged in successfully": "Login realizado com sucesso",
|
||||
"Logged out successfully": "Logout realizado com sucesso",
|
||||
@ -73,7 +80,6 @@
|
||||
"Please input your application!": "Por favor, insira o nome da sua aplicação!",
|
||||
"Please input your organization!": "Por favor, insira o nome da sua organização!",
|
||||
"Please select a HTML file": "Por favor, selecione um arquivo HTML",
|
||||
"Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "URL da página de prompt copiada para a área de transferência com sucesso. Cole-a na janela anônima ou em outro navegador",
|
||||
"Random": "Aleatório",
|
||||
"Real name": "Nome real",
|
||||
"Redirect URL": "URL de redirecionamento",
|
||||
@ -86,7 +92,6 @@
|
||||
"Rule": "Regra",
|
||||
"SAML metadata": "Metadados do SAML",
|
||||
"SAML metadata - Tooltip": "Os metadados do protocolo SAML",
|
||||
"SAML metadata URL copied to clipboard successfully": "URL dos metadados do SAML copiada para a área de transferência com sucesso",
|
||||
"SAML reply URL": "URL de resposta do SAML",
|
||||
"Select": "Select",
|
||||
"Side panel HTML": "HTML do painel lateral",
|
||||
@ -95,11 +100,9 @@
|
||||
"Sign Up Error": "Erro ao Registrar",
|
||||
"Signin": "Login",
|
||||
"Signin (Default True)": "Login (Padrão Verdadeiro)",
|
||||
"Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "URL da página de login copiada para a área de transferência com sucesso. Cole-a na janela anônima ou em outro navegador",
|
||||
"Signin session": "Sessão de login",
|
||||
"Signup items": "Itens de registro",
|
||||
"Signup items - Tooltip": "Itens para os usuários preencherem ao registrar novas contas",
|
||||
"Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "URL da página de registro copiada para a área de transferência com sucesso. Cole-a na janela anônima ou em outro navegador",
|
||||
"Tags - Tooltip": "Only users with the tag that is listed in the application tags can login",
|
||||
"The application does not allow to sign up new account": "A aplicação não permite o registro de novas contas",
|
||||
"Token expire": "Expiração do Token",
|
||||
@ -113,7 +116,6 @@
|
||||
"Bit size - Tooltip": "Comprimento da chave secreta",
|
||||
"Certificate": "Certificado",
|
||||
"Certificate - Tooltip": "Certificado de chave pública, usado para descriptografar a assinatura JWT do Token de Acesso. Este certificado geralmente precisa ser implantado no lado do SDK do Casdoor (ou seja, no aplicativo) para analisar o JWT",
|
||||
"Certificate copied to clipboard successfully": "Certificado copiado para a área de transferência com sucesso",
|
||||
"Copy certificate": "Copiar certificado",
|
||||
"Copy private key": "Copiar chave privada",
|
||||
"Crypto algorithm": "Algoritmo criptográfico",
|
||||
@ -126,7 +128,6 @@
|
||||
"New Cert": "Novo Certificado",
|
||||
"Private key": "Chave privada",
|
||||
"Private key - Tooltip": "Chave privada correspondente ao certificado de chave pública",
|
||||
"Private key copied to clipboard successfully": "Chave privada copiada para a área de transferência com sucesso",
|
||||
"Scope - Tooltip": "Cenários de uso do certificado",
|
||||
"Type - Tooltip": "Tipo de certificado"
|
||||
},
|
||||
@ -191,6 +192,7 @@
|
||||
"Click to Upload": "Clique para Enviar",
|
||||
"Close": "Fechar",
|
||||
"Confirm": "Confirm",
|
||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||
"Copy": "Copy",
|
||||
"Created time": "Hora de Criação",
|
||||
"Custom": "Custom",
|
||||
@ -200,6 +202,8 @@
|
||||
"Default application - Tooltip": "Aplicação padrão para usuários registrados diretamente na página da organização",
|
||||
"Default avatar": "Avatar padrão",
|
||||
"Default avatar - Tooltip": "Avatar padrão usado quando usuários recém-registrados não definem uma imagem de avatar",
|
||||
"Default password": "Default password",
|
||||
"Default password - Tooltip": "Default password - Tooltip",
|
||||
"Delete": "Excluir",
|
||||
"Description": "Descrição",
|
||||
"Description - Tooltip": "Informações de descrição detalhadas para referência, o Casdoor em si não irá utilizá-las",
|
||||
@ -218,8 +222,10 @@
|
||||
"Failed to connect to server": "Falha ao conectar ao servidor",
|
||||
"Failed to delete": "Falha ao excluir",
|
||||
"Failed to enable": "Falha ao habilitar",
|
||||
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
|
||||
"Failed to remove": "Failed to remove",
|
||||
"Failed to save": "Falha ao salvar",
|
||||
"Failed to sync": "Failed to sync",
|
||||
"Failed to verify": "Falha ao verificar",
|
||||
"Favicon": "Favicon",
|
||||
"Favicon - Tooltip": "URL do ícone de favicon usado em todas as páginas do Casdoor da organização",
|
||||
@ -251,6 +257,8 @@
|
||||
"MFA items - Tooltip": "MFA items - Tooltip",
|
||||
"Master password": "Senha mestra",
|
||||
"Master password - Tooltip": "Pode ser usada para fazer login em todos os usuários desta organização, facilitando para os administradores fazerem login como este usuário para resolver problemas técnicos",
|
||||
"Master verification code": "Master verification code",
|
||||
"Master verification code - Tooltip": "Master verification code - Tooltip",
|
||||
"Menu": "Menu",
|
||||
"Method": "Método",
|
||||
"Model": "Modelo",
|
||||
@ -272,6 +280,8 @@
|
||||
"Password salt - Tooltip": "Parâmetro aleatório usado para criptografia de senha",
|
||||
"Password type": "Tipo de senha",
|
||||
"Password type - Tooltip": "Formato de armazenamento de senhas no banco de dados",
|
||||
"Payment": "Payment",
|
||||
"Payment - Tooltip": "Payment - Tooltip",
|
||||
"Payments": "Pagamentos",
|
||||
"Permissions": "Permissões",
|
||||
"Permissions - Tooltip": "Permissões pertencentes a este usuário",
|
||||
@ -283,6 +293,8 @@
|
||||
"Plans - Tooltip": "Plans - Tooltip",
|
||||
"Preview": "Visualizar",
|
||||
"Preview - Tooltip": "Visualizar os efeitos configurados",
|
||||
"Pricing": "Pricing",
|
||||
"Pricing - Tooltip": "Pricing - Tooltip",
|
||||
"Pricings": "Bảng giá",
|
||||
"Products": "Produtos",
|
||||
"Provider": "Provedor",
|
||||
@ -296,6 +308,10 @@
|
||||
"Role - Tooltip": "Role - Tooltip",
|
||||
"Roles": "Funções",
|
||||
"Roles - Tooltip": "Funções às quais o usuário pertence",
|
||||
"Root cert": "Root cert",
|
||||
"Root cert - Tooltip": "Root cert - Tooltip",
|
||||
"SAML attributes": "SAML attributes",
|
||||
"SAML attributes - Tooltip": "SAML attributes - Tooltip",
|
||||
"Save": "Salvar",
|
||||
"Save & Exit": "Salvar e Sair",
|
||||
"Session ID": "ID da sessão",
|
||||
@ -318,6 +334,7 @@
|
||||
"Successfully removed": "Successfully removed",
|
||||
"Successfully saved": "Salvo com sucesso",
|
||||
"Successfully sent": "Successfully sent",
|
||||
"Successfully synced": "Successfully synced",
|
||||
"Supported country codes": "Códigos de país suportados",
|
||||
"Supported country codes - Tooltip": "Códigos de país suportados pela organização. Esses códigos podem ser selecionados como prefixo ao enviar códigos de verificação SMS",
|
||||
"Sure to delete": "Tem certeza que deseja excluir",
|
||||
@ -440,7 +457,6 @@
|
||||
"Multi-factor methods": "Multi-factor methods",
|
||||
"Multi-factor recover": "Multi-factor recover",
|
||||
"Multi-factor recover description": "Multi-factor recover description",
|
||||
"Multi-factor secret to clipboard successfully": "Multi-factor secret to clipboard successfully",
|
||||
"Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
|
||||
"Passcode": "Passcode",
|
||||
"Please bind your email first, the system will automatically uses the mail for multi-factor authentication": "Please bind your email first, the system will automatically uses the mail for multi-factor authentication",
|
||||
@ -573,11 +589,13 @@
|
||||
"plan": {
|
||||
"Edit Plan": "Edit Plan",
|
||||
"New Plan": "New Plan",
|
||||
"Price per month": "Price per month",
|
||||
"Price per month - Tooltip": "Price per month - Tooltip",
|
||||
"Price per year": "Price per year",
|
||||
"Price per year - Tooltip": "Price per year - Tooltip",
|
||||
"per month": "mỗi tháng"
|
||||
"Period": "Period",
|
||||
"Period - Tooltip": "Period - Tooltip",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price - Tooltip",
|
||||
"Related product": "Related product",
|
||||
"per month": "mỗi tháng",
|
||||
"per year": "per year"
|
||||
},
|
||||
"pricing": {
|
||||
"Copy pricing page URL": "Sao chép URL trang bảng giá",
|
||||
@ -589,7 +607,7 @@
|
||||
"Trial duration": "Thời gian thử nghiệm",
|
||||
"Trial duration - Tooltip": "Thời gian thử nghiệm",
|
||||
"days trial available!": "ngày dùng thử có sẵn!",
|
||||
"pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "URL trang bảng giá đã được sao chép vào clipboard thành công, vui lòng dán vào cửa sổ ẩn danh hoặc trình duyệt khác"
|
||||
"paid-user do not have active subscription or pending subscription, please select a plan to buy": "paid-user do not have active subscription or pending subscription, please select a plan to buy"
|
||||
},
|
||||
"product": {
|
||||
"Alipay": "Alipay",
|
||||
@ -600,17 +618,16 @@
|
||||
"Detail - Tooltip": "Detalhes do produto",
|
||||
"Dummy": "Dummy",
|
||||
"Edit Product": "Editar Produto",
|
||||
"I have completed the payment": "Eu concluí o pagamento",
|
||||
"Image": "Imagem",
|
||||
"Image - Tooltip": "Imagem do produto",
|
||||
"New Product": "Novo Produto",
|
||||
"Pay": "Pagar",
|
||||
"PayPal": "PayPal",
|
||||
"Payment cancelled": "Payment cancelled",
|
||||
"Payment failed": "Payment failed",
|
||||
"Payment providers": "Provedores de Pagamento",
|
||||
"Payment providers - Tooltip": "Fornecedores de serviços de pagamento",
|
||||
"Placing order...": "Processando pedido...",
|
||||
"Please provide your username in the remark": "Por favor, forneça seu nome de usuário na observação",
|
||||
"Please scan the QR code to pay": "Por favor, escaneie o código QR para pagar",
|
||||
"Price": "Preço",
|
||||
"Price - Tooltip": "Preço do produto",
|
||||
"Quantity": "Quantidade",
|
||||
@ -672,8 +689,8 @@
|
||||
"Content": "Content",
|
||||
"Content - Tooltip": "Content - Tooltip",
|
||||
"Copy": "Copiar",
|
||||
"DB Test": "DB Test",
|
||||
"DB Test - Tooltip": "DB Test - Tooltip",
|
||||
"DB test": "DB test",
|
||||
"DB test - Tooltip": "DB test - Tooltip",
|
||||
"Disable SSL": "Desabilitar SSL",
|
||||
"Disable SSL - Tooltip": "Se deve desabilitar o protocolo SSL ao comunicar com o servidor SMTP",
|
||||
"Domain": "Domínio",
|
||||
@ -700,7 +717,10 @@
|
||||
"Internal": "Interno",
|
||||
"Issuer URL": "URL do Emissor",
|
||||
"Issuer URL - Tooltip": "URL do Emissor",
|
||||
"Link copied to clipboard successfully": "Link copiado para a área de transferência com sucesso",
|
||||
"Key ID": "Key ID",
|
||||
"Key ID - Tooltip": "Key ID - Tooltip",
|
||||
"Key text": "Key text",
|
||||
"Key text - Tooltip": "Key text - Tooltip",
|
||||
"Metadata": "Metadados",
|
||||
"Metadata - Tooltip": "Metadados SAML",
|
||||
"Method - Tooltip": "Método de login, código QR ou login silencioso",
|
||||
@ -754,6 +774,10 @@
|
||||
"Sender Id - Tooltip": "Sender Id - Tooltip",
|
||||
"Sender number": "Sender number",
|
||||
"Sender number - Tooltip": "Sender number - Tooltip",
|
||||
"Service ID identifier": "Service ID identifier",
|
||||
"Service ID identifier - Tooltip": "Service ID identifier - Tooltip",
|
||||
"Service account JSON": "Service account JSON",
|
||||
"Service account JSON - Tooltip": "Service account JSON - Tooltip",
|
||||
"Sign Name": "Nome do Sinal",
|
||||
"Sign Name - Tooltip": "Nome da assinatura a ser usada",
|
||||
"Sign request": "Solicitação de assinatura",
|
||||
@ -764,12 +788,15 @@
|
||||
"Signup HTML": "HTML de inscrição",
|
||||
"Signup HTML - Edit": "Editar HTML de inscrição",
|
||||
"Signup HTML - Tooltip": "HTML personalizado para substituir o estilo padrão da página de inscrição",
|
||||
"Signup group": "Signup group",
|
||||
"Silent": "Silencioso",
|
||||
"Site key": "Chave do site",
|
||||
"Site key - Tooltip": "Chave do site",
|
||||
"Sliding Validation": "Validação deslizante",
|
||||
"Sub type": "Subtipo",
|
||||
"Sub type - Tooltip": "Subtipo",
|
||||
"Team ID": "Team ID",
|
||||
"Team ID - Tooltip": "Team ID - Tooltip",
|
||||
"Template code": "Código do modelo",
|
||||
"Template code - Tooltip": "Código do modelo",
|
||||
"Test Email": "Testar E-mail",
|
||||
@ -780,6 +807,8 @@
|
||||
"Token URL - Tooltip": "URL do Token",
|
||||
"Type": "Tipo",
|
||||
"Type - Tooltip": "Selecione um tipo",
|
||||
"User flow": "User flow",
|
||||
"User flow - Tooltip": "User flow - Tooltip",
|
||||
"User mapping": "User mapping",
|
||||
"User mapping - Tooltip": "User mapping - Tooltip",
|
||||
"UserInfo URL": "URL do UserInfo",
|
||||
@ -801,6 +830,8 @@
|
||||
"New Role": "Nova Função",
|
||||
"Sub domains": "Subdomínios",
|
||||
"Sub domains - Tooltip": "Domínios incluídos na função atual",
|
||||
"Sub groups": "Sub groups",
|
||||
"Sub groups - Tooltip": "Sub groups - Tooltip",
|
||||
"Sub roles": "Subfunções",
|
||||
"Sub roles - Tooltip": "Funções incluídas na função atual",
|
||||
"Sub users": "Subusuários",
|
||||
@ -812,6 +843,9 @@
|
||||
"Confirm": "Confirmar",
|
||||
"Decline": "Recusar",
|
||||
"Have account?": "Já possui uma conta?",
|
||||
"Label": "Label",
|
||||
"Label HTML": "Label HTML",
|
||||
"Placeholder": "Placeholder",
|
||||
"Please accept the agreement!": "Por favor, aceite o acordo!",
|
||||
"Please click the below button to sign in": "Por favor, clique no botão abaixo para fazer login",
|
||||
"Please confirm your password!": "Por favor, confirme sua senha!",
|
||||
@ -830,6 +864,11 @@
|
||||
"Please select your country/region!": "Por favor, selecione seu país/região!",
|
||||
"Terms of Use": "Termos de Uso",
|
||||
"Terms of Use - Tooltip": "Termos de uso que os usuários precisam ler e concordar durante o registro",
|
||||
"Text 1": "Text 1",
|
||||
"Text 2": "Text 2",
|
||||
"Text 3": "Text 3",
|
||||
"Text 4": "Text 4",
|
||||
"Text 5": "Text 5",
|
||||
"The input is not invoice Tax ID!": "A entrada não é um ID fiscal de fatura válido!",
|
||||
"The input is not invoice title!": "A entrada não é um título de fatura válido!",
|
||||
"The input is not valid Email!": "A entrada não é um Email válido!",
|
||||
@ -841,14 +880,19 @@
|
||||
"sign in now": "Faça login agora"
|
||||
},
|
||||
"subscription": {
|
||||
"Duration": "Thời lượng",
|
||||
"Duration - Tooltip": "Thời lượng đăng ký",
|
||||
"Active": "Active",
|
||||
"Edit Subscription": "Edit Subscription",
|
||||
"End date": "Ngày kết thúc",
|
||||
"End date - Tooltip": "Ngày kết thúc",
|
||||
"End time": "End time",
|
||||
"End time - Tooltip": "End time - Tooltip",
|
||||
"Error": "Error",
|
||||
"Expired": "Expired",
|
||||
"New Subscription": "New Subscription",
|
||||
"Start date": "Ngày bắt đầu",
|
||||
"Start date - Tooltip": "Ngày bắt đầu"
|
||||
"Pending": "Pending",
|
||||
"Period": "Period",
|
||||
"Start time": "Start time",
|
||||
"Start time - Tooltip": "Start time - Tooltip",
|
||||
"Suspended": "Suspended",
|
||||
"Upcoming": "Upcoming"
|
||||
},
|
||||
"syncer": {
|
||||
"Affiliation table": "Tabela de Afiliação",
|
||||
@ -872,6 +916,8 @@
|
||||
"Is read-only": "Is read-only",
|
||||
"Is read-only - Tooltip": "Is read-only - Tooltip",
|
||||
"New Syncer": "Novo Syncer",
|
||||
"SSL mode": "SSL mode",
|
||||
"SSL mode - Tooltip": "SSL mode - Tooltip",
|
||||
"Sync interval": "Intervalo de sincronização",
|
||||
"Sync interval - Tooltip": "Unidade em segundos",
|
||||
"Table": "Tabela",
|
||||
@ -913,11 +959,19 @@
|
||||
},
|
||||
"token": {
|
||||
"Access token": "Token de acesso",
|
||||
"Access token - Tooltip": "Access token - Tooltip",
|
||||
"Authorization code": "Código de autorização",
|
||||
"Authorization code - Tooltip": "Authorization code - Tooltip",
|
||||
"Copy access token": "Copy access token",
|
||||
"Copy parsed result": "Copy parsed result",
|
||||
"Edit Token": "Editar Token",
|
||||
"Expires in": "Expira em",
|
||||
"Expires in - Tooltip": "Expires in - Tooltip",
|
||||
"New Token": "Novo Token",
|
||||
"Token type": "Tipo de Token"
|
||||
"Parsed result": "Parsed result",
|
||||
"Parsed result - Tooltip": "Parsed result - Tooltip",
|
||||
"Token type": "Tipo de Token",
|
||||
"Token type - Tooltip": "Token type - Tooltip"
|
||||
},
|
||||
"user": {
|
||||
"3rd-party logins": "Logins de terceiros",
|
||||
@ -974,6 +1028,8 @@
|
||||
"Managed accounts": "Contas gerenciadas",
|
||||
"Modify password...": "Modificar senha...",
|
||||
"Multi-factor authentication": "Autenticação de vários fatores",
|
||||
"Name": "Name",
|
||||
"Name format": "Name format",
|
||||
"New Email": "Novo E-mail",
|
||||
"New Password": "Nova Senha",
|
||||
"New User": "Novo Usuário",
|
||||
@ -1011,6 +1067,7 @@
|
||||
"Upload ID card front picture": "Upload ID card front picture",
|
||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||
"Upload a photo": "Enviar uma foto",
|
||||
"Value": "Value",
|
||||
"Values": "Valores",
|
||||
"Verification code sent": "Código de verificação enviado",
|
||||
"WebAuthn credentials": "Credenciais WebAuthn",
|
||||
|
@ -12,7 +12,9 @@
|
||||
"Policies": "Политика",
|
||||
"Policies - Tooltip": "Правила политики Casbin",
|
||||
"Rule type": "Rule type",
|
||||
"Sync policies successfully": "Успешно синхронизированы политики"
|
||||
"Sync policies successfully": "Успешно синхронизированы политики",
|
||||
"Use same DB": "Use same DB",
|
||||
"Use same DB - Tooltip": "Use same DB - Tooltip"
|
||||
},
|
||||
"application": {
|
||||
"Always": "Всегда",
|
||||
@ -30,6 +32,8 @@
|
||||
"Edit Application": "Изменить приложение",
|
||||
"Enable Email linking": "Включить связывание электронной почты",
|
||||
"Enable Email linking - Tooltip": "При использовании сторонних провайдеров для входа, если в организации есть пользователь с такой же электронной почтой, то способ входа через стороннего провайдера автоматически будет связан с этим пользователем",
|
||||
"Enable SAML C14N10": "Enable SAML C14N10",
|
||||
"Enable SAML C14N10 - Tooltip": "Enable SAML C14N10 - Tooltip",
|
||||
"Enable SAML compression": "Включите сжатие SAML",
|
||||
"Enable SAML compression - Tooltip": "Нужно ли сжимать сообщения ответа SAML при использовании Casdoor в качестве SAML-идентификатора",
|
||||
"Enable WebAuthn signin": "Активировать вход в систему с помощью WebAuthn",
|
||||
@ -42,6 +46,10 @@
|
||||
"Enable signin session - Tooltip": "Будет ли сохранена сессия в Casdoor после входа в него из приложения?",
|
||||
"Enable signup": "Включить регистрацию",
|
||||
"Enable signup - Tooltip": "Разрешить ли пользователям зарегистрировать новый аккаунт",
|
||||
"Failed signin frozen time": "Failed signin frozen time",
|
||||
"Failed signin frozen time - Tooltip": "Failed signin frozen time - Tooltip",
|
||||
"Failed signin limit": "Failed signin limit",
|
||||
"Failed signin limit - Tooltip": "Failed signin limit - Tooltip",
|
||||
"Failed to sign in": "Не удалось войти в систему",
|
||||
"File uploaded successfully": "Файл успешно загружен",
|
||||
"First, last": "First, last",
|
||||
@ -60,7 +68,6 @@
|
||||
"Input": "Input",
|
||||
"Invitation code": "Invitation code",
|
||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||
"Left": "Левый",
|
||||
"Logged in successfully": "Успешный вход в систему",
|
||||
"Logged out successfully": "Успешный выход из системы",
|
||||
@ -73,7 +80,6 @@
|
||||
"Please input your application!": "Пожалуйста, введите свою заявку!",
|
||||
"Please input your organization!": "Пожалуйста, введите название вашей организации!",
|
||||
"Please select a HTML file": "Пожалуйста, выберите файл HTML",
|
||||
"Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "URL страницы успешно скопирован в буфер обмена, пожалуйста, вставьте его в режиме инкогнито или в другом браузере",
|
||||
"Random": "Random",
|
||||
"Real name": "Real name",
|
||||
"Redirect URL": "Перенаправление URL",
|
||||
@ -86,7 +92,6 @@
|
||||
"Rule": "Правило",
|
||||
"SAML metadata": "Метаданные SAML",
|
||||
"SAML metadata - Tooltip": "Метаданные протокола SAML",
|
||||
"SAML metadata URL copied to clipboard successfully": "URL метаданных SAML успешно скопирован в буфер обмена",
|
||||
"SAML reply URL": "URL ответа SAML",
|
||||
"Select": "Select",
|
||||
"Side panel HTML": "Боковая панель HTML",
|
||||
@ -95,11 +100,9 @@
|
||||
"Sign Up Error": "Ошибка при регистрации",
|
||||
"Signin": "Signin",
|
||||
"Signin (Default True)": "Signin (Default True)",
|
||||
"Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "URL страницы входа скопирован успешно, пожалуйста, вставьте ее в инкогнито-окно или другой браузер",
|
||||
"Signin session": "Сессия входа в систему",
|
||||
"Signup items": "Элементы регистрации",
|
||||
"Signup items - Tooltip": "Элементы, которые пользователи должны заполнить при регистрации новых аккаунтов",
|
||||
"Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Успешно скопирован URL страницы регистрации в буфер обмена, пожалуйста, вставьте его в режиме инкогнито или в другом браузере",
|
||||
"Tags - Tooltip": "Only users with the tag that is listed in the application tags can login",
|
||||
"The application does not allow to sign up new account": "Приложение не позволяет зарегистрироваться новому аккаунту",
|
||||
"Token expire": "Срок действия токена истекает",
|
||||
@ -113,7 +116,6 @@
|
||||
"Bit size - Tooltip": "Длина секретного ключа",
|
||||
"Certificate": "Сертификат",
|
||||
"Certificate - Tooltip": "Сертификат открытого ключа, используется для расшифровки подписи JWT токена доступа. Этот сертификат обычно должен быть развернут на стороне Casdoor SDK (то есть приложения), чтобы распарсить JWT",
|
||||
"Certificate copied to clipboard successfully": "Сертификат успешно скопирован в буфер обмена",
|
||||
"Copy certificate": "Скопировать сертификат",
|
||||
"Copy private key": "Копировать закрытый ключ",
|
||||
"Crypto algorithm": "Шифровальный алгоритм криптовалюты",
|
||||
@ -126,7 +128,6 @@
|
||||
"New Cert": "Новый сертификат",
|
||||
"Private key": "Частный ключ",
|
||||
"Private key - Tooltip": "Приватный ключ, соответствующий сертификату открытого ключа",
|
||||
"Private key copied to clipboard successfully": "Приватный ключ успешно скопирован в буфер обмена",
|
||||
"Scope - Tooltip": "Сценарии использования сертификата",
|
||||
"Type - Tooltip": "Тип сертификата"
|
||||
},
|
||||
@ -191,6 +192,7 @@
|
||||
"Click to Upload": "Нажмите, чтобы загрузить",
|
||||
"Close": "Близко",
|
||||
"Confirm": "Confirm",
|
||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||
"Copy": "Copy",
|
||||
"Created time": "Созданное время",
|
||||
"Custom": "Custom",
|
||||
@ -200,6 +202,8 @@
|
||||
"Default application - Tooltip": "По умолчанию приложение для пользователей, зарегистрированных непосредственно со страницы организации",
|
||||
"Default avatar": "Стандартный аватар",
|
||||
"Default avatar - Tooltip": "Стандартное изображение аватара, используемое при регистрации новых пользователей, которые не загружают своё собственное изображение аватара",
|
||||
"Default password": "Default password",
|
||||
"Default password - Tooltip": "Default password - Tooltip",
|
||||
"Delete": "Удалить",
|
||||
"Description": "Описание",
|
||||
"Description - Tooltip": "Подробная описательная информация для справки, Casdoor сам не будет использовать ее",
|
||||
@ -218,8 +222,10 @@
|
||||
"Failed to connect to server": "Не удалось подключиться к серверу",
|
||||
"Failed to delete": "Не удалось удалить",
|
||||
"Failed to enable": "Failed to enable",
|
||||
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
|
||||
"Failed to remove": "Failed to remove",
|
||||
"Failed to save": "Не удалось сохранить",
|
||||
"Failed to sync": "Failed to sync",
|
||||
"Failed to verify": "Failed to verify",
|
||||
"Favicon": "Фавикон",
|
||||
"Favicon - Tooltip": "URL иконки Favicon, используемый на всех страницах организации Casdoor",
|
||||
@ -251,6 +257,8 @@
|
||||
"MFA items - Tooltip": "MFA items - Tooltip",
|
||||
"Master password": "Главный пароль",
|
||||
"Master password - Tooltip": "Можно использовать для входа в учетные записи всех пользователей этой организации, что удобно для администраторов, чтобы войти в качестве этого пользователя и решить технические проблемы",
|
||||
"Master verification code": "Master verification code",
|
||||
"Master verification code - Tooltip": "Master verification code - Tooltip",
|
||||
"Menu": "Меню",
|
||||
"Method": "Метод",
|
||||
"Model": "Модель",
|
||||
@ -272,6 +280,8 @@
|
||||
"Password salt - Tooltip": "Случайный параметр, используемый для шифрования пароля",
|
||||
"Password type": "Тип пароля",
|
||||
"Password type - Tooltip": "Формат хранения паролей в базе данных",
|
||||
"Payment": "Payment",
|
||||
"Payment - Tooltip": "Payment - Tooltip",
|
||||
"Payments": "Платежи",
|
||||
"Permissions": "Разрешения",
|
||||
"Permissions - Tooltip": "Разрешения, принадлежащие этому пользователю",
|
||||
@ -283,6 +293,8 @@
|
||||
"Plans - Tooltip": "Plans - Tooltip",
|
||||
"Preview": "Предварительный просмотр",
|
||||
"Preview - Tooltip": "Предварительный просмотр настроенных эффектов",
|
||||
"Pricing": "Pricing",
|
||||
"Pricing - Tooltip": "Pricing - Tooltip",
|
||||
"Pricings": "Тарифы",
|
||||
"Products": "Продукты",
|
||||
"Provider": "Провайдер",
|
||||
@ -296,6 +308,10 @@
|
||||
"Role - Tooltip": "Role - Tooltip",
|
||||
"Roles": "Роли",
|
||||
"Roles - Tooltip": "Роли, к которым принадлежит пользователь",
|
||||
"Root cert": "Root cert",
|
||||
"Root cert - Tooltip": "Root cert - Tooltip",
|
||||
"SAML attributes": "SAML attributes",
|
||||
"SAML attributes - Tooltip": "SAML attributes - Tooltip",
|
||||
"Save": "Сохранить",
|
||||
"Save & Exit": "Сохранить и выйти",
|
||||
"Session ID": "Идентификатор сессии",
|
||||
@ -318,6 +334,7 @@
|
||||
"Successfully removed": "Successfully removed",
|
||||
"Successfully saved": "Успешно сохранено",
|
||||
"Successfully sent": "Successfully sent",
|
||||
"Successfully synced": "Successfully synced",
|
||||
"Supported country codes": "Поддерживаемые коды стран",
|
||||
"Supported country codes - Tooltip": "Коды стран, поддерживаемые организацией. Эти коды могут быть выбраны в качестве префикса при отправке SMS-кодов подтверждения",
|
||||
"Sure to delete": "Обязательное удаление",
|
||||
@ -440,7 +457,6 @@
|
||||
"Multi-factor methods": "Multi-factor methods",
|
||||
"Multi-factor recover": "Multi-factor recover",
|
||||
"Multi-factor recover description": "Multi-factor recover description",
|
||||
"Multi-factor secret to clipboard successfully": "Multi-factor secret to clipboard successfully",
|
||||
"Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
|
||||
"Passcode": "Passcode",
|
||||
"Please bind your email first, the system will automatically uses the mail for multi-factor authentication": "Please bind your email first, the system will automatically uses the mail for multi-factor authentication",
|
||||
@ -573,11 +589,13 @@
|
||||
"plan": {
|
||||
"Edit Plan": "Edit Plan",
|
||||
"New Plan": "New Plan",
|
||||
"Price per month": "Price per month",
|
||||
"Price per month - Tooltip": "Price per month - Tooltip",
|
||||
"Price per year": "Price per year",
|
||||
"Price per year - Tooltip": "Price per year - Tooltip",
|
||||
"per month": "в месяц"
|
||||
"Period": "Period",
|
||||
"Period - Tooltip": "Period - Tooltip",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price - Tooltip",
|
||||
"Related product": "Related product",
|
||||
"per month": "в месяц",
|
||||
"per year": "per year"
|
||||
},
|
||||
"pricing": {
|
||||
"Copy pricing page URL": "Скопировать URL прайс-листа",
|
||||
@ -589,7 +607,7 @@
|
||||
"Trial duration": "Продолжительность пробного периода",
|
||||
"Trial duration - Tooltip": "Продолжительность пробного периода",
|
||||
"days trial available!": "дней пробного периода доступно!",
|
||||
"pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "URL страницы прайс-листа успешно скопирован в буфер обмена, пожалуйста, вставьте его в режиме инкогнито или другом браузере"
|
||||
"paid-user do not have active subscription or pending subscription, please select a plan to buy": "paid-user do not have active subscription or pending subscription, please select a plan to buy"
|
||||
},
|
||||
"product": {
|
||||
"Alipay": "Alipay",
|
||||
@ -600,17 +618,16 @@
|
||||
"Detail - Tooltip": "Деталь продукта",
|
||||
"Dummy": "Dummy",
|
||||
"Edit Product": "Редактировать продукт",
|
||||
"I have completed the payment": "Я произвел оплату",
|
||||
"Image": "Изображение",
|
||||
"Image - Tooltip": "Изображение продукта",
|
||||
"New Product": "Новый продукт",
|
||||
"Pay": "Заплатить",
|
||||
"PayPal": "PayPal",
|
||||
"Payment cancelled": "Payment cancelled",
|
||||
"Payment failed": "Payment failed",
|
||||
"Payment providers": "Платежные поставщики",
|
||||
"Payment providers - Tooltip": "Провайдеры платежных услуг",
|
||||
"Placing order...": "Оформление заказа...",
|
||||
"Please provide your username in the remark": "Пожалуйста, укажите имя пользователя в комментарии",
|
||||
"Please scan the QR code to pay": "Пожалуйста, отсканируйте QR-код для оплаты",
|
||||
"Price": "Цена",
|
||||
"Price - Tooltip": "Стоимость продукта",
|
||||
"Quantity": "Количество",
|
||||
@ -672,8 +689,8 @@
|
||||
"Content": "Content",
|
||||
"Content - Tooltip": "Content - Tooltip",
|
||||
"Copy": "Копировать",
|
||||
"DB Test": "DB Test",
|
||||
"DB Test - Tooltip": "DB Test - Tooltip",
|
||||
"DB test": "DB test",
|
||||
"DB test - Tooltip": "DB test - Tooltip",
|
||||
"Disable SSL": "Отключить SSL",
|
||||
"Disable SSL - Tooltip": "Нужно ли отключать протокол SSL при общении с SMTP сервером?",
|
||||
"Domain": "Домен",
|
||||
@ -700,7 +717,10 @@
|
||||
"Internal": "Internal",
|
||||
"Issuer URL": "URL выпускающего органа",
|
||||
"Issuer URL - Tooltip": "URL эмитента",
|
||||
"Link copied to clipboard successfully": "Ссылка успешно скопирована в буфер обмена",
|
||||
"Key ID": "Key ID",
|
||||
"Key ID - Tooltip": "Key ID - Tooltip",
|
||||
"Key text": "Key text",
|
||||
"Key text - Tooltip": "Key text - Tooltip",
|
||||
"Metadata": "Метаданные",
|
||||
"Metadata - Tooltip": "Метаданные SAML",
|
||||
"Method - Tooltip": "Метод входа, QR-код или беззвучный вход",
|
||||
@ -754,6 +774,10 @@
|
||||
"Sender Id - Tooltip": "Sender Id - Tooltip",
|
||||
"Sender number": "Sender number",
|
||||
"Sender number - Tooltip": "Sender number - Tooltip",
|
||||
"Service ID identifier": "Service ID identifier",
|
||||
"Service ID identifier - Tooltip": "Service ID identifier - Tooltip",
|
||||
"Service account JSON": "Service account JSON",
|
||||
"Service account JSON - Tooltip": "Service account JSON - Tooltip",
|
||||
"Sign Name": "Подпись имени",
|
||||
"Sign Name - Tooltip": "Имя подписи, которую нужно использовать",
|
||||
"Sign request": "Подписать запрос",
|
||||
@ -764,12 +788,15 @@
|
||||
"Signup HTML": "Регистрационная форма HTML",
|
||||
"Signup HTML - Edit": "Регистрационная форма HTML - Редактировать",
|
||||
"Signup HTML - Tooltip": "Пользовательский HTML для замены стиля стандартной страницы регистрации",
|
||||
"Signup group": "Signup group",
|
||||
"Silent": "Silent",
|
||||
"Site key": "Ключ сайта",
|
||||
"Site key - Tooltip": "Ключ сайта",
|
||||
"Sliding Validation": "Sliding Validation",
|
||||
"Sub type": "Подтип",
|
||||
"Sub type - Tooltip": "Подтип",
|
||||
"Team ID": "Team ID",
|
||||
"Team ID - Tooltip": "Team ID - Tooltip",
|
||||
"Template code": "Шаблонный код",
|
||||
"Template code - Tooltip": "Шаблонный код",
|
||||
"Test Email": "Тестовое письмо",
|
||||
@ -780,6 +807,8 @@
|
||||
"Token URL - Tooltip": "Токен URL",
|
||||
"Type": "Тип",
|
||||
"Type - Tooltip": "Выберите тип",
|
||||
"User flow": "User flow",
|
||||
"User flow - Tooltip": "User flow - Tooltip",
|
||||
"User mapping": "User mapping",
|
||||
"User mapping - Tooltip": "User mapping - Tooltip",
|
||||
"UserInfo URL": "URL информации о пользователе",
|
||||
@ -801,6 +830,8 @@
|
||||
"New Role": "Новая роль",
|
||||
"Sub domains": "Поддомены",
|
||||
"Sub domains - Tooltip": "Домены, включенные в текущую роль",
|
||||
"Sub groups": "Sub groups",
|
||||
"Sub groups - Tooltip": "Sub groups - Tooltip",
|
||||
"Sub roles": "Роли в подчинении",
|
||||
"Sub roles - Tooltip": "Включенные в настоящее время роли",
|
||||
"Sub users": "Подпользователи",
|
||||
@ -812,6 +843,9 @@
|
||||
"Confirm": "Подтвердить",
|
||||
"Decline": "Снижение",
|
||||
"Have account?": "У вас есть аккаунт?",
|
||||
"Label": "Label",
|
||||
"Label HTML": "Label HTML",
|
||||
"Placeholder": "Placeholder",
|
||||
"Please accept the agreement!": "Пожалуйста, примите соглашение!",
|
||||
"Please click the below button to sign in": "Пожалуйста, нажмите на кнопку ниже, чтобы авторизоваться",
|
||||
"Please confirm your password!": "Подтвердите, пожалуйста, ваш пароль!",
|
||||
@ -830,6 +864,11 @@
|
||||
"Please select your country/region!": "Пожалуйста, выберите свою страну / регион!",
|
||||
"Terms of Use": "Условия использования",
|
||||
"Terms of Use - Tooltip": "Условия использования, которые пользователи должны прочитать и согласиться с ними при регистрации",
|
||||
"Text 1": "Text 1",
|
||||
"Text 2": "Text 2",
|
||||
"Text 3": "Text 3",
|
||||
"Text 4": "Text 4",
|
||||
"Text 5": "Text 5",
|
||||
"The input is not invoice Tax ID!": "Входные данные не являются идентификатором налога по счету-фактуре!",
|
||||
"The input is not invoice title!": "Входные данные не являются названием счета-фактуры!",
|
||||
"The input is not valid Email!": "Ввод не является действительным адресом электронной почты!",
|
||||
@ -841,14 +880,19 @@
|
||||
"sign in now": "войти сейчас"
|
||||
},
|
||||
"subscription": {
|
||||
"Duration": "Продолжительность",
|
||||
"Duration - Tooltip": "Продолжительность подписки",
|
||||
"Active": "Active",
|
||||
"Edit Subscription": "Edit Subscription",
|
||||
"End date": "Дата окончания",
|
||||
"End date - Tooltip": "Дата окончания",
|
||||
"End time": "End time",
|
||||
"End time - Tooltip": "End time - Tooltip",
|
||||
"Error": "Error",
|
||||
"Expired": "Expired",
|
||||
"New Subscription": "New Subscription",
|
||||
"Start date": "Дата начала",
|
||||
"Start date - Tooltip": "Дата начала"
|
||||
"Pending": "Pending",
|
||||
"Period": "Period",
|
||||
"Start time": "Start time",
|
||||
"Start time - Tooltip": "Start time - Tooltip",
|
||||
"Suspended": "Suspended",
|
||||
"Upcoming": "Upcoming"
|
||||
},
|
||||
"syncer": {
|
||||
"Affiliation table": "Таблица принадлежности",
|
||||
@ -872,6 +916,8 @@
|
||||
"Is read-only": "Is read-only",
|
||||
"Is read-only - Tooltip": "Is read-only - Tooltip",
|
||||
"New Syncer": "Новый синхронизатор",
|
||||
"SSL mode": "SSL mode",
|
||||
"SSL mode - Tooltip": "SSL mode - Tooltip",
|
||||
"Sync interval": "Интервал синхронизации",
|
||||
"Sync interval - Tooltip": "Единица измерения в секундах",
|
||||
"Table": "Стол",
|
||||
@ -913,11 +959,19 @@
|
||||
},
|
||||
"token": {
|
||||
"Access token": "Маркер доступа",
|
||||
"Access token - Tooltip": "Access token - Tooltip",
|
||||
"Authorization code": "Код авторизации",
|
||||
"Authorization code - Tooltip": "Authorization code - Tooltip",
|
||||
"Copy access token": "Copy access token",
|
||||
"Copy parsed result": "Copy parsed result",
|
||||
"Edit Token": "Изменить маркер",
|
||||
"Expires in": "Истекает в",
|
||||
"Expires in - Tooltip": "Expires in - Tooltip",
|
||||
"New Token": "Новый токен",
|
||||
"Token type": "Тип токена"
|
||||
"Parsed result": "Parsed result",
|
||||
"Parsed result - Tooltip": "Parsed result - Tooltip",
|
||||
"Token type": "Тип токена",
|
||||
"Token type - Tooltip": "Token type - Tooltip"
|
||||
},
|
||||
"user": {
|
||||
"3rd-party logins": "Авторизация сторонних участников",
|
||||
@ -974,6 +1028,8 @@
|
||||
"Managed accounts": "Управляемые счета",
|
||||
"Modify password...": "Изменить пароль...",
|
||||
"Multi-factor authentication": "Multi-factor authentication",
|
||||
"Name": "Name",
|
||||
"Name format": "Name format",
|
||||
"New Email": "Новое электронное письмо",
|
||||
"New Password": "Новый пароль",
|
||||
"New User": "Новый пользователь",
|
||||
@ -1011,6 +1067,7 @@
|
||||
"Upload ID card front picture": "Upload ID card front picture",
|
||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||
"Upload a photo": "Загрузить фото",
|
||||
"Value": "Value",
|
||||
"Values": "Значения",
|
||||
"Verification code sent": "Код подтверждения отправлен",
|
||||
"WebAuthn credentials": "WebAuthn удостоверения",
|
||||
|
@ -12,7 +12,9 @@
|
||||
"Policies": "Policies",
|
||||
"Policies - Tooltip": "Casbin policy rules",
|
||||
"Rule type": "Rule type",
|
||||
"Sync policies successfully": "Sync policies successfully"
|
||||
"Sync policies successfully": "Sync policies successfully",
|
||||
"Use same DB": "Use same DB",
|
||||
"Use same DB - Tooltip": "Use same DB - Tooltip"
|
||||
},
|
||||
"application": {
|
||||
"Always": "Always",
|
||||
@ -30,6 +32,8 @@
|
||||
"Edit Application": "Edit Application",
|
||||
"Enable Email linking": "Enable Email linking",
|
||||
"Enable Email linking - Tooltip": "When using 3rd-party providers to log in, if there is a user in the organization with the same Email, the 3rd-party login method will be automatically associated with that user",
|
||||
"Enable SAML C14N10": "Enable SAML C14N10",
|
||||
"Enable SAML C14N10 - Tooltip": "Enable SAML C14N10 - Tooltip",
|
||||
"Enable SAML compression": "Enable SAML compression",
|
||||
"Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp",
|
||||
"Enable WebAuthn signin": "Enable WebAuthn signin",
|
||||
@ -42,6 +46,10 @@
|
||||
"Enable signin session - Tooltip": "Whether Casdoor maintains a session after logging into Casdoor from the application",
|
||||
"Enable signup": "Enable signup",
|
||||
"Enable signup - Tooltip": "Whether to allow users to register a new account",
|
||||
"Failed signin frozen time": "Failed signin frozen time",
|
||||
"Failed signin frozen time - Tooltip": "Failed signin frozen time - Tooltip",
|
||||
"Failed signin limit": "Failed signin limit",
|
||||
"Failed signin limit - Tooltip": "Failed signin limit - Tooltip",
|
||||
"Failed to sign in": "Failed to sign in",
|
||||
"File uploaded successfully": "File uploaded successfully",
|
||||
"First, last": "First, last",
|
||||
@ -60,7 +68,6 @@
|
||||
"Input": "Input",
|
||||
"Invitation code": "Invitation code",
|
||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||
"Left": "Left",
|
||||
"Logged in successfully": "Logged in successfully",
|
||||
"Logged out successfully": "Logged out successfully",
|
||||
@ -73,7 +80,6 @@
|
||||
"Please input your application!": "Please input your application!",
|
||||
"Please input your organization!": "Please input your organization!",
|
||||
"Please select a HTML file": "Please select a HTML file",
|
||||
"Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Random": "Random",
|
||||
"Real name": "Real name",
|
||||
"Redirect URL": "Redirect URL",
|
||||
@ -86,7 +92,6 @@
|
||||
"Rule": "Rule",
|
||||
"SAML metadata": "SAML metadata",
|
||||
"SAML metadata - Tooltip": "The metadata of SAML protocol",
|
||||
"SAML metadata URL copied to clipboard successfully": "SAML metadata URL copied to clipboard successfully",
|
||||
"SAML reply URL": "SAML reply URL",
|
||||
"Select": "Select",
|
||||
"Side panel HTML": "Side panel HTML",
|
||||
@ -95,11 +100,9 @@
|
||||
"Sign Up Error": "Sign Up Error",
|
||||
"Signin": "Signin",
|
||||
"Signin (Default True)": "Signin (Default True)",
|
||||
"Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Signin session": "Signin session",
|
||||
"Signup items": "Signup items",
|
||||
"Signup items - Tooltip": "Items for users to fill in when registering new accounts",
|
||||
"Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Tags - Tooltip": "Only users with the tag that is listed in the application tags can login",
|
||||
"The application does not allow to sign up new account": "The application does not allow to sign up new account",
|
||||
"Token expire": "Token expire",
|
||||
@ -113,7 +116,6 @@
|
||||
"Bit size - Tooltip": "Secret key length",
|
||||
"Certificate": "Certificate",
|
||||
"Certificate - Tooltip": "Public key certificate, used for decrypting the JWT signature of the Access Token. This certificate usually needs to be deployed on the Casdoor SDK side (i.e., the application) to parse the JWT",
|
||||
"Certificate copied to clipboard successfully": "Certificate copied to clipboard successfully",
|
||||
"Copy certificate": "Copy certificate",
|
||||
"Copy private key": "Copy private key",
|
||||
"Crypto algorithm": "Crypto algorithm",
|
||||
@ -126,7 +128,6 @@
|
||||
"New Cert": "New Cert",
|
||||
"Private key": "Private key",
|
||||
"Private key - Tooltip": "Private key corresponding to the public key certificate",
|
||||
"Private key copied to clipboard successfully": "Private key copied to clipboard successfully",
|
||||
"Scope - Tooltip": "Usage scenarios of the certificate",
|
||||
"Type - Tooltip": "Type of certificate"
|
||||
},
|
||||
@ -191,6 +192,7 @@
|
||||
"Click to Upload": "Click to Upload",
|
||||
"Close": "Close",
|
||||
"Confirm": "Confirm",
|
||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||
"Copy": "Copy",
|
||||
"Created time": "Created time",
|
||||
"Custom": "Custom",
|
||||
@ -200,6 +202,8 @@
|
||||
"Default application - Tooltip": "Default application for users registered directly from the organization page",
|
||||
"Default avatar": "Default avatar",
|
||||
"Default avatar - Tooltip": "Default avatar used when newly registered users do not set an avatar image",
|
||||
"Default password": "Default password",
|
||||
"Default password - Tooltip": "Default password - Tooltip",
|
||||
"Delete": "Delete",
|
||||
"Description": "Description",
|
||||
"Description - Tooltip": "Detailed description information for reference, Casdoor itself will not use it",
|
||||
@ -218,8 +222,10 @@
|
||||
"Failed to connect to server": "Failed to connect to server",
|
||||
"Failed to delete": "Failed to delete",
|
||||
"Failed to enable": "Failed to enable",
|
||||
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
|
||||
"Failed to remove": "Failed to remove",
|
||||
"Failed to save": "Failed to save",
|
||||
"Failed to sync": "Failed to sync",
|
||||
"Failed to verify": "Failed to verify",
|
||||
"Favicon": "Favicon",
|
||||
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
|
||||
@ -251,6 +257,8 @@
|
||||
"MFA items - Tooltip": "MFA items - Tooltip",
|
||||
"Master password": "Master password",
|
||||
"Master password - Tooltip": "Can be used to log in to all users under this organization, making it convenient for administrators to log in as this user to solve technical issues",
|
||||
"Master verification code": "Master verification code",
|
||||
"Master verification code - Tooltip": "Master verification code - Tooltip",
|
||||
"Menu": "Menu",
|
||||
"Method": "Method",
|
||||
"Model": "Model",
|
||||
@ -272,6 +280,8 @@
|
||||
"Password salt - Tooltip": "Random parameter used for password encryption",
|
||||
"Password type": "Password type",
|
||||
"Password type - Tooltip": "Storage format of passwords in the database",
|
||||
"Payment": "Payment",
|
||||
"Payment - Tooltip": "Payment - Tooltip",
|
||||
"Payments": "Payments",
|
||||
"Permissions": "Permissions",
|
||||
"Permissions - Tooltip": "Permissions owned by this user",
|
||||
@ -283,6 +293,8 @@
|
||||
"Plans - Tooltip": "Plans - Tooltip",
|
||||
"Preview": "Preview",
|
||||
"Preview - Tooltip": "Preview the configured effects",
|
||||
"Pricing": "Pricing",
|
||||
"Pricing - Tooltip": "Pricing - Tooltip",
|
||||
"Pricings": "Pricings",
|
||||
"Products": "Products",
|
||||
"Provider": "Provider",
|
||||
@ -296,6 +308,10 @@
|
||||
"Role - Tooltip": "Role - Tooltip",
|
||||
"Roles": "Roles",
|
||||
"Roles - Tooltip": "Roles that the user belongs to",
|
||||
"Root cert": "Root cert",
|
||||
"Root cert - Tooltip": "Root cert - Tooltip",
|
||||
"SAML attributes": "SAML attributes",
|
||||
"SAML attributes - Tooltip": "SAML attributes - Tooltip",
|
||||
"Save": "Save",
|
||||
"Save & Exit": "Save & Exit",
|
||||
"Session ID": "Session ID",
|
||||
@ -318,6 +334,7 @@
|
||||
"Successfully removed": "Successfully removed",
|
||||
"Successfully saved": "Successfully saved",
|
||||
"Successfully sent": "Successfully sent",
|
||||
"Successfully synced": "Successfully synced",
|
||||
"Supported country codes": "Supported country codes",
|
||||
"Supported country codes - Tooltip": "Country codes supported by the organization. These codes can be selected as a prefix when sending SMS verification codes",
|
||||
"Sure to delete": "Sure to delete",
|
||||
@ -440,7 +457,6 @@
|
||||
"Multi-factor methods": "Multi-factor methods",
|
||||
"Multi-factor recover": "Multi-factor recover",
|
||||
"Multi-factor recover description": "Multi-factor recover description",
|
||||
"Multi-factor secret to clipboard successfully": "Multi-factor secret to clipboard successfully",
|
||||
"Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
|
||||
"Passcode": "Passcode",
|
||||
"Please bind your email first, the system will automatically uses the mail for multi-factor authentication": "Please bind your email first, the system will automatically uses the mail for multi-factor authentication",
|
||||
@ -573,11 +589,13 @@
|
||||
"plan": {
|
||||
"Edit Plan": "Edit Plan",
|
||||
"New Plan": "New Plan",
|
||||
"Price per month": "Price per month",
|
||||
"Price per month - Tooltip": "Price per month - Tooltip",
|
||||
"Price per year": "Price per year",
|
||||
"Price per year - Tooltip": "Price per year - Tooltip",
|
||||
"per month": "per month"
|
||||
"Period": "Period",
|
||||
"Period - Tooltip": "Period - Tooltip",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price - Tooltip",
|
||||
"Related product": "Related product",
|
||||
"per month": "per month",
|
||||
"per year": "per year"
|
||||
},
|
||||
"pricing": {
|
||||
"Copy pricing page URL": "Copy pricing page URL",
|
||||
@ -589,7 +607,7 @@
|
||||
"Trial duration": "Trial duration",
|
||||
"Trial duration - Tooltip": "Trial duration period",
|
||||
"days trial available!": "days trial available!",
|
||||
"pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser"
|
||||
"paid-user do not have active subscription or pending subscription, please select a plan to buy": "paid-user do not have active subscription or pending subscription, please select a plan to buy"
|
||||
},
|
||||
"product": {
|
||||
"Alipay": "Alipay",
|
||||
@ -600,17 +618,16 @@
|
||||
"Detail - Tooltip": "Detail of product",
|
||||
"Dummy": "Dummy",
|
||||
"Edit Product": "Edit Product",
|
||||
"I have completed the payment": "I have completed the payment",
|
||||
"Image": "Image",
|
||||
"Image - Tooltip": "Image of product",
|
||||
"New Product": "New Product",
|
||||
"Pay": "Pay",
|
||||
"PayPal": "PayPal",
|
||||
"Payment cancelled": "Payment cancelled",
|
||||
"Payment failed": "Payment failed",
|
||||
"Payment providers": "Payment providers",
|
||||
"Payment providers - Tooltip": "Providers of payment services",
|
||||
"Placing order...": "Placing order...",
|
||||
"Please provide your username in the remark": "Please provide your username in the remark",
|
||||
"Please scan the QR code to pay": "Please scan the QR code to pay",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price of product",
|
||||
"Quantity": "Quantity",
|
||||
@ -672,8 +689,8 @@
|
||||
"Content": "Content",
|
||||
"Content - Tooltip": "Content - Tooltip",
|
||||
"Copy": "Copy",
|
||||
"DB Test": "DB Test",
|
||||
"DB Test - Tooltip": "DB Test - Tooltip",
|
||||
"DB test": "DB test",
|
||||
"DB test - Tooltip": "DB test - Tooltip",
|
||||
"Disable SSL": "Disable SSL",
|
||||
"Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server",
|
||||
"Domain": "Domain",
|
||||
@ -700,7 +717,10 @@
|
||||
"Internal": "Internal",
|
||||
"Issuer URL": "Issuer URL",
|
||||
"Issuer URL - Tooltip": "Issuer URL",
|
||||
"Link copied to clipboard successfully": "Link copied to clipboard successfully",
|
||||
"Key ID": "Key ID",
|
||||
"Key ID - Tooltip": "Key ID - Tooltip",
|
||||
"Key text": "Key text",
|
||||
"Key text - Tooltip": "Key text - Tooltip",
|
||||
"Metadata": "Metadata",
|
||||
"Metadata - Tooltip": "SAML metadata",
|
||||
"Method - Tooltip": "Login method, QR code or silent login",
|
||||
@ -754,6 +774,10 @@
|
||||
"Sender Id - Tooltip": "Sender Id - Tooltip",
|
||||
"Sender number": "Sender number",
|
||||
"Sender number - Tooltip": "Sender number - Tooltip",
|
||||
"Service ID identifier": "Service ID identifier",
|
||||
"Service ID identifier - Tooltip": "Service ID identifier - Tooltip",
|
||||
"Service account JSON": "Service account JSON",
|
||||
"Service account JSON - Tooltip": "Service account JSON - Tooltip",
|
||||
"Sign Name": "Sign Name",
|
||||
"Sign Name - Tooltip": "Name of the signature to be used",
|
||||
"Sign request": "Sign request",
|
||||
@ -764,12 +788,15 @@
|
||||
"Signup HTML": "Signup HTML",
|
||||
"Signup HTML - Edit": "Signup HTML - Edit",
|
||||
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
|
||||
"Signup group": "Signup group",
|
||||
"Silent": "Silent",
|
||||
"Site key": "Site key",
|
||||
"Site key - Tooltip": "Site key",
|
||||
"Sliding Validation": "Sliding Validation",
|
||||
"Sub type": "Sub type",
|
||||
"Sub type - Tooltip": "Sub type",
|
||||
"Team ID": "Team ID",
|
||||
"Team ID - Tooltip": "Team ID - Tooltip",
|
||||
"Template code": "Template code",
|
||||
"Template code - Tooltip": "Template code",
|
||||
"Test Email": "Test Email",
|
||||
@ -780,6 +807,8 @@
|
||||
"Token URL - Tooltip": "Token URL",
|
||||
"Type": "Type",
|
||||
"Type - Tooltip": "Select a type",
|
||||
"User flow": "User flow",
|
||||
"User flow - Tooltip": "User flow - Tooltip",
|
||||
"User mapping": "User mapping",
|
||||
"User mapping - Tooltip": "User mapping - Tooltip",
|
||||
"UserInfo URL": "UserInfo URL",
|
||||
@ -801,6 +830,8 @@
|
||||
"New Role": "New Role",
|
||||
"Sub domains": "Sub domains",
|
||||
"Sub domains - Tooltip": "Domains included in the current role",
|
||||
"Sub groups": "Sub groups",
|
||||
"Sub groups - Tooltip": "Sub groups - Tooltip",
|
||||
"Sub roles": "Sub roles",
|
||||
"Sub roles - Tooltip": "Roles included in the current role",
|
||||
"Sub users": "Sub users",
|
||||
@ -812,6 +843,9 @@
|
||||
"Confirm": "Confirm",
|
||||
"Decline": "Decline",
|
||||
"Have account?": "Have account?",
|
||||
"Label": "Label",
|
||||
"Label HTML": "Label HTML",
|
||||
"Placeholder": "Placeholder",
|
||||
"Please accept the agreement!": "Please accept the agreement!",
|
||||
"Please click the below button to sign in": "Please click the below button to sign in",
|
||||
"Please confirm your password!": "Please confirm your password!",
|
||||
@ -830,6 +864,11 @@
|
||||
"Please select your country/region!": "Please select your country/region!",
|
||||
"Terms of Use": "Terms of Use",
|
||||
"Terms of Use - Tooltip": "Terms of use that users need to read and agree to during registration",
|
||||
"Text 1": "Text 1",
|
||||
"Text 2": "Text 2",
|
||||
"Text 3": "Text 3",
|
||||
"Text 4": "Text 4",
|
||||
"Text 5": "Text 5",
|
||||
"The input is not invoice Tax ID!": "The input is not invoice Tax ID!",
|
||||
"The input is not invoice title!": "The input is not invoice title!",
|
||||
"The input is not valid Email!": "The input is not valid Email!",
|
||||
@ -841,14 +880,19 @@
|
||||
"sign in now": "sign in now"
|
||||
},
|
||||
"subscription": {
|
||||
"Duration": "Duration",
|
||||
"Duration - Tooltip": "Subscription duration",
|
||||
"Active": "Active",
|
||||
"Edit Subscription": "Edit Subscription",
|
||||
"End date": "End date",
|
||||
"End date - Tooltip": "End date",
|
||||
"End time": "End time",
|
||||
"End time - Tooltip": "End time - Tooltip",
|
||||
"Error": "Error",
|
||||
"Expired": "Expired",
|
||||
"New Subscription": "New Subscription",
|
||||
"Start date": "Start date",
|
||||
"Start date - Tooltip": "Start date"
|
||||
"Pending": "Pending",
|
||||
"Period": "Period",
|
||||
"Start time": "Start time",
|
||||
"Start time - Tooltip": "Start time - Tooltip",
|
||||
"Suspended": "Suspended",
|
||||
"Upcoming": "Upcoming"
|
||||
},
|
||||
"syncer": {
|
||||
"Affiliation table": "Affiliation table",
|
||||
@ -872,6 +916,8 @@
|
||||
"Is read-only": "Is read-only",
|
||||
"Is read-only - Tooltip": "Is read-only - Tooltip",
|
||||
"New Syncer": "New Syncer",
|
||||
"SSL mode": "SSL mode",
|
||||
"SSL mode - Tooltip": "SSL mode - Tooltip",
|
||||
"Sync interval": "Sync interval",
|
||||
"Sync interval - Tooltip": "Unit in seconds",
|
||||
"Table": "Table",
|
||||
@ -913,11 +959,19 @@
|
||||
},
|
||||
"token": {
|
||||
"Access token": "Access token",
|
||||
"Access token - Tooltip": "Access token - Tooltip",
|
||||
"Authorization code": "Authorization code",
|
||||
"Authorization code - Tooltip": "Authorization code - Tooltip",
|
||||
"Copy access token": "Copy access token",
|
||||
"Copy parsed result": "Copy parsed result",
|
||||
"Edit Token": "Edit Token",
|
||||
"Expires in": "Expires in",
|
||||
"Expires in - Tooltip": "Expires in - Tooltip",
|
||||
"New Token": "New Token",
|
||||
"Token type": "Token type"
|
||||
"Parsed result": "Parsed result",
|
||||
"Parsed result - Tooltip": "Parsed result - Tooltip",
|
||||
"Token type": "Token type",
|
||||
"Token type - Tooltip": "Token type - Tooltip"
|
||||
},
|
||||
"user": {
|
||||
"3rd-party logins": "3rd-party logins",
|
||||
@ -974,6 +1028,8 @@
|
||||
"Managed accounts": "Managed accounts",
|
||||
"Modify password...": "Modify password...",
|
||||
"Multi-factor authentication": "Multi-factor authentication",
|
||||
"Name": "Name",
|
||||
"Name format": "Name format",
|
||||
"New Email": "New Email",
|
||||
"New Password": "New Password",
|
||||
"New User": "New User",
|
||||
@ -1011,6 +1067,7 @@
|
||||
"Upload ID card front picture": "Upload ID card front picture",
|
||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||
"Upload a photo": "Upload a photo",
|
||||
"Value": "Value",
|
||||
"Values": "Values",
|
||||
"Verification code sent": "Verification code sent",
|
||||
"WebAuthn credentials": "WebAuthn credentials",
|
||||
|
@ -12,7 +12,9 @@
|
||||
"Policies": "Policies",
|
||||
"Policies - Tooltip": "Casbin policy rules",
|
||||
"Rule type": "Rule type",
|
||||
"Sync policies successfully": "Sync policies successfully"
|
||||
"Sync policies successfully": "Sync policies successfully",
|
||||
"Use same DB": "Use same DB",
|
||||
"Use same DB - Tooltip": "Use same DB - Tooltip"
|
||||
},
|
||||
"application": {
|
||||
"Always": "Always",
|
||||
@ -30,6 +32,8 @@
|
||||
"Edit Application": "Edit Application",
|
||||
"Enable Email linking": "Enable Email linking",
|
||||
"Enable Email linking - Tooltip": "When using 3rd-party providers to log in, if there is a user in the organization with the same Email, the 3rd-party login method will be automatically associated with that user",
|
||||
"Enable SAML C14N10": "Enable SAML C14N10",
|
||||
"Enable SAML C14N10 - Tooltip": "Enable SAML C14N10 - Tooltip",
|
||||
"Enable SAML compression": "Enable SAML compression",
|
||||
"Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp",
|
||||
"Enable WebAuthn signin": "Enable WebAuthn signin",
|
||||
@ -42,6 +46,10 @@
|
||||
"Enable signin session - Tooltip": "Whether Casdoor maintains a session after logging into Casdoor from the application",
|
||||
"Enable signup": "Enable signup",
|
||||
"Enable signup - Tooltip": "Whether to allow users to register a new account",
|
||||
"Failed signin frozen time": "Failed signin frozen time",
|
||||
"Failed signin frozen time - Tooltip": "Failed signin frozen time - Tooltip",
|
||||
"Failed signin limit": "Failed signin limit",
|
||||
"Failed signin limit - Tooltip": "Failed signin limit - Tooltip",
|
||||
"Failed to sign in": "Failed to sign in",
|
||||
"File uploaded successfully": "File uploaded successfully",
|
||||
"First, last": "First, last",
|
||||
@ -60,7 +68,6 @@
|
||||
"Input": "Input",
|
||||
"Invitation code": "Invitation code",
|
||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||
"Left": "Left",
|
||||
"Logged in successfully": "Logged in successfully",
|
||||
"Logged out successfully": "Logged out successfully",
|
||||
@ -73,7 +80,6 @@
|
||||
"Please input your application!": "Please input your application!",
|
||||
"Please input your organization!": "Please input your organization!",
|
||||
"Please select a HTML file": "Please select a HTML file",
|
||||
"Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Random": "Random",
|
||||
"Real name": "Real name",
|
||||
"Redirect URL": "Redirect URL",
|
||||
@ -86,7 +92,6 @@
|
||||
"Rule": "Rule",
|
||||
"SAML metadata": "SAML metadata",
|
||||
"SAML metadata - Tooltip": "The metadata of SAML protocol",
|
||||
"SAML metadata URL copied to clipboard successfully": "SAML metadata URL copied to clipboard successfully",
|
||||
"SAML reply URL": "SAML reply URL",
|
||||
"Select": "Select",
|
||||
"Side panel HTML": "Side panel HTML",
|
||||
@ -95,11 +100,9 @@
|
||||
"Sign Up Error": "Sign Up Error",
|
||||
"Signin": "Signin",
|
||||
"Signin (Default True)": "Signin (Default True)",
|
||||
"Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Signin session": "Signin session",
|
||||
"Signup items": "Signup items",
|
||||
"Signup items - Tooltip": "Items for users to fill in when registering new accounts",
|
||||
"Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Tags - Tooltip": "Only users with the tag that is listed in the application tags can login",
|
||||
"The application does not allow to sign up new account": "The application does not allow to sign up new account",
|
||||
"Token expire": "Token expire",
|
||||
@ -113,7 +116,6 @@
|
||||
"Bit size - Tooltip": "Secret key length",
|
||||
"Certificate": "Certificate",
|
||||
"Certificate - Tooltip": "Public key certificate, used for decrypting the JWT signature of the Access Token. This certificate usually needs to be deployed on the Casdoor SDK side (i.e., the application) to parse the JWT",
|
||||
"Certificate copied to clipboard successfully": "Certificate copied to clipboard successfully",
|
||||
"Copy certificate": "Copy certificate",
|
||||
"Copy private key": "Copy private key",
|
||||
"Crypto algorithm": "Crypto algorithm",
|
||||
@ -126,7 +128,6 @@
|
||||
"New Cert": "New Cert",
|
||||
"Private key": "Private key",
|
||||
"Private key - Tooltip": "Private key corresponding to the public key certificate",
|
||||
"Private key copied to clipboard successfully": "Private key copied to clipboard successfully",
|
||||
"Scope - Tooltip": "Usage scenarios of the certificate",
|
||||
"Type - Tooltip": "Type of certificate"
|
||||
},
|
||||
@ -191,6 +192,7 @@
|
||||
"Click to Upload": "Click to Upload",
|
||||
"Close": "Close",
|
||||
"Confirm": "Confirm",
|
||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||
"Copy": "Copy",
|
||||
"Created time": "Created time",
|
||||
"Custom": "Custom",
|
||||
@ -200,6 +202,8 @@
|
||||
"Default application - Tooltip": "Default application for users registered directly from the organization page",
|
||||
"Default avatar": "Default avatar",
|
||||
"Default avatar - Tooltip": "Default avatar used when newly registered users do not set an avatar image",
|
||||
"Default password": "Default password",
|
||||
"Default password - Tooltip": "Default password - Tooltip",
|
||||
"Delete": "Delete",
|
||||
"Description": "Description",
|
||||
"Description - Tooltip": "Detailed description information for reference, Casdoor itself will not use it",
|
||||
@ -218,8 +222,10 @@
|
||||
"Failed to connect to server": "Failed to connect to server",
|
||||
"Failed to delete": "Failed to delete",
|
||||
"Failed to enable": "Failed to enable",
|
||||
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
|
||||
"Failed to remove": "Failed to remove",
|
||||
"Failed to save": "Failed to save",
|
||||
"Failed to sync": "Failed to sync",
|
||||
"Failed to verify": "Failed to verify",
|
||||
"Favicon": "Favicon",
|
||||
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
|
||||
@ -251,6 +257,8 @@
|
||||
"MFA items - Tooltip": "MFA items - Tooltip",
|
||||
"Master password": "Master password",
|
||||
"Master password - Tooltip": "Can be used to log in to all users under this organization, making it convenient for administrators to log in as this user to solve technical issues",
|
||||
"Master verification code": "Master verification code",
|
||||
"Master verification code - Tooltip": "Master verification code - Tooltip",
|
||||
"Menu": "Menu",
|
||||
"Method": "Method",
|
||||
"Model": "Model",
|
||||
@ -272,6 +280,8 @@
|
||||
"Password salt - Tooltip": "Random parameter used for password encryption",
|
||||
"Password type": "Password type",
|
||||
"Password type - Tooltip": "Storage format of passwords in the database",
|
||||
"Payment": "Payment",
|
||||
"Payment - Tooltip": "Payment - Tooltip",
|
||||
"Payments": "Payments",
|
||||
"Permissions": "Permissions",
|
||||
"Permissions - Tooltip": "Permissions owned by this user",
|
||||
@ -283,6 +293,8 @@
|
||||
"Plans - Tooltip": "Plans - Tooltip",
|
||||
"Preview": "Preview",
|
||||
"Preview - Tooltip": "Preview the configured effects",
|
||||
"Pricing": "Pricing",
|
||||
"Pricing - Tooltip": "Pricing - Tooltip",
|
||||
"Pricings": "Pricings",
|
||||
"Products": "Products",
|
||||
"Provider": "Provider",
|
||||
@ -296,6 +308,10 @@
|
||||
"Role - Tooltip": "Role - Tooltip",
|
||||
"Roles": "Roles",
|
||||
"Roles - Tooltip": "Roles that the user belongs to",
|
||||
"Root cert": "Root cert",
|
||||
"Root cert - Tooltip": "Root cert - Tooltip",
|
||||
"SAML attributes": "SAML attributes",
|
||||
"SAML attributes - Tooltip": "SAML attributes - Tooltip",
|
||||
"Save": "Save",
|
||||
"Save & Exit": "Save & Exit",
|
||||
"Session ID": "Session ID",
|
||||
@ -318,6 +334,7 @@
|
||||
"Successfully removed": "Successfully removed",
|
||||
"Successfully saved": "Successfully saved",
|
||||
"Successfully sent": "Successfully sent",
|
||||
"Successfully synced": "Successfully synced",
|
||||
"Supported country codes": "Supported country codes",
|
||||
"Supported country codes - Tooltip": "Country codes supported by the organization. These codes can be selected as a prefix when sending SMS verification codes",
|
||||
"Sure to delete": "Sure to delete",
|
||||
@ -440,7 +457,6 @@
|
||||
"Multi-factor methods": "Multi-factor methods",
|
||||
"Multi-factor recover": "Multi-factor recover",
|
||||
"Multi-factor recover description": "Multi-factor recover description",
|
||||
"Multi-factor secret to clipboard successfully": "Multi-factor secret to clipboard successfully",
|
||||
"Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
|
||||
"Passcode": "Passcode",
|
||||
"Please bind your email first, the system will automatically uses the mail for multi-factor authentication": "Please bind your email first, the system will automatically uses the mail for multi-factor authentication",
|
||||
@ -573,11 +589,13 @@
|
||||
"plan": {
|
||||
"Edit Plan": "Edit Plan",
|
||||
"New Plan": "New Plan",
|
||||
"Price per month": "Price per month",
|
||||
"Price per month - Tooltip": "Price per month - Tooltip",
|
||||
"Price per year": "Price per year",
|
||||
"Price per year - Tooltip": "Price per year - Tooltip",
|
||||
"per month": "per month"
|
||||
"Period": "Period",
|
||||
"Period - Tooltip": "Period - Tooltip",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price - Tooltip",
|
||||
"Related product": "Related product",
|
||||
"per month": "per month",
|
||||
"per year": "per year"
|
||||
},
|
||||
"pricing": {
|
||||
"Copy pricing page URL": "Copy pricing page URL",
|
||||
@ -589,7 +607,7 @@
|
||||
"Trial duration": "Trial duration",
|
||||
"Trial duration - Tooltip": "Trial duration period",
|
||||
"days trial available!": "days trial available!",
|
||||
"pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser"
|
||||
"paid-user do not have active subscription or pending subscription, please select a plan to buy": "paid-user do not have active subscription or pending subscription, please select a plan to buy"
|
||||
},
|
||||
"product": {
|
||||
"Alipay": "Alipay",
|
||||
@ -600,17 +618,16 @@
|
||||
"Detail - Tooltip": "Detail of product",
|
||||
"Dummy": "Dummy",
|
||||
"Edit Product": "Edit Product",
|
||||
"I have completed the payment": "I have completed the payment",
|
||||
"Image": "Image",
|
||||
"Image - Tooltip": "Image of product",
|
||||
"New Product": "New Product",
|
||||
"Pay": "Pay",
|
||||
"PayPal": "PayPal",
|
||||
"Payment cancelled": "Payment cancelled",
|
||||
"Payment failed": "Payment failed",
|
||||
"Payment providers": "Payment providers",
|
||||
"Payment providers - Tooltip": "Providers of payment services",
|
||||
"Placing order...": "Placing order...",
|
||||
"Please provide your username in the remark": "Please provide your username in the remark",
|
||||
"Please scan the QR code to pay": "Please scan the QR code to pay",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price of product",
|
||||
"Quantity": "Quantity",
|
||||
@ -672,8 +689,8 @@
|
||||
"Content": "Content",
|
||||
"Content - Tooltip": "Content - Tooltip",
|
||||
"Copy": "Copy",
|
||||
"DB Test": "DB Test",
|
||||
"DB Test - Tooltip": "DB Test - Tooltip",
|
||||
"DB test": "DB test",
|
||||
"DB test - Tooltip": "DB test - Tooltip",
|
||||
"Disable SSL": "Disable SSL",
|
||||
"Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server",
|
||||
"Domain": "Domain",
|
||||
@ -700,7 +717,10 @@
|
||||
"Internal": "Internal",
|
||||
"Issuer URL": "Issuer URL",
|
||||
"Issuer URL - Tooltip": "Issuer URL",
|
||||
"Link copied to clipboard successfully": "Link copied to clipboard successfully",
|
||||
"Key ID": "Key ID",
|
||||
"Key ID - Tooltip": "Key ID - Tooltip",
|
||||
"Key text": "Key text",
|
||||
"Key text - Tooltip": "Key text - Tooltip",
|
||||
"Metadata": "Metadata",
|
||||
"Metadata - Tooltip": "SAML metadata",
|
||||
"Method - Tooltip": "Login method, QR code or silent login",
|
||||
@ -754,6 +774,10 @@
|
||||
"Sender Id - Tooltip": "Sender Id - Tooltip",
|
||||
"Sender number": "Sender number",
|
||||
"Sender number - Tooltip": "Sender number - Tooltip",
|
||||
"Service ID identifier": "Service ID identifier",
|
||||
"Service ID identifier - Tooltip": "Service ID identifier - Tooltip",
|
||||
"Service account JSON": "Service account JSON",
|
||||
"Service account JSON - Tooltip": "Service account JSON - Tooltip",
|
||||
"Sign Name": "Sign Name",
|
||||
"Sign Name - Tooltip": "Name of the signature to be used",
|
||||
"Sign request": "Sign request",
|
||||
@ -764,12 +788,15 @@
|
||||
"Signup HTML": "Signup HTML",
|
||||
"Signup HTML - Edit": "Signup HTML - Edit",
|
||||
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
|
||||
"Signup group": "Signup group",
|
||||
"Silent": "Silent",
|
||||
"Site key": "Site key",
|
||||
"Site key - Tooltip": "Site key",
|
||||
"Sliding Validation": "Sliding Validation",
|
||||
"Sub type": "Sub type",
|
||||
"Sub type - Tooltip": "Sub type",
|
||||
"Team ID": "Team ID",
|
||||
"Team ID - Tooltip": "Team ID - Tooltip",
|
||||
"Template code": "Template code",
|
||||
"Template code - Tooltip": "Template code",
|
||||
"Test Email": "Test Email",
|
||||
@ -780,6 +807,8 @@
|
||||
"Token URL - Tooltip": "Token URL",
|
||||
"Type": "Type",
|
||||
"Type - Tooltip": "Select a type",
|
||||
"User flow": "User flow",
|
||||
"User flow - Tooltip": "User flow - Tooltip",
|
||||
"User mapping": "User mapping",
|
||||
"User mapping - Tooltip": "User mapping - Tooltip",
|
||||
"UserInfo URL": "UserInfo URL",
|
||||
@ -801,6 +830,8 @@
|
||||
"New Role": "New Role",
|
||||
"Sub domains": "Sub domains",
|
||||
"Sub domains - Tooltip": "Domains included in the current role",
|
||||
"Sub groups": "Sub groups",
|
||||
"Sub groups - Tooltip": "Sub groups - Tooltip",
|
||||
"Sub roles": "Sub roles",
|
||||
"Sub roles - Tooltip": "Roles included in the current role",
|
||||
"Sub users": "Sub users",
|
||||
@ -812,6 +843,9 @@
|
||||
"Confirm": "Confirm",
|
||||
"Decline": "Decline",
|
||||
"Have account?": "Have account?",
|
||||
"Label": "Label",
|
||||
"Label HTML": "Label HTML",
|
||||
"Placeholder": "Placeholder",
|
||||
"Please accept the agreement!": "Please accept the agreement!",
|
||||
"Please click the below button to sign in": "Please click the below button to sign in",
|
||||
"Please confirm your password!": "Please confirm your password!",
|
||||
@ -830,6 +864,11 @@
|
||||
"Please select your country/region!": "Please select your country/region!",
|
||||
"Terms of Use": "Terms of Use",
|
||||
"Terms of Use - Tooltip": "Terms of use that users need to read and agree to during registration",
|
||||
"Text 1": "Text 1",
|
||||
"Text 2": "Text 2",
|
||||
"Text 3": "Text 3",
|
||||
"Text 4": "Text 4",
|
||||
"Text 5": "Text 5",
|
||||
"The input is not invoice Tax ID!": "The input is not invoice Tax ID!",
|
||||
"The input is not invoice title!": "The input is not invoice title!",
|
||||
"The input is not valid Email!": "The input is not valid Email!",
|
||||
@ -841,14 +880,19 @@
|
||||
"sign in now": "sign in now"
|
||||
},
|
||||
"subscription": {
|
||||
"Duration": "Duration",
|
||||
"Duration - Tooltip": "Subscription duration",
|
||||
"Active": "Active",
|
||||
"Edit Subscription": "Edit Subscription",
|
||||
"End date": "End date",
|
||||
"End date - Tooltip": "End date",
|
||||
"End time": "End time",
|
||||
"End time - Tooltip": "End time - Tooltip",
|
||||
"Error": "Error",
|
||||
"Expired": "Expired",
|
||||
"New Subscription": "New Subscription",
|
||||
"Start date": "Start date",
|
||||
"Start date - Tooltip": "Start date"
|
||||
"Pending": "Pending",
|
||||
"Period": "Period",
|
||||
"Start time": "Start time",
|
||||
"Start time - Tooltip": "Start time - Tooltip",
|
||||
"Suspended": "Suspended",
|
||||
"Upcoming": "Upcoming"
|
||||
},
|
||||
"syncer": {
|
||||
"Affiliation table": "Affiliation table",
|
||||
@ -872,6 +916,8 @@
|
||||
"Is read-only": "Is read-only",
|
||||
"Is read-only - Tooltip": "Is read-only - Tooltip",
|
||||
"New Syncer": "New Syncer",
|
||||
"SSL mode": "SSL mode",
|
||||
"SSL mode - Tooltip": "SSL mode - Tooltip",
|
||||
"Sync interval": "Sync interval",
|
||||
"Sync interval - Tooltip": "Unit in seconds",
|
||||
"Table": "Table",
|
||||
@ -913,11 +959,19 @@
|
||||
},
|
||||
"token": {
|
||||
"Access token": "Access token",
|
||||
"Access token - Tooltip": "Access token - Tooltip",
|
||||
"Authorization code": "Authorization code",
|
||||
"Authorization code - Tooltip": "Authorization code - Tooltip",
|
||||
"Copy access token": "Copy access token",
|
||||
"Copy parsed result": "Copy parsed result",
|
||||
"Edit Token": "Edit Token",
|
||||
"Expires in": "Expires in",
|
||||
"Expires in - Tooltip": "Expires in - Tooltip",
|
||||
"New Token": "New Token",
|
||||
"Token type": "Token type"
|
||||
"Parsed result": "Parsed result",
|
||||
"Parsed result - Tooltip": "Parsed result - Tooltip",
|
||||
"Token type": "Token type",
|
||||
"Token type - Tooltip": "Token type - Tooltip"
|
||||
},
|
||||
"user": {
|
||||
"3rd-party logins": "3rd-party logins",
|
||||
@ -974,6 +1028,8 @@
|
||||
"Managed accounts": "Managed accounts",
|
||||
"Modify password...": "Modify password...",
|
||||
"Multi-factor authentication": "Multi-factor authentication",
|
||||
"Name": "Name",
|
||||
"Name format": "Name format",
|
||||
"New Email": "New Email",
|
||||
"New Password": "New Password",
|
||||
"New User": "New User",
|
||||
@ -1011,6 +1067,7 @@
|
||||
"Upload ID card front picture": "Upload ID card front picture",
|
||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||
"Upload a photo": "Upload a photo",
|
||||
"Value": "Value",
|
||||
"Values": "Values",
|
||||
"Verification code sent": "Verification code sent",
|
||||
"WebAuthn credentials": "WebAuthn credentials",
|
||||
|
@ -12,7 +12,9 @@
|
||||
"Policies": "Policies",
|
||||
"Policies - Tooltip": "Casbin policy rules",
|
||||
"Rule type": "Rule type",
|
||||
"Sync policies successfully": "Sync policies successfully"
|
||||
"Sync policies successfully": "Sync policies successfully",
|
||||
"Use same DB": "Use same DB",
|
||||
"Use same DB - Tooltip": "Use same DB - Tooltip"
|
||||
},
|
||||
"application": {
|
||||
"Always": "Always",
|
||||
@ -30,6 +32,8 @@
|
||||
"Edit Application": "Edit Application",
|
||||
"Enable Email linking": "Enable Email linking",
|
||||
"Enable Email linking - Tooltip": "When using 3rd-party providers to log in, if there is a user in the organization with the same Email, the 3rd-party login method will be automatically associated with that user",
|
||||
"Enable SAML C14N10": "Enable SAML C14N10",
|
||||
"Enable SAML C14N10 - Tooltip": "Enable SAML C14N10 - Tooltip",
|
||||
"Enable SAML compression": "Enable SAML compression",
|
||||
"Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp",
|
||||
"Enable WebAuthn signin": "Enable WebAuthn signin",
|
||||
@ -42,6 +46,10 @@
|
||||
"Enable signin session - Tooltip": "Whether Casdoor maintains a session after logging into Casdoor from the application",
|
||||
"Enable signup": "Enable signup",
|
||||
"Enable signup - Tooltip": "Whether to allow users to register a new account",
|
||||
"Failed signin frozen time": "Failed signin frozen time",
|
||||
"Failed signin frozen time - Tooltip": "Failed signin frozen time - Tooltip",
|
||||
"Failed signin limit": "Failed signin limit",
|
||||
"Failed signin limit - Tooltip": "Failed signin limit - Tooltip",
|
||||
"Failed to sign in": "Failed to sign in",
|
||||
"File uploaded successfully": "File uploaded successfully",
|
||||
"First, last": "First, last",
|
||||
@ -60,7 +68,6 @@
|
||||
"Input": "Input",
|
||||
"Invitation code": "Invitation code",
|
||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||
"Left": "Left",
|
||||
"Logged in successfully": "Logged in successfully",
|
||||
"Logged out successfully": "Logged out successfully",
|
||||
@ -73,7 +80,6 @@
|
||||
"Please input your application!": "Please input your application!",
|
||||
"Please input your organization!": "Please input your organization!",
|
||||
"Please select a HTML file": "Please select a HTML file",
|
||||
"Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Random": "Random",
|
||||
"Real name": "Real name",
|
||||
"Redirect URL": "Redirect URL",
|
||||
@ -86,7 +92,6 @@
|
||||
"Rule": "Rule",
|
||||
"SAML metadata": "SAML metadata",
|
||||
"SAML metadata - Tooltip": "The metadata of SAML protocol",
|
||||
"SAML metadata URL copied to clipboard successfully": "SAML metadata URL copied to clipboard successfully",
|
||||
"SAML reply URL": "SAML reply URL",
|
||||
"Select": "Select",
|
||||
"Side panel HTML": "Side panel HTML",
|
||||
@ -95,11 +100,9 @@
|
||||
"Sign Up Error": "Sign Up Error",
|
||||
"Signin": "Signin",
|
||||
"Signin (Default True)": "Signin (Default True)",
|
||||
"Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Signin session": "Signin session",
|
||||
"Signup items": "Signup items",
|
||||
"Signup items - Tooltip": "Items for users to fill in when registering new accounts",
|
||||
"Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
|
||||
"Tags - Tooltip": "Only users with the tag that is listed in the application tags can login",
|
||||
"The application does not allow to sign up new account": "The application does not allow to sign up new account",
|
||||
"Token expire": "Token expire",
|
||||
@ -113,7 +116,6 @@
|
||||
"Bit size - Tooltip": "Secret key length",
|
||||
"Certificate": "Certificate",
|
||||
"Certificate - Tooltip": "Public key certificate, used for decrypting the JWT signature of the Access Token. This certificate usually needs to be deployed on the Casdoor SDK side (i.e., the application) to parse the JWT",
|
||||
"Certificate copied to clipboard successfully": "Certificate copied to clipboard successfully",
|
||||
"Copy certificate": "Copy certificate",
|
||||
"Copy private key": "Copy private key",
|
||||
"Crypto algorithm": "Crypto algorithm",
|
||||
@ -126,7 +128,6 @@
|
||||
"New Cert": "New Cert",
|
||||
"Private key": "Private key",
|
||||
"Private key - Tooltip": "Private key corresponding to the public key certificate",
|
||||
"Private key copied to clipboard successfully": "Private key copied to clipboard successfully",
|
||||
"Scope - Tooltip": "Usage scenarios of the certificate",
|
||||
"Type - Tooltip": "Type of certificate"
|
||||
},
|
||||
@ -191,6 +192,7 @@
|
||||
"Click to Upload": "Click to Upload",
|
||||
"Close": "Close",
|
||||
"Confirm": "Confirm",
|
||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||
"Copy": "Copy",
|
||||
"Created time": "Created time",
|
||||
"Custom": "Custom",
|
||||
@ -200,6 +202,8 @@
|
||||
"Default application - Tooltip": "Default application for users registered directly from the organization page",
|
||||
"Default avatar": "Default avatar",
|
||||
"Default avatar - Tooltip": "Default avatar used when newly registered users do not set an avatar image",
|
||||
"Default password": "Default password",
|
||||
"Default password - Tooltip": "Default password - Tooltip",
|
||||
"Delete": "Delete",
|
||||
"Description": "Description",
|
||||
"Description - Tooltip": "Detailed description information for reference, Casdoor itself will not use it",
|
||||
@ -218,8 +222,10 @@
|
||||
"Failed to connect to server": "Failed to connect to server",
|
||||
"Failed to delete": "Failed to delete",
|
||||
"Failed to enable": "Failed to enable",
|
||||
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
|
||||
"Failed to remove": "Failed to remove",
|
||||
"Failed to save": "Failed to save",
|
||||
"Failed to sync": "Failed to sync",
|
||||
"Failed to verify": "Failed to verify",
|
||||
"Favicon": "Favicon",
|
||||
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
|
||||
@ -251,6 +257,8 @@
|
||||
"MFA items - Tooltip": "MFA items - Tooltip",
|
||||
"Master password": "Master password",
|
||||
"Master password - Tooltip": "Can be used to log in to all users under this organization, making it convenient for administrators to log in as this user to solve technical issues",
|
||||
"Master verification code": "Master verification code",
|
||||
"Master verification code - Tooltip": "Master verification code - Tooltip",
|
||||
"Menu": "Menu",
|
||||
"Method": "Method",
|
||||
"Model": "Model",
|
||||
@ -272,6 +280,8 @@
|
||||
"Password salt - Tooltip": "Random parameter used for password encryption",
|
||||
"Password type": "Password type",
|
||||
"Password type - Tooltip": "Storage format of passwords in the database",
|
||||
"Payment": "Payment",
|
||||
"Payment - Tooltip": "Payment - Tooltip",
|
||||
"Payments": "Payments",
|
||||
"Permissions": "Permissions",
|
||||
"Permissions - Tooltip": "Permissions owned by this user",
|
||||
@ -283,6 +293,8 @@
|
||||
"Plans - Tooltip": "Plans - Tooltip",
|
||||
"Preview": "Preview",
|
||||
"Preview - Tooltip": "Preview the configured effects",
|
||||
"Pricing": "Pricing",
|
||||
"Pricing - Tooltip": "Pricing - Tooltip",
|
||||
"Pricings": "Pricings",
|
||||
"Products": "Products",
|
||||
"Provider": "Provider",
|
||||
@ -296,6 +308,10 @@
|
||||
"Role - Tooltip": "Role - Tooltip",
|
||||
"Roles": "Roles",
|
||||
"Roles - Tooltip": "Roles that the user belongs to",
|
||||
"Root cert": "Root cert",
|
||||
"Root cert - Tooltip": "Root cert - Tooltip",
|
||||
"SAML attributes": "SAML attributes",
|
||||
"SAML attributes - Tooltip": "SAML attributes - Tooltip",
|
||||
"Save": "Save",
|
||||
"Save & Exit": "Save & Exit",
|
||||
"Session ID": "Session ID",
|
||||
@ -318,6 +334,7 @@
|
||||
"Successfully removed": "Successfully removed",
|
||||
"Successfully saved": "Successfully saved",
|
||||
"Successfully sent": "Successfully sent",
|
||||
"Successfully synced": "Successfully synced",
|
||||
"Supported country codes": "Supported country codes",
|
||||
"Supported country codes - Tooltip": "Country codes supported by the organization. These codes can be selected as a prefix when sending SMS verification codes",
|
||||
"Sure to delete": "Sure to delete",
|
||||
@ -440,7 +457,6 @@
|
||||
"Multi-factor methods": "Multi-factor methods",
|
||||
"Multi-factor recover": "Multi-factor recover",
|
||||
"Multi-factor recover description": "Multi-factor recover description",
|
||||
"Multi-factor secret to clipboard successfully": "Multi-factor secret to clipboard successfully",
|
||||
"Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
|
||||
"Passcode": "Passcode",
|
||||
"Please bind your email first, the system will automatically uses the mail for multi-factor authentication": "Please bind your email first, the system will automatically uses the mail for multi-factor authentication",
|
||||
@ -573,11 +589,13 @@
|
||||
"plan": {
|
||||
"Edit Plan": "Edit Plan",
|
||||
"New Plan": "New Plan",
|
||||
"Price per month": "Price per month",
|
||||
"Price per month - Tooltip": "Price per month - Tooltip",
|
||||
"Price per year": "Price per year",
|
||||
"Price per year - Tooltip": "Price per year - Tooltip",
|
||||
"per month": "per month"
|
||||
"Period": "Period",
|
||||
"Period - Tooltip": "Period - Tooltip",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price - Tooltip",
|
||||
"Related product": "Related product",
|
||||
"per month": "per month",
|
||||
"per year": "per year"
|
||||
},
|
||||
"pricing": {
|
||||
"Copy pricing page URL": "Copy pricing page URL",
|
||||
@ -589,7 +607,7 @@
|
||||
"Trial duration": "Trial duration",
|
||||
"Trial duration - Tooltip": "Trial duration period",
|
||||
"days trial available!": "days trial available!",
|
||||
"pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser"
|
||||
"paid-user do not have active subscription or pending subscription, please select a plan to buy": "paid-user do not have active subscription or pending subscription, please select a plan to buy"
|
||||
},
|
||||
"product": {
|
||||
"Alipay": "Alipay",
|
||||
@ -600,17 +618,16 @@
|
||||
"Detail - Tooltip": "Detail of product",
|
||||
"Dummy": "Dummy",
|
||||
"Edit Product": "Edit Product",
|
||||
"I have completed the payment": "I have completed the payment",
|
||||
"Image": "Image",
|
||||
"Image - Tooltip": "Image of product",
|
||||
"New Product": "New Product",
|
||||
"Pay": "Pay",
|
||||
"PayPal": "PayPal",
|
||||
"Payment cancelled": "Payment cancelled",
|
||||
"Payment failed": "Payment failed",
|
||||
"Payment providers": "Payment providers",
|
||||
"Payment providers - Tooltip": "Providers of payment services",
|
||||
"Placing order...": "Placing order...",
|
||||
"Please provide your username in the remark": "Please provide your username in the remark",
|
||||
"Please scan the QR code to pay": "Please scan the QR code to pay",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price of product",
|
||||
"Quantity": "Quantity",
|
||||
@ -672,8 +689,8 @@
|
||||
"Content": "Content",
|
||||
"Content - Tooltip": "Content - Tooltip",
|
||||
"Copy": "Copy",
|
||||
"DB Test": "DB Test",
|
||||
"DB Test - Tooltip": "DB Test - Tooltip",
|
||||
"DB test": "DB test",
|
||||
"DB test - Tooltip": "DB test - Tooltip",
|
||||
"Disable SSL": "Disable SSL",
|
||||
"Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server",
|
||||
"Domain": "Domain",
|
||||
@ -700,7 +717,10 @@
|
||||
"Internal": "Internal",
|
||||
"Issuer URL": "Issuer URL",
|
||||
"Issuer URL - Tooltip": "Issuer URL",
|
||||
"Link copied to clipboard successfully": "Link copied to clipboard successfully",
|
||||
"Key ID": "Key ID",
|
||||
"Key ID - Tooltip": "Key ID - Tooltip",
|
||||
"Key text": "Key text",
|
||||
"Key text - Tooltip": "Key text - Tooltip",
|
||||
"Metadata": "Metadata",
|
||||
"Metadata - Tooltip": "SAML metadata",
|
||||
"Method - Tooltip": "Login method, QR code or silent login",
|
||||
@ -754,6 +774,10 @@
|
||||
"Sender Id - Tooltip": "Sender Id - Tooltip",
|
||||
"Sender number": "Sender number",
|
||||
"Sender number - Tooltip": "Sender number - Tooltip",
|
||||
"Service ID identifier": "Service ID identifier",
|
||||
"Service ID identifier - Tooltip": "Service ID identifier - Tooltip",
|
||||
"Service account JSON": "Service account JSON",
|
||||
"Service account JSON - Tooltip": "Service account JSON - Tooltip",
|
||||
"Sign Name": "Sign Name",
|
||||
"Sign Name - Tooltip": "Name of the signature to be used",
|
||||
"Sign request": "Sign request",
|
||||
@ -764,12 +788,15 @@
|
||||
"Signup HTML": "Signup HTML",
|
||||
"Signup HTML - Edit": "Signup HTML - Edit",
|
||||
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
|
||||
"Signup group": "Signup group",
|
||||
"Silent": "Silent",
|
||||
"Site key": "Site key",
|
||||
"Site key - Tooltip": "Site key",
|
||||
"Sliding Validation": "Sliding Validation",
|
||||
"Sub type": "Sub type",
|
||||
"Sub type - Tooltip": "Sub type",
|
||||
"Team ID": "Team ID",
|
||||
"Team ID - Tooltip": "Team ID - Tooltip",
|
||||
"Template code": "Template code",
|
||||
"Template code - Tooltip": "Template code",
|
||||
"Test Email": "Test Email",
|
||||
@ -780,6 +807,8 @@
|
||||
"Token URL - Tooltip": "Token URL",
|
||||
"Type": "Type",
|
||||
"Type - Tooltip": "Select a type",
|
||||
"User flow": "User flow",
|
||||
"User flow - Tooltip": "User flow - Tooltip",
|
||||
"User mapping": "User mapping",
|
||||
"User mapping - Tooltip": "User mapping - Tooltip",
|
||||
"UserInfo URL": "UserInfo URL",
|
||||
@ -801,6 +830,8 @@
|
||||
"New Role": "New Role",
|
||||
"Sub domains": "Sub domains",
|
||||
"Sub domains - Tooltip": "Domains included in the current role",
|
||||
"Sub groups": "Sub groups",
|
||||
"Sub groups - Tooltip": "Sub groups - Tooltip",
|
||||
"Sub roles": "Sub roles",
|
||||
"Sub roles - Tooltip": "Roles included in the current role",
|
||||
"Sub users": "Sub users",
|
||||
@ -812,6 +843,9 @@
|
||||
"Confirm": "Confirm",
|
||||
"Decline": "Decline",
|
||||
"Have account?": "Have account?",
|
||||
"Label": "Label",
|
||||
"Label HTML": "Label HTML",
|
||||
"Placeholder": "Placeholder",
|
||||
"Please accept the agreement!": "Please accept the agreement!",
|
||||
"Please click the below button to sign in": "Please click the below button to sign in",
|
||||
"Please confirm your password!": "Please confirm your password!",
|
||||
@ -830,6 +864,11 @@
|
||||
"Please select your country/region!": "Please select your country/region!",
|
||||
"Terms of Use": "Terms of Use",
|
||||
"Terms of Use - Tooltip": "Terms of use that users need to read and agree to during registration",
|
||||
"Text 1": "Text 1",
|
||||
"Text 2": "Text 2",
|
||||
"Text 3": "Text 3",
|
||||
"Text 4": "Text 4",
|
||||
"Text 5": "Text 5",
|
||||
"The input is not invoice Tax ID!": "The input is not invoice Tax ID!",
|
||||
"The input is not invoice title!": "The input is not invoice title!",
|
||||
"The input is not valid Email!": "The input is not valid Email!",
|
||||
@ -841,14 +880,19 @@
|
||||
"sign in now": "sign in now"
|
||||
},
|
||||
"subscription": {
|
||||
"Duration": "Duration",
|
||||
"Duration - Tooltip": "Subscription duration",
|
||||
"Active": "Active",
|
||||
"Edit Subscription": "Edit Subscription",
|
||||
"End date": "End date",
|
||||
"End date - Tooltip": "End date",
|
||||
"End time": "End time",
|
||||
"End time - Tooltip": "End time - Tooltip",
|
||||
"Error": "Error",
|
||||
"Expired": "Expired",
|
||||
"New Subscription": "New Subscription",
|
||||
"Start date": "Start date",
|
||||
"Start date - Tooltip": "Start date"
|
||||
"Pending": "Pending",
|
||||
"Period": "Period",
|
||||
"Start time": "Start time",
|
||||
"Start time - Tooltip": "Start time - Tooltip",
|
||||
"Suspended": "Suspended",
|
||||
"Upcoming": "Upcoming"
|
||||
},
|
||||
"syncer": {
|
||||
"Affiliation table": "Affiliation table",
|
||||
@ -872,6 +916,8 @@
|
||||
"Is read-only": "Is read-only",
|
||||
"Is read-only - Tooltip": "Is read-only - Tooltip",
|
||||
"New Syncer": "New Syncer",
|
||||
"SSL mode": "SSL mode",
|
||||
"SSL mode - Tooltip": "SSL mode - Tooltip",
|
||||
"Sync interval": "Sync interval",
|
||||
"Sync interval - Tooltip": "Unit in seconds",
|
||||
"Table": "Table",
|
||||
@ -913,11 +959,19 @@
|
||||
},
|
||||
"token": {
|
||||
"Access token": "Access token",
|
||||
"Access token - Tooltip": "Access token - Tooltip",
|
||||
"Authorization code": "Authorization code",
|
||||
"Authorization code - Tooltip": "Authorization code - Tooltip",
|
||||
"Copy access token": "Copy access token",
|
||||
"Copy parsed result": "Copy parsed result",
|
||||
"Edit Token": "Edit Token",
|
||||
"Expires in": "Expires in",
|
||||
"Expires in - Tooltip": "Expires in - Tooltip",
|
||||
"New Token": "New Token",
|
||||
"Token type": "Token type"
|
||||
"Parsed result": "Parsed result",
|
||||
"Parsed result - Tooltip": "Parsed result - Tooltip",
|
||||
"Token type": "Token type",
|
||||
"Token type - Tooltip": "Token type - Tooltip"
|
||||
},
|
||||
"user": {
|
||||
"3rd-party logins": "3rd-party logins",
|
||||
@ -974,6 +1028,8 @@
|
||||
"Managed accounts": "Managed accounts",
|
||||
"Modify password...": "Modify password...",
|
||||
"Multi-factor authentication": "Multi-factor authentication",
|
||||
"Name": "Name",
|
||||
"Name format": "Name format",
|
||||
"New Email": "New Email",
|
||||
"New Password": "New Password",
|
||||
"New User": "New User",
|
||||
@ -1011,6 +1067,7 @@
|
||||
"Upload ID card front picture": "Upload ID card front picture",
|
||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||
"Upload a photo": "Upload a photo",
|
||||
"Value": "Value",
|
||||
"Values": "Values",
|
||||
"Verification code sent": "Verification code sent",
|
||||
"WebAuthn credentials": "WebAuthn credentials",
|
||||
|
@ -12,7 +12,9 @@
|
||||
"Policies": "Chính sách",
|
||||
"Policies - Tooltip": "Quy tắc chính sách Casbin",
|
||||
"Rule type": "Rule type",
|
||||
"Sync policies successfully": "Đồng bộ chính sách thành công"
|
||||
"Sync policies successfully": "Đồng bộ chính sách thành công",
|
||||
"Use same DB": "Use same DB",
|
||||
"Use same DB - Tooltip": "Use same DB - Tooltip"
|
||||
},
|
||||
"application": {
|
||||
"Always": "luôn luôn",
|
||||
@ -30,6 +32,8 @@
|
||||
"Edit Application": "Sửa ứng dụng",
|
||||
"Enable Email linking": "Cho phép liên kết Email",
|
||||
"Enable Email linking - Tooltip": "Khi sử dụng nhà cung cấp bên thứ ba để đăng nhập, nếu có người dùng trong tổ chức có cùng địa chỉ Email, phương pháp đăng nhập bên thứ ba sẽ tự động được liên kết với người dùng đó",
|
||||
"Enable SAML C14N10": "Enable SAML C14N10",
|
||||
"Enable SAML C14N10 - Tooltip": "Enable SAML C14N10 - Tooltip",
|
||||
"Enable SAML compression": "Cho phép nén SAML",
|
||||
"Enable SAML compression - Tooltip": "Liệu có nén các thông điệp phản hồi SAML khi Casdoor được sử dụng làm SAML idp không?",
|
||||
"Enable WebAuthn signin": "Kích hoạt đăng nhập bằng WebAuthn",
|
||||
@ -42,6 +46,10 @@
|
||||
"Enable signin session - Tooltip": "Có phải Casdoor duy trì phiên sau khi đăng nhập vào Casdoor từ ứng dụng không?",
|
||||
"Enable signup": "Kích hoạt đăng ký",
|
||||
"Enable signup - Tooltip": "Có cho phép người dùng đăng ký tài khoản mới không?",
|
||||
"Failed signin frozen time": "Failed signin frozen time",
|
||||
"Failed signin frozen time - Tooltip": "Failed signin frozen time - Tooltip",
|
||||
"Failed signin limit": "Failed signin limit",
|
||||
"Failed signin limit - Tooltip": "Failed signin limit - Tooltip",
|
||||
"Failed to sign in": "Không đăng nhập được",
|
||||
"File uploaded successfully": "Tệp được tải lên thành công",
|
||||
"First, last": "Tên, Họ",
|
||||
@ -60,7 +68,6 @@
|
||||
"Input": "Input",
|
||||
"Invitation code": "Invitation code",
|
||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||
"Left": "Trái",
|
||||
"Logged in successfully": "Đăng nhập thành công",
|
||||
"Logged out successfully": "Đã đăng xuất thành công",
|
||||
@ -73,7 +80,6 @@
|
||||
"Please input your application!": "Vui lòng nhập ứng dụng của bạn!",
|
||||
"Please input your organization!": "Vui lòng nhập tổ chức của bạn!",
|
||||
"Please select a HTML file": "Vui lòng chọn tệp HTML",
|
||||
"Prompt page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Đã sao chép đường dẫn thành công, hãy dán nó vào cửa sổ ẩn danh hoặc trình duyệt khác",
|
||||
"Random": "Ngẫu nhiên",
|
||||
"Real name": "Tên thật",
|
||||
"Redirect URL": "Chuyển hướng URL",
|
||||
@ -86,7 +92,6 @@
|
||||
"Rule": "Quy tắc",
|
||||
"SAML metadata": "SAML metadata: Siêu dữ liệu SAML",
|
||||
"SAML metadata - Tooltip": "Các siêu dữ liệu của giao thức SAML",
|
||||
"SAML metadata URL copied to clipboard successfully": "URL metadata SAML đã được sao chép vào bộ nhớ tạm thành công",
|
||||
"SAML reply URL": "URL phản hồi SAML",
|
||||
"Select": "Select",
|
||||
"Side panel HTML": "Bảng điều khiển HTML bên lề",
|
||||
@ -95,11 +100,9 @@
|
||||
"Sign Up Error": "Lỗi đăng ký",
|
||||
"Signin": "Đăng nhập",
|
||||
"Signin (Default True)": "Đăng nhập (Mặc định đúng)",
|
||||
"Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Đã sao chép thành công địa chỉ URL trang Đăng nhập vào clipboard, vui lòng dán nó vào cửa sổ ẩn danh hoặc trình duyệt khác",
|
||||
"Signin session": "Phiên đăng nhập",
|
||||
"Signup items": "Các mục đăng ký",
|
||||
"Signup items - Tooltip": "Các thông tin cần được người dùng điền khi đăng ký tài khoản mới",
|
||||
"Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Đã sao chép thành công đường dẫn trang đăng ký vào clipboard, vui lòng dán nó vào cửa sổ ẩn danh hoặc trình duyệt khác",
|
||||
"Tags - Tooltip": "Only users with the tag that is listed in the application tags can login",
|
||||
"The application does not allow to sign up new account": "Ứng dụng không cho phép đăng ký tài khoản mới",
|
||||
"Token expire": "Mã thông báo hết hạn",
|
||||
@ -113,7 +116,6 @@
|
||||
"Bit size - Tooltip": "Độ dài khóa bí mật",
|
||||
"Certificate": "Giấy chứng nhận",
|
||||
"Certificate - Tooltip": "Chứng chỉ khóa công khai, được sử dụng để giải mã chữ ký JWT của Mã Token Truy cập. Chứng chỉ này thường cần được triển khai trên phía SDK Casdoor (tức là ứng dụng) để phân tích cú pháp JWT",
|
||||
"Certificate copied to clipboard successfully": "Chứng chỉ đã được sao chép vào bộ nhớ tạm thành công",
|
||||
"Copy certificate": "Bản sao chứng chỉ",
|
||||
"Copy private key": "Sao chép khóa riêng tư",
|
||||
"Crypto algorithm": "Thuật toán mã hóa",
|
||||
@ -126,7 +128,6 @@
|
||||
"New Cert": "Chứng chỉ mới",
|
||||
"Private key": "Khóa bí mật",
|
||||
"Private key - Tooltip": "Khóa riêng tương ứng với chứng thư khóa công khai",
|
||||
"Private key copied to clipboard successfully": "Khóa riêng tư đã được sao chép thành công vào clipboard",
|
||||
"Scope - Tooltip": "Các kịch bản sử dụng của giấy chứng nhận",
|
||||
"Type - Tooltip": "Loại chứng chỉ"
|
||||
},
|
||||
@ -191,6 +192,7 @@
|
||||
"Click to Upload": "Nhấp để tải lên",
|
||||
"Close": "Đóng lại",
|
||||
"Confirm": "Confirm",
|
||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||
"Copy": "Copy",
|
||||
"Created time": "Thời gian tạo",
|
||||
"Custom": "Custom",
|
||||
@ -200,6 +202,8 @@
|
||||
"Default application - Tooltip": "Ứng dụng mặc định cho người dùng đăng ký trực tiếp từ trang tổ chức",
|
||||
"Default avatar": "Hình đại diện mặc định",
|
||||
"Default avatar - Tooltip": "Hình đại diện mặc định được sử dụng khi người dùng mới đăng ký không đặt hình đại diện",
|
||||
"Default password": "Default password",
|
||||
"Default password - Tooltip": "Default password - Tooltip",
|
||||
"Delete": "Xóa",
|
||||
"Description": "Mô tả",
|
||||
"Description - Tooltip": "Thông tin chi tiết mô tả cho tham khảo, Casdoor chính nó sẽ không sử dụng nó",
|
||||
@ -218,8 +222,10 @@
|
||||
"Failed to connect to server": "Không thể kết nối đến máy chủ",
|
||||
"Failed to delete": "Không thể xoá",
|
||||
"Failed to enable": "Failed to enable",
|
||||
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
|
||||
"Failed to remove": "Failed to remove",
|
||||
"Failed to save": "Không thể lưu lại",
|
||||
"Failed to sync": "Failed to sync",
|
||||
"Failed to verify": "Failed to verify",
|
||||
"Favicon": "Favicon",
|
||||
"Favicon - Tooltip": "URL biểu tượng Favicon được sử dụng trong tất cả các trang của tổ chức Casdoor",
|
||||
@ -251,6 +257,8 @@
|
||||
"MFA items - Tooltip": "MFA items - Tooltip",
|
||||
"Master password": "Mật khẩu chính",
|
||||
"Master password - Tooltip": "Có thể được sử dụng để đăng nhập vào tất cả các người dùng trong tổ chức này, giúp cho quản trị viên dễ dàng đăng nhập với tư cách người dùng này để giải quyết các vấn đề kỹ thuật",
|
||||
"Master verification code": "Master verification code",
|
||||
"Master verification code - Tooltip": "Master verification code - Tooltip",
|
||||
"Menu": "Trình đơn",
|
||||
"Method": "Phương pháp",
|
||||
"Model": "Mô hình",
|
||||
@ -272,6 +280,8 @@
|
||||
"Password salt - Tooltip": "Tham số ngẫu nhiên được sử dụng để mã hóa mật khẩu",
|
||||
"Password type": "Loại mật khẩu",
|
||||
"Password type - Tooltip": "Định dạng lưu trữ mật khẩu trong cơ sở dữ liệu",
|
||||
"Payment": "Payment",
|
||||
"Payment - Tooltip": "Payment - Tooltip",
|
||||
"Payments": "Thanh toán",
|
||||
"Permissions": "Quyền hạn",
|
||||
"Permissions - Tooltip": "Quyền sở hữu của người dùng này",
|
||||
@ -283,6 +293,8 @@
|
||||
"Plans - Tooltip": "Plans - Tooltip",
|
||||
"Preview": "Xem trước",
|
||||
"Preview - Tooltip": "Xem trước các hiệu ứng đã cấu hình",
|
||||
"Pricing": "Pricing",
|
||||
"Pricing - Tooltip": "Pricing - Tooltip",
|
||||
"Pricings": "Bảng giá",
|
||||
"Products": "Sản phẩm",
|
||||
"Provider": "Nhà cung cấp",
|
||||
@ -296,6 +308,10 @@
|
||||
"Role - Tooltip": "Role - Tooltip",
|
||||
"Roles": "Vai trò",
|
||||
"Roles - Tooltip": "Các vai trò mà người dùng thuộc về",
|
||||
"Root cert": "Root cert",
|
||||
"Root cert - Tooltip": "Root cert - Tooltip",
|
||||
"SAML attributes": "SAML attributes",
|
||||
"SAML attributes - Tooltip": "SAML attributes - Tooltip",
|
||||
"Save": "Lưu",
|
||||
"Save & Exit": "Lưu và Thoát",
|
||||
"Session ID": "ID phiên làm việc",
|
||||
@ -318,6 +334,7 @@
|
||||
"Successfully removed": "Successfully removed",
|
||||
"Successfully saved": "Thành công đã được lưu lại",
|
||||
"Successfully sent": "Successfully sent",
|
||||
"Successfully synced": "Successfully synced",
|
||||
"Supported country codes": "Các mã quốc gia được hỗ trợ",
|
||||
"Supported country codes - Tooltip": "Mã quốc gia được hỗ trợ bởi tổ chức. Những mã này có thể được chọn làm tiền tố khi gửi mã xác nhận SMS",
|
||||
"Sure to delete": "Chắc chắn muốn xóa",
|
||||
@ -440,7 +457,6 @@
|
||||
"Multi-factor methods": "Multi-factor methods",
|
||||
"Multi-factor recover": "Multi-factor recover",
|
||||
"Multi-factor recover description": "Multi-factor recover description",
|
||||
"Multi-factor secret to clipboard successfully": "Multi-factor secret to clipboard successfully",
|
||||
"Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
|
||||
"Passcode": "Passcode",
|
||||
"Please bind your email first, the system will automatically uses the mail for multi-factor authentication": "Please bind your email first, the system will automatically uses the mail for multi-factor authentication",
|
||||
@ -573,11 +589,13 @@
|
||||
"plan": {
|
||||
"Edit Plan": "Edit Plan",
|
||||
"New Plan": "New Plan",
|
||||
"Price per month": "Price per month",
|
||||
"Price per month - Tooltip": "Price per month - Tooltip",
|
||||
"Price per year": "Price per year",
|
||||
"Price per year - Tooltip": "Price per year - Tooltip",
|
||||
"per month": "mỗi tháng"
|
||||
"Period": "Period",
|
||||
"Period - Tooltip": "Period - Tooltip",
|
||||
"Price": "Price",
|
||||
"Price - Tooltip": "Price - Tooltip",
|
||||
"Related product": "Related product",
|
||||
"per month": "mỗi tháng",
|
||||
"per year": "per year"
|
||||
},
|
||||
"pricing": {
|
||||
"Copy pricing page URL": "Sao chép URL trang bảng giá",
|
||||
@ -589,7 +607,7 @@
|
||||
"Trial duration": "Thời gian thử nghiệm",
|
||||
"Trial duration - Tooltip": "Thời gian thử nghiệm",
|
||||
"days trial available!": "ngày dùng thử có sẵn!",
|
||||
"pricing page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "URL trang bảng giá đã được sao chép vào clipboard thành công, vui lòng dán vào cửa sổ ẩn danh hoặc trình duyệt khác"
|
||||
"paid-user do not have active subscription or pending subscription, please select a plan to buy": "paid-user do not have active subscription or pending subscription, please select a plan to buy"
|
||||
},
|
||||
"product": {
|
||||
"Alipay": "Alipay",
|
||||
@ -600,17 +618,16 @@
|
||||
"Detail - Tooltip": "Chi tiết sản phẩm",
|
||||
"Dummy": "Dummy",
|
||||
"Edit Product": "Sửa sản phẩm",
|
||||
"I have completed the payment": "Tôi đã thanh toán hoàn tất",
|
||||
"Image": "Ảnh",
|
||||
"Image - Tooltip": "Hình ảnh sản phẩm",
|
||||
"New Product": "Sản phẩm mới",
|
||||
"Pay": "Trả tiền",
|
||||
"PayPal": "PayPal",
|
||||
"Payment cancelled": "Payment cancelled",
|
||||
"Payment failed": "Payment failed",
|
||||
"Payment providers": "Nhà cung cấp thanh toán",
|
||||
"Payment providers - Tooltip": "Nhà cung cấp dịch vụ thanh toán",
|
||||
"Placing order...": "Đặt hàng...",
|
||||
"Please provide your username in the remark": "Xin vui lòng cung cấp tên đăng nhập của bạn trong phần bình luận",
|
||||
"Please scan the QR code to pay": "Vui lòng quét mã QR để thanh toán",
|
||||
"Price": "Giá cả",
|
||||
"Price - Tooltip": "Giá sản phẩm",
|
||||
"Quantity": "Số lượng",
|
||||
@ -672,8 +689,8 @@
|
||||
"Content": "Content",
|
||||
"Content - Tooltip": "Content - Tooltip",
|
||||
"Copy": "Sao chép",
|
||||
"DB Test": "DB Test",
|
||||
"DB Test - Tooltip": "DB Test - Tooltip",
|
||||
"DB test": "DB test",
|
||||
"DB test - Tooltip": "DB test - Tooltip",
|
||||
"Disable SSL": "Vô hiệu hóa SSL",
|
||||
"Disable SSL - Tooltip": "Có nên vô hiệu hóa giao thức SSL khi giao tiếp với máy chủ STMP hay không?",
|
||||
"Domain": "Miền",
|
||||
@ -700,7 +717,10 @@
|
||||
"Internal": "Nội bộ",
|
||||
"Issuer URL": "Địa chỉ URL của người phát hành",
|
||||
"Issuer URL - Tooltip": "Địa chỉ URL của nhà phát hành",
|
||||
"Link copied to clipboard successfully": "Đã sao chép liên kết vào bộ nhớ tạm thành công",
|
||||
"Key ID": "Key ID",
|
||||
"Key ID - Tooltip": "Key ID - Tooltip",
|
||||
"Key text": "Key text",
|
||||
"Key text - Tooltip": "Key text - Tooltip",
|
||||
"Metadata": "Siêu dữ liệu",
|
||||
"Metadata - Tooltip": "SAML metadata: siêu dữ liệu SAML",
|
||||
"Method - Tooltip": "Phương thức đăng nhập, mã QR hoặc đăng nhập im lặng",
|
||||
@ -754,6 +774,10 @@
|
||||
"Sender Id - Tooltip": "Sender Id - Tooltip",
|
||||
"Sender number": "Sender number",
|
||||
"Sender number - Tooltip": "Sender number - Tooltip",
|
||||
"Service ID identifier": "Service ID identifier",
|
||||
"Service ID identifier - Tooltip": "Service ID identifier - Tooltip",
|
||||
"Service account JSON": "Service account JSON",
|
||||
"Service account JSON - Tooltip": "Service account JSON - Tooltip",
|
||||
"Sign Name": "Ký tên",
|
||||
"Sign Name - Tooltip": "Tên chữ ký sẽ được sử dụng",
|
||||
"Sign request": "Yêu cầu ký tên",
|
||||
@ -764,12 +788,15 @@
|
||||
"Signup HTML": "Đăng ký HTML",
|
||||
"Signup HTML - Edit": "Đăng ký HTML - Chỉnh sửa",
|
||||
"Signup HTML - Tooltip": "Trang HTML tùy chỉnh để thay thế phong cách trang đăng ký mặc định",
|
||||
"Signup group": "Signup group",
|
||||
"Silent": "Im lặng",
|
||||
"Site key": "Khóa trang web",
|
||||
"Site key - Tooltip": "Khóa trang web",
|
||||
"Sliding Validation": "Xác nhận trượt ngang",
|
||||
"Sub type": "Loại phụ",
|
||||
"Sub type - Tooltip": "Loại phụ",
|
||||
"Team ID": "Team ID",
|
||||
"Team ID - Tooltip": "Team ID - Tooltip",
|
||||
"Template code": "Mã mẫu của template",
|
||||
"Template code - Tooltip": "Mã mẫu của template",
|
||||
"Test Email": "Thư Email kiểm tra",
|
||||
@ -780,6 +807,8 @@
|
||||
"Token URL - Tooltip": "Địa chỉ của mã thông báo",
|
||||
"Type": "Kiểu",
|
||||
"Type - Tooltip": "Chọn loại",
|
||||
"User flow": "User flow",
|
||||
"User flow - Tooltip": "User flow - Tooltip",
|
||||
"User mapping": "User mapping",
|
||||
"User mapping - Tooltip": "User mapping - Tooltip",
|
||||
"UserInfo URL": "Đường dẫn UserInfo",
|
||||
@ -801,6 +830,8 @@
|
||||
"New Role": "Vai trò mới",
|
||||
"Sub domains": "Các phân miền con",
|
||||
"Sub domains - Tooltip": "Các lĩnh vực được bao gồm trong vai trò hiện tại",
|
||||
"Sub groups": "Sub groups",
|
||||
"Sub groups - Tooltip": "Sub groups - Tooltip",
|
||||
"Sub roles": "Các vai trò phụ",
|
||||
"Sub roles - Tooltip": "Các vai trò bao gồm trong vai trò hiện tại",
|
||||
"Sub users": "Người dùng trong phụ",
|
||||
@ -812,6 +843,9 @@
|
||||
"Confirm": "Xác nhận",
|
||||
"Decline": "Từ chối",
|
||||
"Have account?": "Có tài khoản không?",
|
||||
"Label": "Label",
|
||||
"Label HTML": "Label HTML",
|
||||
"Placeholder": "Placeholder",
|
||||
"Please accept the agreement!": "Vui lòng chấp nhận thỏa thuận!",
|
||||
"Please click the below button to sign in": "Xin vui lòng nhấn vào nút bên dưới để đăng nhập",
|
||||
"Please confirm your password!": "Vui lòng xác nhận mật khẩu của bạn!",
|
||||
@ -830,6 +864,11 @@
|
||||
"Please select your country/region!": "Vui lòng chọn quốc gia/vùng của bạn!",
|
||||
"Terms of Use": "Điều khoản sử dụng",
|
||||
"Terms of Use - Tooltip": "Điều khoản sử dụng mà người dùng cần đọc và đồng ý trong quá trình đăng ký",
|
||||
"Text 1": "Text 1",
|
||||
"Text 2": "Text 2",
|
||||
"Text 3": "Text 3",
|
||||
"Text 4": "Text 4",
|
||||
"Text 5": "Text 5",
|
||||
"The input is not invoice Tax ID!": "Đầu vào không phải là Mã số thuế của hóa đơn!",
|
||||
"The input is not invoice title!": "Đầu vào không phải là tiêu đề hóa đơn!",
|
||||
"The input is not valid Email!": "Đầu vào không phải là địa chỉ Email hợp lệ!",
|
||||
@ -841,14 +880,19 @@
|
||||
"sign in now": "Đăng nhập ngay bây giờ"
|
||||
},
|
||||
"subscription": {
|
||||
"Duration": "Thời lượng",
|
||||
"Duration - Tooltip": "Thời lượng đăng ký",
|
||||
"Active": "Active",
|
||||
"Edit Subscription": "Edit Subscription",
|
||||
"End date": "Ngày kết thúc",
|
||||
"End date - Tooltip": "Ngày kết thúc",
|
||||
"End time": "End time",
|
||||
"End time - Tooltip": "End time - Tooltip",
|
||||
"Error": "Error",
|
||||
"Expired": "Expired",
|
||||
"New Subscription": "New Subscription",
|
||||
"Start date": "Ngày bắt đầu",
|
||||
"Start date - Tooltip": "Ngày bắt đầu"
|
||||
"Pending": "Pending",
|
||||
"Period": "Period",
|
||||
"Start time": "Start time",
|
||||
"Start time - Tooltip": "Start time - Tooltip",
|
||||
"Suspended": "Suspended",
|
||||
"Upcoming": "Upcoming"
|
||||
},
|
||||
"syncer": {
|
||||
"Affiliation table": "Bảng liên kết",
|
||||
@ -872,6 +916,8 @@
|
||||
"Is read-only": "Is read-only",
|
||||
"Is read-only - Tooltip": "Is read-only - Tooltip",
|
||||
"New Syncer": "New Syncer: Đồng bộ mới",
|
||||
"SSL mode": "SSL mode",
|
||||
"SSL mode - Tooltip": "SSL mode - Tooltip",
|
||||
"Sync interval": "Khoảng thời gian đồng bộ hóa",
|
||||
"Sync interval - Tooltip": "Đơn vị giây",
|
||||
"Table": "Bàn",
|
||||
@ -913,11 +959,19 @@
|
||||
},
|
||||
"token": {
|
||||
"Access token": "Mã thông báo truy cập",
|
||||
"Access token - Tooltip": "Access token - Tooltip",
|
||||
"Authorization code": "Mã xác thực",
|
||||
"Authorization code - Tooltip": "Authorization code - Tooltip",
|
||||
"Copy access token": "Copy access token",
|
||||
"Copy parsed result": "Copy parsed result",
|
||||
"Edit Token": "Chỉnh sửa mã thông báo",
|
||||
"Expires in": "Hết hạn sau",
|
||||
"Expires in - Tooltip": "Expires in - Tooltip",
|
||||
"New Token": "Tạo mã thông báo",
|
||||
"Token type": "Loại mã thông báo"
|
||||
"Parsed result": "Parsed result",
|
||||
"Parsed result - Tooltip": "Parsed result - Tooltip",
|
||||
"Token type": "Loại mã thông báo",
|
||||
"Token type - Tooltip": "Token type - Tooltip"
|
||||
},
|
||||
"user": {
|
||||
"3rd-party logins": "Đăng nhập bên thứ ba",
|
||||
@ -974,6 +1028,8 @@
|
||||
"Managed accounts": "Quản lý tài khoản",
|
||||
"Modify password...": "Sửa đổi mật khẩu...",
|
||||
"Multi-factor authentication": "Multi-factor authentication",
|
||||
"Name": "Name",
|
||||
"Name format": "Name format",
|
||||
"New Email": "Email mới",
|
||||
"New Password": "Mật khẩu mới",
|
||||
"New User": "Người dùng mới",
|
||||
@ -1011,6 +1067,7 @@
|
||||
"Upload ID card front picture": "Upload ID card front picture",
|
||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||
"Upload a photo": "Tải lên một bức ảnh",
|
||||
"Value": "Value",
|
||||
"Values": "Giá trị",
|
||||
"Verification code sent": "Mã xác minh đã được gửi",
|
||||
"WebAuthn credentials": "Chứng chỉ WebAuthn",
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user