Compare commits

...

27 Commits

Author SHA1 Message Date
Yang Luo
9bef9691fb feat: fix volcengine SMS provider error handling 2023-12-22 20:49:45 +08:00
Yang Luo
141f22a707 feat: upgrade to Node.js 18 and Go 1.20 in Dockerfile 2023-12-22 14:46:41 +08:00
Yang Luo
02329d342a feat: fix bug in "*" users and roles in permission edit page. 2023-12-22 14:16:00 +08:00
Yang Luo
b9d3e2184c fix: update CI node version from 16 to 18 2023-12-22 09:28:45 +08:00
Yang Luo
28caf8550e Support token parsed result 2023-12-22 02:04:25 +08:00
Yang Luo
79159dc809 Improve TokenEditPage 2023-12-22 00:44:34 +08:00
Yang Luo
63081641d6 Improve i18n text 2023-12-22 00:25:46 +08:00
Yang Luo
698f24f762 feat: fix template code bug in SMS provider of Amazon SNS 2023-12-21 23:32:55 +08:00
HGZ-20
5499e62d7f feat: add the FailedSigninLimit and FailedSigninfrozenTime configuration options to the application (#2552)
Add configuration items to the application to limit the number of logins and the login wait time after the maximum number of errors is reached
feat: #2272

fix: fixed the issue where the token parameter could be set to a negative value
2023-12-20 22:29:53 +08:00
Yang Luo
f8905ae64c Fix S3-compliant storage providers support 2023-12-20 14:38:32 +08:00
Yang Luo
a42594859f feat: improve enforce() and batchEnforce() API response 2023-12-20 11:41:54 +08:00
Yang Luo
46e0bc1a39 Improve i18n texts 2023-12-20 10:09:00 +08:00
Gucheng Wang
ffe2330238 Fix tag field in user list page 2023-12-20 01:57:56 +08:00
Gucheng
ec53616dc8 Update README.md 2023-12-20 01:52:29 +08:00
Gucheng Wang
067276d739 Add new B2C provider 2023-12-17 16:29:29 +08:00
Yang Luo
468ceb6b71 Fix get-all-objects API 403 issue 2023-12-15 21:32:45 +08:00
Satinder Singh
b31a317585 feat: add helm release github action (#2546) 2023-12-15 19:30:10 +08:00
Yang Luo
396b6fb65f feat: refactor custom HTTP related filenames 2023-12-15 00:06:05 +08:00
Yang Luo
be637fca81 fix: fix wrong POST param logic in custom HTTP providers 2023-12-15 00:00:47 +08:00
link89
374928e719 feat: add custom HTTP Email provider (#2542)
* feat: implement Custom HTTP Email provider

* Update Setting.js

* Update ProviderEditPage.js

* Update http.go

* Update provider.go

---------

Co-authored-by: hsluoyz <hsluoyz@qq.com>
2023-12-14 22:35:25 +08:00
Yang Luo
5c103e8cd3 Improve error handling in GenerateIdForNewUser() 2023-12-14 10:12:00 +08:00
Lars Lehtonen
85b86e8831 fix: dropped object group errors (#2545) 2023-12-14 09:00:25 +08:00
Yang Luo
08864686f3 feat: fix Google cloud storage provider bug 2023-12-14 00:25:50 +08:00
HGZ-20
dc06eb9948 feat: fix secret information issue in the CAPTCHA provider code (#2531) 2023-12-11 18:01:56 +08:00
Yang Luo
b068202e74 Improve Radius username handling 2023-12-11 18:01:28 +08:00
Satinder Singh
cb16567c7b feat: helm support extra containers (#2530) 2023-12-10 14:41:56 +08:00
Yang Luo
4eb725d47a Improve image upload UI 2023-12-08 19:42:20 +08:00
107 changed files with 3073 additions and 940 deletions

View File

@@ -35,7 +35,7 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: actions/setup-node@v3 - uses: actions/setup-node@v3
with: with:
node-version: 16 node-version: 18
cache: 'yarn' cache: 'yarn'
cache-dependency-path: ./web/yarn.lock cache-dependency-path: ./web/yarn.lock
- run: yarn install && CI=false yarn run build - run: yarn install && CI=false yarn run build
@@ -101,7 +101,7 @@ jobs:
working-directory: ./ working-directory: ./
- uses: actions/setup-node@v3 - uses: actions/setup-node@v3
with: with:
node-version: 16 node-version: 18
cache: 'yarn' cache: 'yarn'
cache-dependency-path: ./web/yarn.lock cache-dependency-path: ./web/yarn.lock
- run: yarn install - run: yarn install
@@ -137,7 +137,7 @@ jobs:
- name: Setup Node.js - name: Setup Node.js
uses: actions/setup-node@v3 uses: actions/setup-node@v3
with: with:
node-version: 16 node-version: 18
- name: Fetch Previous version - name: Fetch Previous version
id: get-previous-tag id: get-previous-tag

40
.github/workflows/helm.yml vendored Normal file
View 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'

View File

@@ -1,10 +1,10 @@
FROM node:16.18.0 AS FRONT FROM node:18.19.0 AS FRONT
WORKDIR /web WORKDIR /web
COPY ./web . COPY ./web .
RUN yarn install --frozen-lockfile --network-timeout 1000000 && yarn run build 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 WORKDIR /go/src/casdoor
COPY . . COPY . .
RUN ./build.sh RUN ./build.sh

View File

@@ -42,6 +42,20 @@
</a> </a>
</p> </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 ## Online demo
- Read-only site: https://door.casdoor.com (any modification operation will fail) - Read-only site: https://door.casdoor.com (any modification operation will fail)

View File

@@ -92,6 +92,9 @@ p, *, *, GET, /api/get-plan, *, *
p, *, *, GET, /api/get-subscription, *, * p, *, *, GET, /api/get-subscription, *, *
p, *, *, GET, /api/get-provider, *, * p, *, *, GET, /api/get-provider, *, *
p, *, *, GET, /api/get-organization-names, *, * 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) sa := stringadapter.NewAdapter(ruleText)

View File

@@ -479,7 +479,7 @@ func (c *ApiController) GetCaptcha() {
Type: captchaProvider.Type, Type: captchaProvider.Type,
SubType: captchaProvider.SubType, SubType: captchaProvider.SubType,
ClientId: captchaProvider.ClientId, ClientId: captchaProvider.ClientId,
ClientSecret: captchaProvider.ClientSecret, ClientSecret: "***",
ClientId2: captchaProvider.ClientId2, ClientId2: captchaProvider.ClientId2,
ClientSecret2: captchaProvider.ClientSecret2, ClientSecret2: captchaProvider.ClientSecret2,
}) })

View File

@@ -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)) c.ResponseOk(object.GetMaskedApplication(application, userId))
} }

View File

@@ -387,6 +387,16 @@ func (c *ApiController) Login() {
c.ResponseError(err.Error()) c.ResponseError(err.Error())
return return
} else if enableCaptcha { } else if enableCaptcha {
captchaProvider, err := object.GetCaptchaProviderByApplication(util.GetId(application.Owner, application.Name), "false", c.GetAcceptLanguage())
if err != nil {
c.ResponseError(err.Error())
return
}
if captchaProvider.Type != "Default" {
authForm.ClientSecret = captchaProvider.ClientSecret
}
var isHuman bool var isHuman bool
isHuman, err = captcha.VerifyCaptchaByCaptchaType(authForm.CaptchaType, authForm.CaptchaToken, authForm.ClientSecret) isHuman, err = captcha.VerifyCaptchaByCaptchaType(authForm.CaptchaType, authForm.CaptchaToken, authForm.ClientSecret)
if err != nil { if err != nil {
@@ -936,8 +946,14 @@ func (c *ApiController) GetCaptchaStatus() {
return return
} }
failedSigninLimit, _, err := object.GetFailedSigninConfigByUser(user)
if err != nil {
c.ResponseError(err.Error())
return
}
var captchaEnabled bool var captchaEnabled bool
if user != nil && user.SigninWrongTimes >= object.SigninWrongTimesLimit { if user != nil && user.SigninWrongTimes >= failedSigninLimit {
captchaEnabled = true captchaEnabled = true
} }
c.ResponseOk(captchaEnabled) c.ResponseOk(captchaEnabled)

View File

@@ -16,6 +16,7 @@ package controllers
import ( import (
"encoding/json" "encoding/json"
"fmt"
"github.com/casdoor/casdoor/object" "github.com/casdoor/casdoor/object"
"github.com/casdoor/casdoor/util" "github.com/casdoor/casdoor/util"
@@ -56,13 +57,19 @@ func (c *ApiController) Enforce() {
return return
} }
res, err := enforcer.Enforce(request...) res := []bool{}
keyRes := []string{}
enforceResult, err := enforcer.Enforce(request...)
if err != nil { if err != nil {
c.ResponseError(err.Error()) c.ResponseError(err.Error())
return return
} }
c.ResponseOk(res) res = append(res, enforceResult)
keyRes = append(keyRes, enforcer.GetModelAndAdapter())
c.ResponseOk(res, keyRes)
return return
} }
@@ -72,22 +79,24 @@ func (c *ApiController) Enforce() {
c.ResponseError(err.Error()) c.ResponseError(err.Error())
return return
} }
res := []bool{}
if permission == nil { if permission == nil {
res = append(res, false) c.ResponseError(fmt.Sprintf("permission: %s doesn't exist", permissionId))
} else { return
enforceResult, err := object.Enforce(permission, &request)
if err != nil {
c.ResponseError(err.Error())
return
}
res = append(res, enforceResult)
} }
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 return
} }
@@ -111,9 +120,9 @@ func (c *ApiController) Enforce() {
} }
res := []bool{} res := []bool{}
keyRes := []string{}
listPermissionIdMap := object.GroupPermissionsByModelAdapter(permissions) listPermissionIdMap := object.GroupPermissionsByModelAdapter(permissions)
for _, permissionIds := range listPermissionIdMap { for key, permissionIds := range listPermissionIdMap {
firstPermission, err := object.GetPermission(permissionIds[0]) firstPermission, err := object.GetPermission(permissionIds[0])
if err != nil { if err != nil {
c.ResponseError(err.Error()) c.ResponseError(err.Error())
@@ -127,9 +136,10 @@ func (c *ApiController) Enforce() {
} }
res = append(res, enforceResult) res = append(res, enforceResult)
keyRes = append(keyRes, key)
} }
c.ResponseOk(res) c.ResponseOk(res, keyRes)
} }
// BatchEnforce // BatchEnforce
@@ -160,13 +170,19 @@ func (c *ApiController) BatchEnforce() {
return return
} }
res, err := enforcer.BatchEnforce(requests) res := [][]bool{}
keyRes := []string{}
enforceResult, err := enforcer.BatchEnforce(requests)
if err != nil { if err != nil {
c.ResponseError(err.Error()) c.ResponseError(err.Error())
return return
} }
c.ResponseOk(res) res = append(res, enforceResult)
keyRes = append(keyRes, enforcer.GetModelAndAdapter())
c.ResponseOk(res, keyRes)
return return
} }
@@ -176,28 +192,24 @@ func (c *ApiController) BatchEnforce() {
c.ResponseError(err.Error()) c.ResponseError(err.Error())
return return
} }
res := [][]bool{}
if permission == nil { if permission == nil {
l := len(requests) c.ResponseError(fmt.Sprintf("permission: %s doesn't exist", permissionId))
resRequest := make([]bool, l) return
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.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 return
} }
@@ -215,7 +227,7 @@ func (c *ApiController) BatchEnforce() {
} }
res := [][]bool{} res := [][]bool{}
keyRes := []string{}
listPermissionIdMap := object.GroupPermissionsByModelAdapter(permissions) listPermissionIdMap := object.GroupPermissionsByModelAdapter(permissions)
for _, permissionIds := range listPermissionIdMap { for _, permissionIds := range listPermissionIdMap {
firstPermission, err := object.GetPermission(permissionIds[0]) firstPermission, err := object.GetPermission(permissionIds[0])
@@ -231,9 +243,10 @@ func (c *ApiController) BatchEnforce() {
} }
res = append(res, enforceResult) res = append(res, enforceResult)
keyRes = append(keyRes, firstPermission.GetModelAndAdapter())
} }
c.ResponseOk(res) c.ResponseOk(res, keyRes)
} }
func (c *ApiController) GetAllObjects() { func (c *ApiController) GetAllObjects() {

View File

@@ -53,17 +53,34 @@ func (c *ApiController) SendVerificationCode() {
return return
} }
if vform.CaptchaType != "none" { provider, err := object.GetCaptchaProviderByApplication(vform.ApplicationId, "false", c.GetAcceptLanguage())
if captchaProvider := captcha.GetCaptchaProvider(vform.CaptchaType); captchaProvider == nil { if err != nil {
c.ResponseError(c.T("general:don't support captchaProvider: ") + vform.CaptchaType) c.ResponseError(err.Error())
return return
} else if isHuman, err := captchaProvider.VerifyCaptcha(vform.CaptchaToken, vform.ClientSecret); err != nil { }
c.ResponseError(err.Error())
return if provider != nil {
} else if !isHuman { if vform.CaptchaType != provider.Type {
c.ResponseError(c.T("verification:Turing test failed.")) c.ResponseError(c.T("verification:Turing test failed."))
return return
} }
if provider.Type != "Default" {
vform.ClientSecret = provider.ClientSecret
}
if vform.CaptchaType != "none" {
if captchaProvider := captcha.GetCaptchaProvider(vform.CaptchaType); captchaProvider == nil {
c.ResponseError(c.T("general:don't support captchaProvider: ") + vform.CaptchaType)
return
} else if isHuman, err := captchaProvider.VerifyCaptcha(vform.CaptchaToken, vform.ClientSecret); err != nil {
c.ResponseError(err.Error())
return
} else if !isHuman {
c.ResponseError(c.T("verification:Turing test failed."))
return
}
}
} }
application, err := object.GetApplication(vform.ApplicationId) application, err := object.GetApplication(vform.ApplicationId)
@@ -225,6 +242,16 @@ func (c *ApiController) VerifyCaptcha() {
return return
} }
captchaProvider, err := object.GetCaptchaProviderByOwnerName(vform.ApplicationId, c.GetAcceptLanguage())
if err != nil {
c.ResponseError(err.Error())
return
}
if captchaProvider.Type != "Default" {
vform.ClientSecret = captchaProvider.ClientSecret
}
provider := captcha.GetCaptchaProvider(vform.CaptchaType) provider := captcha.GetCaptchaProvider(vform.CaptchaType)
if provider == nil { if provider == nil {
c.ResponseError(c.T("verification:Invalid captcha provider.")) c.ResponseError(c.T("verification:Invalid captcha provider."))

82
email/custom_http.go Normal file
View File

@@ -0,0 +1,82 @@
// 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 email
import (
"fmt"
"net/http"
"net/url"
"strings"
"github.com/casdoor/casdoor/proxy"
)
type HttpEmailProvider struct {
endpoint string
method string
}
func NewHttpEmailProvider(endpoint string, method string) *HttpEmailProvider {
client := &HttpEmailProvider{
endpoint: endpoint,
method: method,
}
return client
}
func (c *HttpEmailProvider) Send(fromAddress string, fromName string, toAddress string, subject string, content string) error {
var req *http.Request
var err error
if c.method == "POST" {
formValues := url.Values{}
formValues.Set("fromName", fromName)
formValues.Set("toAddress", toAddress)
formValues.Set("subject", subject)
formValues.Set("content", content)
req, err = http.NewRequest(c.method, c.endpoint, strings.NewReader(formValues.Encode()))
if err != nil {
return err
}
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
} else if c.method == "GET" {
req, err = http.NewRequest(c.method, c.endpoint, nil)
if err != nil {
return err
}
q := req.URL.Query()
q.Add("fromName", fromName)
q.Add("toAddress", toAddress)
q.Add("subject", subject)
q.Add("content", content)
req.URL.RawQuery = q.Encode()
} else {
return fmt.Errorf("HttpEmailProvider's Send() error, unsupported method: %s", c.method)
}
httpClient := proxy.DefaultHttpClient
resp, err := httpClient.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
return fmt.Errorf("HttpEmailProvider's Send() error, custom HTTP Email request failed with status: %s", resp.Status)
}
return err
}

View File

@@ -18,9 +18,11 @@ type EmailProvider interface {
Send(fromAddress string, fromName, toAddress string, subject string, content string) error Send(fromAddress string, fromName, toAddress string, subject string, content string) error
} }
func GetEmailProvider(typ string, clientId string, clientSecret string, host string, port int, disableSsl bool) EmailProvider { func GetEmailProvider(typ string, clientId string, clientSecret string, host string, port int, disableSsl bool, endpoint string, method string) EmailProvider {
if typ == "Azure ACS" { if typ == "Azure ACS" {
return NewAzureACSEmailProvider(clientSecret, host) return NewAzureACSEmailProvider(clientSecret, host)
} else if typ == "Custom HTTP Email" {
return NewHttpEmailProvider(endpoint, method)
} else { } else {
return NewSmtpEmailProvider(clientId, clientSecret, host, port, typ, disableSsl) return NewSmtpEmailProvider(clientId, clientSecret, host, port, typ, disableSsl)
} }

16
go.mod
View File

@@ -10,10 +10,10 @@ require (
github.com/beego/beego v1.12.12 github.com/beego/beego v1.12.12
github.com/beevik/etree v1.1.0 github.com/beevik/etree v1.1.0
github.com/casbin/casbin/v2 v2.77.2 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/gomail/v2 v2.0.1
github.com/casdoor/notify v0.45.0 github.com/casdoor/notify v0.45.0
github.com/casdoor/oss v1.3.0 github.com/casdoor/oss v1.4.1
github.com/casdoor/xorm-adapter/v3 v3.1.0 github.com/casdoor/xorm-adapter/v3 v3.1.0
github.com/casvisor/casvisor-go-sdk v1.0.3 github.com/casvisor/casvisor-go-sdk v1.0.3
github.com/dchest/captcha v0.0.0-20200903113550-03f5f0333e1f github.com/dchest/captcha v0.0.0-20200903113550-03f5f0333e1f
@@ -31,7 +31,7 @@ require (
github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible
github.com/go-webauthn/webauthn v0.6.0 github.com/go-webauthn/webauthn v0.6.0
github.com/golang-jwt/jwt/v4 v4.5.0 github.com/golang-jwt/jwt/v4 v4.5.0
github.com/google/uuid v1.3.1 github.com/google/uuid v1.4.0
github.com/json-iterator/go v1.1.12 github.com/json-iterator/go v1.1.12
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 // indirect github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 // indirect
github.com/lestrrat-go/jwx v1.2.21 github.com/lestrrat-go/jwx v1.2.21
@@ -43,7 +43,7 @@ require (
github.com/nyaruka/phonenumbers v1.1.5 github.com/nyaruka/phonenumbers v1.1.5
github.com/pquerna/otp v1.4.0 github.com/pquerna/otp v1.4.0
github.com/prometheus/client_golang v1.11.1 github.com/prometheus/client_golang v1.11.1
github.com/prometheus/client_model v0.3.0 github.com/prometheus/client_model v0.4.0
github.com/qiangmzsx/string-adapter/v2 v2.1.0 github.com/qiangmzsx/string-adapter/v2 v2.1.0
github.com/robfig/cron/v3 v3.0.1 github.com/robfig/cron/v3 v3.0.1
github.com/russellhaering/gosaml2 v0.9.0 github.com/russellhaering/gosaml2 v0.9.0
@@ -62,10 +62,10 @@ require (
github.com/xorm-io/core v0.7.4 github.com/xorm-io/core v0.7.4
github.com/xorm-io/xorm v1.1.6 github.com/xorm-io/xorm v1.1.6
github.com/yusufpapurcu/wmi v1.2.2 // indirect github.com/yusufpapurcu/wmi v1.2.2 // indirect
golang.org/x/crypto v0.13.0 golang.org/x/crypto v0.14.0
golang.org/x/net v0.14.0 golang.org/x/net v0.17.0
golang.org/x/oauth2 v0.11.0 golang.org/x/oauth2 v0.13.0
google.golang.org/api v0.138.0 google.golang.org/api v0.150.0
gopkg.in/ini.v1 v1.67.0 // indirect gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/square/go-jose.v2 v2.6.0 gopkg.in/square/go-jose.v2 v2.6.0
layeh.com/radius v0.0.0-20221205141417-e7fbddd11d68 layeh.com/radius v0.0.0-20221205141417-e7fbddd11d68

274
go.sum

File diff suppressed because it is too large Load Diff

View File

@@ -19,7 +19,8 @@
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application", "The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
"Unauthorized operation": "Unauthorized operation", "Unauthorized operation": "Unauthorized operation",
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s", "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": { "cas": {
"Service %s and %s do not match": "Service %s and %s do not match" "Service %s and %s do not match": "Service %s and %s do not match"
@@ -33,11 +34,12 @@
"Email is invalid": "Email is invalid", "Email is invalid": "Email is invalid",
"Empty username.": "Empty username.", "Empty username.": "Empty username.",
"FirstName cannot be blank": "FirstName cannot be blank", "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", "LDAP user name or password incorrect": "LDAP user name or password incorrect",
"LastName cannot be blank": "LastName cannot be blank", "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", "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", "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 already exists": "Phone already exists",
"Phone cannot be empty": "Phone cannot be empty", "Phone cannot be empty": "Phone cannot be empty",
"Phone number is invalid": "Phone number is invalid", "Phone number is invalid": "Phone number is invalid",

View File

@@ -19,7 +19,8 @@
"The provider: %s is not enabled for the application": "Der Anbieter: %s ist nicht für die Anwendung aktiviert", "The provider: %s is not enabled for the application": "Der Anbieter: %s ist nicht für die Anwendung aktiviert",
"Unauthorized operation": "Nicht autorisierte Operation", "Unauthorized operation": "Nicht autorisierte Operation",
"Unknown authentication type (not password or provider), form = %s": "Unbekannter Authentifizierungstyp (nicht Passwort oder Anbieter), Formular = %s", "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": { "cas": {
"Service %s and %s do not match": "Service %s und %s stimmen nicht überein" "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", "Email is invalid": "E-Mail ist ungültig",
"Empty username.": "Leerer Benutzername.", "Empty username.": "Leerer Benutzername.",
"FirstName cannot be blank": "Vorname darf nicht leer sein", "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", "LDAP user name or password incorrect": "Ldap Benutzername oder Passwort falsch",
"LastName cannot be blank": "Nachname darf nicht leer sein", "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", "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", "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 already exists": "Telefon existiert bereits",
"Phone cannot be empty": "Das Telefon darf nicht leer sein", "Phone cannot be empty": "Das Telefon darf nicht leer sein",
"Phone number is invalid": "Die Telefonnummer ist ungültig", "Phone number is invalid": "Die Telefonnummer ist ungültig",

View File

@@ -19,7 +19,8 @@
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application", "The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
"Unauthorized operation": "Unauthorized operation", "Unauthorized operation": "Unauthorized operation",
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s", "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": { "cas": {
"Service %s and %s do not match": "Service %s and %s do not match" "Service %s and %s do not match": "Service %s and %s do not match"
@@ -33,11 +34,12 @@
"Email is invalid": "Email is invalid", "Email is invalid": "Email is invalid",
"Empty username.": "Empty username.", "Empty username.": "Empty username.",
"FirstName cannot be blank": "FirstName cannot be blank", "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", "LDAP user name or password incorrect": "LDAP user name or password incorrect",
"LastName cannot be blank": "LastName cannot be blank", "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", "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", "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 already exists": "Phone already exists",
"Phone cannot be empty": "Phone cannot be empty", "Phone cannot be empty": "Phone cannot be empty",
"Phone number is invalid": "Phone number is invalid", "Phone number is invalid": "Phone number is invalid",

View File

@@ -19,7 +19,8 @@
"The provider: %s is not enabled for the application": "El proveedor: %s no está habilitado para la aplicación", "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", "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", "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": { "cas": {
"Service %s and %s do not match": "Los servicios %s y %s no coinciden" "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", "Email is invalid": "El correo electrónico no es válido",
"Empty username.": "Nombre de usuario vacío.", "Empty username.": "Nombre de usuario vacío.",
"FirstName cannot be blank": "El nombre no puede estar en blanco", "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", "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", "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", "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", "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 already exists": "El teléfono ya existe",
"Phone cannot be empty": "Teléfono no puede estar vacío", "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", "Phone number is invalid": "El número de teléfono no es válido",

View File

@@ -19,7 +19,8 @@
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application", "The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
"Unauthorized operation": "Unauthorized operation", "Unauthorized operation": "Unauthorized operation",
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s", "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": { "cas": {
"Service %s and %s do not match": "Service %s and %s do not match" "Service %s and %s do not match": "Service %s and %s do not match"
@@ -33,11 +34,12 @@
"Email is invalid": "Email is invalid", "Email is invalid": "Email is invalid",
"Empty username.": "Empty username.", "Empty username.": "Empty username.",
"FirstName cannot be blank": "FirstName cannot be blank", "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", "LDAP user name or password incorrect": "LDAP user name or password incorrect",
"LastName cannot be blank": "LastName cannot be blank", "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", "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", "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 already exists": "Phone already exists",
"Phone cannot be empty": "Phone cannot be empty", "Phone cannot be empty": "Phone cannot be empty",
"Phone number is invalid": "Phone number is invalid", "Phone number is invalid": "Phone number is invalid",

View File

@@ -19,7 +19,8 @@
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application", "The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
"Unauthorized operation": "Unauthorized operation", "Unauthorized operation": "Unauthorized operation",
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s", "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": { "cas": {
"Service %s and %s do not match": "Service %s and %s do not match" "Service %s and %s do not match": "Service %s and %s do not match"
@@ -33,11 +34,12 @@
"Email is invalid": "Email is invalid", "Email is invalid": "Email is invalid",
"Empty username.": "Empty username.", "Empty username.": "Empty username.",
"FirstName cannot be blank": "FirstName cannot be blank", "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", "LDAP user name or password incorrect": "LDAP user name or password incorrect",
"LastName cannot be blank": "LastName cannot be blank", "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", "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", "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 already exists": "Phone already exists",
"Phone cannot be empty": "Phone cannot be empty", "Phone cannot be empty": "Phone cannot be empty",
"Phone number is invalid": "Phone number is invalid", "Phone number is invalid": "Phone number is invalid",

View File

@@ -19,7 +19,8 @@
"The provider: %s is not enabled for the application": "Le fournisseur :%s n'est pas activé pour l'application", "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", "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", "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 lutilisateur %s nest pas répertorié dans les tags de lapplication" "User's tag: %s is not listed in the application's tags": "Le tag de lutilisateur %s nest pas répertorié dans les tags de lapplication",
"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": { "cas": {
"Service %s and %s do not match": "Les services %s et %s ne correspondent pas" "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", "Email is invalid": "L'adresse e-mail est invalide",
"Empty username.": "Nom d'utilisateur vide.", "Empty username.": "Nom d'utilisateur vide.",
"FirstName cannot be blank": "Le prénom ne peut pas être laissé 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", "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", "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", "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", "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 already exists": "Le téléphone existe déjà",
"Phone cannot be empty": "Le téléphone ne peut pas être vide", "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", "Phone number is invalid": "Le numéro de téléphone est invalide",

View File

@@ -19,7 +19,8 @@
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application", "The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
"Unauthorized operation": "Unauthorized operation", "Unauthorized operation": "Unauthorized operation",
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s", "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": { "cas": {
"Service %s and %s do not match": "Service %s and %s do not match" "Service %s and %s do not match": "Service %s and %s do not match"
@@ -33,11 +34,12 @@
"Email is invalid": "Email is invalid", "Email is invalid": "Email is invalid",
"Empty username.": "Empty username.", "Empty username.": "Empty username.",
"FirstName cannot be blank": "FirstName cannot be blank", "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", "LDAP user name or password incorrect": "LDAP user name or password incorrect",
"LastName cannot be blank": "LastName cannot be blank", "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", "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", "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 already exists": "Phone already exists",
"Phone cannot be empty": "Phone cannot be empty", "Phone cannot be empty": "Phone cannot be empty",
"Phone number is invalid": "Phone number is invalid", "Phone number is invalid": "Phone number is invalid",

View File

@@ -19,7 +19,8 @@
"The provider: %s is not enabled for the application": "Penyedia: %s tidak diaktifkan untuk aplikasi ini", "The provider: %s is not enabled for the application": "Penyedia: %s tidak diaktifkan untuk aplikasi ini",
"Unauthorized operation": "Operasi tidak sah", "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", "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": { "cas": {
"Service %s and %s do not match": "Layanan %s dan %s tidak cocok" "Service %s and %s do not match": "Layanan %s dan %s tidak cocok"
@@ -33,11 +34,12 @@
"Email is invalid": "Email tidak valid", "Email is invalid": "Email tidak valid",
"Empty username.": "Nama pengguna kosong.", "Empty username.": "Nama pengguna kosong.",
"FirstName cannot be blank": "Nama depan tidak boleh 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", "LDAP user name or password incorrect": "Nama pengguna atau kata sandi Ldap salah",
"LastName cannot be blank": "Nama belakang tidak boleh kosong", "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", "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", "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 already exists": "Telepon sudah ada",
"Phone cannot be empty": "Telepon tidak boleh kosong", "Phone cannot be empty": "Telepon tidak boleh kosong",
"Phone number is invalid": "Nomor telepon tidak valid", "Phone number is invalid": "Nomor telepon tidak valid",

View File

@@ -19,7 +19,8 @@
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application", "The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
"Unauthorized operation": "Unauthorized operation", "Unauthorized operation": "Unauthorized operation",
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s", "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": { "cas": {
"Service %s and %s do not match": "Service %s and %s do not match" "Service %s and %s do not match": "Service %s and %s do not match"
@@ -33,11 +34,12 @@
"Email is invalid": "Email is invalid", "Email is invalid": "Email is invalid",
"Empty username.": "Empty username.", "Empty username.": "Empty username.",
"FirstName cannot be blank": "FirstName cannot be blank", "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", "LDAP user name or password incorrect": "LDAP user name or password incorrect",
"LastName cannot be blank": "LastName cannot be blank", "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", "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", "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 already exists": "Phone already exists",
"Phone cannot be empty": "Phone cannot be empty", "Phone cannot be empty": "Phone cannot be empty",
"Phone number is invalid": "Phone number is invalid", "Phone number is invalid": "Phone number is invalid",

View File

@@ -19,7 +19,8 @@
"The provider: %s is not enabled for the application": "プロバイダー:%sはアプリケーションでは有効化されていません", "The provider: %s is not enabled for the application": "プロバイダー:%sはアプリケーションでは有効化されていません",
"Unauthorized operation": "不正操作", "Unauthorized operation": "不正操作",
"Unknown authentication type (not password or provider), form = %s": "不明な認証タイプ(パスワードまたはプロバイダーではない)フォーム=%s", "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": { "cas": {
"Service %s and %s do not match": "サービス%sと%sは一致しません" "Service %s and %s do not match": "サービス%sと%sは一致しません"
@@ -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のユーザー名またはパスワードが間違っています", "LDAP user name or password incorrect": "Ldapのユーザー名またはパスワードが間違っています",
"LastName cannot be blank": "姓は空白にできません", "LastName cannot be blank": "姓は空白にできません",
"Multiple accounts with same uid, please check your ldap server": "同じuidを持つ複数のアカウントがあります。あなたのLDAPサーバーを確認してください", "Multiple accounts with same uid, please check your ldap server": "同じuidを持つ複数のアカウントがあります。あなたのLDAPサーバーを確認してください",
"Organization does not exist": "組織は存在しません", "Organization does not exist": "組織は存在しません",
"Password must have at least 6 characters": "パスワードは少なくとも6つの文字が必要です",
"Phone already exists": "電話はすでに存在しています", "Phone already exists": "電話はすでに存在しています",
"Phone cannot be empty": "電話は空っぽにできません", "Phone cannot be empty": "電話は空っぽにできません",
"Phone number is invalid": "電話番号が無効です", "Phone number is invalid": "電話番号が無効です",

View File

@@ -19,7 +19,8 @@
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application", "The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
"Unauthorized operation": "Unauthorized operation", "Unauthorized operation": "Unauthorized operation",
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s", "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": { "cas": {
"Service %s and %s do not match": "Service %s and %s do not match" "Service %s and %s do not match": "Service %s and %s do not match"
@@ -33,11 +34,12 @@
"Email is invalid": "Email is invalid", "Email is invalid": "Email is invalid",
"Empty username.": "Empty username.", "Empty username.": "Empty username.",
"FirstName cannot be blank": "FirstName cannot be blank", "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", "LDAP user name or password incorrect": "LDAP user name or password incorrect",
"LastName cannot be blank": "LastName cannot be blank", "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", "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", "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 already exists": "Phone already exists",
"Phone cannot be empty": "Phone cannot be empty", "Phone cannot be empty": "Phone cannot be empty",
"Phone number is invalid": "Phone number is invalid", "Phone number is invalid": "Phone number is invalid",

View File

@@ -19,7 +19,8 @@
"The provider: %s is not enabled for the application": "제공자 %s은(는) 응용 프로그램에서 활성화되어 있지 않습니다", "The provider: %s is not enabled for the application": "제공자 %s은(는) 응용 프로그램에서 활성화되어 있지 않습니다",
"Unauthorized operation": "무단 조작", "Unauthorized operation": "무단 조작",
"Unknown authentication type (not password or provider), form = %s": "알 수 없는 인증 유형(암호 또는 공급자가 아님), 폼 = %s", "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": { "cas": {
"Service %s and %s do not match": "서비스 %s와 %s는 일치하지 않습니다" "Service %s and %s do not match": "서비스 %s와 %s는 일치하지 않습니다"
@@ -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 사용자 이름 또는 암호가 잘못되었습니다", "LDAP user name or password incorrect": "LDAP 사용자 이름 또는 암호가 잘못되었습니다",
"LastName cannot be blank": "성은 비어 있을 수 없습니다", "LastName cannot be blank": "성은 비어 있을 수 없습니다",
"Multiple accounts with same uid, please check your ldap server": "동일한 UID를 가진 여러 계정이 있습니다. LDAP 서버를 확인해주세요", "Multiple accounts with same uid, please check your ldap server": "동일한 UID를 가진 여러 계정이 있습니다. LDAP 서버를 확인해주세요",
"Organization does not exist": "조직은 존재하지 않습니다", "Organization does not exist": "조직은 존재하지 않습니다",
"Password must have at least 6 characters": "암호는 적어도 6자 이상이어야 합니다",
"Phone already exists": "전화기는 이미 존재합니다", "Phone already exists": "전화기는 이미 존재합니다",
"Phone cannot be empty": "전화는 비워 둘 수 없습니다", "Phone cannot be empty": "전화는 비워 둘 수 없습니다",
"Phone number is invalid": "전화번호가 유효하지 않습니다", "Phone number is invalid": "전화번호가 유효하지 않습니다",

View File

@@ -19,7 +19,8 @@
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application", "The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
"Unauthorized operation": "Unauthorized operation", "Unauthorized operation": "Unauthorized operation",
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s", "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": { "cas": {
"Service %s and %s do not match": "Service %s and %s do not match" "Service %s and %s do not match": "Service %s and %s do not match"
@@ -33,11 +34,12 @@
"Email is invalid": "Email is invalid", "Email is invalid": "Email is invalid",
"Empty username.": "Empty username.", "Empty username.": "Empty username.",
"FirstName cannot be blank": "FirstName cannot be blank", "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", "LDAP user name or password incorrect": "LDAP user name or password incorrect",
"LastName cannot be blank": "LastName cannot be blank", "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", "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", "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 already exists": "Phone already exists",
"Phone cannot be empty": "Phone cannot be empty", "Phone cannot be empty": "Phone cannot be empty",
"Phone number is invalid": "Phone number is invalid", "Phone number is invalid": "Phone number is invalid",

View File

@@ -19,7 +19,8 @@
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application", "The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
"Unauthorized operation": "Unauthorized operation", "Unauthorized operation": "Unauthorized operation",
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s", "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": { "cas": {
"Service %s and %s do not match": "Service %s and %s do not match" "Service %s and %s do not match": "Service %s and %s do not match"
@@ -33,11 +34,12 @@
"Email is invalid": "Email is invalid", "Email is invalid": "Email is invalid",
"Empty username.": "Empty username.", "Empty username.": "Empty username.",
"FirstName cannot be blank": "FirstName cannot be blank", "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", "LDAP user name or password incorrect": "LDAP user name or password incorrect",
"LastName cannot be blank": "LastName cannot be blank", "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", "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", "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 already exists": "Phone already exists",
"Phone cannot be empty": "Phone cannot be empty", "Phone cannot be empty": "Phone cannot be empty",
"Phone number is invalid": "Phone number is invalid", "Phone number is invalid": "Phone number is invalid",

View File

@@ -19,7 +19,8 @@
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application", "The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
"Unauthorized operation": "Unauthorized operation", "Unauthorized operation": "Unauthorized operation",
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s", "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": { "cas": {
"Service %s and %s do not match": "Service %s and %s do not match" "Service %s and %s do not match": "Service %s and %s do not match"
@@ -33,11 +34,12 @@
"Email is invalid": "Email is invalid", "Email is invalid": "Email is invalid",
"Empty username.": "Empty username.", "Empty username.": "Empty username.",
"FirstName cannot be blank": "FirstName cannot be blank", "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", "LDAP user name or password incorrect": "LDAP user name or password incorrect",
"LastName cannot be blank": "LastName cannot be blank", "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", "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", "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 already exists": "Phone already exists",
"Phone cannot be empty": "Phone cannot be empty", "Phone cannot be empty": "Phone cannot be empty",
"Phone number is invalid": "Phone number is invalid", "Phone number is invalid": "Phone number is invalid",

View File

@@ -19,7 +19,8 @@
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application", "The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
"Unauthorized operation": "Unauthorized operation", "Unauthorized operation": "Unauthorized operation",
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s", "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": { "cas": {
"Service %s and %s do not match": "Service %s and %s do not match" "Service %s and %s do not match": "Service %s and %s do not match"
@@ -33,11 +34,12 @@
"Email is invalid": "Email is invalid", "Email is invalid": "Email is invalid",
"Empty username.": "Empty username.", "Empty username.": "Empty username.",
"FirstName cannot be blank": "FirstName cannot be blank", "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", "LDAP user name or password incorrect": "LDAP user name or password incorrect",
"LastName cannot be blank": "LastName cannot be blank", "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", "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", "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 already exists": "Phone already exists",
"Phone cannot be empty": "Phone cannot be empty", "Phone cannot be empty": "Phone cannot be empty",
"Phone number is invalid": "Phone number is invalid", "Phone number is invalid": "Phone number is invalid",

View File

@@ -19,7 +19,8 @@
"The provider: %s is not enabled for the application": "Провайдер: %s не включен для приложения", "The provider: %s is not enabled for the application": "Провайдер: %s не включен для приложения",
"Unauthorized operation": "Несанкционированная операция", "Unauthorized operation": "Несанкционированная операция",
"Unknown authentication type (not password or provider), form = %s": "Неизвестный тип аутентификации (не пароль и не провайдер), форма = %s", "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": { "cas": {
"Service %s and %s do not match": "Сервисы %s и %s не совпадают" "Service %s and %s do not match": "Сервисы %s и %s не совпадают"
@@ -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", "LDAP user name or password incorrect": "Неправильное имя пользователя или пароль Ldap",
"LastName cannot be blank": "Фамилия не может быть пустой", "LastName cannot be blank": "Фамилия не может быть пустой",
"Multiple accounts with same uid, please check your ldap server": "Множественные учетные записи с тем же UID. Пожалуйста, проверьте свой сервер LDAP", "Multiple accounts with same uid, please check your ldap server": "Множественные учетные записи с тем же UID. Пожалуйста, проверьте свой сервер LDAP",
"Organization does not exist": "Организация не существует", "Organization does not exist": "Организация не существует",
"Password must have at least 6 characters": "Пароль должен содержать не менее 6 символов",
"Phone already exists": "Телефон уже существует", "Phone already exists": "Телефон уже существует",
"Phone cannot be empty": "Телефон не может быть пустым", "Phone cannot be empty": "Телефон не может быть пустым",
"Phone number is invalid": "Номер телефона является недействительным", "Phone number is invalid": "Номер телефона является недействительным",

View File

@@ -19,7 +19,8 @@
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application", "The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
"Unauthorized operation": "Unauthorized operation", "Unauthorized operation": "Unauthorized operation",
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s", "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": { "cas": {
"Service %s and %s do not match": "Service %s and %s do not match" "Service %s and %s do not match": "Service %s and %s do not match"
@@ -33,11 +34,12 @@
"Email is invalid": "Email is invalid", "Email is invalid": "Email is invalid",
"Empty username.": "Empty username.", "Empty username.": "Empty username.",
"FirstName cannot be blank": "FirstName cannot be blank", "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", "LDAP user name or password incorrect": "LDAP user name or password incorrect",
"LastName cannot be blank": "LastName cannot be blank", "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", "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", "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 already exists": "Phone already exists",
"Phone cannot be empty": "Phone cannot be empty", "Phone cannot be empty": "Phone cannot be empty",
"Phone number is invalid": "Phone number is invalid", "Phone number is invalid": "Phone number is invalid",

View File

@@ -19,7 +19,8 @@
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application", "The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
"Unauthorized operation": "Unauthorized operation", "Unauthorized operation": "Unauthorized operation",
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s", "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": { "cas": {
"Service %s and %s do not match": "Service %s and %s do not match" "Service %s and %s do not match": "Service %s and %s do not match"
@@ -33,11 +34,12 @@
"Email is invalid": "Email is invalid", "Email is invalid": "Email is invalid",
"Empty username.": "Empty username.", "Empty username.": "Empty username.",
"FirstName cannot be blank": "FirstName cannot be blank", "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", "LDAP user name or password incorrect": "LDAP user name or password incorrect",
"LastName cannot be blank": "LastName cannot be blank", "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", "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", "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 already exists": "Phone already exists",
"Phone cannot be empty": "Phone cannot be empty", "Phone cannot be empty": "Phone cannot be empty",
"Phone number is invalid": "Phone number is invalid", "Phone number is invalid": "Phone number is invalid",

View File

@@ -19,7 +19,8 @@
"The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application", "The provider: %s is not enabled for the application": "The provider: %s is not enabled for the application",
"Unauthorized operation": "Unauthorized operation", "Unauthorized operation": "Unauthorized operation",
"Unknown authentication type (not password or provider), form = %s": "Unknown authentication type (not password or provider), form = %s", "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": { "cas": {
"Service %s and %s do not match": "Service %s and %s do not match" "Service %s and %s do not match": "Service %s and %s do not match"
@@ -33,11 +34,12 @@
"Email is invalid": "Email is invalid", "Email is invalid": "Email is invalid",
"Empty username.": "Empty username.", "Empty username.": "Empty username.",
"FirstName cannot be blank": "FirstName cannot be blank", "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", "LDAP user name or password incorrect": "LDAP user name or password incorrect",
"LastName cannot be blank": "LastName cannot be blank", "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", "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", "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 already exists": "Phone already exists",
"Phone cannot be empty": "Phone cannot be empty", "Phone cannot be empty": "Phone cannot be empty",
"Phone number is invalid": "Phone number is invalid", "Phone number is invalid": "Phone number is invalid",

View File

@@ -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", "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", "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", "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": { "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" "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ệ", "Email is invalid": "Địa chỉ email không hợp lệ",
"Empty username.": "Tên đăng nhập trống.", "Empty username.": "Tên đăng nhập trống.",
"FirstName cannot be blank": "Tên không được để 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", "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", "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", "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", "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 already exists": "Điện thoại đã tồn tại",
"Phone cannot be empty": "Điện thoại không thể để trống", "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ệ", "Phone number is invalid": "Số điện thoại không hợp lệ",

View File

@@ -19,7 +19,8 @@
"The provider: %s is not enabled for the application": "该应用的提供商: %s未被启用", "The provider: %s is not enabled for the application": "该应用的提供商: %s未被启用",
"Unauthorized operation": "未授权的操作", "Unauthorized operation": "未授权的操作",
"Unknown authentication type (not password or provider), form = %s": "未知的认证类型(非密码或第三方提供商):%s", "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": { "cas": {
"Service %s and %s do not match": "服务%s与%s不匹配" "Service %s and %s do not match": "服务%s与%s不匹配"
@@ -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密码错误", "LDAP user name or password incorrect": "LDAP密码错误",
"LastName cannot be blank": "姓不可以为空", "LastName cannot be blank": "姓不可以为空",
"Multiple accounts with same uid, please check your ldap server": "多个帐户具有相同的uid请检查您的 LDAP 服务器", "Multiple accounts with same uid, please check your ldap server": "多个帐户具有相同的uid请检查您的 LDAP 服务器",
"Organization does not exist": "组织不存在", "Organization does not exist": "组织不存在",
"Password must have at least 6 characters": "新密码至少为6位",
"Phone already exists": "该手机号已存在", "Phone already exists": "该手机号已存在",
"Phone cannot be empty": "手机号不可为空", "Phone cannot be empty": "手机号不可为空",
"Phone number is invalid": "无效手机号", "Phone number is invalid": "无效手机号",

View File

@@ -85,10 +85,12 @@ func (idp *AdfsIdProvider) GetToken(code string) (*oauth2.Token, error) {
payload.Set("client_id", idp.Config.ClientID) payload.Set("client_id", idp.Config.ClientID)
payload.Set("client_secret", idp.Config.ClientSecret) payload.Set("client_secret", idp.Config.ClientSecret)
payload.Set("redirect_uri", idp.Config.RedirectURL) payload.Set("redirect_uri", idp.Config.RedirectURL)
resp, err := idp.Client.PostForm(idp.Config.Endpoint.TokenURL, payload) resp, err := idp.Client.PostForm(idp.Config.Endpoint.TokenURL, payload)
if err != nil { if err != nil {
return nil, err return nil, err
} }
data, err := io.ReadAll(resp.Body) data, err := io.ReadAll(resp.Body)
if err != nil { if err != nil {
return nil, err return nil, err
@@ -97,10 +99,10 @@ func (idp *AdfsIdProvider) GetToken(code string) (*oauth2.Token, error) {
pToken := &AdfsToken{} pToken := &AdfsToken{}
err = json.Unmarshal(data, pToken) err = json.Unmarshal(data, pToken)
if err != nil { if err != nil {
return nil, fmt.Errorf("fail to unmarshal token response: %s", err.Error()) return nil, err
} }
if pToken.ErrMsg != "" { if pToken.ErrMsg != "" {
return nil, fmt.Errorf("pToken.Errmsg = %s", pToken.ErrMsg) return nil, fmt.Errorf(pToken.ErrMsg)
} }
token := &oauth2.Token{ token := &oauth2.Token{

126
idp/azuread_b2c.go Normal file
View 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
}

View File

@@ -91,6 +91,8 @@ func GetIdProvider(idpInfo *ProviderInfo, redirectUrl string) (IdProvider, error
return NewGitlabIdProvider(idpInfo.ClientId, idpInfo.ClientSecret, redirectUrl), nil return NewGitlabIdProvider(idpInfo.ClientId, idpInfo.ClientSecret, redirectUrl), nil
case "ADFS": case "ADFS":
return NewAdfsIdProvider(idpInfo.ClientId, idpInfo.ClientSecret, redirectUrl, idpInfo.HostUrl), nil 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": case "Baidu":
return NewBaiduIdProvider(idpInfo.ClientId, idpInfo.ClientSecret, redirectUrl), nil return NewBaiduIdProvider(idpInfo.ClientId, idpInfo.ClientSecret, redirectUrl), nil
case "Alipay": case "Alipay":

View File

@@ -104,7 +104,9 @@
} }
], ],
"redirectUris": [""], "redirectUris": [""],
"expireInHours": 168 "expireInHours": 168,
"failedSigninLimit": 5,
"failedSigninfrozenTime": 15
} }
], ],
"users": [ "users": [

View File

@@ -1,5 +1,5 @@
apiVersion: v2 apiVersion: v2
name: casdoor name: casdoor-helm-charts
description: A Helm chart for Kubernetes description: A Helm chart for Kubernetes
# A chart can be either an 'application' or a 'library' chart. # 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 # 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. # to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/) # Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.0 version: 0.3.0
# This is the version number of the application being deployed. This version number should be # 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 # 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. # follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes. # It is recommended to use it with quotes.
appVersion: "1.16.0" appVersion: "1.18.0"

View File

@@ -59,6 +59,9 @@ spec:
volumeMounts: volumeMounts:
- name: config-volume - name: config-volume
mountPath: /conf mountPath: /conf
{{ if .Values.extraContainersEnabled }}
{{- .Values.extraContainers | nindent 8 }}
{{- end }}
volumes: volumes:
- name: config-volume - name: config-volume
projected: projected:

View File

@@ -108,3 +108,10 @@ nodeSelector: {}
tolerations: [] tolerations: []
affinity: {} affinity: {}
# -- Optionally add extra sidecar containers.
extraContainersEnabled: false
extraContainers: ""
# extraContainers: |
# - name: ...
# image: ...

View File

@@ -15,10 +15,11 @@
package notification package notification
import ( import (
"bytes"
"context" "context"
"fmt" "fmt"
"net/http" "net/http"
"net/url"
"strings"
"github.com/casdoor/casdoor/proxy" "github.com/casdoor/casdoor/proxy"
) )
@@ -39,26 +40,29 @@ func NewCustomHttpProvider(endpoint string, method string, paramName string) (*H
} }
func (c *HttpNotificationClient) Send(ctx context.Context, subject string, content string) error { func (c *HttpNotificationClient) Send(ctx context.Context, subject string, content string) error {
var req *http.Request
var err error var err error
httpClient := proxy.DefaultHttpClient
req, err := http.NewRequest(c.method, c.endpoint, bytes.NewBufferString(content))
if err != nil {
return err
}
if c.method == "POST" { if c.method == "POST" {
req.Header.Set("Content-Type", "application/x-www-form-urlencoded") formValues := url.Values{}
req.PostForm = map[string][]string{ formValues.Set(c.paramName, content)
c.paramName: {content}, req, err = http.NewRequest(c.method, c.endpoint, strings.NewReader(formValues.Encode()))
if err != nil {
return err
} }
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
} else if c.method == "GET" { } else if c.method == "GET" {
req, err = http.NewRequest(c.method, c.endpoint, nil)
if err != nil {
return err
}
q := req.URL.Query() q := req.URL.Query()
q.Add(c.paramName, content) q.Add(c.paramName, content)
req.URL.RawQuery = q.Encode() req.URL.RawQuery = q.Encode()
} }
httpClient := proxy.DefaultHttpClient
resp, err := httpClient.Do(req) resp, err := httpClient.Do(req)
if err != nil { if err != nil {
return err return err
@@ -66,7 +70,7 @@ func (c *HttpNotificationClient) Send(ctx context.Context, subject string, conte
defer resp.Body.Close() defer resp.Body.Close()
if resp.StatusCode != http.StatusOK { if resp.StatusCode != http.StatusOK {
return fmt.Errorf("SendMessage() error, custom HTTP Notification request failed with status: %s", resp.Status) return fmt.Errorf("HttpNotificationClient's SendMessage() error, custom HTTP Notification request failed with status: %s", resp.Status)
} }
return err return err

View File

@@ -90,6 +90,9 @@ type Application struct {
FormOffset int `json:"formOffset"` FormOffset int `json:"formOffset"`
FormSideHtml string `xorm:"mediumtext" json:"formSideHtml"` FormSideHtml string `xorm:"mediumtext" json:"formSideHtml"`
FormBackgroundUrl string `xorm:"varchar(200)" json:"formBackgroundUrl"` FormBackgroundUrl string `xorm:"varchar(200)" json:"formBackgroundUrl"`
FailedSigninLimit int `json:"failedSigninLimit"`
FailedSigninfrozenTime int `json:"failedSigninfrozenTime"`
} }
func GetApplicationCount(owner, field, value string) (int64, error) { func GetApplicationCount(owner, field, value string) (int64, error) {

View File

@@ -28,8 +28,9 @@ import (
) )
const ( const (
SigninWrongTimesLimit = 5 DefaultFailedSigninLimit = 5
LastSignWrongTimeDuration = time.Minute * 15 // DefaultFailedSigninfrozenTime The unit of frozen time is minutes
DefaultFailedSigninfrozenTime = 15
) )
func CheckUserSignup(application *Application, organization *Organization, form *form.AuthForm, lang string) string { 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 { 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) lastSignWrongTime, _ := time.Parse(time.RFC3339, user.LastSigninWrongTime)
passedTime := time.Now().UTC().Sub(lastSignWrongTime) 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 // 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 { if minutes > 0 {
@@ -479,7 +485,14 @@ func CheckToEnableCaptcha(application *Application, organization, username strin
if err != nil { if err != nil {
return false, err 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 return providerItem.Rule == "Always", nil
} }

View File

@@ -47,18 +47,42 @@ func resetUserSigninErrorTimes(user *User) error {
return err 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 { func recordSigninErrorInfo(user *User, lang string, options ...bool) error {
enableCaptcha := false enableCaptcha := false
if len(options) > 0 { if len(options) > 0 {
enableCaptcha = options[0] enableCaptcha = options[0]
} }
failedSigninLimit, failedSigninfrozenTime, errSignin := GetFailedSigninConfigByUser(user)
if errSignin != nil {
return errSignin
}
// increase failed login count // increase failed login count
if user.SigninWrongTimes < SigninWrongTimesLimit { if user.SigninWrongTimes < failedSigninLimit {
user.SigninWrongTimes++ user.SigninWrongTimes++
} }
if user.SigninWrongTimes >= SigninWrongTimesLimit { if user.SigninWrongTimes >= failedSigninLimit {
// record the latest failed login time // record the latest failed login time
user.LastSigninWrongTime = time.Now().UTC().Format(time.RFC3339) user.LastSigninWrongTime = time.Now().UTC().Format(time.RFC3339)
} }
@@ -69,7 +93,7 @@ func recordSigninErrorInfo(user *User, lang string, options ...bool) error {
return err return err
} }
leftChances := SigninWrongTimesLimit - user.SigninWrongTimes leftChances := failedSigninLimit - user.SigninWrongTimes
if leftChances == 0 && enableCaptcha { if leftChances == 0 && enableCaptcha {
return fmt.Errorf(i18n.Translate(lang, "check:password or code is incorrect")) return fmt.Errorf(i18n.Translate(lang, "check:password or code is incorrect"))
} else if leftChances >= 0 { } 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 // 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)
} }

View File

@@ -36,7 +36,7 @@ func getDialer(provider *Provider) *gomail.Dialer {
} }
func SendEmail(provider *Provider, title string, content string, dest string, sender string) error { func SendEmail(provider *Provider, title string, content string, dest string, sender string) error {
emailProvider := email.GetEmailProvider(provider.Type, provider.ClientId, provider.ClientSecret, provider.Host, provider.Port, provider.DisableSsl) emailProvider := email.GetEmailProvider(provider.Type, provider.ClientId, provider.ClientSecret, provider.Host, provider.Port, provider.DisableSsl, provider.Endpoint, provider.Method)
fromAddress := provider.ClientId2 fromAddress := provider.ClientId2
if fromAddress == "" { if fromAddress == "" {

View File

@@ -125,6 +125,10 @@ func (enforcer *Enforcer) GetId() string {
return fmt.Sprintf("%s/%s", enforcer.Owner, enforcer.Name) 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 { func (enforcer *Enforcer) InitEnforcer() error {
if enforcer.Enforcer != nil { if enforcer.Enforcer != nil {
return nil return nil

View File

@@ -271,7 +271,9 @@ func GetGroupUsers(groupId string) ([]*User, error) {
users := []*User{} users := []*User{}
owner, _ := util.GetOwnerAndNameFromId(groupId) owner, _ := util.GetOwnerAndNameFromId(groupId)
names, err := userEnforcer.GetUserNamesByGroupName(groupId) names, err := userEnforcer.GetUserNamesByGroupName(groupId)
if err != nil {
return nil, err
}
err = ormer.Engine.Where("owner = ?", owner).In("name", names).Find(&users) err = ormer.Engine.Where("owner = ?", owner).In("name", names).Find(&users)
if err != nil { if err != nil {
return nil, err return nil, err
@@ -303,6 +305,9 @@ func GroupChangeTrigger(oldName, newName string) error {
groups := []*Group{} groups := []*Group{}
err = session.Where("parent_id = ?", oldName).Find(&groups) err = session.Where("parent_id = ?", oldName).Find(&groups)
if err != nil {
return err
}
for _, group := range groups { for _, group := range groups {
group.ParentId = newName group.ParentId = newName
_, err := session.ID(core.PK{group.Owner, group.Name}).Cols("parent_id").Update(group) _, err := session.ID(core.PK{group.Owner, group.Name}).Cols("parent_id").Update(group)

View File

@@ -446,9 +446,8 @@ func GetMaskedPermissions(permissions []*Permission) []*Permission {
// as the policyFilter when the enforcer load policy). // as the policyFilter when the enforcer load policy).
func GroupPermissionsByModelAdapter(permissions []*Permission) map[string][]string { func GroupPermissionsByModelAdapter(permissions []*Permission) map[string][]string {
m := make(map[string][]string) m := make(map[string][]string)
for _, permission := range permissions { for _, permission := range permissions {
key := permission.Model + permission.Adapter key := permission.GetModelAndAdapter()
permissionIds, ok := m[key] permissionIds, ok := m[key]
if !ok { if !ok {
m[key] = []string{permission.GetId()} m[key] = []string{permission.GetId()}
@@ -464,9 +463,17 @@ func (p *Permission) GetId() string {
return util.GetId(p.Owner, p.Name) 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 { func (p *Permission) isUserHit(name string) bool {
targetOrg, targetName := util.GetOwnerAndNameFromId(name) targetOrg, targetName := util.GetOwnerAndNameFromId(name)
for _, user := range p.Users { for _, user := range p.Users {
if user == "*" {
return true
}
userOrg, userName := util.GetOwnerAndNameFromId(user) userOrg, userName := util.GetOwnerAndNameFromId(user)
if userOrg == targetOrg && (userName == "*" || userName == targetName) { if userOrg == targetOrg && (userName == "*" || userName == targetName) {
return true return true
@@ -480,9 +487,14 @@ func (p *Permission) isRoleHit(userId string) bool {
if err != nil { if err != nil {
return false return false
} }
for _, role := range p.Roles { for _, role := range p.Roles {
if role == "*" {
return true
}
for _, targetRole := range targetRoles { for _, targetRole := range targetRoles {
if targetRole.GetId() == role { if role == targetRole.GetId() {
return true return true
} }
} }

View File

@@ -37,7 +37,7 @@ type Provider struct {
SubType string `xorm:"varchar(100)" json:"subType"` SubType string `xorm:"varchar(100)" json:"subType"`
Method string `xorm:"varchar(100)" json:"method"` Method string `xorm:"varchar(100)" json:"method"`
ClientId string `xorm:"varchar(200)" json:"clientId"` ClientId string `xorm:"varchar(200)" json:"clientId"`
ClientSecret string `xorm:"varchar(2000)" json:"clientSecret"` ClientSecret string `xorm:"varchar(3000)" json:"clientSecret"`
ClientId2 string `xorm:"varchar(100)" json:"clientId2"` ClientId2 string `xorm:"varchar(100)" json:"clientId2"`
ClientSecret2 string `xorm:"varchar(500)" json:"clientSecret2"` ClientSecret2 string `xorm:"varchar(500)" json:"clientSecret2"`
Cert string `xorm:"varchar(100)" json:"cert"` Cert string `xorm:"varchar(100)" json:"cert"`
@@ -417,7 +417,7 @@ func FromProviderToIdpInfo(ctx *context.Context, provider *Provider) *idp.Provid
providerInfo.ClientId = provider.ClientId2 providerInfo.ClientId = provider.ClientId2
providerInfo.ClientSecret = provider.ClientSecret2 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 providerInfo.HostUrl = provider.Domain
} }

View File

@@ -9,7 +9,6 @@ import (
) )
// https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/sec_usr_radatt/configuration/xe-16/sec-usr-radatt-xe-16-book/sec-rad-ov-ietf-attr.html // https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/sec_usr_radatt/configuration/xe-16/sec-usr-radatt-xe-16-book/sec-rad-ov-ietf-attr.html
// https://support.huawei.com/enterprise/zh/doc/EDOC1000178159/35071f9a
type RadiusAccounting struct { type RadiusAccounting struct {
Owner string `xorm:"varchar(100) notnull pk" json:"owner"` Owner string `xorm:"varchar(100) notnull pk" json:"owner"`
Name string `xorm:"varchar(100) notnull pk" json:"name"` Name string `xorm:"varchar(100) notnull pk" json:"name"`

View File

@@ -271,6 +271,9 @@ func getRolesByUserInternal(userId string) ([]*Role, error) {
if err != nil { if err != nil {
return roles, err 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)) query := ormer.Engine.Alias("r").Where("r.users like ?", fmt.Sprintf("%%%s%%", userId))
for _, group := range user.Groups { for _, group := range user.Groups {

View File

@@ -15,9 +15,10 @@
package object package object
import ( import (
"bytes"
"fmt" "fmt"
"net/http" "net/http"
"net/url"
"strings"
"github.com/casdoor/casdoor/proxy" "github.com/casdoor/casdoor/proxy"
) )
@@ -41,18 +42,24 @@ func (c *HttpSmsClient) SendMessage(param map[string]string, targetPhoneNumber .
phoneNumber := targetPhoneNumber[0] phoneNumber := targetPhoneNumber[0]
content := param["code"] content := param["code"]
req, err := http.NewRequest(c.method, c.endpoint, bytes.NewBufferString(content)) var req *http.Request
if err != nil { var err error
return err
}
if c.method == "POST" { if c.method == "POST" {
req.Header.Set("Content-Type", "application/x-www-form-urlencoded") formValues := url.Values{}
req.PostForm = map[string][]string{ formValues.Set("phoneNumber", phoneNumber)
"phoneNumber": targetPhoneNumber, formValues.Set(c.paramName, content)
c.paramName: {content}, req, err = http.NewRequest(c.method, c.endpoint, strings.NewReader(formValues.Encode()))
if err != nil {
return err
} }
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
} else if c.method == "GET" { } else if c.method == "GET" {
req, err = http.NewRequest(c.method, c.endpoint, nil)
if err != nil {
return err
}
q := req.URL.Query() q := req.URL.Query()
q.Add("phoneNumber", phoneNumber) q.Add("phoneNumber", phoneNumber)
q.Add(c.paramName, content) q.Add(c.paramName, content)

View File

@@ -112,7 +112,10 @@ func getStorageProvider(provider *Provider, lang string) (oss.StorageInterface,
if provider.Domain == "" { if provider.Domain == "" {
provider.Domain = storageProvider.GetEndpoint() provider.Domain = storageProvider.GetEndpoint()
UpdateProvider(provider.GetId(), provider) _, err := UpdateProvider(provider.GetId(), provider)
if err != nil {
return nil, err
}
} }
return storageProvider, nil return storageProvider, nil
@@ -126,7 +129,12 @@ func uploadFile(provider *Provider, fullFilePath string, fileBuffer *bytes.Buffe
fileUrl, objectKey := GetUploadFileUrl(provider, fullFilePath, true) fileUrl, objectKey := GetUploadFileUrl(provider, fullFilePath, true)
_, err = storageProvider.Put(objectKey, fileBuffer) objectKeyRefined := objectKey
if provider.Type == "Google Cloud Storage" {
objectKeyRefined = strings.TrimPrefix(objectKeyRefined, "/")
}
_, err = storageProvider.Put(objectKeyRefined, fileBuffer)
if err != nil { if err != nil {
return "", "", err return "", "", err
} }

View File

@@ -117,6 +117,7 @@ type User struct {
Infoflow string `xorm:"infoflow varchar(100)" json:"infoflow"` Infoflow string `xorm:"infoflow varchar(100)" json:"infoflow"`
Apple string `xorm:"apple varchar(100)" json:"apple"` Apple string `xorm:"apple varchar(100)" json:"apple"`
AzureAD string `xorm:"azuread varchar(100)" json:"azuread"` AzureAD string `xorm:"azuread varchar(100)" json:"azuread"`
AzureADB2c string `xorm:"azureadb2c varchar(100)" json:"azureadb2c"`
Slack string `xorm:"slack varchar(100)" json:"slack"` Slack string `xorm:"slack varchar(100)" json:"slack"`
Steam string `xorm:"steam varchar(100)" json:"steam"` Steam string `xorm:"steam varchar(100)" json:"steam"`
Bilibili string `xorm:"bilibili varchar(100)" json:"bilibili"` 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", "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", "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", "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", "auth0", "battlenet", "bitbucket", "box", "cloudfoundry", "dailymotion", "deezer", "digitalocean", "discord", "dropbox",
"eveonline", "fitbit", "gitea", "heroku", "influxcloud", "instagram", "intercom", "kakao", "lastfm", "mailru", "meetup", "eveonline", "fitbit", "gitea", "heroku", "influxcloud", "instagram", "intercom", "kakao", "lastfm", "mailru", "meetup",
"microsoftonline", "naver", "nextcloud", "onedrive", "oura", "patreon", "paypal", "salesforce", "shopify", "soundcloud", "microsoftonline", "naver", "nextcloud", "onedrive", "oura", "patreon", "paypal", "salesforce", "shopify", "soundcloud",
@@ -1021,7 +1022,10 @@ func GenerateIdForNewUser(application *Application) (string, error) {
lastUserId := -1 lastUserId := -1
if lastUser != nil { if lastUser != nil {
lastUserId = util.ParseInt(lastUser.Id) lastUserId, err = util.ParseIntWithError(lastUser.Id)
if err != nil {
return util.GenerateId(), nil
}
} }
res := strconv.Itoa(lastUserId + 1) res := strconv.Itoa(lastUserId + 1)

View File

@@ -17,15 +17,16 @@ package radius
import ( import (
"fmt" "fmt"
"log" "log"
"strings"
"github.com/casdoor/casdoor/conf" "github.com/casdoor/casdoor/conf"
"github.com/casdoor/casdoor/object" "github.com/casdoor/casdoor/object"
"github.com/casdoor/casdoor/util"
"layeh.com/radius" "layeh.com/radius"
"layeh.com/radius/rfc2865" "layeh.com/radius/rfc2865"
"layeh.com/radius/rfc2866" "layeh.com/radius/rfc2866"
) )
// https://support.huawei.com/enterprise/zh/doc/EDOC1000178159/35071f9a#tab_3
func StartRadiusServer() { func StartRadiusServer() {
secret := conf.GetConfigString("radiusSecret") secret := conf.GetConfigString("radiusSecret")
server := radius.PacketServer{ server := radius.PacketServer{
@@ -74,6 +75,11 @@ func handleAccountingRequest(w radius.ResponseWriter, r *radius.Request) {
statusType := rfc2866.AcctStatusType_Get(r.Packet) statusType := rfc2866.AcctStatusType_Get(r.Packet)
username := rfc2865.UserName_GetString(r.Packet) username := rfc2865.UserName_GetString(r.Packet)
organization := rfc2865.Class_GetString(r.Packet) organization := rfc2865.Class_GetString(r.Packet)
if strings.Contains(username, "/") {
organization, username = util.GetOwnerAndNameFromId(username)
}
log.Printf("handleAccountingRequest() username=%v, org=%v, statusType=%v", username, organization, statusType) log.Printf("handleAccountingRequest() username=%v, org=%v, statusType=%v", username, organization, statusType)
w.Write(r.Response(radius.CodeAccountingResponse)) w.Write(r.Response(radius.CodeAccountingResponse))
var err error var err error

View File

@@ -22,12 +22,13 @@ import (
func NewAwsS3StorageProvider(clientId string, clientSecret string, region string, bucket string, endpoint string) oss.StorageInterface { func NewAwsS3StorageProvider(clientId string, clientSecret string, region string, bucket string, endpoint string) oss.StorageInterface {
sp := s3.New(&s3.Config{ sp := s3.New(&s3.Config{
AccessID: clientId, AccessID: clientId,
AccessKey: clientSecret, AccessKey: clientSecret,
Region: region, Region: region,
Bucket: bucket, Bucket: bucket,
Endpoint: endpoint, Endpoint: endpoint,
ACL: awss3.BucketCannedACLPublicRead, S3Endpoint: endpoint,
ACL: awss3.BucketCannedACLPublicRead,
}) })
return sp return sp

View File

@@ -19,13 +19,15 @@ import (
"github.com/casdoor/oss/googlecloud" "github.com/casdoor/oss/googlecloud"
) )
func NewGoogleCloudStorageProvider(clientId string, clientSecret string, bucket string, endpoint string) oss.StorageInterface { func NewGoogleCloudStorageProvider(clientSecret string, bucket string, endpoint string) oss.StorageInterface {
sp, _ := googlecloud.New(&googlecloud.Config{ sp, err := googlecloud.New(&googlecloud.Config{
AccessID: clientId, ServiceAccountJson: clientSecret,
AccessKey: clientSecret, Bucket: bucket,
Bucket: bucket, Endpoint: endpoint,
Endpoint: endpoint,
}) })
if err != nil {
panic(err)
}
return sp return sp
} }

View File

@@ -33,7 +33,7 @@ func GetStorageProvider(providerType string, clientId string, clientSecret strin
case "Qiniu Cloud Kodo": case "Qiniu Cloud Kodo":
return NewQiniuCloudKodoStorageProvider(clientId, clientSecret, region, bucket, endpoint) return NewQiniuCloudKodoStorageProvider(clientId, clientSecret, region, bucket, endpoint)
case "Google Cloud Storage": case "Google Cloud Storage":
return NewGoogleCloudStorageProvider(clientId, clientSecret, bucket, endpoint) return NewGoogleCloudStorageProvider(clientSecret, bucket, endpoint)
} }
return nil return nil

View File

@@ -45,6 +45,19 @@ func ParseInt(s string) int {
return i return i
} }
func ParseIntWithError(s string) (int, error) {
if s == "" {
return 0, fmt.Errorf("ParseIntWithError() error, empty string")
}
i, err := strconv.Atoi(s)
if err != nil {
return 0, err
}
return i, nil
}
func ParseFloat(s string) float64 { func ParseFloat(s string) float64 {
f, err := strconv.ParseFloat(s, 64) f, err := strconv.ParseFloat(s, 64)
if err != nil { if err != nil {

View File

@@ -32,6 +32,7 @@
"file-saver": "^2.0.5", "file-saver": "^2.0.5",
"i18n-iso-countries": "^7.0.0", "i18n-iso-countries": "^7.0.0",
"i18next": "^19.8.9", "i18next": "^19.8.9",
"jwt-decode": "^4.0.0",
"libphonenumber-js": "^1.10.19", "libphonenumber-js": "^1.10.19",
"moment": "^2.29.1", "moment": "^2.29.1",
"qrcode.react": "^3.1.0", "qrcode.react": "^3.1.0",

View File

@@ -13,7 +13,7 @@
// limitations under the License. // limitations under the License.
import React from "react"; 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 {CopyOutlined, LinkOutlined, UploadOutlined} from "@ant-design/icons";
import * as ApplicationBackend from "./backend/ApplicationBackend"; import * as ApplicationBackend from "./backend/ApplicationBackend";
import * as CertBackend from "./backend/CertBackend"; import * as CertBackend from "./backend/CertBackend";
@@ -199,7 +199,7 @@ class ApplicationEditPage extends React.Component {
} }
parseApplicationField(key, value) { parseApplicationField(key, value) {
if (["expireInHours", "refreshExpireInHours", "offset"].includes(key)) { if (["offset"].includes(key)) {
value = Setting.myParseInt(value); value = Setting.myParseInt(value);
} }
return 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"))} : {Setting.getLabel(i18next.t("application:Token expire"), i18next.t("application:Token expire - Tooltip"))} :
</Col> </Col>
<Col span={22} > <Col span={22} >
<Input style={{width: "150px"}} value={this.state.application.expireInHours} suffix="Hours" onChange={e => { <InputNumber style={{width: "150px"}} value={this.state.application.expireInHours} min={1} step={1} precision={0} addonAfter="Hours" onChange={value => {
this.updateApplicationField("expireInHours", e.target.value); this.updateApplicationField("expireInHours", value);
}} /> }} />
</Col> </Col>
</Row> </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"))} : {Setting.getLabel(i18next.t("application:Refresh token expire"), i18next.t("application:Refresh token expire - Tooltip"))} :
</Col> </Col>
<Col span={22} > <Col span={22} >
<Input style={{width: "150px"}} value={this.state.application.refreshExpireInHours} suffix="Hours" onChange={e => { <InputNumber style={{width: "150px"}} value={this.state.application.refreshExpireInHours} min={1} step={1} precision={0} addonAfter="Hours" onChange={value => {
this.updateApplicationField("refreshExpireInHours", e.target.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> </Col>
</Row> </Row>
@@ -676,7 +696,7 @@ class ApplicationEditPage extends React.Component {
<br /> <br />
<Button style={{marginBottom: "10px"}} type="primary" shape="round" icon={<CopyOutlined />} onClick={() => { <Button style={{marginBottom: "10px"}} type="primary" shape="round" icon={<CopyOutlined />} onClick={() => {
copy(`${window.location.origin}/api/saml/metadata?application=admin/${encodeURIComponent(this.state.applicationName)}`); 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")} {i18next.t("application:Copy SAML metadata URL")}
@@ -885,7 +905,7 @@ class ApplicationEditPage extends React.Component {
<Space> <Space>
<Button icon={<CopyOutlined />} onClick={() => { <Button icon={<CopyOutlined />} onClick={() => {
copy(item.code); 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")} {i18next.t("general:Copy")}
@@ -939,7 +959,7 @@ class ApplicationEditPage extends React.Component {
<Col span={previewGrid}> <Col span={previewGrid}>
<Button style={{marginBottom: "10px"}} type="primary" shape="round" icon={<CopyOutlined />} onClick={() => { <Button style={{marginBottom: "10px"}} type="primary" shape="round" icon={<CopyOutlined />} onClick={() => {
copy(`${window.location.origin}${signUpUrl}`); 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")} {i18next.t("application:Copy signup page URL")}
@@ -971,7 +991,7 @@ class ApplicationEditPage extends React.Component {
<Col span={previewGrid}> <Col span={previewGrid}>
<Button style={{marginBottom: "10px", marginTop: Setting.isMobile() ? "15px" : "0"}} type="primary" shape="round" icon={<CopyOutlined />} onClick={() => { <Button style={{marginBottom: "10px", marginTop: Setting.isMobile() ? "15px" : "0"}} type="primary" shape="round" icon={<CopyOutlined />} onClick={() => {
copy(`${window.location.origin}${signInUrl}`); 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")} {i18next.t("application:Copy signin page URL")}
@@ -1004,7 +1024,7 @@ class ApplicationEditPage extends React.Component {
<Col span={previewGrid}> <Col span={previewGrid}>
<Button style={{marginBottom: "10px"}} type="primary" shape="round" icon={<CopyOutlined />} onClick={() => { <Button style={{marginBottom: "10px"}} type="primary" shape="round" icon={<CopyOutlined />} onClick={() => {
copy(`${window.location.origin}${promptUrl}`); 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")} {i18next.t("application:Copy prompt page URL")}

View File

@@ -230,7 +230,7 @@ class CertEditPage extends React.Component {
<Col span={editorWidth} > <Col span={editorWidth} >
<Button style={{marginRight: "10px", marginBottom: "10px"}} disabled={this.state.cert.certificate === ""} onClick={() => { <Button style={{marginRight: "10px", marginBottom: "10px"}} disabled={this.state.cert.certificate === ""} onClick={() => {
copy(this.state.cert.certificate); 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")} {i18next.t("cert:Copy certificate")}
@@ -253,7 +253,7 @@ class CertEditPage extends React.Component {
<Col span={editorWidth} > <Col span={editorWidth} >
<Button style={{marginRight: "10px", marginBottom: "10px"}} disabled={this.state.cert.privateKey === ""} onClick={() => { <Button style={{marginRight: "10px", marginBottom: "10px"}} disabled={this.state.cert.privateKey === ""} onClick={() => {
copy(this.state.cert.privateKey); 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")} {i18next.t("cert:Copy private key")}

View File

@@ -287,7 +287,7 @@ class PricingEditPage extends React.Component {
<Col> <Col>
<Button style={{marginBottom: "10px", marginTop: Setting.isMobile() ? "15px" : "0"}} type="primary" shape="round" icon={<CopyOutlined />} onClick={() => { <Button style={{marginBottom: "10px", marginTop: Setting.isMobile() ? "15px" : "0"}} type="primary" shape="round" icon={<CopyOutlined />} onClick={() => {
copy(`${window.location.origin}${pricingUrl}`); 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")} {i18next.t("pricing:Copy pricing page URL")}

View File

@@ -197,6 +197,12 @@ class ProviderEditPage extends React.Component {
} else { } else {
return Setting.getLabel(i18next.t("provider:Client secret"), i18next.t("provider:Client secret - Tooltip")); return Setting.getLabel(i18next.t("provider:Client secret"), i18next.t("provider:Client secret - Tooltip"));
} }
case "Storage":
if (provider.type === "Google Cloud Storage") {
return Setting.getLabel(i18next.t("provider:Service account JSON"), i18next.t("provider:Service account JSON - Tooltip"));
} else {
return Setting.getLabel(i18next.t("provider:Client secret"), i18next.t("provider:Client secret - Tooltip"));
}
case "Email": case "Email":
if (provider.type === "Azure ACS") { if (provider.type === "Azure ACS") {
return Setting.getLabel(i18next.t("provider:Secret key"), i18next.t("provider:Secret key - Tooltip")); return Setting.getLabel(i18next.t("provider:Secret key"), i18next.t("provider:Secret key - Tooltip"));
@@ -305,6 +311,9 @@ class ProviderEditPage extends React.Component {
} else if (provider.type === "Infoflow") { } else if (provider.type === "Infoflow") {
text = i18next.t("provider:Agent ID"); text = i18next.t("provider:Agent ID");
tooltip = i18next.t("provider:Agent ID - Tooltip"); 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") { } else if (provider.category === "SMS") {
if (provider.type === "Twilio SMS" || provider.type === "Azure ACS") { if (provider.type === "Twilio SMS" || provider.type === "Azure ACS") {
@@ -522,9 +531,12 @@ class ProviderEditPage extends React.Component {
this.updateProviderField("customTokenUrl", "https://door.casdoor.com/api/login/oauth/access_token"); this.updateProviderField("customTokenUrl", "https://door.casdoor.com/api/login/oauth/access_token");
this.updateProviderField("customUserInfoUrl", "https://door.casdoor.com/api/userinfo"); this.updateProviderField("customUserInfoUrl", "https://door.casdoor.com/api/userinfo");
} else if (value === "Custom HTTP SMS") { } else if (value === "Custom HTTP SMS") {
this.updateProviderField("endpoint", "https://example.com/send-custom-http"); this.updateProviderField("endpoint", "https://example.com/send-custom-http-sms");
this.updateProviderField("method", "GET"); this.updateProviderField("method", "GET");
this.updateProviderField("title", "code"); this.updateProviderField("title", "code");
} else if (value === "Custom HTTP Email") {
this.updateProviderField("endpoint", "https://example.com/send-custom-http-email");
this.updateProviderField("method", "POST");
} else if (value === "Custom HTTP") { } else if (value === "Custom HTTP") {
this.updateProviderField("method", "GET"); this.updateProviderField("method", "GET");
this.updateProviderField("title", ""); this.updateProviderField("title", "");
@@ -676,6 +688,7 @@ class ProviderEditPage extends React.Component {
(this.state.provider.category === "Notification" && (this.state.provider.type === "Google Chat" || this.state.provider.type === "Custom HTTP")) ? null : ( (this.state.provider.category === "Notification" && (this.state.provider.type === "Google Chat" || this.state.provider.type === "Custom HTTP")) ? null : (
<React.Fragment> <React.Fragment>
{ {
(this.state.provider.category === "Storage" && this.state.provider.type === "Google Cloud Storage") ||
(this.state.provider.category === "Email" && this.state.provider.type === "Azure ACS") || (this.state.provider.category === "Email" && this.state.provider.type === "Azure ACS") ||
(this.state.provider.category === "Notification" && (this.state.provider.type === "Line" || this.state.provider.type === "Telegram" || this.state.provider.type === "Bark" || this.state.provider.type === "Discord" || this.state.provider.type === "Slack" || this.state.provider.type === "Pushbullet" || this.state.provider.type === "Pushover" || this.state.provider.type === "Lark" || this.state.provider.type === "Microsoft Teams")) ? null : ( (this.state.provider.category === "Notification" && (this.state.provider.type === "Line" || this.state.provider.type === "Telegram" || this.state.provider.type === "Bark" || this.state.provider.type === "Discord" || this.state.provider.type === "Slack" || this.state.provider.type === "Pushbullet" || this.state.provider.type === "Pushover" || this.state.provider.type === "Lark" || this.state.provider.type === "Microsoft Teams")) ? null : (
<Row style={{marginTop: "20px"}} > <Row style={{marginTop: "20px"}} >
@@ -748,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"}} > <Row style={{marginTop: "20px"}} >
<Col style={{marginTop: "5px"}} span={2}> <Col style={{marginTop: "5px"}} span={2}>
{Setting.getLabel(i18next.t("provider:Domain"), i18next.t("provider:Domain - Tooltip"))} : {Setting.getLabel(i18next.t("provider:Domain"), i18next.t("provider:Domain - Tooltip"))} :
@@ -761,7 +774,7 @@ class ProviderEditPage extends React.Component {
</Row> </Row>
) )
} }
{this.state.provider.category === "Storage" || this.state.provider.type === "Custom HTTP SMS" ? ( {this.state.provider.category === "Storage" || ["Custom HTTP SMS", "Custom HTTP Email"].includes(this.state.provider.type) ? (
<div> <div>
{["Local File System"].includes(this.state.provider.type) ? null : ( {["Local File System"].includes(this.state.provider.type) ? null : (
<Row style={{marginTop: "20px"}} > <Row style={{marginTop: "20px"}} >
@@ -1010,7 +1023,7 @@ class ProviderEditPage extends React.Component {
) )
} }
{ {
!["Custom HTTP SMS"].includes(this.state.provider.type) ? null : ( !["Custom HTTP SMS", "Custom HTTP Email"].includes(this.state.provider.type) ? null : (
<React.Fragment> <React.Fragment>
<Row style={{marginTop: "20px"}} > <Row style={{marginTop: "20px"}} >
<Col style={{marginTop: "5px"}} span={2}> <Col style={{marginTop: "5px"}} span={2}>
@@ -1150,7 +1163,7 @@ class ProviderEditPage extends React.Component {
<Col span={1}> <Col span={1}>
<Button type="primary" onClick={() => { <Button type="primary" onClick={() => {
copy(`${authConfig.serverUrl}/api/acs`); 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")} {i18next.t("provider:Copy")}
</Button> </Button>
@@ -1166,7 +1179,7 @@ class ProviderEditPage extends React.Component {
<Col span={1}> <Col span={1}>
<Button type="primary" onClick={() => { <Button type="primary" onClick={() => {
copy(`${authConfig.serverUrl}/api/acs`); 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")} {i18next.t("provider:Copy")}
</Button> </Button>
@@ -1195,7 +1208,7 @@ class ProviderEditPage extends React.Component {
(this.state.provider.type === "Alipay") ? ( (this.state.provider.type === "Alipay") ? (
<Row style={{marginTop: "20px"}} > <Row style={{marginTop: "20px"}} >
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}> <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>
<Col span={22} > <Col span={22} >
<Select virtual={false} style={{width: "100%"}} value={this.state.provider.metadata} onChange={(value => {this.updateProviderField("metadata", value);})}> <Select virtual={false} style={{width: "100%"}} value={this.state.provider.metadata} onChange={(value => {this.updateProviderField("metadata", value);})}>

View File

@@ -248,7 +248,7 @@ class ResourceListPage extends BaseListPage {
<div> <div>
<Button onClick={() => { <Button onClick={() => {
copy(record.url); 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")} {i18next.t("resource:Copy Link")}

View File

@@ -169,6 +169,10 @@ export const OtherProviderInfo = {
logo: `${StaticBaseUrl}/img/social_azure.png`, logo: `${StaticBaseUrl}/img/social_azure.png`,
url: "https://learn.microsoft.com/zh-cn/azure/communication-services", url: "https://learn.microsoft.com/zh-cn/azure/communication-services",
}, },
"Custom HTTP Email": {
logo: `${StaticBaseUrl}/img/social_default.png`,
url: "https://casdoor.org/docs/provider/email/overview",
},
}, },
Storage: { Storage: {
"Local File System": { "Local File System": {
@@ -920,7 +924,8 @@ export function getProviderTypeOptions(category) {
{id: "Casdoor", name: "Casdoor"}, {id: "Casdoor", name: "Casdoor"},
{id: "Infoflow", name: "Infoflow"}, {id: "Infoflow", name: "Infoflow"},
{id: "Apple", name: "Apple"}, {id: "Apple", name: "Apple"},
{id: "AzureAD", name: "AzureAD"}, {id: "AzureAD", name: "Azure AD"},
{id: "AzureADB2C", name: "Azure AD B2C"},
{id: "Slack", name: "Slack"}, {id: "Slack", name: "Slack"},
{id: "Steam", name: "Steam"}, {id: "Steam", name: "Steam"},
{id: "Bilibili", name: "Bilibili"}, {id: "Bilibili", name: "Bilibili"},
@@ -985,6 +990,7 @@ export function getProviderTypeOptions(category) {
{id: "SUBMAIL", name: "SUBMAIL"}, {id: "SUBMAIL", name: "SUBMAIL"},
{id: "Mailtrap", name: "Mailtrap"}, {id: "Mailtrap", name: "Mailtrap"},
{id: "Azure ACS", name: "Azure ACS"}, {id: "Azure ACS", name: "Azure ACS"},
{id: "Custom HTTP Email", name: "Custom HTTP Email"},
] ]
); );
} else if (category === "SMS") { } else if (category === "SMS") {

View File

@@ -280,12 +280,12 @@ class SubscriptionEditPage extends React.Component {
this.updateSubscriptionField("state", value); this.updateSubscriptionField("state", value);
})} })}
options={[ options={[
{value: "Pending", name: i18next.t("permission:Pending")}, {value: "Pending", name: i18next.t("subscription:Pending")},
{value: "Active", name: i18next.t("permission:Active")}, {value: "Active", name: i18next.t("subscription:Active")},
{value: "Upcoming", name: i18next.t("permission:Upcoming")}, {value: "Upcoming", name: i18next.t("subscription:Upcoming")},
{value: "Expired", name: i18next.t("permission:Expired")}, {value: "Expired", name: i18next.t("subscription:Expired")},
{value: "Error", name: i18next.t("permission:Error")}, {value: "Error", name: i18next.t("subscription:Error")},
{value: "Suspended", name: i18next.t("permission:Suspended")}, {value: "Suspended", name: i18next.t("subscription:Suspended")},
].map((item) => Setting.getOption(item.name, item.value))} ].map((item) => Setting.getOption(item.name, item.value))}
/> />
</Col> </Col>

View File

@@ -201,17 +201,17 @@ class SubscriptionListPage extends BaseListPage {
render: (text, record, index) => { render: (text, record, index) => {
switch (text) { switch (text) {
case "Pending": case "Pending":
return Setting.getTag("processing", i18next.t("permission:Pending"), <ExclamationCircleOutlined />); return Setting.getTag("processing", i18next.t("subscription:Pending"), <ExclamationCircleOutlined />);
case "Active": case "Active":
return Setting.getTag("success", i18next.t("permission:Active"), <SyncOutlined spin />); return Setting.getTag("success", i18next.t("subscription:Active"), <SyncOutlined spin />);
case "Upcoming": case "Upcoming":
return Setting.getTag("warning", i18next.t("permission:Upcoming"), <ClockCircleOutlined />); return Setting.getTag("warning", i18next.t("subscription:Upcoming"), <ClockCircleOutlined />);
case "Expired": case "Expired":
return Setting.getTag("warning", i18next.t("permission:Expired"), <ClockCircleOutlined />); return Setting.getTag("warning", i18next.t("subscription:Expired"), <ClockCircleOutlined />);
case "Error": case "Error":
return Setting.getTag("error", i18next.t("permission:Error"), <CloseCircleOutlined />); return Setting.getTag("error", i18next.t("subscription:Error"), <CloseCircleOutlined />);
case "Suspended": case "Suspended":
return Setting.getTag("default", i18next.t("permission:Suspended"), <MinusCircleOutlined />); return Setting.getTag("default", i18next.t("subscription:Suspended"), <MinusCircleOutlined />);
default: default:
return null; return null;
} }

View File

@@ -17,6 +17,10 @@ import {Button, Card, Col, Input, Row} from "antd";
import * as TokenBackend from "./backend/TokenBackend"; import * as TokenBackend from "./backend/TokenBackend";
import * as Setting from "./Setting"; import * as Setting from "./Setting";
import i18next from "i18next"; import i18next from "i18next";
import copy from "copy-to-clipboard";
import {jwtDecode} from "jwt-decode";
const {TextArea} = Input;
class TokenEditPage extends React.Component { class TokenEditPage extends React.Component {
constructor(props) { 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() { renderToken() {
const editorWidth = Setting.isMobile() ? 22 : 9;
const parsedResult = this.parseAccessToken(this.state.token.accessToken);
return ( return (
<Card size="small" title={ <Card size="small" title={
<div> <div>
@@ -81,7 +98,7 @@ class TokenEditPage extends React.Component {
} style={(Setting.isMobile()) ? {margin: "5px"} : {}} type="inner"> } style={(Setting.isMobile()) ? {margin: "5px"} : {}} type="inner">
<Row style={{marginTop: "10px"}} > <Row style={{marginTop: "10px"}} >
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}> <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>
<Col span={22} > <Col span={22} >
<Input value={this.state.token.name} onChange={e => { <Input value={this.state.token.name} onChange={e => {
@@ -91,7 +108,7 @@ class TokenEditPage extends React.Component {
</Row> </Row>
<Row style={{marginTop: "20px"}} > <Row style={{marginTop: "20px"}} >
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}> <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>
<Col span={22} > <Col span={22} >
<Input value={this.state.token.application} onChange={e => { <Input value={this.state.token.application} onChange={e => {
@@ -101,7 +118,7 @@ class TokenEditPage extends React.Component {
</Row> </Row>
<Row style={{marginTop: "20px"}} > <Row style={{marginTop: "20px"}} >
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}> <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>
<Col span={22} > <Col span={22} >
<Input disabled={!Setting.isAdminUser(this.props.account)} value={this.state.token.organization} onChange={e => { <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>
<Row style={{marginTop: "20px"}} > <Row style={{marginTop: "20px"}} >
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}> <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>
<Col span={22} > <Col span={22} >
<Input value={this.state.token.user} onChange={e => { <Input value={this.state.token.user} onChange={e => {
@@ -121,7 +138,7 @@ class TokenEditPage extends React.Component {
</Row> </Row>
<Row style={{marginTop: "20px"}} > <Row style={{marginTop: "20px"}} >
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}> <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>
<Col span={22} > <Col span={22} >
<Input value={this.state.token.code} onChange={e => { <Input value={this.state.token.code} onChange={e => {
@@ -131,17 +148,7 @@ class TokenEditPage extends React.Component {
</Row> </Row>
<Row style={{marginTop: "20px"}} > <Row style={{marginTop: "20px"}} >
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}> <Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
{i18next.t("token:Access token")}: {Setting.getLabel(i18next.t("token:Expires in"), i18next.t("token:Expires in - Tooltip"))} :
</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")}:
</Col> </Col>
<Col span={22} > <Col span={22} >
<Input value={this.state.token.expiresIn} onChange={e => { <Input value={this.state.token.expiresIn} onChange={e => {
@@ -151,7 +158,7 @@ class TokenEditPage extends React.Component {
</Row> </Row>
<Row style={{marginTop: "20px"}} > <Row style={{marginTop: "20px"}} >
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}> <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>
<Col span={22} > <Col span={22} >
<Input value={this.state.token.scope} onChange={e => { <Input value={this.state.token.scope} onChange={e => {
@@ -161,7 +168,7 @@ class TokenEditPage extends React.Component {
</Row> </Row>
<Row style={{marginTop: "20px"}} > <Row style={{marginTop: "20px"}} >
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}> <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>
<Col span={22} > <Col span={22} >
<Input value={this.state.token.tokenType} onChange={e => { <Input value={this.state.token.tokenType} onChange={e => {
@@ -169,6 +176,37 @@ class TokenEditPage extends React.Component {
}} /> }} />
</Col> </Col>
</Row> </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> </Card>
); );
} }

View File

@@ -374,12 +374,9 @@ class UserEditPage extends React.Component {
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}> <Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
{Setting.getLabel(i18next.t("general:Avatar"), i18next.t("general:Avatar - Tooltip"))} : {Setting.getLabel(i18next.t("general:Avatar"), i18next.t("general:Avatar - Tooltip"))} :
</Col> </Col>
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}> {
{i18next.t("general:Preview")}: this.renderImage(this.state.user.avatar, i18next.t("user:Upload a photo"), i18next.t("user:Set new profile picture"), "avatar", false)
</Col> }
<Col>
{this.renderImage(this.state.user.avatar, i18next.t("user:Upload a photo"), i18next.t("user:Set new profile picture"), "avatar", false)}
</Col>
</Row> </Row>
); );
} else if (accountItem.name === "User type") { } else if (accountItem.name === "User type") {
@@ -550,9 +547,6 @@ class UserEditPage extends React.Component {
</Col> </Col>
<Col span={22} > <Col span={22} >
<Row style={{marginTop: "20px"}} > <Row style={{marginTop: "20px"}} >
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
{i18next.t("general:Preview")}:
</Col>
{ {
[ [
{name: "ID card front", value: "idCardFront"}, {name: "ID card front", value: "idCardFront"},
@@ -975,7 +969,7 @@ class UserEditPage extends React.Component {
renderImage(imgUrl, title, set, tag, disabled) { renderImage(imgUrl, title, set, tag, disabled) {
return ( return (
<Col span={4} style={{textAlign: "center", margin: "auto"}} key={tag}> <Col span={4} style={{textAlign: "center", margin: "auto", marginLeft: "20px"}} key={tag}>
{ {
imgUrl ? imgUrl ?
<div style={{marginBottom: "10px"}}> <div style={{marginBottom: "10px"}}>
@@ -986,7 +980,7 @@ class UserEditPage extends React.Component {
: :
<Col style={{height: "78%", border: "1px dotted grey", borderRadius: 3, marginBottom: "10px"}}> <Col style={{height: "78%", border: "1px dotted grey", borderRadius: 3, marginBottom: "10px"}}>
<div style={{fontSize: 30, margin: 10}}>+</div> <div style={{fontSize: 30, margin: 10}}>+</div>
<div style={{verticalAlign: "middle", marginBottom: 10}}>{`Upload ${title}...`}</div> <div style={{verticalAlign: "middle", marginBottom: 10}}>{`(${i18next.t("general:empty")})`}</div>
</Col> </Col>
} }
<CropperDivModal disabled={disabled} tag={tag} setTitle={set} buttonText={`${title}...`} title={title} user={this.state.user} organization={this.state.organizations.find(organization => organization.name === this.state.organizationName)} /> <CropperDivModal disabled={disabled} tag={tag} setTitle={set} buttonText={`${title}...`} title={title} user={this.state.user} organization={this.state.organizations.find(organization => organization.name === this.state.organizationName)} />

View File

@@ -325,6 +325,10 @@ class UserListPage extends BaseListPage {
sorter: true, sorter: true,
...this.getColumnSearchProps("tag"), ...this.getColumnSearchProps("tag"),
render: (text, record, index) => { render: (text, record, index) => {
if (this.state.organization?.tags?.length === 0) {
return text;
}
const tagMap = {}; const tagMap = {};
this.state.organization?.tags?.map((tag, index) => { this.state.organization?.tags?.map((tag, index) => {
const tokens = tag.split("|"); const tokens = tag.split("|");

View 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;

View File

@@ -16,11 +16,11 @@ import {createButton} from "react-social-login-buttons";
import {StaticBaseUrl} from "../Setting"; import {StaticBaseUrl} from "../Setting";
function Icon({width = 24, height = 24, color}) { 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 = { const config = {
text: "Sign in with AzureAD", text: "Sign in with Azure AD",
icon: Icon, icon: Icon,
iconFormat: name => `fa fa-${name}`, iconFormat: name => `fa fa-${name}`,
style: {background: "#ffffff", color: "#000000"}, style: {background: "#ffffff", color: "#000000"},

View File

@@ -100,6 +100,10 @@ const authInfo = {
scope: "user.read", scope: "user.read",
endpoint: "https://login.microsoftonline.com/common/oauth2/v2.0/authorize", 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: { Slack: {
scope: "users:read", scope: "users:read",
endpoint: "https://slack.com/oauth/authorize", 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 === "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") { || 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}`; 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") { } else if (provider.type === "DingTalk") {
return `${endpoint}?client_id=${provider.clientId}&redirect_uri=${redirectUri}&scope=${scope}&response_type=code&prompt=consent&state=${state}`; return `${endpoint}?client_id=${provider.clientId}&redirect_uri=${redirectUri}&scope=${scope}&response_type=code&prompt=consent&state=${state}`;
} else if (provider.type === "WeChat") { } else if (provider.type === "WeChat") {

View File

@@ -35,6 +35,7 @@ import AlipayLoginButton from "./AlipayLoginButton";
import InfoflowLoginButton from "./InfoflowLoginButton"; import InfoflowLoginButton from "./InfoflowLoginButton";
import AppleLoginButton from "./AppleLoginButton"; import AppleLoginButton from "./AppleLoginButton";
import AzureADLoginButton from "./AzureADLoginButton"; import AzureADLoginButton from "./AzureADLoginButton";
import AzureADB2CLoginButton from "./AzureADB2CLoginButton";
import SlackLoginButton from "./SlackLoginButton"; import SlackLoginButton from "./SlackLoginButton";
import SteamLoginButton from "./SteamLoginButton"; import SteamLoginButton from "./SteamLoginButton";
import BilibiliLoginButton from "./BilibiliLoginButton"; import BilibiliLoginButton from "./BilibiliLoginButton";
@@ -85,6 +86,8 @@ function getSigninButton(provider) {
return <AppleLoginButton text={text} align={"center"} />; return <AppleLoginButton text={text} align={"center"} />;
} else if (provider.type === "AzureAD") { } else if (provider.type === "AzureAD") {
return <AzureADLoginButton text={text} align={"center"} />; return <AzureADLoginButton text={text} align={"center"} />;
} else if (provider.type === "AzureADB2C") {
return <AzureADB2CLoginButton text={text} align={"center"} />;
} else if (provider.type === "Slack") { } else if (provider.type === "Slack") {
return <SlackLoginButton text={text} align={"center"} />; return <SlackLoginButton text={text} align={"center"} />;
} else if (provider.type === "Steam") { } else if (provider.type === "Steam") {

View File

@@ -27,18 +27,10 @@ export const MfaVerifyTotpForm = ({mfaProps, onFinish}) => {
<Col span={24}> <Col span={24}>
<Space> <Space>
<Input value={mfaProps.secret} /> <Input value={mfaProps.secret} />
<Button <Button type="primary" shape="round" icon={<CopyOutlined />} onClick={() => {
type="primary" copy(`${mfaProps.secret}`);
shape="round" Setting.showMessage("success", i18next.t("general:Copied to clipboard successfully"));
icon={<CopyOutlined />} }} />
onClick={() => {
copy(`${mfaProps.secret}`);
Setting.showMessage(
"success",
i18next.t("mfa:Multi-factor secret to clipboard successfully")
);
}}
/>
</Space> </Space>
</Col> </Col>
</React.Fragment> </React.Fragment>

View File

@@ -153,11 +153,12 @@ export function sendCode(captchaType, captchaToken, clientSecret, method, countr
}); });
} }
export function verifyCaptcha(captchaType, captchaToken, clientSecret) { export function verifyCaptcha(owner, name, captchaType, captchaToken, clientSecret) {
const formData = new FormData(); const formData = new FormData();
formData.append("captchaType", captchaType); formData.append("captchaType", captchaType);
formData.append("captchaToken", captchaToken); formData.append("captchaToken", captchaToken);
formData.append("clientSecret", clientSecret); formData.append("clientSecret", clientSecret);
formData.append("applicationId", `${owner}/${name}`);
return fetch(`${Setting.ServerUrl}/api/verify-captcha`, { return fetch(`${Setting.ServerUrl}/api/verify-captcha`, {
method: "POST", method: "POST",
credentials: "include", credentials: "include",

View File

@@ -50,7 +50,7 @@ export const CaptchaPreview = (props) => {
}; };
const onOk = (captchaType, captchaToken, clientSecret) => { const onOk = (captchaType, captchaToken, clientSecret) => {
UserBackend.verifyCaptcha(captchaType, captchaToken, clientSecret).then(() => { UserBackend.verifyCaptcha(owner, name, captchaType, captchaToken, clientSecret).then(() => {
setVisible(false); setVisible(false);
}); });
}; };

View File

@@ -12,7 +12,9 @@
"Policies": "Policies", "Policies": "Policies",
"Policies - Tooltip": "Casbin policy rules", "Policies - Tooltip": "Casbin policy rules",
"Rule type": "Rule type", "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": { "application": {
"Always": "Always", "Always": "Always",
@@ -30,6 +32,8 @@
"Edit Application": "Edit Application", "Edit Application": "Edit Application",
"Enable Email linking": "Enable Email linking", "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 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": "Enable SAML compression",
"Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp", "Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp",
"Enable WebAuthn signin": "Enable WebAuthn signin", "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 signin session - Tooltip": "Whether Casdoor maintains a session after logging into Casdoor from the application",
"Enable signup": "Enable signup", "Enable signup": "Enable signup",
"Enable signup - Tooltip": "Whether to allow users to register a new account", "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", "Failed to sign in": "Failed to sign in",
"File uploaded successfully": "File uploaded successfully", "File uploaded successfully": "File uploaded successfully",
"First, last": "First, last", "First, last": "First, last",
@@ -60,7 +68,6 @@
"Input": "Input", "Input": "Input",
"Invitation code": "Invitation code", "Invitation code": "Invitation code",
"Invitation code - Tooltip": "Invitation code - Tooltip", "Invitation code - Tooltip": "Invitation code - Tooltip",
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
"Left": "Left", "Left": "Left",
"Logged in successfully": "Logged in successfully", "Logged in successfully": "Logged in successfully",
"Logged out successfully": "Logged out successfully", "Logged out successfully": "Logged out successfully",
@@ -73,7 +80,6 @@
"Please input your application!": "Please input your application!", "Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!", "Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Please select a HTML file", "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", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Redirect URL", "Redirect URL": "Redirect URL",
@@ -86,7 +92,6 @@
"Rule": "Rule", "Rule": "Rule",
"SAML metadata": "SAML metadata", "SAML metadata": "SAML metadata",
"SAML metadata - Tooltip": "The metadata of SAML protocol", "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", "SAML reply URL": "SAML reply URL",
"Select": "Select", "Select": "Select",
"Side panel HTML": "Side panel HTML", "Side panel HTML": "Side panel HTML",
@@ -95,11 +100,9 @@
"Sign Up Error": "Sign Up Error", "Sign Up Error": "Sign Up Error",
"Signin": "Signin", "Signin": "Signin",
"Signin (Default True)": "Signin (Default True)", "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", "Signin session": "Signin session",
"Signup items": "Signup items", "Signup items": "Signup items",
"Signup items - Tooltip": "Items for users to fill in when registering new accounts", "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", "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", "The application does not allow to sign up new account": "The application does not allow to sign up new account",
"Token expire": "Token expire", "Token expire": "Token expire",
@@ -113,7 +116,6 @@
"Bit size - Tooltip": "Secret key length", "Bit size - Tooltip": "Secret key length",
"Certificate": "Certificate", "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 - 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 certificate": "Copy certificate",
"Copy private key": "Copy private key", "Copy private key": "Copy private key",
"Crypto algorithm": "Crypto algorithm", "Crypto algorithm": "Crypto algorithm",
@@ -126,7 +128,6 @@
"New Cert": "New Cert", "New Cert": "New Cert",
"Private key": "Private key", "Private key": "Private key",
"Private key - Tooltip": "Private key corresponding to the public key certificate", "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", "Scope - Tooltip": "Usage scenarios of the certificate",
"Type - Tooltip": "Type of certificate" "Type - Tooltip": "Type of certificate"
}, },
@@ -191,6 +192,7 @@
"Click to Upload": "Click to Upload", "Click to Upload": "Click to Upload",
"Close": "Close", "Close": "Close",
"Confirm": "Confirm", "Confirm": "Confirm",
"Copied to clipboard successfully": "Copied to clipboard successfully",
"Copy": "Copy", "Copy": "Copy",
"Created time": "Created time", "Created time": "Created time",
"Custom": "Custom", "Custom": "Custom",
@@ -200,6 +202,8 @@
"Default application - Tooltip": "Default application for users registered directly from the organization page", "Default application - Tooltip": "Default application for users registered directly from the organization page",
"Default avatar": "Default avatar", "Default avatar": "Default avatar",
"Default avatar - Tooltip": "Default avatar used when newly registered users do not set an avatar image", "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", "Delete": "Delete",
"Description": "Description", "Description": "Description",
"Description - Tooltip": "Detailed description information for reference, Casdoor itself will not use it", "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 connect to server": "Failed to connect to server",
"Failed to delete": "Failed to delete", "Failed to delete": "Failed to delete",
"Failed to enable": "Failed to enable", "Failed to enable": "Failed to enable",
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
"Failed to remove": "Failed to remove", "Failed to remove": "Failed to remove",
"Failed to save": "Failed to save", "Failed to save": "Failed to save",
"Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization", "Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
@@ -251,6 +257,8 @@
"MFA items - Tooltip": "MFA items - Tooltip", "MFA items - Tooltip": "MFA items - Tooltip",
"Master password": "Master password", "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 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", "Menu": "Menu",
"Method": "Method", "Method": "Method",
"Model": "Model", "Model": "Model",
@@ -272,6 +280,8 @@
"Password salt - Tooltip": "Random parameter used for password encryption", "Password salt - Tooltip": "Random parameter used for password encryption",
"Password type": "Password type", "Password type": "Password type",
"Password type - Tooltip": "Storage format of passwords in the database", "Password type - Tooltip": "Storage format of passwords in the database",
"Payment": "Payment",
"Payment - Tooltip": "Payment - Tooltip",
"Payments": "Payments", "Payments": "Payments",
"Permissions": "Permissions", "Permissions": "Permissions",
"Permissions - Tooltip": "Permissions owned by this user", "Permissions - Tooltip": "Permissions owned by this user",
@@ -283,6 +293,8 @@
"Plans - Tooltip": "Plans - Tooltip", "Plans - Tooltip": "Plans - Tooltip",
"Preview": "Preview", "Preview": "Preview",
"Preview - Tooltip": "Preview the configured effects", "Preview - Tooltip": "Preview the configured effects",
"Pricing": "Pricing",
"Pricing - Tooltip": "Pricing - Tooltip",
"Pricings": "Pricings", "Pricings": "Pricings",
"Products": "Products", "Products": "Products",
"Provider": "Provider", "Provider": "Provider",
@@ -296,6 +308,10 @@
"Role - Tooltip": "Role - Tooltip", "Role - Tooltip": "Role - Tooltip",
"Roles": "Roles", "Roles": "Roles",
"Roles - Tooltip": "Roles that the user belongs to", "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": "Save",
"Save & Exit": "Save & Exit", "Save & Exit": "Save & Exit",
"Session ID": "Session ID", "Session ID": "Session ID",
@@ -318,6 +334,7 @@
"Successfully removed": "Successfully removed", "Successfully removed": "Successfully removed",
"Successfully saved": "Successfully saved", "Successfully saved": "Successfully saved",
"Successfully sent": "Successfully sent", "Successfully sent": "Successfully sent",
"Successfully synced": "Successfully synced",
"Supported country codes": "Supported country codes", "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", "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", "Sure to delete": "Sure to delete",
@@ -440,7 +457,6 @@
"Multi-factor methods": "Multi-factor methods", "Multi-factor methods": "Multi-factor methods",
"Multi-factor recover": "Multi-factor recover", "Multi-factor recover": "Multi-factor recover",
"Multi-factor recover description": "Multi-factor recover description", "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", "Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
"Passcode": "Passcode", "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", "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": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"Price per month": "Price per month", "Period": "Period",
"Price per month - Tooltip": "Price per month - Tooltip", "Period - Tooltip": "Period - Tooltip",
"Price per year": "Price per year", "Price": "Price",
"Price per year - Tooltip": "Price per year - Tooltip", "Price - Tooltip": "Price - Tooltip",
"per month": "per month" "Related product": "Related product",
"per month": "per month",
"per year": "per year"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "Copy pricing page URL", "Copy pricing page URL": "Copy pricing page URL",
@@ -589,7 +607,7 @@
"Trial duration": "Trial duration", "Trial duration": "Trial duration",
"Trial duration - Tooltip": "Trial duration period", "Trial duration - Tooltip": "Trial duration period",
"days trial available!": "days trial available!", "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": { "product": {
"Alipay": "Alipay", "Alipay": "Alipay",
@@ -600,17 +618,16 @@
"Detail - Tooltip": "Detail of product", "Detail - Tooltip": "Detail of product",
"Dummy": "Dummy", "Dummy": "Dummy",
"Edit Product": "Edit Product", "Edit Product": "Edit Product",
"I have completed the payment": "I have completed the payment",
"Image": "Image", "Image": "Image",
"Image - Tooltip": "Image of product", "Image - Tooltip": "Image of product",
"New Product": "New Product", "New Product": "New Product",
"Pay": "Pay", "Pay": "Pay",
"PayPal": "PayPal", "PayPal": "PayPal",
"Payment cancelled": "Payment cancelled",
"Payment failed": "Payment failed",
"Payment providers": "Payment providers", "Payment providers": "Payment providers",
"Payment providers - Tooltip": "Providers of payment services", "Payment providers - Tooltip": "Providers of payment services",
"Placing order...": "Placing order...", "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": "Price",
"Price - Tooltip": "Price of product", "Price - Tooltip": "Price of product",
"Quantity": "Quantity", "Quantity": "Quantity",
@@ -672,8 +689,8 @@
"Content": "Content", "Content": "Content",
"Content - Tooltip": "Content - Tooltip", "Content - Tooltip": "Content - Tooltip",
"Copy": "Copy", "Copy": "Copy",
"DB Test": "DB Test", "DB test": "DB test",
"DB Test - Tooltip": "DB Test - Tooltip", "DB test - Tooltip": "DB test - Tooltip",
"Disable SSL": "Disable SSL", "Disable SSL": "Disable SSL",
"Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server", "Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server",
"Domain": "Domain", "Domain": "Domain",
@@ -700,7 +717,10 @@
"Internal": "Internal", "Internal": "Internal",
"Issuer URL": "Issuer URL", "Issuer URL": "Issuer URL",
"Issuer URL - Tooltip": "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": "Metadata",
"Metadata - Tooltip": "SAML metadata", "Metadata - Tooltip": "SAML metadata",
"Method - Tooltip": "Login method, QR code or silent login", "Method - Tooltip": "Login method, QR code or silent login",
@@ -754,6 +774,10 @@
"Sender Id - Tooltip": "Sender Id - Tooltip", "Sender Id - Tooltip": "Sender Id - Tooltip",
"Sender number": "Sender number", "Sender number": "Sender number",
"Sender number - Tooltip": "Sender number - Tooltip", "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": "Sign Name",
"Sign Name - Tooltip": "Name of the signature to be used", "Sign Name - Tooltip": "Name of the signature to be used",
"Sign request": "Sign request", "Sign request": "Sign request",
@@ -764,12 +788,15 @@
"Signup HTML": "Signup HTML", "Signup HTML": "Signup HTML",
"Signup HTML - Edit": "Signup HTML - Edit", "Signup HTML - Edit": "Signup HTML - Edit",
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style", "Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
"Signup group": "Signup group",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Site key", "Site key": "Site key",
"Site key - Tooltip": "Site key", "Site key - Tooltip": "Site key",
"Sliding Validation": "Sliding Validation", "Sliding Validation": "Sliding Validation",
"Sub type": "Sub type", "Sub type": "Sub type",
"Sub type - Tooltip": "Sub type", "Sub type - Tooltip": "Sub type",
"Team ID": "Team ID",
"Team ID - Tooltip": "Team ID - Tooltip",
"Template code": "Template code", "Template code": "Template code",
"Template code - Tooltip": "Template code", "Template code - Tooltip": "Template code",
"Test Email": "Test Email", "Test Email": "Test Email",
@@ -780,6 +807,8 @@
"Token URL - Tooltip": "Token URL", "Token URL - Tooltip": "Token URL",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Select a type", "Type - Tooltip": "Select a type",
"User flow": "User flow",
"User flow - Tooltip": "User flow - Tooltip",
"User mapping": "User mapping", "User mapping": "User mapping",
"User mapping - Tooltip": "User mapping - Tooltip", "User mapping - Tooltip": "User mapping - Tooltip",
"UserInfo URL": "UserInfo URL", "UserInfo URL": "UserInfo URL",
@@ -801,6 +830,8 @@
"New Role": "New Role", "New Role": "New Role",
"Sub domains": "Sub domains", "Sub domains": "Sub domains",
"Sub domains - Tooltip": "Domains included in the current role", "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": "Sub roles",
"Sub roles - Tooltip": "Roles included in the current role", "Sub roles - Tooltip": "Roles included in the current role",
"Sub users": "Sub users", "Sub users": "Sub users",
@@ -812,6 +843,9 @@
"Confirm": "Confirm", "Confirm": "Confirm",
"Decline": "Decline", "Decline": "Decline",
"Have account?": "Have account?", "Have account?": "Have account?",
"Label": "Label",
"Label HTML": "Label HTML",
"Placeholder": "Placeholder",
"Please accept the agreement!": "Please accept the agreement!", "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 click the below button to sign in": "Please click the below button to sign in",
"Please confirm your password!": "Please confirm your password!", "Please confirm your password!": "Please confirm your password!",
@@ -830,6 +864,11 @@
"Please select your country/region!": "Please select your country/region!", "Please select your country/region!": "Please select your country/region!",
"Terms of Use": "Terms of Use", "Terms of Use": "Terms of Use",
"Terms of Use - Tooltip": "Terms of use that users need to read and agree to during registration", "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 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 invoice title!": "The input is not invoice title!",
"The input is not valid Email!": "The input is not valid Email!", "The input is not valid Email!": "The input is not valid Email!",
@@ -841,14 +880,19 @@
"sign in now": "sign in now" "sign in now": "sign in now"
}, },
"subscription": { "subscription": {
"Duration": "Duration", "Active": "Active",
"Duration - Tooltip": "Subscription duration",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "End date", "End time": "End time",
"End date - Tooltip": "End date", "End time - Tooltip": "End time - Tooltip",
"Error": "Error",
"Expired": "Expired",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Start date": "Start date", "Pending": "Pending",
"Start date - Tooltip": "Start date" "Period": "Period",
"Start time": "Start time",
"Start time - Tooltip": "Start time - Tooltip",
"Suspended": "Suspended",
"Upcoming": "Upcoming"
}, },
"syncer": { "syncer": {
"Affiliation table": "Affiliation table", "Affiliation table": "Affiliation table",
@@ -872,6 +916,8 @@
"Is read-only": "Is read-only", "Is read-only": "Is read-only",
"Is read-only - Tooltip": "Is read-only - Tooltip", "Is read-only - Tooltip": "Is read-only - Tooltip",
"New Syncer": "New Syncer", "New Syncer": "New Syncer",
"SSL mode": "SSL mode",
"SSL mode - Tooltip": "SSL mode - Tooltip",
"Sync interval": "Sync interval", "Sync interval": "Sync interval",
"Sync interval - Tooltip": "Unit in seconds", "Sync interval - Tooltip": "Unit in seconds",
"Table": "Table", "Table": "Table",
@@ -913,11 +959,19 @@
}, },
"token": { "token": {
"Access token": "Access token", "Access token": "Access token",
"Access token - Tooltip": "Access token - Tooltip",
"Authorization code": "Authorization code", "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", "Edit Token": "Edit Token",
"Expires in": "Expires in", "Expires in": "Expires in",
"Expires in - Tooltip": "Expires in - Tooltip",
"New Token": "New Token", "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": { "user": {
"3rd-party logins": "3rd-party logins", "3rd-party logins": "3rd-party logins",
@@ -974,6 +1028,8 @@
"Managed accounts": "Managed accounts", "Managed accounts": "Managed accounts",
"Modify password...": "Modify password...", "Modify password...": "Modify password...",
"Multi-factor authentication": "Multi-factor authentication", "Multi-factor authentication": "Multi-factor authentication",
"Name": "Name",
"Name format": "Name format",
"New Email": "New Email", "New Email": "New Email",
"New Password": "New Password", "New Password": "New Password",
"New User": "New User", "New User": "New User",
@@ -1011,6 +1067,7 @@
"Upload ID card front picture": "Upload ID card front picture", "Upload ID card front picture": "Upload ID card front picture",
"Upload ID card with person picture": "Upload ID card with person picture", "Upload ID card with person picture": "Upload ID card with person picture",
"Upload a photo": "Upload a photo", "Upload a photo": "Upload a photo",
"Value": "Value",
"Values": "Values", "Values": "Values",
"Verification code sent": "Verification code sent", "Verification code sent": "Verification code sent",
"WebAuthn credentials": "WebAuthn credentials", "WebAuthn credentials": "WebAuthn credentials",

View File

@@ -12,7 +12,9 @@
"Policies": "Richtlinien", "Policies": "Richtlinien",
"Policies - Tooltip": "Casbin Richtlinienregeln", "Policies - Tooltip": "Casbin Richtlinienregeln",
"Rule type": "Rule type", "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": { "application": {
"Always": "Immer", "Always": "Immer",
@@ -30,6 +32,8 @@
"Edit Application": "Bearbeitungsanwendung", "Edit Application": "Bearbeitungsanwendung",
"Enable Email linking": "E-Mail-Verknüpfung aktivieren", "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 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": "Aktivieren Sie SAML-Komprimierung",
"Enable SAML compression - Tooltip": "Ob SAML-Antwortnachrichten komprimiert werden sollen, wenn Casdoor als SAML-IdP verwendet wird", "Enable SAML compression - Tooltip": "Ob SAML-Antwortnachrichten komprimiert werden sollen, wenn Casdoor als SAML-IdP verwendet wird",
"Enable WebAuthn signin": "Anmeldung mit WebAuthn aktivieren", "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 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": "Registrierung aktivieren",
"Enable signup - Tooltip": "Ob Benutzern erlaubt werden soll, ein neues Konto zu registrieren", "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", "Failed to sign in": "Fehler bei der Anmeldung",
"File uploaded successfully": "Datei erfolgreich hochgeladen", "File uploaded successfully": "Datei erfolgreich hochgeladen",
"First, last": "First, last", "First, last": "First, last",
@@ -60,7 +68,6 @@
"Input": "Input", "Input": "Input",
"Invitation code": "Invitation code", "Invitation code": "Invitation code",
"Invitation code - Tooltip": "Invitation code - Tooltip", "Invitation code - Tooltip": "Invitation code - Tooltip",
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
"Left": "Links", "Left": "Links",
"Logged in successfully": "Erfolgreich eingeloggt", "Logged in successfully": "Erfolgreich eingeloggt",
"Logged out successfully": "Erfolgreich ausgeloggt", "Logged out successfully": "Erfolgreich ausgeloggt",
@@ -73,7 +80,6 @@
"Please input your application!": "Bitte geben Sie Ihre Anwendung ein!", "Please input your application!": "Bitte geben Sie Ihre Anwendung ein!",
"Please input your organization!": "Bitte geben Sie Ihre Organisation ein!", "Please input your organization!": "Bitte geben Sie Ihre Organisation ein!",
"Please select a HTML file": "Bitte wählen Sie eine HTML-Datei aus", "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", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Weiterleitungs-URL", "Redirect URL": "Weiterleitungs-URL",
@@ -86,7 +92,6 @@
"Rule": "Regel", "Rule": "Regel",
"SAML metadata": "SAML-Metadaten", "SAML metadata": "SAML-Metadaten",
"SAML metadata - Tooltip": "Die Metadaten des SAML-Protokolls", "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", "SAML reply URL": "SAML Reply-URL",
"Select": "Select", "Select": "Select",
"Side panel HTML": "Sidepanel-HTML", "Side panel HTML": "Sidepanel-HTML",
@@ -95,11 +100,9 @@
"Sign Up Error": "Registrierungsfehler", "Sign Up Error": "Registrierungsfehler",
"Signin": "Signin", "Signin": "Signin",
"Signin (Default True)": "Signin (Default True)", "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", "Signin session": "Anmeldesession",
"Signup items": "Registrierungs Items", "Signup items": "Registrierungs Items",
"Signup items - Tooltip": "Items, die Benutzer ausfüllen müssen, wenn sie neue Konten registrieren", "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", "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", "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", "Token expire": "Token läuft ab",
@@ -113,7 +116,6 @@
"Bit size - Tooltip": "Länge des Secret-Keys", "Bit size - Tooltip": "Länge des Secret-Keys",
"Certificate": "Zertifikat", "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 - 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 certificate": "Kopieren Sie das Zertifikat",
"Copy private key": "Private-Key kopieren", "Copy private key": "Private-Key kopieren",
"Crypto algorithm": "Kryptoalgorithmus", "Crypto algorithm": "Kryptoalgorithmus",
@@ -126,7 +128,6 @@
"New Cert": "Neues Zertifikat", "New Cert": "Neues Zertifikat",
"Private key": "Private-Key", "Private key": "Private-Key",
"Private key - Tooltip": "Privater Schlüssel, der zum öffentlichen Schlüsselzertifikat gehört", "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", "Scope - Tooltip": "Nutzungsszenarien des Zertifikats",
"Type - Tooltip": "Art des Zertifikats" "Type - Tooltip": "Art des Zertifikats"
}, },
@@ -191,6 +192,7 @@
"Click to Upload": "Klicken Sie zum Hochladen", "Click to Upload": "Klicken Sie zum Hochladen",
"Close": "Schließen", "Close": "Schließen",
"Confirm": "Confirm", "Confirm": "Confirm",
"Copied to clipboard successfully": "Copied to clipboard successfully",
"Copy": "Copy", "Copy": "Copy",
"Created time": "Erstellte Zeit", "Created time": "Erstellte Zeit",
"Custom": "Custom", "Custom": "Custom",
@@ -200,6 +202,8 @@
"Default application - Tooltip": "Standard-Anwendung für Benutzer, die direkt von der Organisationsseite registriert wurden", "Default application - Tooltip": "Standard-Anwendung für Benutzer, die direkt von der Organisationsseite registriert wurden",
"Default avatar": "Standard-Avatar", "Default avatar": "Standard-Avatar",
"Default avatar - Tooltip": "Standard-Avatar, der verwendet wird, wenn neu registrierte Benutzer kein Avatar-Bild festlegen", "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", "Delete": "Löschen",
"Description": "Beschreibung", "Description": "Beschreibung",
"Description - Tooltip": "Detaillierte Beschreibungsinformationen zur Referenz, Casdoor selbst wird es nicht verwenden", "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 connect to server": "Die Verbindung zum Server konnte nicht hergestellt werden",
"Failed to delete": "Konnte nicht gelöscht werden", "Failed to delete": "Konnte nicht gelöscht werden",
"Failed to enable": "Failed to enable", "Failed to enable": "Failed to enable",
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
"Failed to remove": "Failed to remove", "Failed to remove": "Failed to remove",
"Failed to save": "Konnte nicht gespeichert werden", "Failed to save": "Konnte nicht gespeichert werden",
"Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "Favicon-URL, die auf allen Casdoor-Seiten der Organisation verwendet wird", "Favicon - Tooltip": "Favicon-URL, die auf allen Casdoor-Seiten der Organisation verwendet wird",
@@ -251,6 +257,8 @@
"MFA items - Tooltip": "MFA items - Tooltip", "MFA items - Tooltip": "MFA items - Tooltip",
"Master password": "Hauptpasswort", "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 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ü", "Menu": "Menü",
"Method": "Methode", "Method": "Methode",
"Model": "Modell", "Model": "Modell",
@@ -272,6 +280,8 @@
"Password salt - Tooltip": "Zufälliger Parameter, der für die Verschlüsselung von Passwörtern verwendet wird", "Password salt - Tooltip": "Zufälliger Parameter, der für die Verschlüsselung von Passwörtern verwendet wird",
"Password type": "Passworttyp", "Password type": "Passworttyp",
"Password type - Tooltip": "Speicherformat von Passwörtern in der Datenbank", "Password type - Tooltip": "Speicherformat von Passwörtern in der Datenbank",
"Payment": "Payment",
"Payment - Tooltip": "Payment - Tooltip",
"Payments": "Zahlungen", "Payments": "Zahlungen",
"Permissions": "Rechte", "Permissions": "Rechte",
"Permissions - Tooltip": "Berechtigungen, die diesem Benutzer gehören", "Permissions - Tooltip": "Berechtigungen, die diesem Benutzer gehören",
@@ -283,6 +293,8 @@
"Plans - Tooltip": "Plans - Tooltip", "Plans - Tooltip": "Plans - Tooltip",
"Preview": "Vorschau", "Preview": "Vorschau",
"Preview - Tooltip": "Vorschau der konfigurierten Effekte", "Preview - Tooltip": "Vorschau der konfigurierten Effekte",
"Pricing": "Pricing",
"Pricing - Tooltip": "Pricing - Tooltip",
"Pricings": "Preise", "Pricings": "Preise",
"Products": "Produkte", "Products": "Produkte",
"Provider": "Anbieter", "Provider": "Anbieter",
@@ -296,6 +308,10 @@
"Role - Tooltip": "Role - Tooltip", "Role - Tooltip": "Role - Tooltip",
"Roles": "Rollen", "Roles": "Rollen",
"Roles - Tooltip": "Rollen, denen der Benutzer angehört", "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": "Speichern",
"Save & Exit": "Speichern und verlassen", "Save & Exit": "Speichern und verlassen",
"Session ID": "Session-ID", "Session ID": "Session-ID",
@@ -318,6 +334,7 @@
"Successfully removed": "Successfully removed", "Successfully removed": "Successfully removed",
"Successfully saved": "Erfolgreich gespeichert", "Successfully saved": "Erfolgreich gespeichert",
"Successfully sent": "Successfully sent", "Successfully sent": "Successfully sent",
"Successfully synced": "Successfully synced",
"Supported country codes": "Unterstützte Ländercodes", "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", "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", "Sure to delete": "Sicher zu löschen",
@@ -440,7 +457,6 @@
"Multi-factor methods": "Multi-factor methods", "Multi-factor methods": "Multi-factor methods",
"Multi-factor recover": "Multi-factor recover", "Multi-factor recover": "Multi-factor recover",
"Multi-factor recover description": "Multi-factor recover description", "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", "Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
"Passcode": "Passcode", "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", "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": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"Price per month": "Price per month", "Period": "Period",
"Price per month - Tooltip": "Price per month - Tooltip", "Period - Tooltip": "Period - Tooltip",
"Price per year": "Price per year", "Price": "Price",
"Price per year - Tooltip": "Price per year - Tooltip", "Price - Tooltip": "Price - Tooltip",
"per month": "pro Monat" "Related product": "Related product",
"per month": "pro Monat",
"per year": "per year"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "Preisseite URL kopieren", "Copy pricing page URL": "Preisseite URL kopieren",
@@ -589,7 +607,7 @@
"Trial duration": "Testphase Dauer", "Trial duration": "Testphase Dauer",
"Trial duration - Tooltip": "Dauer der Testphase", "Trial duration - Tooltip": "Dauer der Testphase",
"days trial available!": "Tage Testphase verfügbar!", "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": { "product": {
"Alipay": "Alipay", "Alipay": "Alipay",
@@ -600,17 +618,16 @@
"Detail - Tooltip": "Detail des Produkts", "Detail - Tooltip": "Detail des Produkts",
"Dummy": "Dummy", "Dummy": "Dummy",
"Edit Product": "Produkt bearbeiten", "Edit Product": "Produkt bearbeiten",
"I have completed the payment": "Ich habe die Zahlung abgeschlossen",
"Image": "Bild", "Image": "Bild",
"Image - Tooltip": "Bild des Produkts", "Image - Tooltip": "Bild des Produkts",
"New Product": "Neues Produkt", "New Product": "Neues Produkt",
"Pay": "Zahlen", "Pay": "Zahlen",
"PayPal": "PayPal", "PayPal": "PayPal",
"Payment cancelled": "Payment cancelled",
"Payment failed": "Payment failed",
"Payment providers": "Zahlungsprovider", "Payment providers": "Zahlungsprovider",
"Payment providers - Tooltip": "Provider von Zahlungsdiensten", "Payment providers - Tooltip": "Provider von Zahlungsdiensten",
"Placing order...": "Bestellung aufgeben...", "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": "Preis",
"Price - Tooltip": "Preis des Produkts", "Price - Tooltip": "Preis des Produkts",
"Quantity": "Menge", "Quantity": "Menge",
@@ -672,8 +689,8 @@
"Content": "Content", "Content": "Content",
"Content - Tooltip": "Content - Tooltip", "Content - Tooltip": "Content - Tooltip",
"Copy": "Kopieren", "Copy": "Kopieren",
"DB Test": "DB Test", "DB test": "DB test",
"DB Test - Tooltip": "DB Test - Tooltip", "DB test - Tooltip": "DB test - Tooltip",
"Disable SSL": "SSL deaktivieren", "Disable SSL": "SSL deaktivieren",
"Disable SSL - Tooltip": "Ob die Deaktivierung des SSL-Protokolls bei der Kommunikation mit dem STMP-Server erfolgen soll", "Disable SSL - Tooltip": "Ob die Deaktivierung des SSL-Protokolls bei der Kommunikation mit dem STMP-Server erfolgen soll",
"Domain": "Domäne", "Domain": "Domäne",
@@ -700,7 +717,10 @@
"Internal": "Internal", "Internal": "Internal",
"Issuer URL": "Issuer-URL", "Issuer URL": "Issuer-URL",
"Issuer URL - Tooltip": "Emittenten-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": "Metadaten",
"Metadata - Tooltip": "SAML-Metadaten", "Metadata - Tooltip": "SAML-Metadaten",
"Method - Tooltip": "Anmeldeverfahren, QR-Code oder Silent-Login", "Method - Tooltip": "Anmeldeverfahren, QR-Code oder Silent-Login",
@@ -754,6 +774,10 @@
"Sender Id - Tooltip": "Sender Id - Tooltip", "Sender Id - Tooltip": "Sender Id - Tooltip",
"Sender number": "Sender number", "Sender number": "Sender number",
"Sender number - Tooltip": "Sender number - Tooltip", "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": "Signatur Namen",
"Sign Name - Tooltip": "Name der Signatur, die verwendet werden soll", "Sign Name - Tooltip": "Name der Signatur, die verwendet werden soll",
"Sign request": "Unterschriftsanforderung", "Sign request": "Unterschriftsanforderung",
@@ -764,12 +788,15 @@
"Signup HTML": "Registrierungs-HTML", "Signup HTML": "Registrierungs-HTML",
"Signup HTML - Edit": "Registrierung HTML - Bearbeiten", "Signup HTML - Edit": "Registrierung HTML - Bearbeiten",
"Signup HTML - Tooltip": "Benutzerdefiniertes HTML zur Ersetzung des Standard-Registrierungs-Seitenstils", "Signup HTML - Tooltip": "Benutzerdefiniertes HTML zur Ersetzung des Standard-Registrierungs-Seitenstils",
"Signup group": "Signup group",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Site-Key", "Site key": "Site-Key",
"Site key - Tooltip": "Seitenschlüssel", "Site key - Tooltip": "Seitenschlüssel",
"Sliding Validation": "Sliding Validation", "Sliding Validation": "Sliding Validation",
"Sub type": "Untertyp", "Sub type": "Untertyp",
"Sub type - Tooltip": "Unterart", "Sub type - Tooltip": "Unterart",
"Team ID": "Team ID",
"Team ID - Tooltip": "Team ID - Tooltip",
"Template code": "Template-Code", "Template code": "Template-Code",
"Template code - Tooltip": "Template-Code", "Template code - Tooltip": "Template-Code",
"Test Email": "Test E-Mail", "Test Email": "Test E-Mail",
@@ -780,6 +807,8 @@
"Token URL - Tooltip": "Token-URL", "Token URL - Tooltip": "Token-URL",
"Type": "Typ", "Type": "Typ",
"Type - Tooltip": "Wählen Sie einen Typ aus", "Type - Tooltip": "Wählen Sie einen Typ aus",
"User flow": "User flow",
"User flow - Tooltip": "User flow - Tooltip",
"User mapping": "User mapping", "User mapping": "User mapping",
"User mapping - Tooltip": "User mapping - Tooltip", "User mapping - Tooltip": "User mapping - Tooltip",
"UserInfo URL": "UserInfo-URL", "UserInfo URL": "UserInfo-URL",
@@ -801,6 +830,8 @@
"New Role": "Neue Rolle", "New Role": "Neue Rolle",
"Sub domains": "Subdomains", "Sub domains": "Subdomains",
"Sub domains - Tooltip": "In der aktuellen Rolle enthaltene Domains", "Sub domains - Tooltip": "In der aktuellen Rolle enthaltene Domains",
"Sub groups": "Sub groups",
"Sub groups - Tooltip": "Sub groups - Tooltip",
"Sub roles": "Unterrollen", "Sub roles": "Unterrollen",
"Sub roles - Tooltip": "Rollen, die in der aktuellen Rolle enthalten sind", "Sub roles - Tooltip": "Rollen, die in der aktuellen Rolle enthalten sind",
"Sub users": "Unterbenutzer", "Sub users": "Unterbenutzer",
@@ -812,6 +843,9 @@
"Confirm": "Bestätigen", "Confirm": "Bestätigen",
"Decline": "Abnahme", "Decline": "Abnahme",
"Have account?": "Haben Sie ein Konto?", "Have account?": "Haben Sie ein Konto?",
"Label": "Label",
"Label HTML": "Label HTML",
"Placeholder": "Placeholder",
"Please accept the agreement!": "Bitte akzeptieren Sie die Vereinbarung!", "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 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!", "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!", "Please select your country/region!": "Bitte wählen Sie Ihr Land/Ihre Region aus!",
"Terms of Use": "Nutzungsbedingungen", "Terms of Use": "Nutzungsbedingungen",
"Terms of Use - Tooltip": "Nutzungsbedingungen, die Benutzer während der Registrierung lesen und akzeptieren müssen", "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 Tax ID!": "Die Eingabe ist keine Rechnungssteuer-ID!",
"The input is not invoice title!": "Der Eingabewert ist nicht die Rechnungsbezeichnung!", "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!", "The input is not valid Email!": "Die Eingabe ist keine gültige E-Mail-Adresse!",
@@ -841,14 +880,19 @@
"sign in now": "Jetzt anmelden" "sign in now": "Jetzt anmelden"
}, },
"subscription": { "subscription": {
"Duration": "Laufzeit", "Active": "Active",
"Duration - Tooltip": "Laufzeit des Abonnements",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "Enddatum", "End time": "End time",
"End date - Tooltip": "Enddatum", "End time - Tooltip": "End time - Tooltip",
"Error": "Error",
"Expired": "Expired",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Start date": "Startdatum", "Pending": "Pending",
"Start date - Tooltip": "Startdatum" "Period": "Period",
"Start time": "Start time",
"Start time - Tooltip": "Start time - Tooltip",
"Suspended": "Suspended",
"Upcoming": "Upcoming"
}, },
"syncer": { "syncer": {
"Affiliation table": "Zuordnungstabelle", "Affiliation table": "Zuordnungstabelle",
@@ -872,6 +916,8 @@
"Is read-only": "Is read-only", "Is read-only": "Is read-only",
"Is read-only - Tooltip": "Is read-only - Tooltip", "Is read-only - Tooltip": "Is read-only - Tooltip",
"New Syncer": "Neuer Syncer", "New Syncer": "Neuer Syncer",
"SSL mode": "SSL mode",
"SSL mode - Tooltip": "SSL mode - Tooltip",
"Sync interval": "Synchronisierungsintervall", "Sync interval": "Synchronisierungsintervall",
"Sync interval - Tooltip": "Einheit in Sekunden", "Sync interval - Tooltip": "Einheit in Sekunden",
"Table": "Tabelle", "Table": "Tabelle",
@@ -913,11 +959,19 @@
}, },
"token": { "token": {
"Access token": "Access-Token", "Access token": "Access-Token",
"Access token - Tooltip": "Access token - Tooltip",
"Authorization code": "Authorisierungscode", "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", "Edit Token": "Edit-Token bearbeiten",
"Expires in": "läuft ab in", "Expires in": "läuft ab in",
"Expires in - Tooltip": "Expires in - Tooltip",
"New Token": "Neuer Token", "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": { "user": {
"3rd-party logins": "Drittanbieter-Logins", "3rd-party logins": "Drittanbieter-Logins",
@@ -974,6 +1028,8 @@
"Managed accounts": "Verwaltete Konten", "Managed accounts": "Verwaltete Konten",
"Modify password...": "Passwort ändern...", "Modify password...": "Passwort ändern...",
"Multi-factor authentication": "Multi-factor authentication", "Multi-factor authentication": "Multi-factor authentication",
"Name": "Name",
"Name format": "Name format",
"New Email": "Neue E-Mail", "New Email": "Neue E-Mail",
"New Password": "Neues Passwort", "New Password": "Neues Passwort",
"New User": "Neuer Benutzer", "New User": "Neuer Benutzer",
@@ -1011,6 +1067,7 @@
"Upload ID card front picture": "Upload ID card front picture", "Upload ID card front picture": "Upload ID card front picture",
"Upload ID card with person picture": "Upload ID card with person picture", "Upload ID card with person picture": "Upload ID card with person picture",
"Upload a photo": "Lade ein Foto hoch", "Upload a photo": "Lade ein Foto hoch",
"Value": "Value",
"Values": "Werte", "Values": "Werte",
"Verification code sent": "Bestätigungscode gesendet", "Verification code sent": "Bestätigungscode gesendet",
"WebAuthn credentials": "WebAuthn-Anmeldeinformationen", "WebAuthn credentials": "WebAuthn-Anmeldeinformationen",

View File

@@ -12,7 +12,9 @@
"Policies": "Policies", "Policies": "Policies",
"Policies - Tooltip": "Casbin policy rules", "Policies - Tooltip": "Casbin policy rules",
"Rule type": "Rule type", "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": { "application": {
"Always": "Always", "Always": "Always",
@@ -30,6 +32,8 @@
"Edit Application": "Edit Application", "Edit Application": "Edit Application",
"Enable Email linking": "Enable Email linking", "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 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": "Enable SAML compression",
"Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp", "Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp",
"Enable WebAuthn signin": "Enable WebAuthn signin", "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 signin session - Tooltip": "Whether Casdoor maintains a session after logging into Casdoor from the application",
"Enable signup": "Enable signup", "Enable signup": "Enable signup",
"Enable signup - Tooltip": "Whether to allow users to register a new account", "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", "Failed to sign in": "Failed to sign in",
"File uploaded successfully": "File uploaded successfully", "File uploaded successfully": "File uploaded successfully",
"First, last": "First, last", "First, last": "First, last",
@@ -60,7 +68,6 @@
"Input": "Input", "Input": "Input",
"Invitation code": "Invitation code", "Invitation code": "Invitation code",
"Invitation code - Tooltip": "Invitation code - Tooltip", "Invitation code - Tooltip": "Invitation code - Tooltip",
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
"Left": "Left", "Left": "Left",
"Logged in successfully": "Logged in successfully", "Logged in successfully": "Logged in successfully",
"Logged out successfully": "Logged out successfully", "Logged out successfully": "Logged out successfully",
@@ -73,7 +80,6 @@
"Please input your application!": "Please input your application!", "Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!", "Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Please select a HTML file", "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", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Redirect URL", "Redirect URL": "Redirect URL",
@@ -86,7 +92,6 @@
"Rule": "Rule", "Rule": "Rule",
"SAML metadata": "SAML metadata", "SAML metadata": "SAML metadata",
"SAML metadata - Tooltip": "The metadata of SAML protocol", "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", "SAML reply URL": "SAML reply URL",
"Select": "Select", "Select": "Select",
"Side panel HTML": "Side panel HTML", "Side panel HTML": "Side panel HTML",
@@ -95,11 +100,9 @@
"Sign Up Error": "Sign Up Error", "Sign Up Error": "Sign Up Error",
"Signin": "Signin", "Signin": "Signin",
"Signin (Default True)": "Signin (Default True)", "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", "Signin session": "Signin session",
"Signup items": "Signup items", "Signup items": "Signup items",
"Signup items - Tooltip": "Items for users to fill in when registering new accounts", "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", "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", "The application does not allow to sign up new account": "The application does not allow to sign up new account",
"Token expire": "Token expire", "Token expire": "Token expire",
@@ -113,7 +116,6 @@
"Bit size - Tooltip": "Secret key length", "Bit size - Tooltip": "Secret key length",
"Certificate": "Certificate", "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 - 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 certificate": "Copy certificate",
"Copy private key": "Copy private key", "Copy private key": "Copy private key",
"Crypto algorithm": "Crypto algorithm", "Crypto algorithm": "Crypto algorithm",
@@ -126,7 +128,6 @@
"New Cert": "New Cert", "New Cert": "New Cert",
"Private key": "Private key", "Private key": "Private key",
"Private key - Tooltip": "Private key corresponding to the public key certificate", "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", "Scope - Tooltip": "Usage scenarios of the certificate",
"Type - Tooltip": "Type of certificate" "Type - Tooltip": "Type of certificate"
}, },
@@ -191,6 +192,7 @@
"Click to Upload": "Click to Upload", "Click to Upload": "Click to Upload",
"Close": "Close", "Close": "Close",
"Confirm": "Confirm", "Confirm": "Confirm",
"Copied to clipboard successfully": "Copied to clipboard successfully",
"Copy": "Copy", "Copy": "Copy",
"Created time": "Created time", "Created time": "Created time",
"Custom": "Custom", "Custom": "Custom",
@@ -200,6 +202,8 @@
"Default application - Tooltip": "Default application for users registered directly from the organization page", "Default application - Tooltip": "Default application for users registered directly from the organization page",
"Default avatar": "Default avatar", "Default avatar": "Default avatar",
"Default avatar - Tooltip": "Default avatar used when newly registered users do not set an avatar image", "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", "Delete": "Delete",
"Description": "Description", "Description": "Description",
"Description - Tooltip": "Detailed description information for reference, Casdoor itself will not use it", "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 connect to server": "Failed to connect to server",
"Failed to delete": "Failed to delete", "Failed to delete": "Failed to delete",
"Failed to enable": "Failed to enable", "Failed to enable": "Failed to enable",
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
"Failed to remove": "Failed to remove", "Failed to remove": "Failed to remove",
"Failed to save": "Failed to save", "Failed to save": "Failed to save",
"Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization", "Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
@@ -251,6 +257,8 @@
"MFA items - Tooltip": "MFA items - Tooltip", "MFA items - Tooltip": "MFA items - Tooltip",
"Master password": "Master password", "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 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", "Menu": "Menu",
"Method": "Method", "Method": "Method",
"Model": "Model", "Model": "Model",
@@ -272,6 +280,8 @@
"Password salt - Tooltip": "Random parameter used for password encryption", "Password salt - Tooltip": "Random parameter used for password encryption",
"Password type": "Password type", "Password type": "Password type",
"Password type - Tooltip": "Storage format of passwords in the database", "Password type - Tooltip": "Storage format of passwords in the database",
"Payment": "Payment",
"Payment - Tooltip": "Payment - Tooltip",
"Payments": "Payments", "Payments": "Payments",
"Permissions": "Permissions", "Permissions": "Permissions",
"Permissions - Tooltip": "Permissions owned by this user", "Permissions - Tooltip": "Permissions owned by this user",
@@ -283,6 +293,8 @@
"Plans - Tooltip": "Plans - Tooltip", "Plans - Tooltip": "Plans - Tooltip",
"Preview": "Preview", "Preview": "Preview",
"Preview - Tooltip": "Preview the configured effects", "Preview - Tooltip": "Preview the configured effects",
"Pricing": "Pricing",
"Pricing - Tooltip": "Pricing - Tooltip",
"Pricings": "Pricings", "Pricings": "Pricings",
"Products": "Products", "Products": "Products",
"Provider": "Provider", "Provider": "Provider",
@@ -296,6 +308,10 @@
"Role - Tooltip": "Role - Tooltip", "Role - Tooltip": "Role - Tooltip",
"Roles": "Roles", "Roles": "Roles",
"Roles - Tooltip": "Roles that the user belongs to", "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": "Save",
"Save & Exit": "Save & Exit", "Save & Exit": "Save & Exit",
"Session ID": "Session ID", "Session ID": "Session ID",
@@ -318,6 +334,7 @@
"Successfully removed": "Successfully removed", "Successfully removed": "Successfully removed",
"Successfully saved": "Successfully saved", "Successfully saved": "Successfully saved",
"Successfully sent": "Successfully sent", "Successfully sent": "Successfully sent",
"Successfully synced": "Successfully synced",
"Supported country codes": "Supported country codes", "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", "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", "Sure to delete": "Sure to delete",
@@ -440,7 +457,6 @@
"Multi-factor methods": "Multi-factor methods", "Multi-factor methods": "Multi-factor methods",
"Multi-factor recover": "Multi-factor recover", "Multi-factor recover": "Multi-factor recover",
"Multi-factor recover description": "Multi-factor recover description", "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", "Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
"Passcode": "Passcode", "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", "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": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"Price per month": "Price per month", "Period": "Period",
"Price per month - Tooltip": "Price per month - Tooltip", "Period - Tooltip": "Period for the plan",
"Price per year": "Price per year", "Price": "Price",
"Price per year - Tooltip": "Price per year - Tooltip", "Price - Tooltip": "Price needs to pay to subscribe the plan",
"per month": "per month" "Related product": "Related product",
"per month": "per month",
"per year": "per year"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "Copy pricing page URL", "Copy pricing page URL": "Copy pricing page URL",
@@ -589,7 +607,7 @@
"Trial duration": "Trial duration", "Trial duration": "Trial duration",
"Trial duration - Tooltip": "Trial duration period", "Trial duration - Tooltip": "Trial duration period",
"days trial available!": "days trial available!", "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": { "product": {
"Alipay": "Alipay", "Alipay": "Alipay",
@@ -600,17 +618,16 @@
"Detail - Tooltip": "Detail of product", "Detail - Tooltip": "Detail of product",
"Dummy": "Dummy", "Dummy": "Dummy",
"Edit Product": "Edit Product", "Edit Product": "Edit Product",
"I have completed the payment": "I have completed the payment",
"Image": "Image", "Image": "Image",
"Image - Tooltip": "Image of product", "Image - Tooltip": "Image of product",
"New Product": "New Product", "New Product": "New Product",
"Pay": "Pay", "Pay": "Pay",
"PayPal": "PayPal", "PayPal": "PayPal",
"Payment cancelled": "Payment cancelled",
"Payment failed": "Payment failed",
"Payment providers": "Payment providers", "Payment providers": "Payment providers",
"Payment providers - Tooltip": "Providers of payment services", "Payment providers - Tooltip": "Providers of payment services",
"Placing order...": "Placing order...", "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": "Price",
"Price - Tooltip": "Price of product", "Price - Tooltip": "Price of product",
"Quantity": "Quantity", "Quantity": "Quantity",
@@ -672,8 +689,8 @@
"Content": "Content", "Content": "Content",
"Content - Tooltip": "Content - Tooltip", "Content - Tooltip": "Content - Tooltip",
"Copy": "Copy", "Copy": "Copy",
"DB Test": "DB Test", "DB test": "DB test",
"DB Test - Tooltip": "DB Test - Tooltip", "DB test - Tooltip": "Test the connectivity to the database",
"Disable SSL": "Disable SSL", "Disable SSL": "Disable SSL",
"Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server", "Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server",
"Domain": "Domain", "Domain": "Domain",
@@ -700,7 +717,10 @@
"Internal": "Internal", "Internal": "Internal",
"Issuer URL": "Issuer URL", "Issuer URL": "Issuer URL",
"Issuer URL - Tooltip": "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": "Metadata",
"Metadata - Tooltip": "SAML metadata", "Metadata - Tooltip": "SAML metadata",
"Method - Tooltip": "Login method, QR code or silent login", "Method - Tooltip": "Login method, QR code or silent login",
@@ -754,6 +774,10 @@
"Sender Id - Tooltip": "Sender Id - Tooltip", "Sender Id - Tooltip": "Sender Id - Tooltip",
"Sender number": "Sender number", "Sender number": "Sender number",
"Sender number - Tooltip": "Sender number - Tooltip", "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": "Sign Name",
"Sign Name - Tooltip": "Name of the signature to be used", "Sign Name - Tooltip": "Name of the signature to be used",
"Sign request": "Sign request", "Sign request": "Sign request",
@@ -764,12 +788,15 @@
"Signup HTML": "Signup HTML", "Signup HTML": "Signup HTML",
"Signup HTML - Edit": "Signup HTML - Edit", "Signup HTML - Edit": "Signup HTML - Edit",
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style", "Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
"Signup group": "Signup group",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Site key", "Site key": "Site key",
"Site key - Tooltip": "Site key", "Site key - Tooltip": "Site key",
"Sliding Validation": "Sliding Validation", "Sliding Validation": "Sliding Validation",
"Sub type": "Sub type", "Sub type": "Sub type",
"Sub type - Tooltip": "Sub type", "Sub type - Tooltip": "Sub type",
"Team ID": "Team ID",
"Team ID - Tooltip": "Team ID",
"Template code": "Template code", "Template code": "Template code",
"Template code - Tooltip": "Template code", "Template code - Tooltip": "Template code",
"Test Email": "Test Email", "Test Email": "Test Email",
@@ -780,6 +807,8 @@
"Token URL - Tooltip": "Token URL", "Token URL - Tooltip": "Token URL",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Select a type", "Type - Tooltip": "Select a type",
"User flow": "User flow",
"User flow - Tooltip": "User flow",
"User mapping": "User mapping", "User mapping": "User mapping",
"User mapping - Tooltip": "User mapping - Tooltip", "User mapping - Tooltip": "User mapping - Tooltip",
"UserInfo URL": "UserInfo URL", "UserInfo URL": "UserInfo URL",
@@ -801,6 +830,8 @@
"New Role": "New Role", "New Role": "New Role",
"Sub domains": "Sub domains", "Sub domains": "Sub domains",
"Sub domains - Tooltip": "Domains included in the current role", "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": "Sub roles",
"Sub roles - Tooltip": "Roles included in the current role", "Sub roles - Tooltip": "Roles included in the current role",
"Sub users": "Sub users", "Sub users": "Sub users",
@@ -812,6 +843,9 @@
"Confirm": "Confirm", "Confirm": "Confirm",
"Decline": "Decline", "Decline": "Decline",
"Have account?": "Have account?", "Have account?": "Have account?",
"Label": "Label",
"Label HTML": "Label HTML",
"Placeholder": "Placeholder",
"Please accept the agreement!": "Please accept the agreement!", "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 click the below button to sign in": "Please click the below button to sign in",
"Please confirm your password!": "Please confirm your password!", "Please confirm your password!": "Please confirm your password!",
@@ -830,6 +864,11 @@
"Please select your country/region!": "Please select your country/region!", "Please select your country/region!": "Please select your country/region!",
"Terms of Use": "Terms of Use", "Terms of Use": "Terms of Use",
"Terms of Use - Tooltip": "Terms of use that users need to read and agree to during registration", "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 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 invoice title!": "The input is not invoice title!",
"The input is not valid Email!": "The input is not valid Email!", "The input is not valid Email!": "The input is not valid Email!",
@@ -841,14 +880,19 @@
"sign in now": "sign in now" "sign in now": "sign in now"
}, },
"subscription": { "subscription": {
"Duration": "Duration", "Active": "Active",
"Duration - Tooltip": "Subscription duration",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "End date", "End time": "End time",
"End date - Tooltip": "End date", "End time - Tooltip": "End time of the subscription",
"Error": "Error",
"Expired": "Expired",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Start date": "Start date", "Pending": "Pending",
"Start date - Tooltip": "Start date" "Period": "Period",
"Start time": "Start time",
"Start time - Tooltip": "Start time of the subscription",
"Suspended": "Suspended",
"Upcoming": "Upcoming"
}, },
"syncer": { "syncer": {
"Affiliation table": "Affiliation table", "Affiliation table": "Affiliation table",
@@ -872,6 +916,8 @@
"Is read-only": "Is read-only", "Is read-only": "Is read-only",
"Is read-only - Tooltip": "Is read-only - Tooltip", "Is read-only - Tooltip": "Is read-only - Tooltip",
"New Syncer": "New Syncer", "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": "Sync interval",
"Sync interval - Tooltip": "Unit in seconds", "Sync interval - Tooltip": "Unit in seconds",
"Table": "Table", "Table": "Table",
@@ -913,11 +959,19 @@
}, },
"token": { "token": {
"Access token": "Access token", "Access token": "Access token",
"Access token - Tooltip": "Access token - Tooltip",
"Authorization code": "Authorization code", "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", "Edit Token": "Edit Token",
"Expires in": "Expires in", "Expires in": "Expires in",
"Expires in - Tooltip": "Expires in - Tooltip",
"New Token": "New Token", "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": { "user": {
"3rd-party logins": "3rd-party logins", "3rd-party logins": "3rd-party logins",
@@ -974,6 +1028,8 @@
"Managed accounts": "Managed accounts", "Managed accounts": "Managed accounts",
"Modify password...": "Modify password...", "Modify password...": "Modify password...",
"Multi-factor authentication": "Multi-factor authentication", "Multi-factor authentication": "Multi-factor authentication",
"Name": "Name",
"Name format": "Name format",
"New Email": "New Email", "New Email": "New Email",
"New Password": "New Password", "New Password": "New Password",
"New User": "New User", "New User": "New User",
@@ -1011,6 +1067,7 @@
"Upload ID card front picture": "Upload ID card front picture", "Upload ID card front picture": "Upload ID card front picture",
"Upload ID card with person picture": "Upload ID card with person picture", "Upload ID card with person picture": "Upload ID card with person picture",
"Upload a photo": "Upload a photo", "Upload a photo": "Upload a photo",
"Value": "Value",
"Values": "Values", "Values": "Values",
"Verification code sent": "Verification code sent", "Verification code sent": "Verification code sent",
"WebAuthn credentials": "WebAuthn credentials", "WebAuthn credentials": "WebAuthn credentials",

View File

@@ -12,7 +12,9 @@
"Policies": "Políticas", "Policies": "Políticas",
"Policies - Tooltip": "Reglas de política de Casbin", "Policies - Tooltip": "Reglas de política de Casbin",
"Rule type": "Rule type", "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": { "application": {
"Always": "siempre", "Always": "siempre",
@@ -30,6 +32,8 @@
"Edit Application": "Editar solicitud", "Edit Application": "Editar solicitud",
"Enable Email linking": "Habilitar enlace de correo electrónico", "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 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": "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 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", "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 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": "Habilitar registro",
"Enable signup - Tooltip": "Ya sea permitir que los usuarios registren una nueva cuenta", "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", "Failed to sign in": "Error al iniciar sesión",
"File uploaded successfully": "Archivo subido exitosamente", "File uploaded successfully": "Archivo subido exitosamente",
"First, last": "First, last", "First, last": "First, last",
@@ -60,7 +68,6 @@
"Input": "Input", "Input": "Input",
"Invitation code": "Invitation code", "Invitation code": "Invitation code",
"Invitation code - Tooltip": "Invitation code - Tooltip", "Invitation code - Tooltip": "Invitation code - Tooltip",
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
"Left": "Izquierda", "Left": "Izquierda",
"Logged in successfully": "Acceso satisfactorio", "Logged in successfully": "Acceso satisfactorio",
"Logged out successfully": "Cerró sesión exitosamente", "Logged out successfully": "Cerró sesión exitosamente",
@@ -73,7 +80,6 @@
"Please input your application!": "¡Por favor, ingrese su solicitud!", "Please input your application!": "¡Por favor, ingrese su solicitud!",
"Please input your organization!": "¡Por favor, ingrese su organización!", "Please input your organization!": "¡Por favor, ingrese su organización!",
"Please select a HTML file": "Por favor, seleccione un archivo HTML", "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", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Redireccionar URL", "Redirect URL": "Redireccionar URL",
@@ -86,7 +92,6 @@
"Rule": "Regla", "Rule": "Regla",
"SAML metadata": "Metadatos de SAML", "SAML metadata": "Metadatos de SAML",
"SAML metadata - Tooltip": "Los metadatos del protocolo 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", "SAML reply URL": "URL de respuesta SAML",
"Select": "Select", "Select": "Select",
"Side panel HTML": "Panel lateral HTML", "Side panel HTML": "Panel lateral HTML",
@@ -95,11 +100,9 @@
"Sign Up Error": "Error de registro", "Sign Up Error": "Error de registro",
"Signin": "Signin", "Signin": "Signin",
"Signin (Default True)": "Signin (Default True)", "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", "Signin session": "Sesión de inicio de sesión",
"Signup items": "Artículos de registro", "Signup items": "Artículos de registro",
"Signup items - Tooltip": "Elementos para que los usuarios los completen al registrar nuevas cuentas", "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", "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", "The application does not allow to sign up new account": "La aplicación no permite registrarse una cuenta nueva",
"Token expire": "Token expirado", "Token expire": "Token expirado",
@@ -113,7 +116,6 @@
"Bit size - Tooltip": "Longitud de clave secreta", "Bit size - Tooltip": "Longitud de clave secreta",
"Certificate": "Certificado", "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 - 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 certificate": "Certificado de copia",
"Copy private key": "Copiar clave privada", "Copy private key": "Copiar clave privada",
"Crypto algorithm": "Algoritmo criptográfico", "Crypto algorithm": "Algoritmo criptográfico",
@@ -126,7 +128,6 @@
"New Cert": "ificado", "New Cert": "ificado",
"Private key": "Clave privada", "Private key": "Clave privada",
"Private key - Tooltip": "Clave privada correspondiente al certificado de clave pública", "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", "Scope - Tooltip": "Escenarios de uso del certificado",
"Type - Tooltip": "Tipo de certificado" "Type - Tooltip": "Tipo de certificado"
}, },
@@ -191,6 +192,7 @@
"Click to Upload": "Haz clic para cargar", "Click to Upload": "Haz clic para cargar",
"Close": "Cerca", "Close": "Cerca",
"Confirm": "Confirm", "Confirm": "Confirm",
"Copied to clipboard successfully": "Copied to clipboard successfully",
"Copy": "Copy", "Copy": "Copy",
"Created time": "Tiempo creado", "Created time": "Tiempo creado",
"Custom": "Custom", "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 application - Tooltip": "Aplicación predeterminada para usuarios registrados directamente desde la página de la organización",
"Default avatar": "Avatar predeterminado", "Default avatar": "Avatar predeterminado",
"Default avatar - Tooltip": "Avatar predeterminado utilizado cuando los usuarios recién registrados no establecen una imagen de avatar", "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", "Delete": "Eliminar",
"Description": "Descripción", "Description": "Descripción",
"Description - Tooltip": "Información detallada de descripción para referencia, Casdoor en sí no la utilizará", "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 connect to server": "No se pudo conectar al servidor",
"Failed to delete": "No se pudo eliminar", "Failed to delete": "No se pudo eliminar",
"Failed to enable": "Failed to enable", "Failed to enable": "Failed to enable",
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
"Failed to remove": "Failed to remove", "Failed to remove": "Failed to remove",
"Failed to save": "No se pudo guardar", "Failed to save": "No se pudo guardar",
"Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"Favicon": "Favicon (ícono de favoritos)", "Favicon": "Favicon (ícono de favoritos)",
"Favicon - Tooltip": "URL del icono Favicon utilizado en todas las páginas de Casdoor de la organización", "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", "MFA items - Tooltip": "MFA items - Tooltip",
"Master password": "Contraseña maestra", "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 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ú", "Menu": "Menú",
"Method": "Método", "Method": "Método",
"Model": "Modelo", "Model": "Modelo",
@@ -272,6 +280,8 @@
"Password salt - Tooltip": "Parámetro aleatorio utilizado para la encriptación de contraseñas", "Password salt - Tooltip": "Parámetro aleatorio utilizado para la encriptación de contraseñas",
"Password type": "Tipo de contraseña", "Password type": "Tipo de contraseña",
"Password type - Tooltip": "Formato de almacenamiento de contraseñas en la base de datos", "Password type - Tooltip": "Formato de almacenamiento de contraseñas en la base de datos",
"Payment": "Payment",
"Payment - Tooltip": "Payment - Tooltip",
"Payments": "Pagos", "Payments": "Pagos",
"Permissions": "Permisos", "Permissions": "Permisos",
"Permissions - Tooltip": "Permisos propiedad de este usuario", "Permissions - Tooltip": "Permisos propiedad de este usuario",
@@ -283,6 +293,8 @@
"Plans - Tooltip": "Plans - Tooltip", "Plans - Tooltip": "Plans - Tooltip",
"Preview": "Avance", "Preview": "Avance",
"Preview - Tooltip": "Vista previa de los efectos configurados", "Preview - Tooltip": "Vista previa de los efectos configurados",
"Pricing": "Pricing",
"Pricing - Tooltip": "Pricing - Tooltip",
"Pricings": "Precios", "Pricings": "Precios",
"Products": "Productos", "Products": "Productos",
"Provider": "Proveedor", "Provider": "Proveedor",
@@ -296,6 +308,10 @@
"Role - Tooltip": "Role - Tooltip", "Role - Tooltip": "Role - Tooltip",
"Roles": "Roles", "Roles": "Roles",
"Roles - Tooltip": "Roles a los que pertenece el usuario", "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": "Guardar",
"Save & Exit": "Guardar y salir", "Save & Exit": "Guardar y salir",
"Session ID": "ID de sesión", "Session ID": "ID de sesión",
@@ -318,6 +334,7 @@
"Successfully removed": "Successfully removed", "Successfully removed": "Successfully removed",
"Successfully saved": "Guardado exitosamente", "Successfully saved": "Guardado exitosamente",
"Successfully sent": "Successfully sent", "Successfully sent": "Successfully sent",
"Successfully synced": "Successfully synced",
"Supported country codes": "Códigos de país admitidos", "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", "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", "Sure to delete": "Seguro que eliminar",
@@ -440,7 +457,6 @@
"Multi-factor methods": "Multi-factor methods", "Multi-factor methods": "Multi-factor methods",
"Multi-factor recover": "Multi-factor recover", "Multi-factor recover": "Multi-factor recover",
"Multi-factor recover description": "Multi-factor recover description", "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", "Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
"Passcode": "Passcode", "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", "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": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"Price per month": "Price per month", "Period": "Period",
"Price per month - Tooltip": "Price per month - Tooltip", "Period - Tooltip": "Period - Tooltip",
"Price per year": "Price per year", "Price": "Price",
"Price per year - Tooltip": "Price per year - Tooltip", "Price - Tooltip": "Price - Tooltip",
"per month": "por mes" "Related product": "Related product",
"per month": "por mes",
"per year": "per year"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "Copiar URL de la página de precios", "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": "Duración del período de prueba",
"Trial duration - Tooltip": "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", "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": { "product": {
"Alipay": "Alipay", "Alipay": "Alipay",
@@ -600,17 +618,16 @@
"Detail - Tooltip": "Detalle del producto", "Detail - Tooltip": "Detalle del producto",
"Dummy": "Dummy", "Dummy": "Dummy",
"Edit Product": "Editar Producto", "Edit Product": "Editar Producto",
"I have completed the payment": "He completado el pago",
"Image": "Imagen", "Image": "Imagen",
"Image - Tooltip": "Imagen del producto", "Image - Tooltip": "Imagen del producto",
"New Product": "Nuevo producto", "New Product": "Nuevo producto",
"Pay": "Pagar", "Pay": "Pagar",
"PayPal": "PayPal", "PayPal": "PayPal",
"Payment cancelled": "Payment cancelled",
"Payment failed": "Payment failed",
"Payment providers": "Proveedores de pago", "Payment providers": "Proveedores de pago",
"Payment providers - Tooltip": "Proveedores de servicios de pago", "Payment providers - Tooltip": "Proveedores de servicios de pago",
"Placing order...": "Haciendo un pedido...", "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": "Precio",
"Price - Tooltip": "Precio del producto", "Price - Tooltip": "Precio del producto",
"Quantity": "Cantidad", "Quantity": "Cantidad",
@@ -672,8 +689,8 @@
"Content": "Content", "Content": "Content",
"Content - Tooltip": "Content - Tooltip", "Content - Tooltip": "Content - Tooltip",
"Copy": "Copiar", "Copy": "Copiar",
"DB Test": "DB Test", "DB test": "DB test",
"DB Test - Tooltip": "DB Test - Tooltip", "DB test - Tooltip": "DB test - Tooltip",
"Disable SSL": "Desactivar SSL", "Disable SSL": "Desactivar SSL",
"Disable SSL - Tooltip": "¿Hay que desactivar el protocolo SSL al comunicarse con el servidor STMP?", "Disable SSL - Tooltip": "¿Hay que desactivar el protocolo SSL al comunicarse con el servidor STMP?",
"Domain": "Dominio", "Domain": "Dominio",
@@ -700,7 +717,10 @@
"Internal": "Internal", "Internal": "Internal",
"Issuer URL": "URL del emisor", "Issuer URL": "URL del emisor",
"Issuer URL - Tooltip": "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": "Metadatos",
"Metadata - Tooltip": "Metadatos SAML", "Metadata - Tooltip": "Metadatos SAML",
"Method - Tooltip": "Método de inicio de sesión, código QR o inicio de sesión silencioso", "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 Id - Tooltip": "Sender Id - Tooltip",
"Sender number": "Sender number", "Sender number": "Sender number",
"Sender number - Tooltip": "Sender number - Tooltip", "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": "Firma de Nombre",
"Sign Name - Tooltip": "Nombre de la firma a ser utilizada", "Sign Name - Tooltip": "Nombre de la firma a ser utilizada",
"Sign request": "Solicitud de firma", "Sign request": "Solicitud de firma",
@@ -764,12 +788,15 @@
"Signup HTML": "Registro HTML", "Signup HTML": "Registro HTML",
"Signup HTML - Edit": "Registro HTML - Editar", "Signup HTML - Edit": "Registro HTML - Editar",
"Signup HTML - Tooltip": "HTML personalizado para reemplazar el estilo predeterminado de la página de registro", "Signup HTML - Tooltip": "HTML personalizado para reemplazar el estilo predeterminado de la página de registro",
"Signup group": "Signup group",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Clave del sitio", "Site key": "Clave del sitio",
"Site key - Tooltip": "Clave del sitio", "Site key - Tooltip": "Clave del sitio",
"Sliding Validation": "Sliding Validation", "Sliding Validation": "Sliding Validation",
"Sub type": "Subtipo", "Sub type": "Subtipo",
"Sub type - Tooltip": "Subtipo", "Sub type - Tooltip": "Subtipo",
"Team ID": "Team ID",
"Team ID - Tooltip": "Team ID - Tooltip",
"Template code": "Código de plantilla", "Template code": "Código de plantilla",
"Template code - Tooltip": "Código de plantilla", "Template code - Tooltip": "Código de plantilla",
"Test Email": "Correo de prueba", "Test Email": "Correo de prueba",
@@ -780,6 +807,8 @@
"Token URL - Tooltip": "URL de token", "Token URL - Tooltip": "URL de token",
"Type": "Tipo", "Type": "Tipo",
"Type - Tooltip": "Seleccionar un tipo", "Type - Tooltip": "Seleccionar un tipo",
"User flow": "User flow",
"User flow - Tooltip": "User flow - Tooltip",
"User mapping": "User mapping", "User mapping": "User mapping",
"User mapping - Tooltip": "User mapping - Tooltip", "User mapping - Tooltip": "User mapping - Tooltip",
"UserInfo URL": "URL de información del usuario", "UserInfo URL": "URL de información del usuario",
@@ -801,6 +830,8 @@
"New Role": "Nuevo rol", "New Role": "Nuevo rol",
"Sub domains": "Subdominios", "Sub domains": "Subdominios",
"Sub domains - Tooltip": "Dominios incluidos en el rol actual", "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": "Roles secundarios",
"Sub roles - Tooltip": "Roles incluidos en el rol actual", "Sub roles - Tooltip": "Roles incluidos en el rol actual",
"Sub users": "Subusuarios", "Sub users": "Subusuarios",
@@ -812,6 +843,9 @@
"Confirm": "Confirmar", "Confirm": "Confirmar",
"Decline": "Declive", "Decline": "Declive",
"Have account?": "¿Tiene una cuenta?", "Have account?": "¿Tiene una cuenta?",
"Label": "Label",
"Label HTML": "Label HTML",
"Placeholder": "Placeholder",
"Please accept the agreement!": "¡Por favor, acepta el acuerdo!", "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 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!", "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!", "Please select your country/region!": "¡Por favor seleccione su país/región!",
"Terms of Use": "Términos de uso", "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", "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 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 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!", "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" "sign in now": "Inicie sesión ahora"
}, },
"subscription": { "subscription": {
"Duration": "Duración", "Active": "Active",
"Duration - Tooltip": "Duración de la suscripción",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "Fecha de finalización", "End time": "End time",
"End date - Tooltip": "Fecha de finalización", "End time - Tooltip": "End time - Tooltip",
"Error": "Error",
"Expired": "Expired",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Start date": "Fecha de inicio", "Pending": "Pending",
"Start date - Tooltip": "Fecha de inicio" "Period": "Period",
"Start time": "Start time",
"Start time - Tooltip": "Start time - Tooltip",
"Suspended": "Suspended",
"Upcoming": "Upcoming"
}, },
"syncer": { "syncer": {
"Affiliation table": "Tabla de afiliación", "Affiliation table": "Tabla de afiliación",
@@ -872,6 +916,8 @@
"Is read-only": "Is read-only", "Is read-only": "Is read-only",
"Is read-only - Tooltip": "Is read-only - Tooltip", "Is read-only - Tooltip": "Is read-only - Tooltip",
"New Syncer": "Nuevo Syncer", "New Syncer": "Nuevo Syncer",
"SSL mode": "SSL mode",
"SSL mode - Tooltip": "SSL mode - Tooltip",
"Sync interval": "Intervalo de sincronización", "Sync interval": "Intervalo de sincronización",
"Sync interval - Tooltip": "Unidad en segundos", "Sync interval - Tooltip": "Unidad en segundos",
"Table": "Mesa", "Table": "Mesa",
@@ -913,11 +959,19 @@
}, },
"token": { "token": {
"Access token": "Token de acceso", "Access token": "Token de acceso",
"Access token - Tooltip": "Access token - Tooltip",
"Authorization code": "Código de autorización", "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", "Edit Token": "Editar Token",
"Expires in": "Caduca en", "Expires in": "Caduca en",
"Expires in - Tooltip": "Expires in - Tooltip",
"New Token": "Nuevo token", "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": { "user": {
"3rd-party logins": "Inicio de sesión de terceros", "3rd-party logins": "Inicio de sesión de terceros",
@@ -974,6 +1028,8 @@
"Managed accounts": "Cuentas gestionadas", "Managed accounts": "Cuentas gestionadas",
"Modify password...": "Modificar contraseña...", "Modify password...": "Modificar contraseña...",
"Multi-factor authentication": "Multi-factor authentication", "Multi-factor authentication": "Multi-factor authentication",
"Name": "Name",
"Name format": "Name format",
"New Email": "Nuevo correo electrónico", "New Email": "Nuevo correo electrónico",
"New Password": "Nueva contraseña", "New Password": "Nueva contraseña",
"New User": "Nuevo Usuario", "New User": "Nuevo Usuario",
@@ -1011,6 +1067,7 @@
"Upload ID card front picture": "Upload ID card front picture", "Upload ID card front picture": "Upload ID card front picture",
"Upload ID card with person picture": "Upload ID card with person picture", "Upload ID card with person picture": "Upload ID card with person picture",
"Upload a photo": "Subir una foto", "Upload a photo": "Subir una foto",
"Value": "Value",
"Values": "Valores", "Values": "Valores",
"Verification code sent": "Código de verificación enviado", "Verification code sent": "Código de verificación enviado",
"WebAuthn credentials": "Credenciales de WebAuthn", "WebAuthn credentials": "Credenciales de WebAuthn",

View File

@@ -12,7 +12,9 @@
"Policies": "Policies", "Policies": "Policies",
"Policies - Tooltip": "Casbin policy rules", "Policies - Tooltip": "Casbin policy rules",
"Rule type": "Rule type", "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": { "application": {
"Always": "Always", "Always": "Always",
@@ -30,6 +32,8 @@
"Edit Application": "Edit Application", "Edit Application": "Edit Application",
"Enable Email linking": "Enable Email linking", "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 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": "Enable SAML compression",
"Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp", "Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp",
"Enable WebAuthn signin": "Enable WebAuthn signin", "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 signin session - Tooltip": "Whether Casdoor maintains a session after logging into Casdoor from the application",
"Enable signup": "Enable signup", "Enable signup": "Enable signup",
"Enable signup - Tooltip": "Whether to allow users to register a new account", "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", "Failed to sign in": "Failed to sign in",
"File uploaded successfully": "File uploaded successfully", "File uploaded successfully": "File uploaded successfully",
"First, last": "First, last", "First, last": "First, last",
@@ -60,7 +68,6 @@
"Input": "Input", "Input": "Input",
"Invitation code": "Invitation code", "Invitation code": "Invitation code",
"Invitation code - Tooltip": "Invitation code - Tooltip", "Invitation code - Tooltip": "Invitation code - Tooltip",
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
"Left": "Left", "Left": "Left",
"Logged in successfully": "Logged in successfully", "Logged in successfully": "Logged in successfully",
"Logged out successfully": "Logged out successfully", "Logged out successfully": "Logged out successfully",
@@ -73,7 +80,6 @@
"Please input your application!": "Please input your application!", "Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!", "Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Please select a HTML file", "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", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Redirect URL", "Redirect URL": "Redirect URL",
@@ -86,7 +92,6 @@
"Rule": "Rule", "Rule": "Rule",
"SAML metadata": "SAML metadata", "SAML metadata": "SAML metadata",
"SAML metadata - Tooltip": "The metadata of SAML protocol", "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", "SAML reply URL": "SAML reply URL",
"Select": "Select", "Select": "Select",
"Side panel HTML": "Side panel HTML", "Side panel HTML": "Side panel HTML",
@@ -95,11 +100,9 @@
"Sign Up Error": "Sign Up Error", "Sign Up Error": "Sign Up Error",
"Signin": "Signin", "Signin": "Signin",
"Signin (Default True)": "Signin (Default True)", "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", "Signin session": "Signin session",
"Signup items": "Signup items", "Signup items": "Signup items",
"Signup items - Tooltip": "Items for users to fill in when registering new accounts", "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", "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", "The application does not allow to sign up new account": "The application does not allow to sign up new account",
"Token expire": "Token expire", "Token expire": "Token expire",
@@ -113,7 +116,6 @@
"Bit size - Tooltip": "Secret key length", "Bit size - Tooltip": "Secret key length",
"Certificate": "Certificate", "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 - 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 certificate": "Copy certificate",
"Copy private key": "Copy private key", "Copy private key": "Copy private key",
"Crypto algorithm": "Crypto algorithm", "Crypto algorithm": "Crypto algorithm",
@@ -126,7 +128,6 @@
"New Cert": "New Cert", "New Cert": "New Cert",
"Private key": "Private key", "Private key": "Private key",
"Private key - Tooltip": "Private key corresponding to the public key certificate", "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", "Scope - Tooltip": "Usage scenarios of the certificate",
"Type - Tooltip": "Type of certificate" "Type - Tooltip": "Type of certificate"
}, },
@@ -191,6 +192,7 @@
"Click to Upload": "Click to Upload", "Click to Upload": "Click to Upload",
"Close": "Close", "Close": "Close",
"Confirm": "Confirm", "Confirm": "Confirm",
"Copied to clipboard successfully": "Copied to clipboard successfully",
"Copy": "Copy", "Copy": "Copy",
"Created time": "Created time", "Created time": "Created time",
"Custom": "Custom", "Custom": "Custom",
@@ -200,6 +202,8 @@
"Default application - Tooltip": "Default application for users registered directly from the organization page", "Default application - Tooltip": "Default application for users registered directly from the organization page",
"Default avatar": "Default avatar", "Default avatar": "Default avatar",
"Default avatar - Tooltip": "Default avatar used when newly registered users do not set an avatar image", "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", "Delete": "Delete",
"Description": "Description", "Description": "Description",
"Description - Tooltip": "Detailed description information for reference, Casdoor itself will not use it", "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 connect to server": "Failed to connect to server",
"Failed to delete": "Failed to delete", "Failed to delete": "Failed to delete",
"Failed to enable": "Failed to enable", "Failed to enable": "Failed to enable",
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
"Failed to remove": "Failed to remove", "Failed to remove": "Failed to remove",
"Failed to save": "Failed to save", "Failed to save": "Failed to save",
"Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization", "Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
@@ -251,6 +257,8 @@
"MFA items - Tooltip": "MFA items - Tooltip", "MFA items - Tooltip": "MFA items - Tooltip",
"Master password": "Master password", "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 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", "Menu": "Menu",
"Method": "Method", "Method": "Method",
"Model": "Model", "Model": "Model",
@@ -272,6 +280,8 @@
"Password salt - Tooltip": "Random parameter used for password encryption", "Password salt - Tooltip": "Random parameter used for password encryption",
"Password type": "Password type", "Password type": "Password type",
"Password type - Tooltip": "Storage format of passwords in the database", "Password type - Tooltip": "Storage format of passwords in the database",
"Payment": "Payment",
"Payment - Tooltip": "Payment - Tooltip",
"Payments": "Payments", "Payments": "Payments",
"Permissions": "Permissions", "Permissions": "Permissions",
"Permissions - Tooltip": "Permissions owned by this user", "Permissions - Tooltip": "Permissions owned by this user",
@@ -283,6 +293,8 @@
"Plans - Tooltip": "Plans - Tooltip", "Plans - Tooltip": "Plans - Tooltip",
"Preview": "Preview", "Preview": "Preview",
"Preview - Tooltip": "Preview the configured effects", "Preview - Tooltip": "Preview the configured effects",
"Pricing": "Pricing",
"Pricing - Tooltip": "Pricing - Tooltip",
"Pricings": "Pricings", "Pricings": "Pricings",
"Products": "Products", "Products": "Products",
"Provider": "Provider", "Provider": "Provider",
@@ -296,6 +308,10 @@
"Role - Tooltip": "Role - Tooltip", "Role - Tooltip": "Role - Tooltip",
"Roles": "Roles", "Roles": "Roles",
"Roles - Tooltip": "Roles that the user belongs to", "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": "Save",
"Save & Exit": "Save & Exit", "Save & Exit": "Save & Exit",
"Session ID": "Session ID", "Session ID": "Session ID",
@@ -318,6 +334,7 @@
"Successfully removed": "Successfully removed", "Successfully removed": "Successfully removed",
"Successfully saved": "Successfully saved", "Successfully saved": "Successfully saved",
"Successfully sent": "Successfully sent", "Successfully sent": "Successfully sent",
"Successfully synced": "Successfully synced",
"Supported country codes": "Supported country codes", "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", "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", "Sure to delete": "Sure to delete",
@@ -440,7 +457,6 @@
"Multi-factor methods": "Multi-factor methods", "Multi-factor methods": "Multi-factor methods",
"Multi-factor recover": "Multi-factor recover", "Multi-factor recover": "Multi-factor recover",
"Multi-factor recover description": "Multi-factor recover description", "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", "Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
"Passcode": "Passcode", "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", "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": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"Price per month": "Price per month", "Period": "Period",
"Price per month - Tooltip": "Price per month - Tooltip", "Period - Tooltip": "Period - Tooltip",
"Price per year": "Price per year", "Price": "Price",
"Price per year - Tooltip": "Price per year - Tooltip", "Price - Tooltip": "Price - Tooltip",
"per month": "per month" "Related product": "Related product",
"per month": "per month",
"per year": "per year"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "Copy pricing page URL", "Copy pricing page URL": "Copy pricing page URL",
@@ -589,7 +607,7 @@
"Trial duration": "Trial duration", "Trial duration": "Trial duration",
"Trial duration - Tooltip": "Trial duration period", "Trial duration - Tooltip": "Trial duration period",
"days trial available!": "days trial available!", "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": { "product": {
"Alipay": "Alipay", "Alipay": "Alipay",
@@ -600,17 +618,16 @@
"Detail - Tooltip": "Detail of product", "Detail - Tooltip": "Detail of product",
"Dummy": "Dummy", "Dummy": "Dummy",
"Edit Product": "Edit Product", "Edit Product": "Edit Product",
"I have completed the payment": "I have completed the payment",
"Image": "Image", "Image": "Image",
"Image - Tooltip": "Image of product", "Image - Tooltip": "Image of product",
"New Product": "New Product", "New Product": "New Product",
"Pay": "Pay", "Pay": "Pay",
"PayPal": "PayPal", "PayPal": "PayPal",
"Payment cancelled": "Payment cancelled",
"Payment failed": "Payment failed",
"Payment providers": "Payment providers", "Payment providers": "Payment providers",
"Payment providers - Tooltip": "Providers of payment services", "Payment providers - Tooltip": "Providers of payment services",
"Placing order...": "Placing order...", "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": "Price",
"Price - Tooltip": "Price of product", "Price - Tooltip": "Price of product",
"Quantity": "Quantity", "Quantity": "Quantity",
@@ -672,8 +689,8 @@
"Content": "Content", "Content": "Content",
"Content - Tooltip": "Content - Tooltip", "Content - Tooltip": "Content - Tooltip",
"Copy": "Copy", "Copy": "Copy",
"DB Test": "DB Test", "DB test": "DB test",
"DB Test - Tooltip": "DB Test - Tooltip", "DB test - Tooltip": "DB test - Tooltip",
"Disable SSL": "Disable SSL", "Disable SSL": "Disable SSL",
"Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server", "Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server",
"Domain": "Domain", "Domain": "Domain",
@@ -700,7 +717,10 @@
"Internal": "Internal", "Internal": "Internal",
"Issuer URL": "Issuer URL", "Issuer URL": "Issuer URL",
"Issuer URL - Tooltip": "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": "Metadata",
"Metadata - Tooltip": "SAML metadata", "Metadata - Tooltip": "SAML metadata",
"Method - Tooltip": "Login method, QR code or silent login", "Method - Tooltip": "Login method, QR code or silent login",
@@ -754,6 +774,10 @@
"Sender Id - Tooltip": "Sender Id - Tooltip", "Sender Id - Tooltip": "Sender Id - Tooltip",
"Sender number": "Sender number", "Sender number": "Sender number",
"Sender number - Tooltip": "Sender number - Tooltip", "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": "Sign Name",
"Sign Name - Tooltip": "Name of the signature to be used", "Sign Name - Tooltip": "Name of the signature to be used",
"Sign request": "Sign request", "Sign request": "Sign request",
@@ -764,12 +788,15 @@
"Signup HTML": "Signup HTML", "Signup HTML": "Signup HTML",
"Signup HTML - Edit": "Signup HTML - Edit", "Signup HTML - Edit": "Signup HTML - Edit",
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style", "Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
"Signup group": "Signup group",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Site key", "Site key": "Site key",
"Site key - Tooltip": "Site key", "Site key - Tooltip": "Site key",
"Sliding Validation": "Sliding Validation", "Sliding Validation": "Sliding Validation",
"Sub type": "Sub type", "Sub type": "Sub type",
"Sub type - Tooltip": "Sub type", "Sub type - Tooltip": "Sub type",
"Team ID": "Team ID",
"Team ID - Tooltip": "Team ID - Tooltip",
"Template code": "Template code", "Template code": "Template code",
"Template code - Tooltip": "Template code", "Template code - Tooltip": "Template code",
"Test Email": "Test Email", "Test Email": "Test Email",
@@ -780,6 +807,8 @@
"Token URL - Tooltip": "Token URL", "Token URL - Tooltip": "Token URL",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Select a type", "Type - Tooltip": "Select a type",
"User flow": "User flow",
"User flow - Tooltip": "User flow - Tooltip",
"User mapping": "User mapping", "User mapping": "User mapping",
"User mapping - Tooltip": "User mapping - Tooltip", "User mapping - Tooltip": "User mapping - Tooltip",
"UserInfo URL": "UserInfo URL", "UserInfo URL": "UserInfo URL",
@@ -801,6 +830,8 @@
"New Role": "New Role", "New Role": "New Role",
"Sub domains": "Sub domains", "Sub domains": "Sub domains",
"Sub domains - Tooltip": "Domains included in the current role", "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": "Sub roles",
"Sub roles - Tooltip": "Roles included in the current role", "Sub roles - Tooltip": "Roles included in the current role",
"Sub users": "Sub users", "Sub users": "Sub users",
@@ -812,6 +843,9 @@
"Confirm": "Confirm", "Confirm": "Confirm",
"Decline": "Decline", "Decline": "Decline",
"Have account?": "Have account?", "Have account?": "Have account?",
"Label": "Label",
"Label HTML": "Label HTML",
"Placeholder": "Placeholder",
"Please accept the agreement!": "Please accept the agreement!", "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 click the below button to sign in": "Please click the below button to sign in",
"Please confirm your password!": "Please confirm your password!", "Please confirm your password!": "Please confirm your password!",
@@ -830,6 +864,11 @@
"Please select your country/region!": "Please select your country/region!", "Please select your country/region!": "Please select your country/region!",
"Terms of Use": "Terms of Use", "Terms of Use": "Terms of Use",
"Terms of Use - Tooltip": "Terms of use that users need to read and agree to during registration", "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 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 invoice title!": "The input is not invoice title!",
"The input is not valid Email!": "The input is not valid Email!", "The input is not valid Email!": "The input is not valid Email!",
@@ -841,14 +880,19 @@
"sign in now": "sign in now" "sign in now": "sign in now"
}, },
"subscription": { "subscription": {
"Duration": "Duration", "Active": "Active",
"Duration - Tooltip": "Subscription duration",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "End date", "End time": "End time",
"End date - Tooltip": "End date", "End time - Tooltip": "End time - Tooltip",
"Error": "Error",
"Expired": "Expired",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Start date": "Start date", "Pending": "Pending",
"Start date - Tooltip": "Start date" "Period": "Period",
"Start time": "Start time",
"Start time - Tooltip": "Start time - Tooltip",
"Suspended": "Suspended",
"Upcoming": "Upcoming"
}, },
"syncer": { "syncer": {
"Affiliation table": "Affiliation table", "Affiliation table": "Affiliation table",
@@ -872,6 +916,8 @@
"Is read-only": "Is read-only", "Is read-only": "Is read-only",
"Is read-only - Tooltip": "Is read-only - Tooltip", "Is read-only - Tooltip": "Is read-only - Tooltip",
"New Syncer": "New Syncer", "New Syncer": "New Syncer",
"SSL mode": "SSL mode",
"SSL mode - Tooltip": "SSL mode - Tooltip",
"Sync interval": "Sync interval", "Sync interval": "Sync interval",
"Sync interval - Tooltip": "Unit in seconds", "Sync interval - Tooltip": "Unit in seconds",
"Table": "Table", "Table": "Table",
@@ -913,11 +959,19 @@
}, },
"token": { "token": {
"Access token": "Access token", "Access token": "Access token",
"Access token - Tooltip": "Access token - Tooltip",
"Authorization code": "Authorization code", "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", "Edit Token": "Edit Token",
"Expires in": "Expires in", "Expires in": "Expires in",
"Expires in - Tooltip": "Expires in - Tooltip",
"New Token": "New Token", "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": { "user": {
"3rd-party logins": "3rd-party logins", "3rd-party logins": "3rd-party logins",
@@ -974,6 +1028,8 @@
"Managed accounts": "Managed accounts", "Managed accounts": "Managed accounts",
"Modify password...": "Modify password...", "Modify password...": "Modify password...",
"Multi-factor authentication": "Multi-factor authentication", "Multi-factor authentication": "Multi-factor authentication",
"Name": "Name",
"Name format": "Name format",
"New Email": "New Email", "New Email": "New Email",
"New Password": "New Password", "New Password": "New Password",
"New User": "New User", "New User": "New User",
@@ -1011,6 +1067,7 @@
"Upload ID card front picture": "Upload ID card front picture", "Upload ID card front picture": "Upload ID card front picture",
"Upload ID card with person picture": "Upload ID card with person picture", "Upload ID card with person picture": "Upload ID card with person picture",
"Upload a photo": "Upload a photo", "Upload a photo": "Upload a photo",
"Value": "Value",
"Values": "Values", "Values": "Values",
"Verification code sent": "Verification code sent", "Verification code sent": "Verification code sent",
"WebAuthn credentials": "WebAuthn credentials", "WebAuthn credentials": "WebAuthn credentials",

View File

@@ -12,7 +12,9 @@
"Policies": "Policies", "Policies": "Policies",
"Policies - Tooltip": "Casbin policy rules", "Policies - Tooltip": "Casbin policy rules",
"Rule type": "Rule type", "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": { "application": {
"Always": "Always", "Always": "Always",
@@ -30,6 +32,8 @@
"Edit Application": "Edit Application", "Edit Application": "Edit Application",
"Enable Email linking": "Enable Email linking", "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 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": "Enable SAML compression",
"Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp", "Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp",
"Enable WebAuthn signin": "Enable WebAuthn signin", "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 signin session - Tooltip": "Whether Casdoor maintains a session after logging into Casdoor from the application",
"Enable signup": "Enable signup", "Enable signup": "Enable signup",
"Enable signup - Tooltip": "Whether to allow users to register a new account", "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", "Failed to sign in": "Failed to sign in",
"File uploaded successfully": "File uploaded successfully", "File uploaded successfully": "File uploaded successfully",
"First, last": "First, last", "First, last": "First, last",
@@ -60,7 +68,6 @@
"Input": "Input", "Input": "Input",
"Invitation code": "Invitation code", "Invitation code": "Invitation code",
"Invitation code - Tooltip": "Invitation code - Tooltip", "Invitation code - Tooltip": "Invitation code - Tooltip",
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
"Left": "Left", "Left": "Left",
"Logged in successfully": "Logged in successfully", "Logged in successfully": "Logged in successfully",
"Logged out successfully": "Logged out successfully", "Logged out successfully": "Logged out successfully",
@@ -73,7 +80,6 @@
"Please input your application!": "Please input your application!", "Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!", "Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Please select a HTML file", "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", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Redirect URL", "Redirect URL": "Redirect URL",
@@ -86,7 +92,6 @@
"Rule": "Rule", "Rule": "Rule",
"SAML metadata": "SAML metadata", "SAML metadata": "SAML metadata",
"SAML metadata - Tooltip": "The metadata of SAML protocol", "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", "SAML reply URL": "SAML reply URL",
"Select": "Select", "Select": "Select",
"Side panel HTML": "Side panel HTML", "Side panel HTML": "Side panel HTML",
@@ -95,11 +100,9 @@
"Sign Up Error": "Sign Up Error", "Sign Up Error": "Sign Up Error",
"Signin": "Signin", "Signin": "Signin",
"Signin (Default True)": "Signin (Default True)", "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", "Signin session": "Signin session",
"Signup items": "Signup items", "Signup items": "Signup items",
"Signup items - Tooltip": "Items for users to fill in when registering new accounts", "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", "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", "The application does not allow to sign up new account": "The application does not allow to sign up new account",
"Token expire": "Token expire", "Token expire": "Token expire",
@@ -113,7 +116,6 @@
"Bit size - Tooltip": "Secret key length", "Bit size - Tooltip": "Secret key length",
"Certificate": "Certificate", "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 - 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 certificate": "Copy certificate",
"Copy private key": "Copy private key", "Copy private key": "Copy private key",
"Crypto algorithm": "Crypto algorithm", "Crypto algorithm": "Crypto algorithm",
@@ -126,7 +128,6 @@
"New Cert": "New Cert", "New Cert": "New Cert",
"Private key": "Private key", "Private key": "Private key",
"Private key - Tooltip": "Private key corresponding to the public key certificate", "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", "Scope - Tooltip": "Usage scenarios of the certificate",
"Type - Tooltip": "Type of certificate" "Type - Tooltip": "Type of certificate"
}, },
@@ -191,6 +192,7 @@
"Click to Upload": "Click to Upload", "Click to Upload": "Click to Upload",
"Close": "Close", "Close": "Close",
"Confirm": "Confirm", "Confirm": "Confirm",
"Copied to clipboard successfully": "Copied to clipboard successfully",
"Copy": "Copy", "Copy": "Copy",
"Created time": "Created time", "Created time": "Created time",
"Custom": "Custom", "Custom": "Custom",
@@ -200,6 +202,8 @@
"Default application - Tooltip": "Default application for users registered directly from the organization page", "Default application - Tooltip": "Default application for users registered directly from the organization page",
"Default avatar": "Default avatar", "Default avatar": "Default avatar",
"Default avatar - Tooltip": "Default avatar used when newly registered users do not set an avatar image", "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", "Delete": "Delete",
"Description": "Description", "Description": "Description",
"Description - Tooltip": "Detailed description information for reference, Casdoor itself will not use it", "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 connect to server": "Failed to connect to server",
"Failed to delete": "Failed to delete", "Failed to delete": "Failed to delete",
"Failed to enable": "Failed to enable", "Failed to enable": "Failed to enable",
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
"Failed to remove": "Failed to remove", "Failed to remove": "Failed to remove",
"Failed to save": "Failed to save", "Failed to save": "Failed to save",
"Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization", "Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
@@ -251,6 +257,8 @@
"MFA items - Tooltip": "MFA items - Tooltip", "MFA items - Tooltip": "MFA items - Tooltip",
"Master password": "Master password", "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 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", "Menu": "Menu",
"Method": "Method", "Method": "Method",
"Model": "Model", "Model": "Model",
@@ -272,6 +280,8 @@
"Password salt - Tooltip": "Random parameter used for password encryption", "Password salt - Tooltip": "Random parameter used for password encryption",
"Password type": "Password type", "Password type": "Password type",
"Password type - Tooltip": "Storage format of passwords in the database", "Password type - Tooltip": "Storage format of passwords in the database",
"Payment": "Payment",
"Payment - Tooltip": "Payment - Tooltip",
"Payments": "Payments", "Payments": "Payments",
"Permissions": "Permissions", "Permissions": "Permissions",
"Permissions - Tooltip": "Permissions owned by this user", "Permissions - Tooltip": "Permissions owned by this user",
@@ -283,6 +293,8 @@
"Plans - Tooltip": "Plans - Tooltip", "Plans - Tooltip": "Plans - Tooltip",
"Preview": "Preview", "Preview": "Preview",
"Preview - Tooltip": "Preview the configured effects", "Preview - Tooltip": "Preview the configured effects",
"Pricing": "Pricing",
"Pricing - Tooltip": "Pricing - Tooltip",
"Pricings": "Pricings", "Pricings": "Pricings",
"Products": "Products", "Products": "Products",
"Provider": "Provider", "Provider": "Provider",
@@ -296,6 +308,10 @@
"Role - Tooltip": "Role - Tooltip", "Role - Tooltip": "Role - Tooltip",
"Roles": "Roles", "Roles": "Roles",
"Roles - Tooltip": "Roles that the user belongs to", "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": "Save",
"Save & Exit": "Save & Exit", "Save & Exit": "Save & Exit",
"Session ID": "Session ID", "Session ID": "Session ID",
@@ -318,6 +334,7 @@
"Successfully removed": "Successfully removed", "Successfully removed": "Successfully removed",
"Successfully saved": "Successfully saved", "Successfully saved": "Successfully saved",
"Successfully sent": "Successfully sent", "Successfully sent": "Successfully sent",
"Successfully synced": "Successfully synced",
"Supported country codes": "Supported country codes", "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", "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", "Sure to delete": "Sure to delete",
@@ -440,7 +457,6 @@
"Multi-factor methods": "Multi-factor methods", "Multi-factor methods": "Multi-factor methods",
"Multi-factor recover": "Multi-factor recover", "Multi-factor recover": "Multi-factor recover",
"Multi-factor recover description": "Multi-factor recover description", "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", "Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
"Passcode": "Passcode", "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", "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": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"Price per month": "Price per month", "Period": "Period",
"Price per month - Tooltip": "Price per month - Tooltip", "Period - Tooltip": "Period - Tooltip",
"Price per year": "Price per year", "Price": "Price",
"Price per year - Tooltip": "Price per year - Tooltip", "Price - Tooltip": "Price - Tooltip",
"per month": "per month" "Related product": "Related product",
"per month": "per month",
"per year": "per year"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "Copy pricing page URL", "Copy pricing page URL": "Copy pricing page URL",
@@ -589,7 +607,7 @@
"Trial duration": "Trial duration", "Trial duration": "Trial duration",
"Trial duration - Tooltip": "Trial duration period", "Trial duration - Tooltip": "Trial duration period",
"days trial available!": "days trial available!", "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": { "product": {
"Alipay": "Alipay", "Alipay": "Alipay",
@@ -600,17 +618,16 @@
"Detail - Tooltip": "Detail of product", "Detail - Tooltip": "Detail of product",
"Dummy": "Dummy", "Dummy": "Dummy",
"Edit Product": "Edit Product", "Edit Product": "Edit Product",
"I have completed the payment": "I have completed the payment",
"Image": "Image", "Image": "Image",
"Image - Tooltip": "Image of product", "Image - Tooltip": "Image of product",
"New Product": "New Product", "New Product": "New Product",
"Pay": "Pay", "Pay": "Pay",
"PayPal": "PayPal", "PayPal": "PayPal",
"Payment cancelled": "Payment cancelled",
"Payment failed": "Payment failed",
"Payment providers": "Payment providers", "Payment providers": "Payment providers",
"Payment providers - Tooltip": "Providers of payment services", "Payment providers - Tooltip": "Providers of payment services",
"Placing order...": "Placing order...", "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": "Price",
"Price - Tooltip": "Price of product", "Price - Tooltip": "Price of product",
"Quantity": "Quantity", "Quantity": "Quantity",
@@ -672,8 +689,8 @@
"Content": "Content", "Content": "Content",
"Content - Tooltip": "Content - Tooltip", "Content - Tooltip": "Content - Tooltip",
"Copy": "Copy", "Copy": "Copy",
"DB Test": "DB Test", "DB test": "DB test",
"DB Test - Tooltip": "DB Test - Tooltip", "DB test - Tooltip": "DB test - Tooltip",
"Disable SSL": "Disable SSL", "Disable SSL": "Disable SSL",
"Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server", "Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server",
"Domain": "Domain", "Domain": "Domain",
@@ -700,7 +717,10 @@
"Internal": "Internal", "Internal": "Internal",
"Issuer URL": "Issuer URL", "Issuer URL": "Issuer URL",
"Issuer URL - Tooltip": "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": "Metadata",
"Metadata - Tooltip": "SAML metadata", "Metadata - Tooltip": "SAML metadata",
"Method - Tooltip": "Login method, QR code or silent login", "Method - Tooltip": "Login method, QR code or silent login",
@@ -754,6 +774,10 @@
"Sender Id - Tooltip": "Sender Id - Tooltip", "Sender Id - Tooltip": "Sender Id - Tooltip",
"Sender number": "Sender number", "Sender number": "Sender number",
"Sender number - Tooltip": "Sender number - Tooltip", "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": "Sign Name",
"Sign Name - Tooltip": "Name of the signature to be used", "Sign Name - Tooltip": "Name of the signature to be used",
"Sign request": "Sign request", "Sign request": "Sign request",
@@ -764,12 +788,15 @@
"Signup HTML": "Signup HTML", "Signup HTML": "Signup HTML",
"Signup HTML - Edit": "Signup HTML - Edit", "Signup HTML - Edit": "Signup HTML - Edit",
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style", "Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
"Signup group": "Signup group",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Site key", "Site key": "Site key",
"Site key - Tooltip": "Site key", "Site key - Tooltip": "Site key",
"Sliding Validation": "Sliding Validation", "Sliding Validation": "Sliding Validation",
"Sub type": "Sub type", "Sub type": "Sub type",
"Sub type - Tooltip": "Sub type", "Sub type - Tooltip": "Sub type",
"Team ID": "Team ID",
"Team ID - Tooltip": "Team ID - Tooltip",
"Template code": "Template code", "Template code": "Template code",
"Template code - Tooltip": "Template code", "Template code - Tooltip": "Template code",
"Test Email": "Test Email", "Test Email": "Test Email",
@@ -780,6 +807,8 @@
"Token URL - Tooltip": "Token URL", "Token URL - Tooltip": "Token URL",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Select a type", "Type - Tooltip": "Select a type",
"User flow": "User flow",
"User flow - Tooltip": "User flow - Tooltip",
"User mapping": "User mapping", "User mapping": "User mapping",
"User mapping - Tooltip": "User mapping - Tooltip", "User mapping - Tooltip": "User mapping - Tooltip",
"UserInfo URL": "UserInfo URL", "UserInfo URL": "UserInfo URL",
@@ -801,6 +830,8 @@
"New Role": "New Role", "New Role": "New Role",
"Sub domains": "Sub domains", "Sub domains": "Sub domains",
"Sub domains - Tooltip": "Domains included in the current role", "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": "Sub roles",
"Sub roles - Tooltip": "Roles included in the current role", "Sub roles - Tooltip": "Roles included in the current role",
"Sub users": "Sub users", "Sub users": "Sub users",
@@ -812,6 +843,9 @@
"Confirm": "Confirm", "Confirm": "Confirm",
"Decline": "Decline", "Decline": "Decline",
"Have account?": "Have account?", "Have account?": "Have account?",
"Label": "Label",
"Label HTML": "Label HTML",
"Placeholder": "Placeholder",
"Please accept the agreement!": "Please accept the agreement!", "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 click the below button to sign in": "Please click the below button to sign in",
"Please confirm your password!": "Please confirm your password!", "Please confirm your password!": "Please confirm your password!",
@@ -830,6 +864,11 @@
"Please select your country/region!": "Please select your country/region!", "Please select your country/region!": "Please select your country/region!",
"Terms of Use": "Terms of Use", "Terms of Use": "Terms of Use",
"Terms of Use - Tooltip": "Terms of use that users need to read and agree to during registration", "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 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 invoice title!": "The input is not invoice title!",
"The input is not valid Email!": "The input is not valid Email!", "The input is not valid Email!": "The input is not valid Email!",
@@ -841,14 +880,19 @@
"sign in now": "sign in now" "sign in now": "sign in now"
}, },
"subscription": { "subscription": {
"Duration": "Duration", "Active": "Active",
"Duration - Tooltip": "Subscription duration",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "End date", "End time": "End time",
"End date - Tooltip": "End date", "End time - Tooltip": "End time - Tooltip",
"Error": "Error",
"Expired": "Expired",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Start date": "Start date", "Pending": "Pending",
"Start date - Tooltip": "Start date" "Period": "Period",
"Start time": "Start time",
"Start time - Tooltip": "Start time - Tooltip",
"Suspended": "Suspended",
"Upcoming": "Upcoming"
}, },
"syncer": { "syncer": {
"Affiliation table": "Affiliation table", "Affiliation table": "Affiliation table",
@@ -872,6 +916,8 @@
"Is read-only": "Is read-only", "Is read-only": "Is read-only",
"Is read-only - Tooltip": "Is read-only - Tooltip", "Is read-only - Tooltip": "Is read-only - Tooltip",
"New Syncer": "New Syncer", "New Syncer": "New Syncer",
"SSL mode": "SSL mode",
"SSL mode - Tooltip": "SSL mode - Tooltip",
"Sync interval": "Sync interval", "Sync interval": "Sync interval",
"Sync interval - Tooltip": "Unit in seconds", "Sync interval - Tooltip": "Unit in seconds",
"Table": "Table", "Table": "Table",
@@ -913,11 +959,19 @@
}, },
"token": { "token": {
"Access token": "Access token", "Access token": "Access token",
"Access token - Tooltip": "Access token - Tooltip",
"Authorization code": "Authorization code", "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", "Edit Token": "Edit Token",
"Expires in": "Expires in", "Expires in": "Expires in",
"Expires in - Tooltip": "Expires in - Tooltip",
"New Token": "New Token", "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": { "user": {
"3rd-party logins": "3rd-party logins", "3rd-party logins": "3rd-party logins",
@@ -974,6 +1028,8 @@
"Managed accounts": "Managed accounts", "Managed accounts": "Managed accounts",
"Modify password...": "Modify password...", "Modify password...": "Modify password...",
"Multi-factor authentication": "Multi-factor authentication", "Multi-factor authentication": "Multi-factor authentication",
"Name": "Name",
"Name format": "Name format",
"New Email": "New Email", "New Email": "New Email",
"New Password": "New Password", "New Password": "New Password",
"New User": "New User", "New User": "New User",
@@ -1011,6 +1067,7 @@
"Upload ID card front picture": "Upload ID card front picture", "Upload ID card front picture": "Upload ID card front picture",
"Upload ID card with person picture": "Upload ID card with person picture", "Upload ID card with person picture": "Upload ID card with person picture",
"Upload a photo": "Upload a photo", "Upload a photo": "Upload a photo",
"Value": "Value",
"Values": "Values", "Values": "Values",
"Verification code sent": "Verification code sent", "Verification code sent": "Verification code sent",
"WebAuthn credentials": "WebAuthn credentials", "WebAuthn credentials": "WebAuthn credentials",

View File

@@ -12,7 +12,9 @@
"Policies": "Règles", "Policies": "Règles",
"Policies - Tooltip": "Règles de Casbin", "Policies - Tooltip": "Règles de Casbin",
"Rule type": "Type de règle", "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": { "application": {
"Always": "Toujours", "Always": "Toujours",
@@ -30,6 +32,8 @@
"Edit Application": "Modifier l'application", "Edit Application": "Modifier l'application",
"Enable Email linking": "Autoriser à lier l'e-mail", "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 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": "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 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", "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 signin session - Tooltip": "Conserver une session après la connexion à Casdoor à partir de l'application",
"Enable signup": "Activer l'inscription", "Enable signup": "Activer l'inscription",
"Enable signup - Tooltip": "Autoriser la création de nouveaux comptes", "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", "Failed to sign in": "Échec de la connexion",
"File uploaded successfully": "Fichier téléchargé avec succès", "File uploaded successfully": "Fichier téléchargé avec succès",
"First, last": "Prénom, nom", "First, last": "Prénom, nom",
@@ -60,7 +68,6 @@
"Input": "Saisie", "Input": "Saisie",
"Invitation code": "Code d'invitation", "Invitation code": "Code d'invitation",
"Invitation code - Tooltip": "Code d'invitation - infobulle", "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", "Left": "Gauche",
"Logged in successfully": "Connexion réussie", "Logged in successfully": "Connexion réussie",
"Logged out successfully": "Dé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 application!": "Veuillez saisir votre application !",
"Please input your organization!": "Veuillez saisir votre organisation !", "Please input your organization!": "Veuillez saisir votre organisation !",
"Please select a HTML file": "Veuillez sélectionner un fichier HTML", "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", "Random": "Aléatoire",
"Real name": "Nom complet", "Real name": "Nom complet",
"Redirect URL": "URL de redirection", "Redirect URL": "URL de redirection",
@@ -86,7 +92,6 @@
"Rule": "Règle", "Rule": "Règle",
"SAML metadata": "Métadonnées SAML", "SAML metadata": "Métadonnées SAML",
"SAML metadata - Tooltip": "Les métadonnées du protocole 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", "SAML reply URL": "URL de réponse SAML",
"Select": "Sélectionner", "Select": "Sélectionner",
"Side panel HTML": "HTML du panneau latéral", "Side panel HTML": "HTML du panneau latéral",
@@ -95,11 +100,9 @@
"Sign Up Error": "Erreur d'inscription", "Sign Up Error": "Erreur d'inscription",
"Signin": "Connexion", "Signin": "Connexion",
"Signin (Default True)": "Connexion (Vrai par défaut)", "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", "Signin session": "Session de connexion",
"Signup items": "Champs d'inscription", "Signup items": "Champs d'inscription",
"Signup items - Tooltip": "Champs à remplir lors de l'enregistrement de nouveaux comptes", "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", "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", "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", "Token expire": "Expiration du jeton",
@@ -113,7 +116,6 @@
"Bit size - Tooltip": "Longueur de la clé secrète", "Bit size - Tooltip": "Longueur de la clé secrète",
"Certificate": "Certificat", "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 - 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 certificate": "Copier le certificat",
"Copy private key": "Copier la clé privée", "Copy private key": "Copier la clé privée",
"Crypto algorithm": "Algorithme cryptographique", "Crypto algorithm": "Algorithme cryptographique",
@@ -126,7 +128,6 @@
"New Cert": "Nouveau Certificat", "New Cert": "Nouveau Certificat",
"Private key": "Clé privée", "Private key": "Clé privée",
"Private key - Tooltip": "Clé privée correspondant au certificat de la clé publique", "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", "Scope - Tooltip": "Scénarios d'utilisation du certificat",
"Type - Tooltip": "Type de certificat" "Type - Tooltip": "Type de certificat"
}, },
@@ -191,6 +192,7 @@
"Click to Upload": "Cliquer pour télécharger", "Click to Upload": "Cliquer pour télécharger",
"Close": "Fermer", "Close": "Fermer",
"Confirm": "Confirmer", "Confirm": "Confirmer",
"Copied to clipboard successfully": "Copied to clipboard successfully",
"Copy": "Copier", "Copy": "Copier",
"Created time": "Date de création", "Created time": "Date de création",
"Custom": "Personnalisée", "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 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": "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 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", "Delete": "Supprimer",
"Description": "Description", "Description": "Description",
"Description - Tooltip": "Description détaillée pour référence, Casdoor ne l'utilisera pas en soi", "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 connect to server": "Échec de la connexion au serveur",
"Failed to delete": "Échec de la suppression", "Failed to delete": "Échec de la suppression",
"Failed to enable": "Échec de l'activation", "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 remove": "Échec de la suppression",
"Failed to save": "Échec de sauvegarde", "Failed to save": "Échec de sauvegarde",
"Failed to sync": "Failed to sync",
"Failed to verify": "Échec de la vérification", "Failed to verify": "Échec de la vérification",
"Favicon": "Icône du site", "Favicon": "Icône du site",
"Favicon - Tooltip": "L'URL de l'icône « favicon » utilisée dans toutes les pages Casdoor de l'organisation", "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", "MFA items - Tooltip": "Types d'authentification multifacteur - Infobulle",
"Master password": "Mot de passe passe-partout", "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 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", "Menu": "Menu",
"Method": "Méthode", "Method": "Méthode",
"Model": "Modèle", "Model": "Modèle",
@@ -272,6 +280,8 @@
"Password salt - Tooltip": "Paramètre aléatoire utilisé pour le chiffrement des mots de passe", "Password salt - Tooltip": "Paramètre aléatoire utilisé pour le chiffrement des mots de passe",
"Password type": "Type de mot 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", "Password type - Tooltip": "Format de stockage des mots de passe dans la base de données",
"Payment": "Payment",
"Payment - Tooltip": "Payment - Tooltip",
"Payments": "Paiements", "Payments": "Paiements",
"Permissions": "Permissions", "Permissions": "Permissions",
"Permissions - Tooltip": "Permissions détenues par ce compte", "Permissions - Tooltip": "Permissions détenues par ce compte",
@@ -283,6 +293,8 @@
"Plans - Tooltip": "Offres - Infobulle", "Plans - Tooltip": "Offres - Infobulle",
"Preview": "Aperçu", "Preview": "Aperçu",
"Preview - Tooltip": "Prévisualisation des effets configurés", "Preview - Tooltip": "Prévisualisation des effets configurés",
"Pricing": "Pricing",
"Pricing - Tooltip": "Pricing - Tooltip",
"Pricings": "Tarifs", "Pricings": "Tarifs",
"Products": "Produits", "Products": "Produits",
"Provider": "Fournisseur", "Provider": "Fournisseur",
@@ -296,6 +308,10 @@
"Role - Tooltip": "Rôle - Infobulle", "Role - Tooltip": "Rôle - Infobulle",
"Roles": "Rôles", "Roles": "Rôles",
"Roles - Tooltip": "Les rôles auxquels le compte appartient", "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": "Enregistrer",
"Save & Exit": "Enregistrer et quitter", "Save & Exit": "Enregistrer et quitter",
"Session ID": "Identifiant de session", "Session ID": "Identifiant de session",
@@ -318,6 +334,7 @@
"Successfully removed": "Retiré avec succès", "Successfully removed": "Retiré avec succès",
"Successfully saved": "Enregistré avec succès", "Successfully saved": "Enregistré avec succès",
"Successfully sent": "Envoyé 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": "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", "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", "Sure to delete": "Certain⋅e de supprimer",
@@ -440,7 +457,6 @@
"Multi-factor methods": "Méthodes d'authentification multifacteur", "Multi-factor methods": "Méthodes d'authentification multifacteur",
"Multi-factor recover": "Restauration de l'authentification multifacteur", "Multi-factor recover": "Restauration de l'authentification multifacteur",
"Multi-factor recover description": "Description de la 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", "Or copy the secret to your Authenticator App": "Ou copiez la clé secrète dans votre application d'authentification",
"Passcode": "Code d'accès", "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", "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": { "plan": {
"Edit Plan": "Modifier l'offre", "Edit Plan": "Modifier l'offre",
"New Plan": "Nouvelle offre", "New Plan": "Nouvelle offre",
"Price per month": "Prix par mois", "Period": "Period",
"Price per month - Tooltip": "Prix par mois - Infobulle", "Period - Tooltip": "Period - Tooltip",
"Price per year": "Prix annuel", "Price": "Price",
"Price per year - Tooltip": "Prix annuel - Infobulle", "Price - Tooltip": "Price - Tooltip",
"per month": "par mois" "Related product": "Related product",
"per month": "par mois",
"per year": "per year"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "Copier l'URL de la page tarifs", "Copy pricing page URL": "Copier l'URL de la page tarifs",
@@ -589,7 +607,7 @@
"Trial duration": "Durée de l'essai", "Trial duration": "Durée de l'essai",
"Trial duration - Tooltip": "Durée de la période d'essai", "Trial duration - Tooltip": "Durée de la période d'essai",
"days trial available!": "jours d'essai disponibles !", "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": { "product": {
"Alipay": "Alipay", "Alipay": "Alipay",
@@ -600,17 +618,16 @@
"Detail - Tooltip": "Détail du produit", "Detail - Tooltip": "Détail du produit",
"Dummy": "Exemple", "Dummy": "Exemple",
"Edit Product": "Modifier le produit", "Edit Product": "Modifier le produit",
"I have completed the payment": "J'ai effectué le paiement",
"Image": "Image", "Image": "Image",
"Image - Tooltip": "Image du produit", "Image - Tooltip": "Image du produit",
"New Product": "Nouveau produit", "New Product": "Nouveau produit",
"Pay": "Payer", "Pay": "Payer",
"PayPal": "PayPal", "PayPal": "PayPal",
"Payment cancelled": "Payment cancelled",
"Payment failed": "Payment failed",
"Payment providers": "Fournisseurs de paiement", "Payment providers": "Fournisseurs de paiement",
"Payment providers - Tooltip": "Fournisseurs de services de paiement", "Payment providers - Tooltip": "Fournisseurs de services de paiement",
"Placing order...": "Passer une commande...", "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": "Prix",
"Price - Tooltip": "Prix du produit", "Price - Tooltip": "Prix du produit",
"Quantity": "Quantité", "Quantity": "Quantité",
@@ -672,8 +689,8 @@
"Content": "Contenu", "Content": "Contenu",
"Content - Tooltip": "Contenu - Infobulle", "Content - Tooltip": "Contenu - Infobulle",
"Copy": "Copie", "Copy": "Copie",
"DB Test": "Test de la BD", "DB test": "DB test",
"DB Test - Tooltip": "Test de la BD - Infobulle", "DB test - Tooltip": "DB test - Tooltip",
"Disable SSL": "Désactiver SSL", "Disable SSL": "Désactiver SSL",
"Disable SSL - Tooltip": "Désactiver le protocole SSL lors de la communication avec le serveur STMP", "Disable SSL - Tooltip": "Désactiver le protocole SSL lors de la communication avec le serveur STMP",
"Domain": "Domaine", "Domain": "Domaine",
@@ -700,7 +717,10 @@
"Internal": "Interne", "Internal": "Interne",
"Issuer URL": "URL de l'émetteur", "Issuer URL": "URL de l'émetteur",
"Issuer URL - Tooltip": "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": "Métadonnées",
"Metadata - Tooltip": "Métadonnées SAML", "Metadata - Tooltip": "Métadonnées SAML",
"Method - Tooltip": "Méthode de connexion, code QR ou connexion silencieuse", "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 Id - Tooltip": "ID de l'expéditeur - Infobulle",
"Sender number": "Numéro de l'expéditeur", "Sender number": "Numéro de l'expéditeur",
"Sender number - Tooltip": "Numéro de l'expéditeur - Infobulle", "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": "Nom de signature",
"Sign Name - Tooltip": "Nom de la signature à utiliser", "Sign Name - Tooltip": "Nom de la signature à utiliser",
"Sign request": "Demande de signature", "Sign request": "Demande de signature",
@@ -764,12 +788,15 @@
"Signup HTML": "HTML de la page d'inscription", "Signup HTML": "HTML de la page d'inscription",
"Signup HTML - Edit": "HTML de la page d'inscription - Modifier", "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 HTML - Tooltip": "HTML personnalisé pour remplacer le style par défaut de la page d'inscription",
"Signup group": "Signup group",
"Silent": "Silencieux", "Silent": "Silencieux",
"Site key": "Clé de site", "Site key": "Clé de site",
"Site key - Tooltip": "Clé de site", "Site key - Tooltip": "Clé de site",
"Sliding Validation": "Validation glissante", "Sliding Validation": "Validation glissante",
"Sub type": "Sous-type", "Sub type": "Sous-type",
"Sub type - Tooltip": "Sous-type", "Sub type - Tooltip": "Sous-type",
"Team ID": "Team ID",
"Team ID - Tooltip": "Team ID - Tooltip",
"Template code": "Code modèle", "Template code": "Code modèle",
"Template code - Tooltip": "Code de modèle", "Template code - Tooltip": "Code de modèle",
"Test Email": "E-mail de test", "Test Email": "E-mail de test",
@@ -780,6 +807,8 @@
"Token URL - Tooltip": "URL de jeton", "Token URL - Tooltip": "URL de jeton",
"Type": "Type de texte", "Type": "Type de texte",
"Type - Tooltip": "Sélectionnez un type", "Type - Tooltip": "Sélectionnez un type",
"User flow": "User flow",
"User flow - Tooltip": "User flow - Tooltip",
"User mapping": "Association de compte", "User mapping": "Association de compte",
"User mapping - Tooltip": "Mapping utilisateur - Infobulle", "User mapping - Tooltip": "Mapping utilisateur - Infobulle",
"UserInfo URL": "URL d'informations utilisateur", "UserInfo URL": "URL d'informations utilisateur",
@@ -801,6 +830,8 @@
"New Role": "Nouveau rôle", "New Role": "Nouveau rôle",
"Sub domains": "Domaines", "Sub domains": "Domaines",
"Sub domains - Tooltip": "Domaines pour lesquels s'appliquent le rôle ou la permission", "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": "Rôles",
"Sub roles - Tooltip": "Rôles pour lesquels s'appliquent le rôle ou la permission", "Sub roles - Tooltip": "Rôles pour lesquels s'appliquent le rôle ou la permission",
"Sub users": "Comptes", "Sub users": "Comptes",
@@ -812,6 +843,9 @@
"Confirm": "Confirmer", "Confirm": "Confirmer",
"Decline": "Décliner", "Decline": "Décliner",
"Have account?": "Avez-vous un compte ?", "Have account?": "Avez-vous un compte ?",
"Label": "Label",
"Label HTML": "Label HTML",
"Placeholder": "Placeholder",
"Please accept the agreement!": "Veuillez accepter l'accord !", "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 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 !", "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 !", "Please select your country/region!": "Veuillez sélectionner votre pays/région !",
"Terms of Use": "Conditions d'utilisation", "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", "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 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 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 !", "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" "sign in now": "Connectez-vous maintenant"
}, },
"subscription": { "subscription": {
"Duration": "Durée", "Active": "Active",
"Duration - Tooltip": "Durée de l'abonnement",
"Edit Subscription": "Modifier labonnement", "Edit Subscription": "Modifier labonnement",
"End date": "Date de fin", "End time": "End time",
"End date - Tooltip": "Date de fin", "End time - Tooltip": "End time - Tooltip",
"Error": "Error",
"Expired": "Expired",
"New Subscription": "Nouvel abonnement", "New Subscription": "Nouvel abonnement",
"Start date": "Date de début", "Pending": "Pending",
"Start date - Tooltip": "Date de début" "Period": "Period",
"Start time": "Start time",
"Start time - Tooltip": "Start time - Tooltip",
"Suspended": "Suspended",
"Upcoming": "Upcoming"
}, },
"syncer": { "syncer": {
"Affiliation table": "Table d'affiliation", "Affiliation table": "Table d'affiliation",
@@ -872,6 +916,8 @@
"Is read-only": "Est en lecture seule", "Is read-only": "Est en lecture seule",
"Is read-only - Tooltip": "En lecture seule - Infobulle", "Is read-only - Tooltip": "En lecture seule - Infobulle",
"New Syncer": "Nouveau synchroniseur", "New Syncer": "Nouveau synchroniseur",
"SSL mode": "SSL mode",
"SSL mode - Tooltip": "SSL mode - Tooltip",
"Sync interval": "Intervalle de synchronisation", "Sync interval": "Intervalle de synchronisation",
"Sync interval - Tooltip": "Unité en secondes", "Sync interval - Tooltip": "Unité en secondes",
"Table": "Tableau", "Table": "Tableau",
@@ -913,11 +959,19 @@
}, },
"token": { "token": {
"Access token": "Token d'accès", "Access token": "Token d'accès",
"Access token - Tooltip": "Access token - Tooltip",
"Authorization code": "Code d'autorisation", "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", "Edit Token": "Modifier le jeton",
"Expires in": "Expire dans", "Expires in": "Expire dans",
"Expires in - Tooltip": "Expires in - Tooltip",
"New Token": "Nouveau jeton", "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": { "user": {
"3rd-party logins": "Services de connexions tiers", "3rd-party logins": "Services de connexions tiers",
@@ -974,6 +1028,8 @@
"Managed accounts": "Comptes gérés", "Managed accounts": "Comptes gérés",
"Modify password...": "Modifier le mot de passe...", "Modify password...": "Modifier le mot de passe...",
"Multi-factor authentication": "Authentification multifacteur", "Multi-factor authentication": "Authentification multifacteur",
"Name": "Name",
"Name format": "Name format",
"New Email": "Nouvelle adresse e-mail", "New Email": "Nouvelle adresse e-mail",
"New Password": "Nouveau mot de passe", "New Password": "Nouveau mot de passe",
"New User": "Nouveau compte", "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 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 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", "Upload a photo": "Télécharger une photo",
"Value": "Value",
"Values": "Valeurs", "Values": "Valeurs",
"Verification code sent": "Code de vérification envoyé", "Verification code sent": "Code de vérification envoyé",
"WebAuthn credentials": "Identifiants WebAuthn", "WebAuthn credentials": "Identifiants WebAuthn",

View File

@@ -12,7 +12,9 @@
"Policies": "Policies", "Policies": "Policies",
"Policies - Tooltip": "Casbin policy rules", "Policies - Tooltip": "Casbin policy rules",
"Rule type": "Rule type", "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": { "application": {
"Always": "Always", "Always": "Always",
@@ -30,6 +32,8 @@
"Edit Application": "Edit Application", "Edit Application": "Edit Application",
"Enable Email linking": "Enable Email linking", "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 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": "Enable SAML compression",
"Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp", "Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp",
"Enable WebAuthn signin": "Enable WebAuthn signin", "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 signin session - Tooltip": "Whether Casdoor maintains a session after logging into Casdoor from the application",
"Enable signup": "Enable signup", "Enable signup": "Enable signup",
"Enable signup - Tooltip": "Whether to allow users to register a new account", "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", "Failed to sign in": "Failed to sign in",
"File uploaded successfully": "File uploaded successfully", "File uploaded successfully": "File uploaded successfully",
"First, last": "First, last", "First, last": "First, last",
@@ -60,7 +68,6 @@
"Input": "Input", "Input": "Input",
"Invitation code": "Invitation code", "Invitation code": "Invitation code",
"Invitation code - Tooltip": "Invitation code - Tooltip", "Invitation code - Tooltip": "Invitation code - Tooltip",
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
"Left": "Left", "Left": "Left",
"Logged in successfully": "Logged in successfully", "Logged in successfully": "Logged in successfully",
"Logged out successfully": "Logged out successfully", "Logged out successfully": "Logged out successfully",
@@ -73,7 +80,6 @@
"Please input your application!": "Please input your application!", "Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!", "Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Please select a HTML file", "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", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Redirect URL", "Redirect URL": "Redirect URL",
@@ -86,7 +92,6 @@
"Rule": "Rule", "Rule": "Rule",
"SAML metadata": "SAML metadata", "SAML metadata": "SAML metadata",
"SAML metadata - Tooltip": "The metadata of SAML protocol", "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", "SAML reply URL": "SAML reply URL",
"Select": "Select", "Select": "Select",
"Side panel HTML": "Side panel HTML", "Side panel HTML": "Side panel HTML",
@@ -95,11 +100,9 @@
"Sign Up Error": "Sign Up Error", "Sign Up Error": "Sign Up Error",
"Signin": "Signin", "Signin": "Signin",
"Signin (Default True)": "Signin (Default True)", "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", "Signin session": "Signin session",
"Signup items": "Signup items", "Signup items": "Signup items",
"Signup items - Tooltip": "Items for users to fill in when registering new accounts", "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", "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", "The application does not allow to sign up new account": "The application does not allow to sign up new account",
"Token expire": "Token expire", "Token expire": "Token expire",
@@ -113,7 +116,6 @@
"Bit size - Tooltip": "Secret key length", "Bit size - Tooltip": "Secret key length",
"Certificate": "Certificate", "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 - 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 certificate": "Copy certificate",
"Copy private key": "Copy private key", "Copy private key": "Copy private key",
"Crypto algorithm": "Crypto algorithm", "Crypto algorithm": "Crypto algorithm",
@@ -126,7 +128,6 @@
"New Cert": "New Cert", "New Cert": "New Cert",
"Private key": "Private key", "Private key": "Private key",
"Private key - Tooltip": "Private key corresponding to the public key certificate", "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", "Scope - Tooltip": "Usage scenarios of the certificate",
"Type - Tooltip": "Type of certificate" "Type - Tooltip": "Type of certificate"
}, },
@@ -191,6 +192,7 @@
"Click to Upload": "Click to Upload", "Click to Upload": "Click to Upload",
"Close": "Close", "Close": "Close",
"Confirm": "Confirm", "Confirm": "Confirm",
"Copied to clipboard successfully": "Copied to clipboard successfully",
"Copy": "Copy", "Copy": "Copy",
"Created time": "Created time", "Created time": "Created time",
"Custom": "Custom", "Custom": "Custom",
@@ -200,6 +202,8 @@
"Default application - Tooltip": "Default application for users registered directly from the organization page", "Default application - Tooltip": "Default application for users registered directly from the organization page",
"Default avatar": "Default avatar", "Default avatar": "Default avatar",
"Default avatar - Tooltip": "Default avatar used when newly registered users do not set an avatar image", "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", "Delete": "Delete",
"Description": "Description", "Description": "Description",
"Description - Tooltip": "Detailed description information for reference, Casdoor itself will not use it", "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 connect to server": "Failed to connect to server",
"Failed to delete": "Failed to delete", "Failed to delete": "Failed to delete",
"Failed to enable": "Failed to enable", "Failed to enable": "Failed to enable",
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
"Failed to remove": "Failed to remove", "Failed to remove": "Failed to remove",
"Failed to save": "Failed to save", "Failed to save": "Failed to save",
"Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization", "Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
@@ -251,6 +257,8 @@
"MFA items - Tooltip": "MFA items - Tooltip", "MFA items - Tooltip": "MFA items - Tooltip",
"Master password": "Master password", "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 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", "Menu": "Menu",
"Method": "Method", "Method": "Method",
"Model": "Model", "Model": "Model",
@@ -272,6 +280,8 @@
"Password salt - Tooltip": "Random parameter used for password encryption", "Password salt - Tooltip": "Random parameter used for password encryption",
"Password type": "Password type", "Password type": "Password type",
"Password type - Tooltip": "Storage format of passwords in the database", "Password type - Tooltip": "Storage format of passwords in the database",
"Payment": "Payment",
"Payment - Tooltip": "Payment - Tooltip",
"Payments": "Payments", "Payments": "Payments",
"Permissions": "Permissions", "Permissions": "Permissions",
"Permissions - Tooltip": "Permissions owned by this user", "Permissions - Tooltip": "Permissions owned by this user",
@@ -283,6 +293,8 @@
"Plans - Tooltip": "Plans - Tooltip", "Plans - Tooltip": "Plans - Tooltip",
"Preview": "Preview", "Preview": "Preview",
"Preview - Tooltip": "Preview the configured effects", "Preview - Tooltip": "Preview the configured effects",
"Pricing": "Pricing",
"Pricing - Tooltip": "Pricing - Tooltip",
"Pricings": "Pricings", "Pricings": "Pricings",
"Products": "Products", "Products": "Products",
"Provider": "Provider", "Provider": "Provider",
@@ -296,6 +308,10 @@
"Role - Tooltip": "Role - Tooltip", "Role - Tooltip": "Role - Tooltip",
"Roles": "Roles", "Roles": "Roles",
"Roles - Tooltip": "Roles that the user belongs to", "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": "Save",
"Save & Exit": "Save & Exit", "Save & Exit": "Save & Exit",
"Session ID": "Session ID", "Session ID": "Session ID",
@@ -318,6 +334,7 @@
"Successfully removed": "Successfully removed", "Successfully removed": "Successfully removed",
"Successfully saved": "Successfully saved", "Successfully saved": "Successfully saved",
"Successfully sent": "Successfully sent", "Successfully sent": "Successfully sent",
"Successfully synced": "Successfully synced",
"Supported country codes": "Supported country codes", "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", "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", "Sure to delete": "Sure to delete",
@@ -440,7 +457,6 @@
"Multi-factor methods": "Multi-factor methods", "Multi-factor methods": "Multi-factor methods",
"Multi-factor recover": "Multi-factor recover", "Multi-factor recover": "Multi-factor recover",
"Multi-factor recover description": "Multi-factor recover description", "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", "Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
"Passcode": "Passcode", "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", "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": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"Price per month": "Price per month", "Period": "Period",
"Price per month - Tooltip": "Price per month - Tooltip", "Period - Tooltip": "Period - Tooltip",
"Price per year": "Price per year", "Price": "Price",
"Price per year - Tooltip": "Price per year - Tooltip", "Price - Tooltip": "Price - Tooltip",
"per month": "per month" "Related product": "Related product",
"per month": "per month",
"per year": "per year"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "Copy pricing page URL", "Copy pricing page URL": "Copy pricing page URL",
@@ -589,7 +607,7 @@
"Trial duration": "Trial duration", "Trial duration": "Trial duration",
"Trial duration - Tooltip": "Trial duration period", "Trial duration - Tooltip": "Trial duration period",
"days trial available!": "days trial available!", "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": { "product": {
"Alipay": "Alipay", "Alipay": "Alipay",
@@ -600,17 +618,16 @@
"Detail - Tooltip": "Detail of product", "Detail - Tooltip": "Detail of product",
"Dummy": "Dummy", "Dummy": "Dummy",
"Edit Product": "Edit Product", "Edit Product": "Edit Product",
"I have completed the payment": "I have completed the payment",
"Image": "Image", "Image": "Image",
"Image - Tooltip": "Image of product", "Image - Tooltip": "Image of product",
"New Product": "New Product", "New Product": "New Product",
"Pay": "Pay", "Pay": "Pay",
"PayPal": "PayPal", "PayPal": "PayPal",
"Payment cancelled": "Payment cancelled",
"Payment failed": "Payment failed",
"Payment providers": "Payment providers", "Payment providers": "Payment providers",
"Payment providers - Tooltip": "Providers of payment services", "Payment providers - Tooltip": "Providers of payment services",
"Placing order...": "Placing order...", "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": "Price",
"Price - Tooltip": "Price of product", "Price - Tooltip": "Price of product",
"Quantity": "Quantity", "Quantity": "Quantity",
@@ -672,8 +689,8 @@
"Content": "Content", "Content": "Content",
"Content - Tooltip": "Content - Tooltip", "Content - Tooltip": "Content - Tooltip",
"Copy": "Copy", "Copy": "Copy",
"DB Test": "DB Test", "DB test": "DB test",
"DB Test - Tooltip": "DB Test - Tooltip", "DB test - Tooltip": "DB test - Tooltip",
"Disable SSL": "Disable SSL", "Disable SSL": "Disable SSL",
"Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server", "Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server",
"Domain": "Domain", "Domain": "Domain",
@@ -700,7 +717,10 @@
"Internal": "Internal", "Internal": "Internal",
"Issuer URL": "Issuer URL", "Issuer URL": "Issuer URL",
"Issuer URL - Tooltip": "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": "Metadata",
"Metadata - Tooltip": "SAML metadata", "Metadata - Tooltip": "SAML metadata",
"Method - Tooltip": "Login method, QR code or silent login", "Method - Tooltip": "Login method, QR code or silent login",
@@ -754,6 +774,10 @@
"Sender Id - Tooltip": "Sender Id - Tooltip", "Sender Id - Tooltip": "Sender Id - Tooltip",
"Sender number": "Sender number", "Sender number": "Sender number",
"Sender number - Tooltip": "Sender number - Tooltip", "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": "Sign Name",
"Sign Name - Tooltip": "Name of the signature to be used", "Sign Name - Tooltip": "Name of the signature to be used",
"Sign request": "Sign request", "Sign request": "Sign request",
@@ -764,12 +788,15 @@
"Signup HTML": "Signup HTML", "Signup HTML": "Signup HTML",
"Signup HTML - Edit": "Signup HTML - Edit", "Signup HTML - Edit": "Signup HTML - Edit",
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style", "Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
"Signup group": "Signup group",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Site key", "Site key": "Site key",
"Site key - Tooltip": "Site key", "Site key - Tooltip": "Site key",
"Sliding Validation": "Sliding Validation", "Sliding Validation": "Sliding Validation",
"Sub type": "Sub type", "Sub type": "Sub type",
"Sub type - Tooltip": "Sub type", "Sub type - Tooltip": "Sub type",
"Team ID": "Team ID",
"Team ID - Tooltip": "Team ID - Tooltip",
"Template code": "Template code", "Template code": "Template code",
"Template code - Tooltip": "Template code", "Template code - Tooltip": "Template code",
"Test Email": "Test Email", "Test Email": "Test Email",
@@ -780,6 +807,8 @@
"Token URL - Tooltip": "Token URL", "Token URL - Tooltip": "Token URL",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Select a type", "Type - Tooltip": "Select a type",
"User flow": "User flow",
"User flow - Tooltip": "User flow - Tooltip",
"User mapping": "User mapping", "User mapping": "User mapping",
"User mapping - Tooltip": "User mapping - Tooltip", "User mapping - Tooltip": "User mapping - Tooltip",
"UserInfo URL": "UserInfo URL", "UserInfo URL": "UserInfo URL",
@@ -801,6 +830,8 @@
"New Role": "New Role", "New Role": "New Role",
"Sub domains": "Sub domains", "Sub domains": "Sub domains",
"Sub domains - Tooltip": "Domains included in the current role", "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": "Sub roles",
"Sub roles - Tooltip": "Roles included in the current role", "Sub roles - Tooltip": "Roles included in the current role",
"Sub users": "Sub users", "Sub users": "Sub users",
@@ -812,6 +843,9 @@
"Confirm": "Confirm", "Confirm": "Confirm",
"Decline": "Decline", "Decline": "Decline",
"Have account?": "Have account?", "Have account?": "Have account?",
"Label": "Label",
"Label HTML": "Label HTML",
"Placeholder": "Placeholder",
"Please accept the agreement!": "Please accept the agreement!", "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 click the below button to sign in": "Please click the below button to sign in",
"Please confirm your password!": "Please confirm your password!", "Please confirm your password!": "Please confirm your password!",
@@ -830,6 +864,11 @@
"Please select your country/region!": "Please select your country/region!", "Please select your country/region!": "Please select your country/region!",
"Terms of Use": "Terms of Use", "Terms of Use": "Terms of Use",
"Terms of Use - Tooltip": "Terms of use that users need to read and agree to during registration", "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 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 invoice title!": "The input is not invoice title!",
"The input is not valid Email!": "The input is not valid Email!", "The input is not valid Email!": "The input is not valid Email!",
@@ -841,14 +880,19 @@
"sign in now": "sign in now" "sign in now": "sign in now"
}, },
"subscription": { "subscription": {
"Duration": "Duration", "Active": "Active",
"Duration - Tooltip": "Subscription duration",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "End date", "End time": "End time",
"End date - Tooltip": "End date", "End time - Tooltip": "End time - Tooltip",
"Error": "Error",
"Expired": "Expired",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Start date": "Start date", "Pending": "Pending",
"Start date - Tooltip": "Start date" "Period": "Period",
"Start time": "Start time",
"Start time - Tooltip": "Start time - Tooltip",
"Suspended": "Suspended",
"Upcoming": "Upcoming"
}, },
"syncer": { "syncer": {
"Affiliation table": "Affiliation table", "Affiliation table": "Affiliation table",
@@ -872,6 +916,8 @@
"Is read-only": "Is read-only", "Is read-only": "Is read-only",
"Is read-only - Tooltip": "Is read-only - Tooltip", "Is read-only - Tooltip": "Is read-only - Tooltip",
"New Syncer": "New Syncer", "New Syncer": "New Syncer",
"SSL mode": "SSL mode",
"SSL mode - Tooltip": "SSL mode - Tooltip",
"Sync interval": "Sync interval", "Sync interval": "Sync interval",
"Sync interval - Tooltip": "Unit in seconds", "Sync interval - Tooltip": "Unit in seconds",
"Table": "Table", "Table": "Table",
@@ -913,11 +959,19 @@
}, },
"token": { "token": {
"Access token": "Access token", "Access token": "Access token",
"Access token - Tooltip": "Access token - Tooltip",
"Authorization code": "Authorization code", "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", "Edit Token": "Edit Token",
"Expires in": "Expires in", "Expires in": "Expires in",
"Expires in - Tooltip": "Expires in - Tooltip",
"New Token": "New Token", "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": { "user": {
"3rd-party logins": "3rd-party logins", "3rd-party logins": "3rd-party logins",
@@ -974,6 +1028,8 @@
"Managed accounts": "Managed accounts", "Managed accounts": "Managed accounts",
"Modify password...": "Modify password...", "Modify password...": "Modify password...",
"Multi-factor authentication": "Multi-factor authentication", "Multi-factor authentication": "Multi-factor authentication",
"Name": "Name",
"Name format": "Name format",
"New Email": "New Email", "New Email": "New Email",
"New Password": "New Password", "New Password": "New Password",
"New User": "New User", "New User": "New User",
@@ -1011,6 +1067,7 @@
"Upload ID card front picture": "Upload ID card front picture", "Upload ID card front picture": "Upload ID card front picture",
"Upload ID card with person picture": "Upload ID card with person picture", "Upload ID card with person picture": "Upload ID card with person picture",
"Upload a photo": "Upload a photo", "Upload a photo": "Upload a photo",
"Value": "Value",
"Values": "Values", "Values": "Values",
"Verification code sent": "Verification code sent", "Verification code sent": "Verification code sent",
"WebAuthn credentials": "WebAuthn credentials", "WebAuthn credentials": "WebAuthn credentials",

View File

@@ -12,7 +12,9 @@
"Policies": "Kebijakan", "Policies": "Kebijakan",
"Policies - Tooltip": "Kebijakan aturan Casbin", "Policies - Tooltip": "Kebijakan aturan Casbin",
"Rule type": "Rule type", "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": { "application": {
"Always": "Selalu", "Always": "Selalu",
@@ -30,6 +32,8 @@
"Edit Application": "Mengedit aplikasi", "Edit Application": "Mengedit aplikasi",
"Enable Email linking": "Aktifkan pengaitan email", "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 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": "Aktifkan kompresi SAML",
"Enable SAML compression - Tooltip": "Apakah pesan respons SAML harus dikompres saat Casdoor digunakan sebagai SAML idp?", "Enable SAML compression - Tooltip": "Apakah pesan respons SAML harus dikompres saat Casdoor digunakan sebagai SAML idp?",
"Enable WebAuthn signin": "Aktifkan masuk WebAuthn", "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 signin session - Tooltip": "Apakah Casdoor mempertahankan sesi setelah login ke Casdoor dari aplikasi",
"Enable signup": "Aktifkan pendaftaran", "Enable signup": "Aktifkan pendaftaran",
"Enable signup - Tooltip": "Apakah akan mengizinkan pengguna untuk mendaftar akun baru", "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", "Failed to sign in": "Gagal masuk",
"File uploaded successfully": "Berkas telah diunggah dengan sukses", "File uploaded successfully": "Berkas telah diunggah dengan sukses",
"First, last": "First, last", "First, last": "First, last",
@@ -60,7 +68,6 @@
"Input": "Input", "Input": "Input",
"Invitation code": "Invitation code", "Invitation code": "Invitation code",
"Invitation code - Tooltip": "Invitation code - Tooltip", "Invitation code - Tooltip": "Invitation code - Tooltip",
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
"Left": "Kiri", "Left": "Kiri",
"Logged in successfully": "Berhasil masuk", "Logged in successfully": "Berhasil masuk",
"Logged out successfully": "Berhasil keluar dari sistem", "Logged out successfully": "Berhasil keluar dari sistem",
@@ -73,7 +80,6 @@
"Please input your application!": "Silakan masukkan aplikasi Anda!", "Please input your application!": "Silakan masukkan aplikasi Anda!",
"Please input your organization!": "Silakan masukkan organisasi Anda!", "Please input your organization!": "Silakan masukkan organisasi Anda!",
"Please select a HTML file": "Silahkan pilih file HTML", "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", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Mengalihkan URL", "Redirect URL": "Mengalihkan URL",
@@ -86,7 +92,6 @@
"Rule": "Aturan", "Rule": "Aturan",
"SAML metadata": "Metadata SAML", "SAML metadata": "Metadata SAML",
"SAML metadata - Tooltip": "Metadata dari protokol 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", "SAML reply URL": "Alamat URL Balasan SAML",
"Select": "Select", "Select": "Select",
"Side panel HTML": "Panel samping HTML", "Side panel HTML": "Panel samping HTML",
@@ -95,11 +100,9 @@
"Sign Up Error": "Kesalahan Pendaftaran", "Sign Up Error": "Kesalahan Pendaftaran",
"Signin": "Signin", "Signin": "Signin",
"Signin (Default True)": "Signin (Default True)", "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", "Signin session": "Sesi masuk",
"Signup items": "Item pendaftaran", "Signup items": "Item pendaftaran",
"Signup items - Tooltip": "Item-item yang harus diisi pengguna saat mendaftar untuk akun baru", "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", "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", "The application does not allow to sign up new account": "Aplikasi tidak memperbolehkan untuk mendaftar akun baru",
"Token expire": "Token kadaluarsa", "Token expire": "Token kadaluarsa",
@@ -113,7 +116,6 @@
"Bit size - Tooltip": "Panjang kunci rahasia", "Bit size - Tooltip": "Panjang kunci rahasia",
"Certificate": "Sertifikat", "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 - 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 certificate": "Salin sertifikat",
"Copy private key": "Salin kunci pribadi", "Copy private key": "Salin kunci pribadi",
"Crypto algorithm": "Algoritma kriptografi", "Crypto algorithm": "Algoritma kriptografi",
@@ -126,7 +128,6 @@
"New Cert": "Sertifikat Baru", "New Cert": "Sertifikat Baru",
"Private key": "Kunci pribadi", "Private key": "Kunci pribadi",
"Private key - Tooltip": "Kunci pribadi yang sesuai dengan sertifikat kunci publik", "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:", "Scope - Tooltip": "Skema penggunaan sertifikat:",
"Type - Tooltip": "Jenis sertifikat" "Type - Tooltip": "Jenis sertifikat"
}, },
@@ -191,6 +192,7 @@
"Click to Upload": "Klik untuk Mengunggah", "Click to Upload": "Klik untuk Mengunggah",
"Close": "Tutup", "Close": "Tutup",
"Confirm": "Confirm", "Confirm": "Confirm",
"Copied to clipboard successfully": "Copied to clipboard successfully",
"Copy": "Copy", "Copy": "Copy",
"Created time": "Waktu dibuat", "Created time": "Waktu dibuat",
"Custom": "Custom", "Custom": "Custom",
@@ -200,6 +202,8 @@
"Default application - Tooltip": "Aplikasi default untuk pengguna yang terdaftar langsung dari halaman organisasi", "Default application - Tooltip": "Aplikasi default untuk pengguna yang terdaftar langsung dari halaman organisasi",
"Default avatar": "Avatar default", "Default avatar": "Avatar default",
"Default avatar - Tooltip": "Avatar default yang digunakan ketika pengguna yang baru terdaftar tidak mengatur gambar avatar", "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", "Delete": "Hapus",
"Description": "Deskripsi", "Description": "Deskripsi",
"Description - Tooltip": "Informasi deskripsi terperinci untuk referensi, Casdoor itu sendiri tidak akan menggunakannya", "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 connect to server": "Gagal terhubung ke server",
"Failed to delete": "Gagal menghapus", "Failed to delete": "Gagal menghapus",
"Failed to enable": "Failed to enable", "Failed to enable": "Failed to enable",
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
"Failed to remove": "Failed to remove", "Failed to remove": "Failed to remove",
"Failed to save": "Gagal menyimpan", "Failed to save": "Gagal menyimpan",
"Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "URL ikon Favicon yang digunakan di semua halaman Casdoor organisasi", "Favicon - Tooltip": "URL ikon Favicon yang digunakan di semua halaman Casdoor organisasi",
@@ -251,6 +257,8 @@
"MFA items - Tooltip": "MFA items - Tooltip", "MFA items - Tooltip": "MFA items - Tooltip",
"Master password": "Kata sandi utama", "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 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", "Menu": "Daftar makanan",
"Method": "Metode", "Method": "Metode",
"Model": "Model", "Model": "Model",
@@ -272,6 +280,8 @@
"Password salt - Tooltip": "Parameter acak yang digunakan untuk enkripsi kata sandi", "Password salt - Tooltip": "Parameter acak yang digunakan untuk enkripsi kata sandi",
"Password type": "Jenis kata sandi", "Password type": "Jenis kata sandi",
"Password type - Tooltip": "Format penyimpanan kata sandi di database", "Password type - Tooltip": "Format penyimpanan kata sandi di database",
"Payment": "Payment",
"Payment - Tooltip": "Payment - Tooltip",
"Payments": "Pembayaran-pembayaran", "Payments": "Pembayaran-pembayaran",
"Permissions": "Izin-izin", "Permissions": "Izin-izin",
"Permissions - Tooltip": "Izin dimiliki oleh pengguna ini", "Permissions - Tooltip": "Izin dimiliki oleh pengguna ini",
@@ -283,6 +293,8 @@
"Plans - Tooltip": "Plans - Tooltip", "Plans - Tooltip": "Plans - Tooltip",
"Preview": "Tinjauan", "Preview": "Tinjauan",
"Preview - Tooltip": "Mengawali pratinjau efek yang sudah dikonfigurasi", "Preview - Tooltip": "Mengawali pratinjau efek yang sudah dikonfigurasi",
"Pricing": "Pricing",
"Pricing - Tooltip": "Pricing - Tooltip",
"Pricings": "Harga", "Pricings": "Harga",
"Products": "Produk", "Products": "Produk",
"Provider": "Penyedia", "Provider": "Penyedia",
@@ -296,6 +308,10 @@
"Role - Tooltip": "Role - Tooltip", "Role - Tooltip": "Role - Tooltip",
"Roles": "Peran-peran", "Roles": "Peran-peran",
"Roles - Tooltip": "Peran-peran yang diikuti oleh pengguna", "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": "Menyimpan",
"Save & Exit": "Simpan & Keluar", "Save & Exit": "Simpan & Keluar",
"Session ID": "ID sesi", "Session ID": "ID sesi",
@@ -318,6 +334,7 @@
"Successfully removed": "Successfully removed", "Successfully removed": "Successfully removed",
"Successfully saved": "Berhasil disimpan", "Successfully saved": "Berhasil disimpan",
"Successfully sent": "Successfully sent", "Successfully sent": "Successfully sent",
"Successfully synced": "Successfully synced",
"Supported country codes": "Kode negara yang didukung", "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", "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", "Sure to delete": "Pasti untuk menghapus",
@@ -440,7 +457,6 @@
"Multi-factor methods": "Multi-factor methods", "Multi-factor methods": "Multi-factor methods",
"Multi-factor recover": "Multi-factor recover", "Multi-factor recover": "Multi-factor recover",
"Multi-factor recover description": "Multi-factor recover description", "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", "Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
"Passcode": "Passcode", "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", "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": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"Price per month": "Price per month", "Period": "Period",
"Price per month - Tooltip": "Price per month - Tooltip", "Period - Tooltip": "Period - Tooltip",
"Price per year": "Price per year", "Price": "Price",
"Price per year - Tooltip": "Price per year - Tooltip", "Price - Tooltip": "Price - Tooltip",
"per month": "per bulan" "Related product": "Related product",
"per month": "per bulan",
"per year": "per year"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "Salin URL halaman harga", "Copy pricing page URL": "Salin URL halaman harga",
@@ -589,7 +607,7 @@
"Trial duration": "Durasi percobaan", "Trial duration": "Durasi percobaan",
"Trial duration - Tooltip": "Durasi periode percobaan", "Trial duration - Tooltip": "Durasi periode percobaan",
"days trial available!": "hari percobaan tersedia!", "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": { "product": {
"Alipay": "Alipay", "Alipay": "Alipay",
@@ -600,17 +618,16 @@
"Detail - Tooltip": "Detail produk", "Detail - Tooltip": "Detail produk",
"Dummy": "Dummy", "Dummy": "Dummy",
"Edit Product": "Edit Produk", "Edit Product": "Edit Produk",
"I have completed the payment": "Saya telah menyelesaikan pembayaran",
"Image": "Gambar", "Image": "Gambar",
"Image - Tooltip": "Gambar produk", "Image - Tooltip": "Gambar produk",
"New Product": "Produk Baru", "New Product": "Produk Baru",
"Pay": "Bayar", "Pay": "Bayar",
"PayPal": "Paypal", "PayPal": "Paypal",
"Payment cancelled": "Payment cancelled",
"Payment failed": "Payment failed",
"Payment providers": "Penyedia pembayaran", "Payment providers": "Penyedia pembayaran",
"Payment providers - Tooltip": "Penyedia layanan pembayaran", "Payment providers - Tooltip": "Penyedia layanan pembayaran",
"Placing order...": "Menempatkan pesanan...", "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": "Harga",
"Price - Tooltip": "Harga produk", "Price - Tooltip": "Harga produk",
"Quantity": "Kuantitas", "Quantity": "Kuantitas",
@@ -672,8 +689,8 @@
"Content": "Content", "Content": "Content",
"Content - Tooltip": "Content - Tooltip", "Content - Tooltip": "Content - Tooltip",
"Copy": "Salin", "Copy": "Salin",
"DB Test": "DB Test", "DB test": "DB test",
"DB Test - Tooltip": "DB Test - Tooltip", "DB test - Tooltip": "DB test - Tooltip",
"Disable SSL": "Menonaktifkan SSL", "Disable SSL": "Menonaktifkan SSL",
"Disable SSL - Tooltip": "Apakah perlu menonaktifkan protokol SSL saat berkomunikasi dengan server STMP?", "Disable SSL - Tooltip": "Apakah perlu menonaktifkan protokol SSL saat berkomunikasi dengan server STMP?",
"Domain": "Domain", "Domain": "Domain",
@@ -700,7 +717,10 @@
"Internal": "Internal", "Internal": "Internal",
"Issuer URL": "URL penerbit", "Issuer URL": "URL penerbit",
"Issuer URL - Tooltip": "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": "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", "Metadata - Tooltip": "Metadata SAML",
"Method - Tooltip": "Metode login, kode QR atau login tanpa suara", "Method - Tooltip": "Metode login, kode QR atau login tanpa suara",
@@ -754,6 +774,10 @@
"Sender Id - Tooltip": "Sender Id - Tooltip", "Sender Id - Tooltip": "Sender Id - Tooltip",
"Sender number": "Sender number", "Sender number": "Sender number",
"Sender number - Tooltip": "Sender number - Tooltip", "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": "Tanda Tangan",
"Sign Name - Tooltip": "Nama tanda tangan yang akan digunakan", "Sign Name - Tooltip": "Nama tanda tangan yang akan digunakan",
"Sign request": "Permintaan tanda tangan", "Sign request": "Permintaan tanda tangan",
@@ -764,12 +788,15 @@
"Signup HTML": "Pendaftaran HTML", "Signup HTML": "Pendaftaran HTML",
"Signup HTML - Edit": "Pendaftaran HTML - Sunting", "Signup HTML - Edit": "Pendaftaran HTML - Sunting",
"Signup HTML - Tooltip": "HTML khusus untuk mengganti gaya halaman pendaftaran bawaan", "Signup HTML - Tooltip": "HTML khusus untuk mengganti gaya halaman pendaftaran bawaan",
"Signup group": "Signup group",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Kunci situs", "Site key": "Kunci situs",
"Site key - Tooltip": "Kunci situs atau kunci halaman web", "Site key - Tooltip": "Kunci situs atau kunci halaman web",
"Sliding Validation": "Sliding Validation", "Sliding Validation": "Sliding Validation",
"Sub type": "Sub jenis", "Sub type": "Sub jenis",
"Sub type - Tooltip": "Sub jenis", "Sub type - Tooltip": "Sub jenis",
"Team ID": "Team ID",
"Team ID - Tooltip": "Team ID - Tooltip",
"Template code": "Kode template", "Template code": "Kode template",
"Template code - Tooltip": "Kode template", "Template code - Tooltip": "Kode template",
"Test Email": "Email Uji Coba", "Test Email": "Email Uji Coba",
@@ -780,6 +807,8 @@
"Token URL - Tooltip": "Token URL: URL Token", "Token URL - Tooltip": "Token URL: URL Token",
"Type": "Jenis", "Type": "Jenis",
"Type - Tooltip": "Pilih tipe", "Type - Tooltip": "Pilih tipe",
"User flow": "User flow",
"User flow - Tooltip": "User flow - Tooltip",
"User mapping": "User mapping", "User mapping": "User mapping",
"User mapping - Tooltip": "User mapping - Tooltip", "User mapping - Tooltip": "User mapping - Tooltip",
"UserInfo URL": "URL UserInfo", "UserInfo URL": "URL UserInfo",
@@ -801,6 +830,8 @@
"New Role": "Peran Baru", "New Role": "Peran Baru",
"Sub domains": "Sub domain-sub domain", "Sub domains": "Sub domain-sub domain",
"Sub domains - Tooltip": "Domain yang termasuk dalam peran saat ini", "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": "Peran tambahan",
"Sub roles - Tooltip": "Terjemahkan ke bahasa Indonesia: Peran yang termasuk dalam peran saat ini", "Sub roles - Tooltip": "Terjemahkan ke bahasa Indonesia: Peran yang termasuk dalam peran saat ini",
"Sub users": "Pengguna sub", "Sub users": "Pengguna sub",
@@ -812,6 +843,9 @@
"Confirm": "Konfirmasi", "Confirm": "Konfirmasi",
"Decline": "Menurun", "Decline": "Menurun",
"Have account?": "Punya akun?", "Have account?": "Punya akun?",
"Label": "Label",
"Label HTML": "Label HTML",
"Placeholder": "Placeholder",
"Please accept the agreement!": "Tolong terima perjanjian ini!", "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 click the below button to sign in": "Silakan klik tombol di bawah ini untuk masuk",
"Please confirm your password!": "Tolong konfirmasi kata sandi Anda!", "Please confirm your password!": "Tolong konfirmasi kata sandi Anda!",
@@ -830,6 +864,11 @@
"Please select your country/region!": "Silakan pilih negara/region Anda!", "Please select your country/region!": "Silakan pilih negara/region Anda!",
"Terms of Use": "Syarat Penggunaan", "Terms of Use": "Syarat Penggunaan",
"Terms of Use - Tooltip": "Syarat penggunaan yang harus dibaca dan disetujui oleh pengguna selama proses registrasi", "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 Tax ID!": "Input ini bukan Tax ID faktur!",
"The input is not invoice title!": "Masukan bukan judul 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!", "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" "sign in now": "Masuk sekarang"
}, },
"subscription": { "subscription": {
"Duration": "Durasi", "Active": "Active",
"Duration - Tooltip": "Durasi langganan",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "Tanggal Berakhir", "End time": "End time",
"End date - Tooltip": "Tanggal Berakhir", "End time - Tooltip": "End time - Tooltip",
"Error": "Error",
"Expired": "Expired",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Start date": "Tanggal Mulai", "Pending": "Pending",
"Start date - Tooltip": "Tanggal Mulai" "Period": "Period",
"Start time": "Start time",
"Start time - Tooltip": "Start time - Tooltip",
"Suspended": "Suspended",
"Upcoming": "Upcoming"
}, },
"syncer": { "syncer": {
"Affiliation table": "Tabel afiliasi", "Affiliation table": "Tabel afiliasi",
@@ -872,6 +916,8 @@
"Is read-only": "Is read-only", "Is read-only": "Is read-only",
"Is read-only - Tooltip": "Is read-only - Tooltip", "Is read-only - Tooltip": "Is read-only - Tooltip",
"New Syncer": "Sinkronisasi Baru", "New Syncer": "Sinkronisasi Baru",
"SSL mode": "SSL mode",
"SSL mode - Tooltip": "SSL mode - Tooltip",
"Sync interval": "Interval sinkronisasi", "Sync interval": "Interval sinkronisasi",
"Sync interval - Tooltip": "Satuan dalam detik", "Sync interval - Tooltip": "Satuan dalam detik",
"Table": "Tabel", "Table": "Tabel",
@@ -913,11 +959,19 @@
}, },
"token": { "token": {
"Access token": "Token akses", "Access token": "Token akses",
"Access token - Tooltip": "Access token - Tooltip",
"Authorization code": "Kode otorisasi", "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", "Edit Token": "Mengedit Token",
"Expires in": "Berakhir pada", "Expires in": "Berakhir pada",
"Expires in - Tooltip": "Expires in - Tooltip",
"New Token": "Token baru", "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": { "user": {
"3rd-party logins": "Masuk pihak ketiga", "3rd-party logins": "Masuk pihak ketiga",
@@ -974,6 +1028,8 @@
"Managed accounts": "Akun yang dikelola", "Managed accounts": "Akun yang dikelola",
"Modify password...": "Mengubah kata sandi...", "Modify password...": "Mengubah kata sandi...",
"Multi-factor authentication": "Multi-factor authentication", "Multi-factor authentication": "Multi-factor authentication",
"Name": "Name",
"Name format": "Name format",
"New Email": "Email baru", "New Email": "Email baru",
"New Password": "Kata Sandi Baru", "New Password": "Kata Sandi Baru",
"New User": "Pengguna Baru", "New User": "Pengguna Baru",
@@ -1011,6 +1067,7 @@
"Upload ID card front picture": "Upload ID card front picture", "Upload ID card front picture": "Upload ID card front picture",
"Upload ID card with person picture": "Upload ID card with person picture", "Upload ID card with person picture": "Upload ID card with person picture",
"Upload a photo": "Unggah foto", "Upload a photo": "Unggah foto",
"Value": "Value",
"Values": "Nilai-nilai", "Values": "Nilai-nilai",
"Verification code sent": "Kode verifikasi telah dikirim", "Verification code sent": "Kode verifikasi telah dikirim",
"WebAuthn credentials": "Kredensial WebAuthn", "WebAuthn credentials": "Kredensial WebAuthn",

View File

@@ -12,7 +12,9 @@
"Policies": "Policy", "Policies": "Policy",
"Policies - Tooltip": "Regole Casbin", "Policies - Tooltip": "Regole Casbin",
"Rule type": "Rule type", "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": { "application": {
"Always": "Sempre", "Always": "Sempre",
@@ -30,6 +32,8 @@
"Edit Application": "Edit Application", "Edit Application": "Edit Application",
"Enable Email linking": "Enable Email linking", "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 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": "Enable SAML compression",
"Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp", "Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp",
"Enable WebAuthn signin": "Enable WebAuthn signin", "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 signin session - Tooltip": "Whether Casdoor maintains a session after logging into Casdoor from the application",
"Enable signup": "Enable signup", "Enable signup": "Enable signup",
"Enable signup - Tooltip": "Whether to allow users to register a new account", "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", "Failed to sign in": "Failed to sign in",
"File uploaded successfully": "File uploaded successfully", "File uploaded successfully": "File uploaded successfully",
"First, last": "First, last", "First, last": "First, last",
@@ -60,7 +68,6 @@
"Input": "Input", "Input": "Input",
"Invitation code": "Invitation code", "Invitation code": "Invitation code",
"Invitation code - Tooltip": "Invitation code - Tooltip", "Invitation code - Tooltip": "Invitation code - Tooltip",
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
"Left": "Left", "Left": "Left",
"Logged in successfully": "Logged in successfully", "Logged in successfully": "Logged in successfully",
"Logged out successfully": "Logged out successfully", "Logged out successfully": "Logged out successfully",
@@ -73,7 +80,6 @@
"Please input your application!": "Please input your application!", "Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!", "Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Please select a HTML file", "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", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Redirect URL", "Redirect URL": "Redirect URL",
@@ -86,7 +92,6 @@
"Rule": "Rule", "Rule": "Rule",
"SAML metadata": "SAML metadata", "SAML metadata": "SAML metadata",
"SAML metadata - Tooltip": "The metadata of SAML protocol", "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", "SAML reply URL": "SAML reply URL",
"Select": "Select", "Select": "Select",
"Side panel HTML": "Side panel HTML", "Side panel HTML": "Side panel HTML",
@@ -95,11 +100,9 @@
"Sign Up Error": "Sign Up Error", "Sign Up Error": "Sign Up Error",
"Signin": "Signin", "Signin": "Signin",
"Signin (Default True)": "Signin (Default True)", "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", "Signin session": "Signin session",
"Signup items": "Signup items", "Signup items": "Signup items",
"Signup items - Tooltip": "Items for users to fill in when registering new accounts", "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", "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", "The application does not allow to sign up new account": "The application does not allow to sign up new account",
"Token expire": "Token expire", "Token expire": "Token expire",
@@ -113,7 +116,6 @@
"Bit size - Tooltip": "Secret key length", "Bit size - Tooltip": "Secret key length",
"Certificate": "Certificate", "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 - 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 certificate": "Copy certificate",
"Copy private key": "Copy private key", "Copy private key": "Copy private key",
"Crypto algorithm": "Crypto algorithm", "Crypto algorithm": "Crypto algorithm",
@@ -126,7 +128,6 @@
"New Cert": "New Cert", "New Cert": "New Cert",
"Private key": "Private key", "Private key": "Private key",
"Private key - Tooltip": "Private key corresponding to the public key certificate", "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", "Scope - Tooltip": "Usage scenarios of the certificate",
"Type - Tooltip": "Type of certificate" "Type - Tooltip": "Type of certificate"
}, },
@@ -191,6 +192,7 @@
"Click to Upload": "Click to Upload", "Click to Upload": "Click to Upload",
"Close": "Close", "Close": "Close",
"Confirm": "Confirm", "Confirm": "Confirm",
"Copied to clipboard successfully": "Copied to clipboard successfully",
"Copy": "Copy", "Copy": "Copy",
"Created time": "Created time", "Created time": "Created time",
"Custom": "Custom", "Custom": "Custom",
@@ -200,6 +202,8 @@
"Default application - Tooltip": "Default application for users registered directly from the organization page", "Default application - Tooltip": "Default application for users registered directly from the organization page",
"Default avatar": "Default avatar", "Default avatar": "Default avatar",
"Default avatar - Tooltip": "Default avatar used when newly registered users do not set an avatar image", "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", "Delete": "Delete",
"Description": "Description", "Description": "Description",
"Description - Tooltip": "Detailed description information for reference, Casdoor itself will not use it", "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 connect to server": "Failed to connect to server",
"Failed to delete": "Failed to delete", "Failed to delete": "Failed to delete",
"Failed to enable": "Failed to enable", "Failed to enable": "Failed to enable",
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
"Failed to remove": "Failed to remove", "Failed to remove": "Failed to remove",
"Failed to save": "Failed to save", "Failed to save": "Failed to save",
"Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization", "Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
@@ -251,6 +257,8 @@
"MFA items - Tooltip": "MFA items - Tooltip", "MFA items - Tooltip": "MFA items - Tooltip",
"Master password": "Master password", "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 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", "Menu": "Menu",
"Method": "Method", "Method": "Method",
"Model": "Model", "Model": "Model",
@@ -272,6 +280,8 @@
"Password salt - Tooltip": "Random parameter used for password encryption", "Password salt - Tooltip": "Random parameter used for password encryption",
"Password type": "Password type", "Password type": "Password type",
"Password type - Tooltip": "Storage format of passwords in the database", "Password type - Tooltip": "Storage format of passwords in the database",
"Payment": "Payment",
"Payment - Tooltip": "Payment - Tooltip",
"Payments": "Payments", "Payments": "Payments",
"Permissions": "Permissions", "Permissions": "Permissions",
"Permissions - Tooltip": "Permissions owned by this user", "Permissions - Tooltip": "Permissions owned by this user",
@@ -283,6 +293,8 @@
"Plans - Tooltip": "Plans - Tooltip", "Plans - Tooltip": "Plans - Tooltip",
"Preview": "Preview", "Preview": "Preview",
"Preview - Tooltip": "Preview the configured effects", "Preview - Tooltip": "Preview the configured effects",
"Pricing": "Pricing",
"Pricing - Tooltip": "Pricing - Tooltip",
"Pricings": "Pricings", "Pricings": "Pricings",
"Products": "Products", "Products": "Products",
"Provider": "Provider", "Provider": "Provider",
@@ -296,6 +308,10 @@
"Role - Tooltip": "Role - Tooltip", "Role - Tooltip": "Role - Tooltip",
"Roles": "Roles", "Roles": "Roles",
"Roles - Tooltip": "Roles that the user belongs to", "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": "Save",
"Save & Exit": "Save & Exit", "Save & Exit": "Save & Exit",
"Session ID": "Session ID", "Session ID": "Session ID",
@@ -318,6 +334,7 @@
"Successfully removed": "Successfully removed", "Successfully removed": "Successfully removed",
"Successfully saved": "Successfully saved", "Successfully saved": "Successfully saved",
"Successfully sent": "Successfully sent", "Successfully sent": "Successfully sent",
"Successfully synced": "Successfully synced",
"Supported country codes": "Supported country codes", "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", "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", "Sure to delete": "Sure to delete",
@@ -440,7 +457,6 @@
"Multi-factor methods": "Multi-factor methods", "Multi-factor methods": "Multi-factor methods",
"Multi-factor recover": "Multi-factor recover", "Multi-factor recover": "Multi-factor recover",
"Multi-factor recover description": "Multi-factor recover description", "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", "Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
"Passcode": "Passcode", "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", "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": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"Price per month": "Price per month", "Period": "Period",
"Price per month - Tooltip": "Price per month - Tooltip", "Period - Tooltip": "Period - Tooltip",
"Price per year": "Price per year", "Price": "Price",
"Price per year - Tooltip": "Price per year - Tooltip", "Price - Tooltip": "Price - Tooltip",
"per month": "per month" "Related product": "Related product",
"per month": "per month",
"per year": "per year"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "Copy pricing page URL", "Copy pricing page URL": "Copy pricing page URL",
@@ -589,7 +607,7 @@
"Trial duration": "Trial duration", "Trial duration": "Trial duration",
"Trial duration - Tooltip": "Trial duration period", "Trial duration - Tooltip": "Trial duration period",
"days trial available!": "days trial available!", "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": { "product": {
"Alipay": "Alipay", "Alipay": "Alipay",
@@ -600,17 +618,16 @@
"Detail - Tooltip": "Detail of product", "Detail - Tooltip": "Detail of product",
"Dummy": "Dummy", "Dummy": "Dummy",
"Edit Product": "Edit Product", "Edit Product": "Edit Product",
"I have completed the payment": "I have completed the payment",
"Image": "Image", "Image": "Image",
"Image - Tooltip": "Image of product", "Image - Tooltip": "Image of product",
"New Product": "New Product", "New Product": "New Product",
"Pay": "Pay", "Pay": "Pay",
"PayPal": "PayPal", "PayPal": "PayPal",
"Payment cancelled": "Payment cancelled",
"Payment failed": "Payment failed",
"Payment providers": "Payment providers", "Payment providers": "Payment providers",
"Payment providers - Tooltip": "Providers of payment services", "Payment providers - Tooltip": "Providers of payment services",
"Placing order...": "Placing order...", "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": "Price",
"Price - Tooltip": "Price of product", "Price - Tooltip": "Price of product",
"Quantity": "Quantity", "Quantity": "Quantity",
@@ -672,8 +689,8 @@
"Content": "Content", "Content": "Content",
"Content - Tooltip": "Content - Tooltip", "Content - Tooltip": "Content - Tooltip",
"Copy": "Copy", "Copy": "Copy",
"DB Test": "DB Test", "DB test": "DB test",
"DB Test - Tooltip": "DB Test - Tooltip", "DB test - Tooltip": "DB test - Tooltip",
"Disable SSL": "Disable SSL", "Disable SSL": "Disable SSL",
"Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server", "Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server",
"Domain": "Domain", "Domain": "Domain",
@@ -700,7 +717,10 @@
"Internal": "Internal", "Internal": "Internal",
"Issuer URL": "Issuer URL", "Issuer URL": "Issuer URL",
"Issuer URL - Tooltip": "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": "Metadata",
"Metadata - Tooltip": "SAML metadata", "Metadata - Tooltip": "SAML metadata",
"Method - Tooltip": "Login method, QR code or silent login", "Method - Tooltip": "Login method, QR code or silent login",
@@ -754,6 +774,10 @@
"Sender Id - Tooltip": "Sender Id - Tooltip", "Sender Id - Tooltip": "Sender Id - Tooltip",
"Sender number": "Sender number", "Sender number": "Sender number",
"Sender number - Tooltip": "Sender number - Tooltip", "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": "Sign Name",
"Sign Name - Tooltip": "Name of the signature to be used", "Sign Name - Tooltip": "Name of the signature to be used",
"Sign request": "Sign request", "Sign request": "Sign request",
@@ -764,12 +788,15 @@
"Signup HTML": "Signup HTML", "Signup HTML": "Signup HTML",
"Signup HTML - Edit": "Signup HTML - Edit", "Signup HTML - Edit": "Signup HTML - Edit",
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style", "Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
"Signup group": "Signup group",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Site key", "Site key": "Site key",
"Site key - Tooltip": "Site key", "Site key - Tooltip": "Site key",
"Sliding Validation": "Sliding Validation", "Sliding Validation": "Sliding Validation",
"Sub type": "Sub type", "Sub type": "Sub type",
"Sub type - Tooltip": "Sub type", "Sub type - Tooltip": "Sub type",
"Team ID": "Team ID",
"Team ID - Tooltip": "Team ID - Tooltip",
"Template code": "Template code", "Template code": "Template code",
"Template code - Tooltip": "Template code", "Template code - Tooltip": "Template code",
"Test Email": "Test Email", "Test Email": "Test Email",
@@ -780,6 +807,8 @@
"Token URL - Tooltip": "Token URL", "Token URL - Tooltip": "Token URL",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Select a type", "Type - Tooltip": "Select a type",
"User flow": "User flow",
"User flow - Tooltip": "User flow - Tooltip",
"User mapping": "User mapping", "User mapping": "User mapping",
"User mapping - Tooltip": "User mapping - Tooltip", "User mapping - Tooltip": "User mapping - Tooltip",
"UserInfo URL": "UserInfo URL", "UserInfo URL": "UserInfo URL",
@@ -801,6 +830,8 @@
"New Role": "New Role", "New Role": "New Role",
"Sub domains": "Sub domains", "Sub domains": "Sub domains",
"Sub domains - Tooltip": "Domains included in the current role", "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": "Sub roles",
"Sub roles - Tooltip": "Roles included in the current role", "Sub roles - Tooltip": "Roles included in the current role",
"Sub users": "Sub users", "Sub users": "Sub users",
@@ -812,6 +843,9 @@
"Confirm": "Confirm", "Confirm": "Confirm",
"Decline": "Decline", "Decline": "Decline",
"Have account?": "Have account?", "Have account?": "Have account?",
"Label": "Label",
"Label HTML": "Label HTML",
"Placeholder": "Placeholder",
"Please accept the agreement!": "Please accept the agreement!", "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 click the below button to sign in": "Please click the below button to sign in",
"Please confirm your password!": "Please confirm your password!", "Please confirm your password!": "Please confirm your password!",
@@ -830,6 +864,11 @@
"Please select your country/region!": "Please select your country/region!", "Please select your country/region!": "Please select your country/region!",
"Terms of Use": "Terms of Use", "Terms of Use": "Terms of Use",
"Terms of Use - Tooltip": "Terms of use that users need to read and agree to during registration", "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 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 invoice title!": "The input is not invoice title!",
"The input is not valid Email!": "The input is not valid Email!", "The input is not valid Email!": "The input is not valid Email!",
@@ -841,14 +880,19 @@
"sign in now": "sign in now" "sign in now": "sign in now"
}, },
"subscription": { "subscription": {
"Duration": "Duration", "Active": "Active",
"Duration - Tooltip": "Subscription duration",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "End date", "End time": "End time",
"End date - Tooltip": "End date", "End time - Tooltip": "End time - Tooltip",
"Error": "Error",
"Expired": "Expired",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Start date": "Start date", "Pending": "Pending",
"Start date - Tooltip": "Start date" "Period": "Period",
"Start time": "Start time",
"Start time - Tooltip": "Start time - Tooltip",
"Suspended": "Suspended",
"Upcoming": "Upcoming"
}, },
"syncer": { "syncer": {
"Affiliation table": "Affiliation table", "Affiliation table": "Affiliation table",
@@ -872,6 +916,8 @@
"Is read-only": "Is read-only", "Is read-only": "Is read-only",
"Is read-only - Tooltip": "Is read-only - Tooltip", "Is read-only - Tooltip": "Is read-only - Tooltip",
"New Syncer": "New Syncer", "New Syncer": "New Syncer",
"SSL mode": "SSL mode",
"SSL mode - Tooltip": "SSL mode - Tooltip",
"Sync interval": "Sync interval", "Sync interval": "Sync interval",
"Sync interval - Tooltip": "Unit in seconds", "Sync interval - Tooltip": "Unit in seconds",
"Table": "Table", "Table": "Table",
@@ -913,11 +959,19 @@
}, },
"token": { "token": {
"Access token": "Access token", "Access token": "Access token",
"Access token - Tooltip": "Access token - Tooltip",
"Authorization code": "Authorization code", "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", "Edit Token": "Edit Token",
"Expires in": "Expires in", "Expires in": "Expires in",
"Expires in - Tooltip": "Expires in - Tooltip",
"New Token": "New Token", "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": { "user": {
"3rd-party logins": "3rd-party logins", "3rd-party logins": "3rd-party logins",
@@ -974,6 +1028,8 @@
"Managed accounts": "Managed accounts", "Managed accounts": "Managed accounts",
"Modify password...": "Modify password...", "Modify password...": "Modify password...",
"Multi-factor authentication": "Multi-factor authentication", "Multi-factor authentication": "Multi-factor authentication",
"Name": "Name",
"Name format": "Name format",
"New Email": "New Email", "New Email": "New Email",
"New Password": "New Password", "New Password": "New Password",
"New User": "New User", "New User": "New User",
@@ -1011,6 +1067,7 @@
"Upload ID card front picture": "Upload ID card front picture", "Upload ID card front picture": "Upload ID card front picture",
"Upload ID card with person picture": "Upload ID card with person picture", "Upload ID card with person picture": "Upload ID card with person picture",
"Upload a photo": "Upload a photo", "Upload a photo": "Upload a photo",
"Value": "Value",
"Values": "Values", "Values": "Values",
"Verification code sent": "Verification code sent", "Verification code sent": "Verification code sent",
"WebAuthn credentials": "WebAuthn credentials", "WebAuthn credentials": "WebAuthn credentials",

View File

@@ -12,7 +12,9 @@
"Policies": "政策", "Policies": "政策",
"Policies - Tooltip": "Casbinのポリシールール", "Policies - Tooltip": "Casbinのポリシールール",
"Rule type": "Rule type", "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": { "application": {
"Always": "常に", "Always": "常に",
@@ -30,6 +32,8 @@
"Edit Application": "アプリケーションを編集する", "Edit Application": "アプリケーションを編集する",
"Enable Email linking": "イーメールリンクの有効化", "Enable Email linking": "イーメールリンクの有効化",
"Enable Email linking - Tooltip": "組織内に同じメールアドレスを持つユーザーがいる場合、サードパーティのログイン方法は自動的にそのユーザーに関連付けられます", "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": "SAMLの圧縮を有効にする",
"Enable SAML compression - Tooltip": "CasdoorをSAML IdPとして使用する場合、SAMLレスポンスメッセージを圧縮するかどうか。圧縮する: 圧縮するかどうか。圧縮しない: 圧縮しないかどうか", "Enable SAML compression - Tooltip": "CasdoorをSAML IdPとして使用する場合、SAMLレスポンスメッセージを圧縮するかどうか。圧縮する: 圧縮するかどうか。圧縮しない: 圧縮しないかどうか",
"Enable WebAuthn signin": "WebAuthnのサインインを可能にする", "Enable WebAuthn signin": "WebAuthnのサインインを可能にする",
@@ -42,6 +46,10 @@
"Enable signin session - Tooltip": "アプリケーションから Casdoor にログイン後、Casdoor がセッションを維持しているかどうか", "Enable signin session - Tooltip": "アプリケーションから Casdoor にログイン後、Casdoor がセッションを維持しているかどうか",
"Enable signup": "サインアップを有効にする", "Enable signup": "サインアップを有効にする",
"Enable signup - Tooltip": "新しいアカウントの登録をユーザーに許可するかどうか", "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": "ログインに失敗しました", "Failed to sign in": "ログインに失敗しました",
"File uploaded successfully": "ファイルが正常にアップロードされました", "File uploaded successfully": "ファイルが正常にアップロードされました",
"First, last": "First, last", "First, last": "First, last",
@@ -60,7 +68,6 @@
"Input": "Input", "Input": "Input",
"Invitation code": "Invitation code", "Invitation code": "Invitation code",
"Invitation code - Tooltip": "Invitation code - Tooltip", "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": "HTMLファイルを選択してください", "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", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "リダイレクトURL", "Redirect URL": "リダイレクトURL",
@@ -86,7 +92,6 @@
"Rule": "ルール", "Rule": "ルール",
"SAML metadata": "SAMLメタデータ", "SAML metadata": "SAMLメタデータ",
"SAML metadata - Tooltip": "SAMLプロトコルのメタデータ", "SAML metadata - Tooltip": "SAMLプロトコルのメタデータ",
"SAML metadata URL copied to clipboard successfully": "SAMLメタデータURLが正常にクリップボードにコピーされました",
"SAML reply URL": "SAMLリプライURL", "SAML reply URL": "SAMLリプライURL",
"Select": "Select", "Select": "Select",
"Side panel HTML": "サイドパネルのHTML", "Side panel HTML": "サイドパネルのHTML",
@@ -95,11 +100,9 @@
"Sign Up Error": "サインアップエラー", "Sign Up Error": "サインアップエラー",
"Signin": "Signin", "Signin": "Signin",
"Signin (Default True)": "Signin (Default True)", "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": "サインインセッション", "Signin session": "サインインセッション",
"Signup items": "サインアップアイテム", "Signup items": "サインアップアイテム",
"Signup items - Tooltip": "新しいアカウントを登録する際にユーザーが入力するアイテム", "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", "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": "秘密鍵の長さ", "Bit size - Tooltip": "秘密鍵の長さ",
"Certificate": "証明書 ", "Certificate": "証明書 ",
"Certificate - Tooltip": "アクセストークンのJWT署名を復号化するために使用される公開鍵証明書。この証明書は通常、Casdoor SDK側つまり、アプリケーションに展開する必要があります", "Certificate - Tooltip": "アクセストークンのJWT署名を復号化するために使用される公開鍵証明書。この証明書は通常、Casdoor SDK側つまり、アプリケーションに展開する必要があります",
"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 - Tooltip": "公開鍵証明書に対応する秘密鍵",
"Private key copied to clipboard successfully": "プライベートキーが正常にクリップボードにコピーされました",
"Scope - Tooltip": "証明書の使用シナリオ", "Scope - Tooltip": "証明書の使用シナリオ",
"Type - Tooltip": "証明書の種類" "Type - Tooltip": "証明書の種類"
}, },
@@ -191,6 +192,7 @@
"Click to Upload": "アップロードするにはクリックしてください", "Click to Upload": "アップロードするにはクリックしてください",
"Close": "閉じる", "Close": "閉じる",
"Confirm": "Confirm", "Confirm": "Confirm",
"Copied to clipboard successfully": "Copied to clipboard successfully",
"Copy": "Copy", "Copy": "Copy",
"Created time": "作成された時間", "Created time": "作成された時間",
"Custom": "Custom", "Custom": "Custom",
@@ -200,6 +202,8 @@
"Default application - Tooltip": "組織ページから直接登録されたユーザーのデフォルトアプリケーション", "Default application - Tooltip": "組織ページから直接登録されたユーザーのデフォルトアプリケーション",
"Default avatar": "デフォルトのアバター", "Default avatar": "デフォルトのアバター",
"Default avatar - Tooltip": "新規登録ユーザーがアバター画像を設定しない場合に使用されるデフォルトのアバター", "Default avatar - Tooltip": "新規登録ユーザーがアバター画像を設定しない場合に使用されるデフォルトのアバター",
"Default password": "Default password",
"Default password - Tooltip": "Default password - Tooltip",
"Delete": "削除", "Delete": "削除",
"Description": "説明", "Description": "説明",
"Description - Tooltip": "参照用の詳細な説明情報です。Casdoor自体はそれを使用しません", "Description - Tooltip": "参照用の詳細な説明情報です。Casdoor自体はそれを使用しません",
@@ -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 enable": "Failed to enable",
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
"Failed to remove": "Failed to remove", "Failed to remove": "Failed to remove",
"Failed to save": "保存に失敗しました", "Failed to save": "保存に失敗しました",
"Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"Favicon": "ファビコン", "Favicon": "ファビコン",
"Favicon - Tooltip": "組織のすべてのCasdoorページに使用されるFaviconアイコンのURL", "Favicon - Tooltip": "組織のすべてのCasdoorページに使用されるFaviconアイコンのURL",
@@ -251,6 +257,8 @@
"MFA items - Tooltip": "MFA items - Tooltip", "MFA items - Tooltip": "MFA items - Tooltip",
"Master password": "マスターパスワード", "Master password": "マスターパスワード",
"Master password - Tooltip": "この組織のすべてのユーザーにログインするために使用でき、管理者が技術的な問題を解決するためにこのユーザーとしてログインするのに便利です", "Master password - Tooltip": "この組織のすべてのユーザーにログインするために使用でき、管理者が技術的な問題を解決するためにこのユーザーとしてログインするのに便利です",
"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": "ランダムパラメーターは、パスワードの暗号化に使用されます", "Password salt - Tooltip": "ランダムパラメーターは、パスワードの暗号化に使用されます",
"Password type": "パスワードタイプ", "Password type": "パスワードタイプ",
"Password type - Tooltip": "データベース内のパスワードの格納形式", "Password type - Tooltip": "データベース内のパスワードの格納形式",
"Payment": "Payment",
"Payment - Tooltip": "Payment - Tooltip",
"Payments": "支払い", "Payments": "支払い",
"Permissions": "許可", "Permissions": "許可",
"Permissions - Tooltip": "このユーザーが所有する権限", "Permissions - Tooltip": "このユーザーが所有する権限",
@@ -283,6 +293,8 @@
"Plans - Tooltip": "Plans - Tooltip", "Plans - Tooltip": "Plans - Tooltip",
"Preview": "プレビュー", "Preview": "プレビュー",
"Preview - Tooltip": "構成されたエフェクトをプレビューする", "Preview - Tooltip": "構成されたエフェクトをプレビューする",
"Pricing": "Pricing",
"Pricing - Tooltip": "Pricing - Tooltip",
"Pricings": "価格設定", "Pricings": "価格設定",
"Products": "製品", "Products": "製品",
"Provider": "プロバイダー", "Provider": "プロバイダー",
@@ -296,6 +308,10 @@
"Role - Tooltip": "Role - Tooltip", "Role - Tooltip": "Role - Tooltip",
"Roles": "役割", "Roles": "役割",
"Roles - Tooltip": "ユーザーが所属する役割", "Roles - Tooltip": "ユーザーが所属する役割",
"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": "セッションID", "Session ID": "セッションID",
@@ -318,6 +334,7 @@
"Successfully removed": "Successfully removed", "Successfully removed": "Successfully removed",
"Successfully saved": "成功的に保存されました", "Successfully saved": "成功的に保存されました",
"Successfully sent": "Successfully sent", "Successfully sent": "Successfully sent",
"Successfully synced": "Successfully synced",
"Supported country codes": "サポートされている国コード", "Supported country codes": "サポートされている国コード",
"Supported country codes - Tooltip": "組織でサポートされている国コード。これらのコードは、SMS認証コードのプレフィックスとして選択できます", "Supported country codes - Tooltip": "組織でサポートされている国コード。これらのコードは、SMS認証コードのプレフィックスとして選択できます",
"Sure to delete": "削除することが確実です", "Sure to delete": "削除することが確実です",
@@ -440,7 +457,6 @@
"Multi-factor methods": "Multi-factor methods", "Multi-factor methods": "Multi-factor methods",
"Multi-factor recover": "Multi-factor recover", "Multi-factor recover": "Multi-factor recover",
"Multi-factor recover description": "Multi-factor recover description", "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", "Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
"Passcode": "Passcode", "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", "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": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"Price per month": "Price per month", "Period": "Period",
"Price per month - Tooltip": "Price per month - Tooltip", "Period - Tooltip": "Period - Tooltip",
"Price per year": "Price per year", "Price": "Price",
"Price per year - Tooltip": "Price per year - Tooltip", "Price - Tooltip": "Price - Tooltip",
"per month": "月毎" "Related product": "Related product",
"per month": "月毎",
"per year": "per year"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "価格ページのURLをコピー", "Copy pricing page URL": "価格ページのURLをコピー",
@@ -589,7 +607,7 @@
"Trial duration": "トライアル期間の長さ", "Trial duration": "トライアル期間の長さ",
"Trial duration - Tooltip": "トライアル期間の長さ", "Trial duration - Tooltip": "トライアル期間の長さ",
"days trial available!": "日間のトライアルが利用可能です!", "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": { "product": {
"Alipay": "Alipay", "Alipay": "Alipay",
@@ -600,17 +618,16 @@
"Detail - Tooltip": "製品の詳細", "Detail - Tooltip": "製品の詳細",
"Dummy": "Dummy", "Dummy": "Dummy",
"Edit Product": "製品を編集", "Edit Product": "製品を編集",
"I have completed the payment": "私は支払いを完了しました",
"Image": "画像", "Image": "画像",
"Image - Tooltip": "製品のイメージ", "Image - Tooltip": "製品のイメージ",
"New Product": "新製品", "New Product": "新製品",
"Pay": "支払う", "Pay": "支払う",
"PayPal": "PayPal", "PayPal": "PayPal",
"Payment cancelled": "Payment cancelled",
"Payment failed": "Payment failed",
"Payment providers": "支払いプロバイダー", "Payment providers": "支払いプロバイダー",
"Payment providers - Tooltip": "支払いサービスの提供者", "Payment providers - Tooltip": "支払いサービスの提供者",
"Placing order...": "注文をする...", "Placing order...": "注文をする...",
"Please provide your username in the remark": "備考欄にユーザー名を入力してください",
"Please scan the QR code to pay": "QRコードをスキャンして支払ってください",
"Price": "価格", "Price": "価格",
"Price - Tooltip": "製品の価格", "Price - Tooltip": "製品の価格",
"Quantity": "量", "Quantity": "量",
@@ -672,8 +689,8 @@
"Content": "Content", "Content": "Content",
"Content - Tooltip": "Content - Tooltip", "Content - Tooltip": "Content - Tooltip",
"Copy": "コピー", "Copy": "コピー",
"DB Test": "DB Test", "DB test": "DB test",
"DB Test - Tooltip": "DB Test - Tooltip", "DB test - Tooltip": "DB test - Tooltip",
"Disable SSL": "SSLを無効にする", "Disable SSL": "SSLを無効にする",
"Disable SSL - Tooltip": "SMTPサーバーと通信する場合にSSLプロトコルを無効にするかどうか", "Disable SSL - Tooltip": "SMTPサーバーと通信する場合にSSLプロトコルを無効にするかどうか",
"Domain": "ドメイン", "Domain": "ドメイン",
@@ -700,7 +717,10 @@
"Internal": "Internal", "Internal": "Internal",
"Issuer URL": "発行者のURL", "Issuer URL": "発行者のURL",
"Issuer URL - Tooltip": "発行者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": "メタデータ",
"Metadata - Tooltip": "SAMLのメタデータ", "Metadata - Tooltip": "SAMLのメタデータ",
"Method - Tooltip": "ログイン方法、QRコードまたはサイレントログイン", "Method - Tooltip": "ログイン方法、QRコードまたはサイレントログイン",
@@ -754,6 +774,10 @@
"Sender Id - Tooltip": "Sender Id - Tooltip", "Sender Id - Tooltip": "Sender Id - Tooltip",
"Sender number": "Sender number", "Sender number": "Sender number",
"Sender number - Tooltip": "Sender number - Tooltip", "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": "使用する署名の名前", "Sign Name - Tooltip": "使用する署名の名前",
"Sign request": "サインリクエスト", "Sign request": "サインリクエスト",
@@ -764,12 +788,15 @@
"Signup HTML": "サインアップ HTML", "Signup HTML": "サインアップ HTML",
"Signup HTML - Edit": "サインアップ HTML - 編集", "Signup HTML - Edit": "サインアップ HTML - 編集",
"Signup HTML - Tooltip": "デフォルトのサインアップページスタイルを置き換えるためのカスタムHTML", "Signup HTML - Tooltip": "デフォルトのサインアップページスタイルを置き換えるためのカスタムHTML",
"Signup group": "Signup group",
"Silent": "Silent", "Silent": "Silent",
"Site key": "サイトキー", "Site key": "サイトキー",
"Site key - Tooltip": "サイトキー", "Site key - Tooltip": "サイトキー",
"Sliding Validation": "Sliding Validation", "Sliding Validation": "Sliding Validation",
"Sub type": "サブタイプ", "Sub type": "サブタイプ",
"Sub type - Tooltip": "サブタイプ", "Sub type - Tooltip": "サブタイプ",
"Team ID": "Team ID",
"Team ID - Tooltip": "Team ID - Tooltip",
"Template code": "テンプレートコード", "Template code": "テンプレートコード",
"Template code - Tooltip": "テンプレートコード", "Template code - Tooltip": "テンプレートコード",
"Test Email": "テストメール", "Test Email": "テストメール",
@@ -780,6 +807,8 @@
"Token URL - Tooltip": "トークンURL", "Token URL - Tooltip": "トークンURL",
"Type": "タイプ", "Type": "タイプ",
"Type - Tooltip": "タイプを選択してください", "Type - Tooltip": "タイプを選択してください",
"User flow": "User flow",
"User flow - Tooltip": "User flow - Tooltip",
"User mapping": "User mapping", "User mapping": "User mapping",
"User mapping - Tooltip": "User mapping - Tooltip", "User mapping - Tooltip": "User mapping - Tooltip",
"UserInfo URL": "UserInfo URLを日本語に翻訳すると、「ユーザー情報のURL」となります", "UserInfo URL": "UserInfo URLを日本語に翻訳すると、「ユーザー情報のURL」となります",
@@ -801,6 +830,8 @@
"New Role": "新しい役割", "New Role": "新しい役割",
"Sub domains": "サブドメイン", "Sub domains": "サブドメイン",
"Sub domains - Tooltip": "現在の役割に含まれるドメイン", "Sub domains - Tooltip": "現在の役割に含まれるドメイン",
"Sub groups": "Sub groups",
"Sub groups - Tooltip": "Sub groups - Tooltip",
"Sub roles": "サブロール", "Sub roles": "サブロール",
"Sub roles - Tooltip": "現在の役割に含まれる役割", "Sub roles - Tooltip": "現在の役割に含まれる役割",
"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 - 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 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": { "subscription": {
"Duration": "期間", "Active": "Active",
"Duration - Tooltip": "購読の期間",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "終了日", "End time": "End time",
"End date - Tooltip": "終了日", "End time - Tooltip": "End time - Tooltip",
"Error": "Error",
"Expired": "Expired",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Start date": "開始日", "Pending": "Pending",
"Start date - Tooltip": "開始日" "Period": "Period",
"Start time": "Start time",
"Start time - Tooltip": "Start time - Tooltip",
"Suspended": "Suspended",
"Upcoming": "Upcoming"
}, },
"syncer": { "syncer": {
"Affiliation table": "所属テーブル", "Affiliation table": "所属テーブル",
@@ -872,6 +916,8 @@
"Is read-only": "Is read-only", "Is read-only": "Is read-only",
"Is read-only - Tooltip": "Is read-only - Tooltip", "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": "単位は秒です", "Sync interval - Tooltip": "単位は秒です",
"Table": "テーブル", "Table": "テーブル",
@@ -913,11 +959,19 @@
}, },
"token": { "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": "トークンタイプ" "Parsed result": "Parsed result",
"Parsed result - Tooltip": "Parsed result - Tooltip",
"Token type": "トークンタイプ",
"Token type - Tooltip": "Token type - Tooltip"
}, },
"user": { "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", "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 front picture": "Upload ID card front picture",
"Upload ID card with person picture": "Upload ID card with person 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の資格情報", "WebAuthn credentials": "WebAuthnの資格情報",

View File

@@ -12,7 +12,9 @@
"Policies": "Policies", "Policies": "Policies",
"Policies - Tooltip": "Casbin policy rules", "Policies - Tooltip": "Casbin policy rules",
"Rule type": "Rule type", "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": { "application": {
"Always": "Always", "Always": "Always",
@@ -30,6 +32,8 @@
"Edit Application": "Edit Application", "Edit Application": "Edit Application",
"Enable Email linking": "Enable Email linking", "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 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": "Enable SAML compression",
"Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp", "Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp",
"Enable WebAuthn signin": "Enable WebAuthn signin", "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 signin session - Tooltip": "Whether Casdoor maintains a session after logging into Casdoor from the application",
"Enable signup": "Enable signup", "Enable signup": "Enable signup",
"Enable signup - Tooltip": "Whether to allow users to register a new account", "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", "Failed to sign in": "Failed to sign in",
"File uploaded successfully": "File uploaded successfully", "File uploaded successfully": "File uploaded successfully",
"First, last": "First, last", "First, last": "First, last",
@@ -60,7 +68,6 @@
"Input": "Input", "Input": "Input",
"Invitation code": "Invitation code", "Invitation code": "Invitation code",
"Invitation code - Tooltip": "Invitation code - Tooltip", "Invitation code - Tooltip": "Invitation code - Tooltip",
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
"Left": "Left", "Left": "Left",
"Logged in successfully": "Logged in successfully", "Logged in successfully": "Logged in successfully",
"Logged out successfully": "Logged out successfully", "Logged out successfully": "Logged out successfully",
@@ -73,7 +80,6 @@
"Please input your application!": "Please input your application!", "Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!", "Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Please select a HTML file", "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", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Redirect URL", "Redirect URL": "Redirect URL",
@@ -86,7 +92,6 @@
"Rule": "Rule", "Rule": "Rule",
"SAML metadata": "SAML metadata", "SAML metadata": "SAML metadata",
"SAML metadata - Tooltip": "The metadata of SAML protocol", "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", "SAML reply URL": "SAML reply URL",
"Select": "Select", "Select": "Select",
"Side panel HTML": "Side panel HTML", "Side panel HTML": "Side panel HTML",
@@ -95,11 +100,9 @@
"Sign Up Error": "Sign Up Error", "Sign Up Error": "Sign Up Error",
"Signin": "Signin", "Signin": "Signin",
"Signin (Default True)": "Signin (Default True)", "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", "Signin session": "Signin session",
"Signup items": "Signup items", "Signup items": "Signup items",
"Signup items - Tooltip": "Items for users to fill in when registering new accounts", "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", "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", "The application does not allow to sign up new account": "The application does not allow to sign up new account",
"Token expire": "Token expire", "Token expire": "Token expire",
@@ -113,7 +116,6 @@
"Bit size - Tooltip": "Secret key length", "Bit size - Tooltip": "Secret key length",
"Certificate": "Certificate", "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 - 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 certificate": "Copy certificate",
"Copy private key": "Copy private key", "Copy private key": "Copy private key",
"Crypto algorithm": "Crypto algorithm", "Crypto algorithm": "Crypto algorithm",
@@ -126,7 +128,6 @@
"New Cert": "New Cert", "New Cert": "New Cert",
"Private key": "Private key", "Private key": "Private key",
"Private key - Tooltip": "Private key corresponding to the public key certificate", "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", "Scope - Tooltip": "Usage scenarios of the certificate",
"Type - Tooltip": "Type of certificate" "Type - Tooltip": "Type of certificate"
}, },
@@ -191,6 +192,7 @@
"Click to Upload": "Click to Upload", "Click to Upload": "Click to Upload",
"Close": "Close", "Close": "Close",
"Confirm": "Confirm", "Confirm": "Confirm",
"Copied to clipboard successfully": "Copied to clipboard successfully",
"Copy": "Copy", "Copy": "Copy",
"Created time": "Created time", "Created time": "Created time",
"Custom": "Custom", "Custom": "Custom",
@@ -200,6 +202,8 @@
"Default application - Tooltip": "Default application for users registered directly from the organization page", "Default application - Tooltip": "Default application for users registered directly from the organization page",
"Default avatar": "Default avatar", "Default avatar": "Default avatar",
"Default avatar - Tooltip": "Default avatar used when newly registered users do not set an avatar image", "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", "Delete": "Delete",
"Description": "Description", "Description": "Description",
"Description - Tooltip": "Detailed description information for reference, Casdoor itself will not use it", "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 connect to server": "Failed to connect to server",
"Failed to delete": "Failed to delete", "Failed to delete": "Failed to delete",
"Failed to enable": "Failed to enable", "Failed to enable": "Failed to enable",
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
"Failed to remove": "Failed to remove", "Failed to remove": "Failed to remove",
"Failed to save": "Failed to save", "Failed to save": "Failed to save",
"Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization", "Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
@@ -251,6 +257,8 @@
"MFA items - Tooltip": "MFA items - Tooltip", "MFA items - Tooltip": "MFA items - Tooltip",
"Master password": "Master password", "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 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", "Menu": "Menu",
"Method": "Method", "Method": "Method",
"Model": "Model", "Model": "Model",
@@ -272,6 +280,8 @@
"Password salt - Tooltip": "Random parameter used for password encryption", "Password salt - Tooltip": "Random parameter used for password encryption",
"Password type": "Password type", "Password type": "Password type",
"Password type - Tooltip": "Storage format of passwords in the database", "Password type - Tooltip": "Storage format of passwords in the database",
"Payment": "Payment",
"Payment - Tooltip": "Payment - Tooltip",
"Payments": "Payments", "Payments": "Payments",
"Permissions": "Permissions", "Permissions": "Permissions",
"Permissions - Tooltip": "Permissions owned by this user", "Permissions - Tooltip": "Permissions owned by this user",
@@ -283,6 +293,8 @@
"Plans - Tooltip": "Plans - Tooltip", "Plans - Tooltip": "Plans - Tooltip",
"Preview": "Preview", "Preview": "Preview",
"Preview - Tooltip": "Preview the configured effects", "Preview - Tooltip": "Preview the configured effects",
"Pricing": "Pricing",
"Pricing - Tooltip": "Pricing - Tooltip",
"Pricings": "Pricings", "Pricings": "Pricings",
"Products": "Products", "Products": "Products",
"Provider": "Provider", "Provider": "Provider",
@@ -296,6 +308,10 @@
"Role - Tooltip": "Role - Tooltip", "Role - Tooltip": "Role - Tooltip",
"Roles": "Roles", "Roles": "Roles",
"Roles - Tooltip": "Roles that the user belongs to", "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": "Save",
"Save & Exit": "Save & Exit", "Save & Exit": "Save & Exit",
"Session ID": "Session ID", "Session ID": "Session ID",
@@ -318,6 +334,7 @@
"Successfully removed": "Successfully removed", "Successfully removed": "Successfully removed",
"Successfully saved": "Successfully saved", "Successfully saved": "Successfully saved",
"Successfully sent": "Successfully sent", "Successfully sent": "Successfully sent",
"Successfully synced": "Successfully synced",
"Supported country codes": "Supported country codes", "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", "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", "Sure to delete": "Sure to delete",
@@ -440,7 +457,6 @@
"Multi-factor methods": "Multi-factor methods", "Multi-factor methods": "Multi-factor methods",
"Multi-factor recover": "Multi-factor recover", "Multi-factor recover": "Multi-factor recover",
"Multi-factor recover description": "Multi-factor recover description", "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", "Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
"Passcode": "Passcode", "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", "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": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"Price per month": "Price per month", "Period": "Period",
"Price per month - Tooltip": "Price per month - Tooltip", "Period - Tooltip": "Period - Tooltip",
"Price per year": "Price per year", "Price": "Price",
"Price per year - Tooltip": "Price per year - Tooltip", "Price - Tooltip": "Price - Tooltip",
"per month": "per month" "Related product": "Related product",
"per month": "per month",
"per year": "per year"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "Copy pricing page URL", "Copy pricing page URL": "Copy pricing page URL",
@@ -589,7 +607,7 @@
"Trial duration": "Trial duration", "Trial duration": "Trial duration",
"Trial duration - Tooltip": "Trial duration period", "Trial duration - Tooltip": "Trial duration period",
"days trial available!": "days trial available!", "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": { "product": {
"Alipay": "Alipay", "Alipay": "Alipay",
@@ -600,17 +618,16 @@
"Detail - Tooltip": "Detail of product", "Detail - Tooltip": "Detail of product",
"Dummy": "Dummy", "Dummy": "Dummy",
"Edit Product": "Edit Product", "Edit Product": "Edit Product",
"I have completed the payment": "I have completed the payment",
"Image": "Image", "Image": "Image",
"Image - Tooltip": "Image of product", "Image - Tooltip": "Image of product",
"New Product": "New Product", "New Product": "New Product",
"Pay": "Pay", "Pay": "Pay",
"PayPal": "PayPal", "PayPal": "PayPal",
"Payment cancelled": "Payment cancelled",
"Payment failed": "Payment failed",
"Payment providers": "Payment providers", "Payment providers": "Payment providers",
"Payment providers - Tooltip": "Providers of payment services", "Payment providers - Tooltip": "Providers of payment services",
"Placing order...": "Placing order...", "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": "Price",
"Price - Tooltip": "Price of product", "Price - Tooltip": "Price of product",
"Quantity": "Quantity", "Quantity": "Quantity",
@@ -672,8 +689,8 @@
"Content": "Content", "Content": "Content",
"Content - Tooltip": "Content - Tooltip", "Content - Tooltip": "Content - Tooltip",
"Copy": "Copy", "Copy": "Copy",
"DB Test": "DB Test", "DB test": "DB test",
"DB Test - Tooltip": "DB Test - Tooltip", "DB test - Tooltip": "DB test - Tooltip",
"Disable SSL": "Disable SSL", "Disable SSL": "Disable SSL",
"Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server", "Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server",
"Domain": "Domain", "Domain": "Domain",
@@ -700,7 +717,10 @@
"Internal": "Internal", "Internal": "Internal",
"Issuer URL": "Issuer URL", "Issuer URL": "Issuer URL",
"Issuer URL - Tooltip": "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": "Metadata",
"Metadata - Tooltip": "SAML metadata", "Metadata - Tooltip": "SAML metadata",
"Method - Tooltip": "Login method, QR code or silent login", "Method - Tooltip": "Login method, QR code or silent login",
@@ -754,6 +774,10 @@
"Sender Id - Tooltip": "Sender Id - Tooltip", "Sender Id - Tooltip": "Sender Id - Tooltip",
"Sender number": "Sender number", "Sender number": "Sender number",
"Sender number - Tooltip": "Sender number - Tooltip", "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": "Sign Name",
"Sign Name - Tooltip": "Name of the signature to be used", "Sign Name - Tooltip": "Name of the signature to be used",
"Sign request": "Sign request", "Sign request": "Sign request",
@@ -764,12 +788,15 @@
"Signup HTML": "Signup HTML", "Signup HTML": "Signup HTML",
"Signup HTML - Edit": "Signup HTML - Edit", "Signup HTML - Edit": "Signup HTML - Edit",
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style", "Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
"Signup group": "Signup group",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Site key", "Site key": "Site key",
"Site key - Tooltip": "Site key", "Site key - Tooltip": "Site key",
"Sliding Validation": "Sliding Validation", "Sliding Validation": "Sliding Validation",
"Sub type": "Sub type", "Sub type": "Sub type",
"Sub type - Tooltip": "Sub type", "Sub type - Tooltip": "Sub type",
"Team ID": "Team ID",
"Team ID - Tooltip": "Team ID - Tooltip",
"Template code": "Template code", "Template code": "Template code",
"Template code - Tooltip": "Template code", "Template code - Tooltip": "Template code",
"Test Email": "Test Email", "Test Email": "Test Email",
@@ -780,6 +807,8 @@
"Token URL - Tooltip": "Token URL", "Token URL - Tooltip": "Token URL",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Select a type", "Type - Tooltip": "Select a type",
"User flow": "User flow",
"User flow - Tooltip": "User flow - Tooltip",
"User mapping": "User mapping", "User mapping": "User mapping",
"User mapping - Tooltip": "User mapping - Tooltip", "User mapping - Tooltip": "User mapping - Tooltip",
"UserInfo URL": "UserInfo URL", "UserInfo URL": "UserInfo URL",
@@ -801,6 +830,8 @@
"New Role": "New Role", "New Role": "New Role",
"Sub domains": "Sub domains", "Sub domains": "Sub domains",
"Sub domains - Tooltip": "Domains included in the current role", "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": "Sub roles",
"Sub roles - Tooltip": "Roles included in the current role", "Sub roles - Tooltip": "Roles included in the current role",
"Sub users": "Sub users", "Sub users": "Sub users",
@@ -812,6 +843,9 @@
"Confirm": "Confirm", "Confirm": "Confirm",
"Decline": "Decline", "Decline": "Decline",
"Have account?": "Have account?", "Have account?": "Have account?",
"Label": "Label",
"Label HTML": "Label HTML",
"Placeholder": "Placeholder",
"Please accept the agreement!": "Please accept the agreement!", "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 click the below button to sign in": "Please click the below button to sign in",
"Please confirm your password!": "Please confirm your password!", "Please confirm your password!": "Please confirm your password!",
@@ -830,6 +864,11 @@
"Please select your country/region!": "Please select your country/region!", "Please select your country/region!": "Please select your country/region!",
"Terms of Use": "Terms of Use", "Terms of Use": "Terms of Use",
"Terms of Use - Tooltip": "Terms of use that users need to read and agree to during registration", "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 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 invoice title!": "The input is not invoice title!",
"The input is not valid Email!": "The input is not valid Email!", "The input is not valid Email!": "The input is not valid Email!",
@@ -841,14 +880,19 @@
"sign in now": "sign in now" "sign in now": "sign in now"
}, },
"subscription": { "subscription": {
"Duration": "Duration", "Active": "Active",
"Duration - Tooltip": "Subscription duration",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "End date", "End time": "End time",
"End date - Tooltip": "End date", "End time - Tooltip": "End time - Tooltip",
"Error": "Error",
"Expired": "Expired",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Start date": "Start date", "Pending": "Pending",
"Start date - Tooltip": "Start date" "Period": "Period",
"Start time": "Start time",
"Start time - Tooltip": "Start time - Tooltip",
"Suspended": "Suspended",
"Upcoming": "Upcoming"
}, },
"syncer": { "syncer": {
"Affiliation table": "Affiliation table", "Affiliation table": "Affiliation table",
@@ -872,6 +916,8 @@
"Is read-only": "Is read-only", "Is read-only": "Is read-only",
"Is read-only - Tooltip": "Is read-only - Tooltip", "Is read-only - Tooltip": "Is read-only - Tooltip",
"New Syncer": "New Syncer", "New Syncer": "New Syncer",
"SSL mode": "SSL mode",
"SSL mode - Tooltip": "SSL mode - Tooltip",
"Sync interval": "Sync interval", "Sync interval": "Sync interval",
"Sync interval - Tooltip": "Unit in seconds", "Sync interval - Tooltip": "Unit in seconds",
"Table": "Table", "Table": "Table",
@@ -913,11 +959,19 @@
}, },
"token": { "token": {
"Access token": "Access token", "Access token": "Access token",
"Access token - Tooltip": "Access token - Tooltip",
"Authorization code": "Authorization code", "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", "Edit Token": "Edit Token",
"Expires in": "Expires in", "Expires in": "Expires in",
"Expires in - Tooltip": "Expires in - Tooltip",
"New Token": "New Token", "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": { "user": {
"3rd-party logins": "3rd-party logins", "3rd-party logins": "3rd-party logins",
@@ -974,6 +1028,8 @@
"Managed accounts": "Managed accounts", "Managed accounts": "Managed accounts",
"Modify password...": "Modify password...", "Modify password...": "Modify password...",
"Multi-factor authentication": "Multi-factor authentication", "Multi-factor authentication": "Multi-factor authentication",
"Name": "Name",
"Name format": "Name format",
"New Email": "New Email", "New Email": "New Email",
"New Password": "New Password", "New Password": "New Password",
"New User": "New User", "New User": "New User",
@@ -1011,6 +1067,7 @@
"Upload ID card front picture": "Upload ID card front picture", "Upload ID card front picture": "Upload ID card front picture",
"Upload ID card with person picture": "Upload ID card with person picture", "Upload ID card with person picture": "Upload ID card with person picture",
"Upload a photo": "Upload a photo", "Upload a photo": "Upload a photo",
"Value": "Value",
"Values": "Values", "Values": "Values",
"Verification code sent": "Verification code sent", "Verification code sent": "Verification code sent",
"WebAuthn credentials": "WebAuthn credentials", "WebAuthn credentials": "WebAuthn credentials",

View File

@@ -12,7 +12,9 @@
"Policies": "정책", "Policies": "정책",
"Policies - Tooltip": "Casbin 정책 규칙", "Policies - Tooltip": "Casbin 정책 규칙",
"Rule type": "Rule type", "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": { "application": {
"Always": "항상", "Always": "항상",
@@ -30,6 +32,8 @@
"Edit Application": "앱 편집하기", "Edit Application": "앱 편집하기",
"Enable Email linking": "이메일 링크 사용 가능하도록 설정하기", "Enable Email linking": "이메일 링크 사용 가능하도록 설정하기",
"Enable Email linking - Tooltip": "3rd-party 로그인 공급자를 사용할 때, 만약 조직 내에 동일한 이메일을 사용하는 사용자가 있다면, 3rd-party 로그인 방법은 자동으로 해당 사용자와 연동됩니다", "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": "SAML 압축 사용 가능하게 설정하기",
"Enable SAML compression - Tooltip": "카스도어가 SAML idp로 사용될 때 SAML 응답 메시지를 압축할 것인지 여부", "Enable SAML compression - Tooltip": "카스도어가 SAML idp로 사용될 때 SAML 응답 메시지를 압축할 것인지 여부",
"Enable WebAuthn signin": "WebAuthn 로그인 기능 활성화", "Enable WebAuthn signin": "WebAuthn 로그인 기능 활성화",
@@ -42,6 +46,10 @@
"Enable signin session - Tooltip": "애플리케이션에서 Casdoor에 로그인 한 후 Casdoor가 세션을 유지하는 지 여부", "Enable signin session - Tooltip": "애플리케이션에서 Casdoor에 로그인 한 후 Casdoor가 세션을 유지하는 지 여부",
"Enable signup": "가입 가능하게 만들기", "Enable signup": "가입 가능하게 만들기",
"Enable signup - Tooltip": "사용자가 새로운 계정을 등록할지 여부", "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": "로그인 실패했습니다", "Failed to sign in": "로그인 실패했습니다",
"File uploaded successfully": "파일이 성공적으로 업로드되었습니다", "File uploaded successfully": "파일이 성공적으로 업로드되었습니다",
"First, last": "First, last", "First, last": "First, last",
@@ -60,7 +68,6 @@
"Input": "Input", "Input": "Input",
"Invitation code": "Invitation code", "Invitation code": "Invitation code",
"Invitation code - Tooltip": "Invitation code - Tooltip", "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": "HTML 파일을 선택해 주세요", "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", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "리디렉트 URL", "Redirect URL": "리디렉트 URL",
@@ -86,7 +92,6 @@
"Rule": "규칙", "Rule": "규칙",
"SAML metadata": "SAML 메타데이터", "SAML metadata": "SAML 메타데이터",
"SAML metadata - Tooltip": "SAML 프로토콜의 메타 데이터", "SAML metadata - Tooltip": "SAML 프로토콜의 메타 데이터",
"SAML metadata URL copied to clipboard successfully": "SAML 메타데이터의 URL이 성공적으로 클립보드로 복사되었습니다",
"SAML reply URL": "SAML 응답 URL", "SAML reply URL": "SAML 응답 URL",
"Select": "Select", "Select": "Select",
"Side panel HTML": "사이드 패널 HTML", "Side panel HTML": "사이드 패널 HTML",
@@ -95,11 +100,9 @@
"Sign Up Error": "가입 오류", "Sign Up Error": "가입 오류",
"Signin": "Signin", "Signin": "Signin",
"Signin (Default True)": "Signin (Default True)", "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": "로그인 세션", "Signin session": "로그인 세션",
"Signup items": "가입 항목", "Signup items": "가입 항목",
"Signup items - Tooltip": "새로운 계정 등록시 사용자가 작성해야하는 항목들", "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", "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": "비밀 키 길이", "Bit size - Tooltip": "비밀 키 길이",
"Certificate": "증명서", "Certificate": "증명서",
"Certificate - Tooltip": "액세스 토큰의 JWT 서명을 해독하는 데 사용되는 공개 키 인증서입니다. 이 인증서는 보통 Casdoor SDK 측 (즉, 어플리케이션)에 배치되어 JWT를 구문 분석하는 데 사용됩니다", "Certificate - Tooltip": "액세스 토큰의 JWT 서명을 해독하는 데 사용되는 공개 키 인증서입니다. 이 인증서는 보통 Casdoor SDK 측 (즉, 어플리케이션)에 배치되어 JWT를 구문 분석하는 데 사용됩니다",
"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 - Tooltip": "공개 키 인증서에 해당하는 개인 키",
"Private key copied to clipboard successfully": "개인 키가 클립 보드에 성공적으로 복사되었습니다",
"Scope - Tooltip": "인증서의 사용 시나리오", "Scope - Tooltip": "인증서의 사용 시나리오",
"Type - Tooltip": "증명서 유형" "Type - Tooltip": "증명서 유형"
}, },
@@ -191,6 +192,7 @@
"Click to Upload": "클릭하여 업로드하세요", "Click to Upload": "클릭하여 업로드하세요",
"Close": "닫다", "Close": "닫다",
"Confirm": "Confirm", "Confirm": "Confirm",
"Copied to clipboard successfully": "Copied to clipboard successfully",
"Copy": "Copy", "Copy": "Copy",
"Created time": "작성한 시간", "Created time": "작성한 시간",
"Custom": "Custom", "Custom": "Custom",
@@ -200,6 +202,8 @@
"Default application - Tooltip": "조직 페이지에서 직접 등록한 사용자의 기본 응용 프로그램", "Default application - Tooltip": "조직 페이지에서 직접 등록한 사용자의 기본 응용 프로그램",
"Default avatar": "기본 아바타", "Default avatar": "기본 아바타",
"Default avatar - Tooltip": "새로 등록된 사용자가 아바타 이미지를 설정하지 않았을 때 사용되는 기본 아바타입니다", "Default avatar - Tooltip": "새로 등록된 사용자가 아바타 이미지를 설정하지 않았을 때 사용되는 기본 아바타입니다",
"Default password": "Default password",
"Default password - Tooltip": "Default password - Tooltip",
"Delete": "삭제하기", "Delete": "삭제하기",
"Description": "설명", "Description": "설명",
"Description - Tooltip": "참고용으로 자세한 설명 정보가 제공됩니다. Casdoor 자체는 사용하지 않습니다", "Description - Tooltip": "참고용으로 자세한 설명 정보가 제공됩니다. Casdoor 자체는 사용하지 않습니다",
@@ -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 enable": "Failed to enable",
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
"Failed to remove": "Failed to remove", "Failed to remove": "Failed to remove",
"Failed to save": "저장에 실패했습니다", "Failed to save": "저장에 실패했습니다",
"Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"Favicon": "파비콘", "Favicon": "파비콘",
"Favicon - Tooltip": "조직의 모든 Casdoor 페이지에서 사용되는 Favicon 아이콘 URL", "Favicon - Tooltip": "조직의 모든 Casdoor 페이지에서 사용되는 Favicon 아이콘 URL",
@@ -251,6 +257,8 @@
"MFA items - Tooltip": "MFA items - Tooltip", "MFA items - Tooltip": "MFA items - Tooltip",
"Master password": "마스터 비밀번호", "Master password": "마스터 비밀번호",
"Master password - Tooltip": "이 조직의 모든 사용자에게 로그인하는 데 사용될 수 있으며, 이 사용자로 로그인하여 기술 문제를 해결하는 관리자에게 편리합니다", "Master password - Tooltip": "이 조직의 모든 사용자에게 로그인하는 데 사용될 수 있으며, 이 사용자로 로그인하여 기술 문제를 해결하는 관리자에게 편리합니다",
"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": "암호화에 사용되는 임의 매개변수", "Password salt - Tooltip": "암호화에 사용되는 임의 매개변수",
"Password type": "암호 유형", "Password type": "암호 유형",
"Password type - Tooltip": "데이터베이스 내 비밀번호의 저장 형식", "Password type - Tooltip": "데이터베이스 내 비밀번호의 저장 형식",
"Payment": "Payment",
"Payment - Tooltip": "Payment - Tooltip",
"Payments": "지불", "Payments": "지불",
"Permissions": "허가", "Permissions": "허가",
"Permissions - Tooltip": "이 사용자가 소유한 권한", "Permissions - Tooltip": "이 사용자가 소유한 권한",
@@ -283,6 +293,8 @@
"Plans - Tooltip": "Plans - Tooltip", "Plans - Tooltip": "Plans - Tooltip",
"Preview": "미리보기", "Preview": "미리보기",
"Preview - Tooltip": "구성된 효과를 미리보기합니다", "Preview - Tooltip": "구성된 효과를 미리보기합니다",
"Pricing": "Pricing",
"Pricing - Tooltip": "Pricing - Tooltip",
"Pricings": "가격", "Pricings": "가격",
"Products": "제품들", "Products": "제품들",
"Provider": "공급자", "Provider": "공급자",
@@ -296,6 +308,10 @@
"Role - Tooltip": "Role - Tooltip", "Role - Tooltip": "Role - Tooltip",
"Roles": "역할들", "Roles": "역할들",
"Roles - Tooltip": "사용자가 속한 역할들", "Roles - Tooltip": "사용자가 속한 역할들",
"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": "세션 ID", "Session ID": "세션 ID",
@@ -318,6 +334,7 @@
"Successfully removed": "Successfully removed", "Successfully removed": "Successfully removed",
"Successfully saved": "성공적으로 저장되었습니다", "Successfully saved": "성공적으로 저장되었습니다",
"Successfully sent": "Successfully sent", "Successfully sent": "Successfully sent",
"Successfully synced": "Successfully synced",
"Supported country codes": "지원되는 국가 코드들", "Supported country codes": "지원되는 국가 코드들",
"Supported country codes - Tooltip": "조직에서 지원하는 국가 코드입니다. 이 코드들은 SMS 인증 코드를 보낼 때 접두사로 선택할 수 있습니다", "Supported country codes - Tooltip": "조직에서 지원하는 국가 코드입니다. 이 코드들은 SMS 인증 코드를 보낼 때 접두사로 선택할 수 있습니다",
"Sure to delete": "삭제하시겠습니까?", "Sure to delete": "삭제하시겠습니까?",
@@ -440,7 +457,6 @@
"Multi-factor methods": "Multi-factor methods", "Multi-factor methods": "Multi-factor methods",
"Multi-factor recover": "Multi-factor recover", "Multi-factor recover": "Multi-factor recover",
"Multi-factor recover description": "Multi-factor recover description", "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", "Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
"Passcode": "Passcode", "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", "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": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"Price per month": "Price per month", "Period": "Period",
"Price per month - Tooltip": "Price per month - Tooltip", "Period - Tooltip": "Period - Tooltip",
"Price per year": "Price per year", "Price": "Price",
"Price per year - Tooltip": "Price per year - Tooltip", "Price - Tooltip": "Price - Tooltip",
"per month": "월" "Related product": "Related product",
"per month": "월",
"per year": "per year"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "가격 페이지 URL 복사", "Copy pricing page URL": "가격 페이지 URL 복사",
@@ -589,7 +607,7 @@
"Trial duration": "체험 기간", "Trial duration": "체험 기간",
"Trial duration - Tooltip": "체험 기간의 기간", "Trial duration - Tooltip": "체험 기간의 기간",
"days trial available!": "일 무료 체험 가능!", "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": { "product": {
"Alipay": "Alipay", "Alipay": "Alipay",
@@ -600,17 +618,16 @@
"Detail - Tooltip": "제품의 세부사항", "Detail - Tooltip": "제품의 세부사항",
"Dummy": "Dummy", "Dummy": "Dummy",
"Edit Product": "제품 편집", "Edit Product": "제품 편집",
"I have completed the payment": "저는 지불을 완료했습니다",
"Image": "이미지", "Image": "이미지",
"Image - Tooltip": "제품 이미지", "Image - Tooltip": "제품 이미지",
"New Product": "새로운 제품", "New Product": "새로운 제품",
"Pay": "결제하다", "Pay": "결제하다",
"PayPal": "페이팔", "PayPal": "페이팔",
"Payment cancelled": "Payment cancelled",
"Payment failed": "Payment failed",
"Payment providers": "지불 공급자", "Payment providers": "지불 공급자",
"Payment providers - Tooltip": "결제 서비스 제공자", "Payment providers - Tooltip": "결제 서비스 제공자",
"Placing order...": "주문하기...", "Placing order...": "주문하기...",
"Please provide your username in the remark": "비고란에 사용자 이름을 제공해 주세요",
"Please scan the QR code to pay": "QR 코드를 스캔하여 결제하십시오",
"Price": "가격", "Price": "가격",
"Price - Tooltip": "제품 가격", "Price - Tooltip": "제품 가격",
"Quantity": "양량", "Quantity": "양량",
@@ -672,8 +689,8 @@
"Content": "Content", "Content": "Content",
"Content - Tooltip": "Content - Tooltip", "Content - Tooltip": "Content - Tooltip",
"Copy": "복사하다", "Copy": "복사하다",
"DB Test": "DB Test", "DB test": "DB test",
"DB Test - Tooltip": "DB Test - Tooltip", "DB test - Tooltip": "DB test - Tooltip",
"Disable SSL": "SSL을 사용하지 않도록 설정하십시오", "Disable SSL": "SSL을 사용하지 않도록 설정하십시오",
"Disable SSL - Tooltip": "STMP 서버와 통신할 때 SSL 프로토콜을 비활성화할지 여부", "Disable SSL - Tooltip": "STMP 서버와 통신할 때 SSL 프로토콜을 비활성화할지 여부",
"Domain": "도메인", "Domain": "도메인",
@@ -700,7 +717,10 @@
"Internal": "Internal", "Internal": "Internal",
"Issuer URL": "발행자 URL", "Issuer URL": "발행자 URL",
"Issuer URL - Tooltip": "발급자 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": "메타 데이터",
"Metadata - Tooltip": "SAML 메타데이터", "Metadata - Tooltip": "SAML 메타데이터",
"Method - Tooltip": "로그인 방법, QR 코드 또는 음성 로그인", "Method - Tooltip": "로그인 방법, QR 코드 또는 음성 로그인",
@@ -754,6 +774,10 @@
"Sender Id - Tooltip": "Sender Id - Tooltip", "Sender Id - Tooltip": "Sender Id - Tooltip",
"Sender number": "Sender number", "Sender number": "Sender number",
"Sender number - Tooltip": "Sender number - Tooltip", "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": "사용할 서명의 이름", "Sign Name - Tooltip": "사용할 서명의 이름",
"Sign request": "표지 요청", "Sign request": "표지 요청",
@@ -764,12 +788,15 @@
"Signup HTML": "가입 양식 HTML", "Signup HTML": "가입 양식 HTML",
"Signup HTML - Edit": "가입 HTML - 수정", "Signup HTML - Edit": "가입 HTML - 수정",
"Signup HTML - Tooltip": "기본 가입 페이지 스타일을 바꾸기 위한 사용자 지정 HTML", "Signup HTML - Tooltip": "기본 가입 페이지 스타일을 바꾸기 위한 사용자 지정 HTML",
"Signup group": "Signup group",
"Silent": "Silent", "Silent": "Silent",
"Site key": "사이트 키", "Site key": "사이트 키",
"Site key - Tooltip": "사이트 키", "Site key - Tooltip": "사이트 키",
"Sliding Validation": "Sliding Validation", "Sliding Validation": "Sliding Validation",
"Sub type": "하위 유형", "Sub type": "하위 유형",
"Sub type - Tooltip": "서브 타입", "Sub type - Tooltip": "서브 타입",
"Team ID": "Team ID",
"Team ID - Tooltip": "Team ID - Tooltip",
"Template code": "템플릿 코드", "Template code": "템플릿 코드",
"Template code - Tooltip": "템플릿 코드", "Template code - Tooltip": "템플릿 코드",
"Test Email": "테스트 이메일", "Test Email": "테스트 이메일",
@@ -780,6 +807,8 @@
"Token URL - Tooltip": "토큰 URL", "Token URL - Tooltip": "토큰 URL",
"Type": "타입", "Type": "타입",
"Type - Tooltip": "유형을 선택하세요", "Type - Tooltip": "유형을 선택하세요",
"User flow": "User flow",
"User flow - Tooltip": "User flow - Tooltip",
"User mapping": "User mapping", "User mapping": "User mapping",
"User mapping - Tooltip": "User mapping - Tooltip", "User mapping - Tooltip": "User mapping - Tooltip",
"UserInfo URL": "사용자 정보 URL", "UserInfo URL": "사용자 정보 URL",
@@ -801,6 +830,8 @@
"New Role": "새로운 역할", "New Role": "새로운 역할",
"Sub domains": "하위 도메인", "Sub domains": "하위 도메인",
"Sub domains - Tooltip": "현재 역할에 포함된 도메인", "Sub domains - Tooltip": "현재 역할에 포함된 도메인",
"Sub groups": "Sub groups",
"Sub groups - Tooltip": "Sub groups - Tooltip",
"Sub roles": "서브 역할", "Sub roles": "서브 역할",
"Sub roles - Tooltip": "현재 역할에 포함된 역할", "Sub roles - Tooltip": "현재 역할에 포함된 역할",
"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 - 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 Tax ID!": "입력한 것은 송장 세금 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": { "subscription": {
"Duration": "기간", "Active": "Active",
"Duration - Tooltip": "구독 기간",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "종료일", "End time": "End time",
"End date - Tooltip": "종료일", "End time - Tooltip": "End time - Tooltip",
"Error": "Error",
"Expired": "Expired",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Start date": "시작일", "Pending": "Pending",
"Start date - Tooltip": "시작일" "Period": "Period",
"Start time": "Start time",
"Start time - Tooltip": "Start time - Tooltip",
"Suspended": "Suspended",
"Upcoming": "Upcoming"
}, },
"syncer": { "syncer": {
"Affiliation table": "소속 테이블", "Affiliation table": "소속 테이블",
@@ -872,6 +916,8 @@
"Is read-only": "Is read-only", "Is read-only": "Is read-only",
"Is read-only - Tooltip": "Is read-only - Tooltip", "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": "초 단위의 단위", "Sync interval - Tooltip": "초 단위의 단위",
"Table": "테이블", "Table": "테이블",
@@ -913,11 +959,19 @@
}, },
"token": { "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": "토큰 유형" "Parsed result": "Parsed result",
"Parsed result - Tooltip": "Parsed result - Tooltip",
"Token type": "토큰 유형",
"Token type - Tooltip": "Token type - Tooltip"
}, },
"user": { "user": {
"3rd-party logins": "제3자 로그인", "3rd-party logins": "제3자 로그인",
@@ -974,6 +1028,8 @@
"Managed accounts": "관리 계정", "Managed accounts": "관리 계정",
"Modify password...": "비밀번호 수정하기...", "Modify password...": "비밀번호 수정하기...",
"Multi-factor authentication": "Multi-factor authentication", "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 front picture": "Upload ID card front picture",
"Upload ID card with person picture": "Upload ID card with person 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": "웹 인증 자격증명",

View File

@@ -12,7 +12,9 @@
"Policies": "Policies", "Policies": "Policies",
"Policies - Tooltip": "Casbin policy rules", "Policies - Tooltip": "Casbin policy rules",
"Rule type": "Rule type", "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": { "application": {
"Always": "Always", "Always": "Always",
@@ -30,6 +32,8 @@
"Edit Application": "Edit Application", "Edit Application": "Edit Application",
"Enable Email linking": "Enable Email linking", "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 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": "Enable SAML compression",
"Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp", "Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp",
"Enable WebAuthn signin": "Enable WebAuthn signin", "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 signin session - Tooltip": "Whether Casdoor maintains a session after logging into Casdoor from the application",
"Enable signup": "Enable signup", "Enable signup": "Enable signup",
"Enable signup - Tooltip": "Whether to allow users to register a new account", "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", "Failed to sign in": "Failed to sign in",
"File uploaded successfully": "File uploaded successfully", "File uploaded successfully": "File uploaded successfully",
"First, last": "First, last", "First, last": "First, last",
@@ -60,7 +68,6 @@
"Input": "Input", "Input": "Input",
"Invitation code": "Invitation code", "Invitation code": "Invitation code",
"Invitation code - Tooltip": "Invitation code - Tooltip", "Invitation code - Tooltip": "Invitation code - Tooltip",
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
"Left": "Left", "Left": "Left",
"Logged in successfully": "Logged in successfully", "Logged in successfully": "Logged in successfully",
"Logged out successfully": "Logged out successfully", "Logged out successfully": "Logged out successfully",
@@ -73,7 +80,6 @@
"Please input your application!": "Please input your application!", "Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!", "Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Please select a HTML file", "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", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Redirect URL", "Redirect URL": "Redirect URL",
@@ -86,7 +92,6 @@
"Rule": "Rule", "Rule": "Rule",
"SAML metadata": "SAML metadata", "SAML metadata": "SAML metadata",
"SAML metadata - Tooltip": "The metadata of SAML protocol", "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", "SAML reply URL": "SAML reply URL",
"Select": "Select", "Select": "Select",
"Side panel HTML": "Side panel HTML", "Side panel HTML": "Side panel HTML",
@@ -95,11 +100,9 @@
"Sign Up Error": "Sign Up Error", "Sign Up Error": "Sign Up Error",
"Signin": "Signin", "Signin": "Signin",
"Signin (Default True)": "Signin (Default True)", "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", "Signin session": "Signin session",
"Signup items": "Signup items", "Signup items": "Signup items",
"Signup items - Tooltip": "Items for users to fill in when registering new accounts", "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", "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", "The application does not allow to sign up new account": "The application does not allow to sign up new account",
"Token expire": "Token expire", "Token expire": "Token expire",
@@ -113,7 +116,6 @@
"Bit size - Tooltip": "Secret key length", "Bit size - Tooltip": "Secret key length",
"Certificate": "Certificate", "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 - 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 certificate": "Copy certificate",
"Copy private key": "Copy private key", "Copy private key": "Copy private key",
"Crypto algorithm": "Crypto algorithm", "Crypto algorithm": "Crypto algorithm",
@@ -126,7 +128,6 @@
"New Cert": "New Cert", "New Cert": "New Cert",
"Private key": "Private key", "Private key": "Private key",
"Private key - Tooltip": "Private key corresponding to the public key certificate", "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", "Scope - Tooltip": "Usage scenarios of the certificate",
"Type - Tooltip": "Type of certificate" "Type - Tooltip": "Type of certificate"
}, },
@@ -191,6 +192,7 @@
"Click to Upload": "Click to Upload", "Click to Upload": "Click to Upload",
"Close": "Close", "Close": "Close",
"Confirm": "Confirm", "Confirm": "Confirm",
"Copied to clipboard successfully": "Copied to clipboard successfully",
"Copy": "Copy", "Copy": "Copy",
"Created time": "Created time", "Created time": "Created time",
"Custom": "Custom", "Custom": "Custom",
@@ -200,6 +202,8 @@
"Default application - Tooltip": "Default application for users registered directly from the organization page", "Default application - Tooltip": "Default application for users registered directly from the organization page",
"Default avatar": "Default avatar", "Default avatar": "Default avatar",
"Default avatar - Tooltip": "Default avatar used when newly registered users do not set an avatar image", "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", "Delete": "Delete",
"Description": "Description", "Description": "Description",
"Description - Tooltip": "Detailed description information for reference, Casdoor itself will not use it", "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 connect to server": "Failed to connect to server",
"Failed to delete": "Failed to delete", "Failed to delete": "Failed to delete",
"Failed to enable": "Failed to enable", "Failed to enable": "Failed to enable",
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
"Failed to remove": "Failed to remove", "Failed to remove": "Failed to remove",
"Failed to save": "Failed to save", "Failed to save": "Failed to save",
"Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization", "Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
@@ -251,6 +257,8 @@
"MFA items - Tooltip": "MFA items - Tooltip", "MFA items - Tooltip": "MFA items - Tooltip",
"Master password": "Master password", "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 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", "Menu": "Menu",
"Method": "Method", "Method": "Method",
"Model": "Model", "Model": "Model",
@@ -272,6 +280,8 @@
"Password salt - Tooltip": "Random parameter used for password encryption", "Password salt - Tooltip": "Random parameter used for password encryption",
"Password type": "Password type", "Password type": "Password type",
"Password type - Tooltip": "Storage format of passwords in the database", "Password type - Tooltip": "Storage format of passwords in the database",
"Payment": "Payment",
"Payment - Tooltip": "Payment - Tooltip",
"Payments": "Payments", "Payments": "Payments",
"Permissions": "Permissions", "Permissions": "Permissions",
"Permissions - Tooltip": "Permissions owned by this user", "Permissions - Tooltip": "Permissions owned by this user",
@@ -283,6 +293,8 @@
"Plans - Tooltip": "Plans - Tooltip", "Plans - Tooltip": "Plans - Tooltip",
"Preview": "Preview", "Preview": "Preview",
"Preview - Tooltip": "Preview the configured effects", "Preview - Tooltip": "Preview the configured effects",
"Pricing": "Pricing",
"Pricing - Tooltip": "Pricing - Tooltip",
"Pricings": "Pricings", "Pricings": "Pricings",
"Products": "Products", "Products": "Products",
"Provider": "Provider", "Provider": "Provider",
@@ -296,6 +308,10 @@
"Role - Tooltip": "Role - Tooltip", "Role - Tooltip": "Role - Tooltip",
"Roles": "Roles", "Roles": "Roles",
"Roles - Tooltip": "Roles that the user belongs to", "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": "Save",
"Save & Exit": "Save & Exit", "Save & Exit": "Save & Exit",
"Session ID": "Session ID", "Session ID": "Session ID",
@@ -318,6 +334,7 @@
"Successfully removed": "Successfully removed", "Successfully removed": "Successfully removed",
"Successfully saved": "Successfully saved", "Successfully saved": "Successfully saved",
"Successfully sent": "Successfully sent", "Successfully sent": "Successfully sent",
"Successfully synced": "Successfully synced",
"Supported country codes": "Supported country codes", "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", "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", "Sure to delete": "Sure to delete",
@@ -440,7 +457,6 @@
"Multi-factor methods": "Multi-factor methods", "Multi-factor methods": "Multi-factor methods",
"Multi-factor recover": "Multi-factor recover", "Multi-factor recover": "Multi-factor recover",
"Multi-factor recover description": "Multi-factor recover description", "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", "Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
"Passcode": "Passcode", "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", "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": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"Price per month": "Price per month", "Period": "Period",
"Price per month - Tooltip": "Price per month - Tooltip", "Period - Tooltip": "Period - Tooltip",
"Price per year": "Price per year", "Price": "Price",
"Price per year - Tooltip": "Price per year - Tooltip", "Price - Tooltip": "Price - Tooltip",
"per month": "per month" "Related product": "Related product",
"per month": "per month",
"per year": "per year"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "Copy pricing page URL", "Copy pricing page URL": "Copy pricing page URL",
@@ -589,7 +607,7 @@
"Trial duration": "Trial duration", "Trial duration": "Trial duration",
"Trial duration - Tooltip": "Trial duration period", "Trial duration - Tooltip": "Trial duration period",
"days trial available!": "days trial available!", "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": { "product": {
"Alipay": "Alipay", "Alipay": "Alipay",
@@ -600,17 +618,16 @@
"Detail - Tooltip": "Detail of product", "Detail - Tooltip": "Detail of product",
"Dummy": "Dummy", "Dummy": "Dummy",
"Edit Product": "Edit Product", "Edit Product": "Edit Product",
"I have completed the payment": "I have completed the payment",
"Image": "Image", "Image": "Image",
"Image - Tooltip": "Image of product", "Image - Tooltip": "Image of product",
"New Product": "New Product", "New Product": "New Product",
"Pay": "Pay", "Pay": "Pay",
"PayPal": "PayPal", "PayPal": "PayPal",
"Payment cancelled": "Payment cancelled",
"Payment failed": "Payment failed",
"Payment providers": "Payment providers", "Payment providers": "Payment providers",
"Payment providers - Tooltip": "Providers of payment services", "Payment providers - Tooltip": "Providers of payment services",
"Placing order...": "Placing order...", "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": "Price",
"Price - Tooltip": "Price of product", "Price - Tooltip": "Price of product",
"Quantity": "Quantity", "Quantity": "Quantity",
@@ -672,8 +689,8 @@
"Content": "Content", "Content": "Content",
"Content - Tooltip": "Content - Tooltip", "Content - Tooltip": "Content - Tooltip",
"Copy": "Copy", "Copy": "Copy",
"DB Test": "DB Test", "DB test": "DB test",
"DB Test - Tooltip": "DB Test - Tooltip", "DB test - Tooltip": "DB test - Tooltip",
"Disable SSL": "Disable SSL", "Disable SSL": "Disable SSL",
"Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server", "Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server",
"Domain": "Domain", "Domain": "Domain",
@@ -700,7 +717,10 @@
"Internal": "Internal", "Internal": "Internal",
"Issuer URL": "Issuer URL", "Issuer URL": "Issuer URL",
"Issuer URL - Tooltip": "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": "Metadata",
"Metadata - Tooltip": "SAML metadata", "Metadata - Tooltip": "SAML metadata",
"Method - Tooltip": "Login method, QR code or silent login", "Method - Tooltip": "Login method, QR code or silent login",
@@ -754,6 +774,10 @@
"Sender Id - Tooltip": "Sender Id - Tooltip", "Sender Id - Tooltip": "Sender Id - Tooltip",
"Sender number": "Sender number", "Sender number": "Sender number",
"Sender number - Tooltip": "Sender number - Tooltip", "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": "Sign Name",
"Sign Name - Tooltip": "Name of the signature to be used", "Sign Name - Tooltip": "Name of the signature to be used",
"Sign request": "Sign request", "Sign request": "Sign request",
@@ -764,12 +788,15 @@
"Signup HTML": "Signup HTML", "Signup HTML": "Signup HTML",
"Signup HTML - Edit": "Signup HTML - Edit", "Signup HTML - Edit": "Signup HTML - Edit",
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style", "Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
"Signup group": "Signup group",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Site key", "Site key": "Site key",
"Site key - Tooltip": "Site key", "Site key - Tooltip": "Site key",
"Sliding Validation": "Sliding Validation", "Sliding Validation": "Sliding Validation",
"Sub type": "Sub type", "Sub type": "Sub type",
"Sub type - Tooltip": "Sub type", "Sub type - Tooltip": "Sub type",
"Team ID": "Team ID",
"Team ID - Tooltip": "Team ID - Tooltip",
"Template code": "Template code", "Template code": "Template code",
"Template code - Tooltip": "Template code", "Template code - Tooltip": "Template code",
"Test Email": "Test Email", "Test Email": "Test Email",
@@ -780,6 +807,8 @@
"Token URL - Tooltip": "Token URL", "Token URL - Tooltip": "Token URL",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Select a type", "Type - Tooltip": "Select a type",
"User flow": "User flow",
"User flow - Tooltip": "User flow - Tooltip",
"User mapping": "User mapping", "User mapping": "User mapping",
"User mapping - Tooltip": "User mapping - Tooltip", "User mapping - Tooltip": "User mapping - Tooltip",
"UserInfo URL": "UserInfo URL", "UserInfo URL": "UserInfo URL",
@@ -801,6 +830,8 @@
"New Role": "New Role", "New Role": "New Role",
"Sub domains": "Sub domains", "Sub domains": "Sub domains",
"Sub domains - Tooltip": "Domains included in the current role", "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": "Sub roles",
"Sub roles - Tooltip": "Roles included in the current role", "Sub roles - Tooltip": "Roles included in the current role",
"Sub users": "Sub users", "Sub users": "Sub users",
@@ -812,6 +843,9 @@
"Confirm": "Confirm", "Confirm": "Confirm",
"Decline": "Decline", "Decline": "Decline",
"Have account?": "Have account?", "Have account?": "Have account?",
"Label": "Label",
"Label HTML": "Label HTML",
"Placeholder": "Placeholder",
"Please accept the agreement!": "Please accept the agreement!", "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 click the below button to sign in": "Please click the below button to sign in",
"Please confirm your password!": "Please confirm your password!", "Please confirm your password!": "Please confirm your password!",
@@ -830,6 +864,11 @@
"Please select your country/region!": "Please select your country/region!", "Please select your country/region!": "Please select your country/region!",
"Terms of Use": "Terms of Use", "Terms of Use": "Terms of Use",
"Terms of Use - Tooltip": "Terms of use that users need to read and agree to during registration", "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 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 invoice title!": "The input is not invoice title!",
"The input is not valid Email!": "The input is not valid Email!", "The input is not valid Email!": "The input is not valid Email!",
@@ -841,14 +880,19 @@
"sign in now": "sign in now" "sign in now": "sign in now"
}, },
"subscription": { "subscription": {
"Duration": "Duration", "Active": "Active",
"Duration - Tooltip": "Subscription duration",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "End date", "End time": "End time",
"End date - Tooltip": "End date", "End time - Tooltip": "End time - Tooltip",
"Error": "Error",
"Expired": "Expired",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Start date": "Start date", "Pending": "Pending",
"Start date - Tooltip": "Start date" "Period": "Period",
"Start time": "Start time",
"Start time - Tooltip": "Start time - Tooltip",
"Suspended": "Suspended",
"Upcoming": "Upcoming"
}, },
"syncer": { "syncer": {
"Affiliation table": "Affiliation table", "Affiliation table": "Affiliation table",
@@ -872,6 +916,8 @@
"Is read-only": "Is read-only", "Is read-only": "Is read-only",
"Is read-only - Tooltip": "Is read-only - Tooltip", "Is read-only - Tooltip": "Is read-only - Tooltip",
"New Syncer": "New Syncer", "New Syncer": "New Syncer",
"SSL mode": "SSL mode",
"SSL mode - Tooltip": "SSL mode - Tooltip",
"Sync interval": "Sync interval", "Sync interval": "Sync interval",
"Sync interval - Tooltip": "Unit in seconds", "Sync interval - Tooltip": "Unit in seconds",
"Table": "Table", "Table": "Table",
@@ -913,11 +959,19 @@
}, },
"token": { "token": {
"Access token": "Access token", "Access token": "Access token",
"Access token - Tooltip": "Access token - Tooltip",
"Authorization code": "Authorization code", "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", "Edit Token": "Edit Token",
"Expires in": "Expires in", "Expires in": "Expires in",
"Expires in - Tooltip": "Expires in - Tooltip",
"New Token": "New Token", "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": { "user": {
"3rd-party logins": "3rd-party logins", "3rd-party logins": "3rd-party logins",
@@ -974,6 +1028,8 @@
"Managed accounts": "Managed accounts", "Managed accounts": "Managed accounts",
"Modify password...": "Modify password...", "Modify password...": "Modify password...",
"Multi-factor authentication": "Multi-factor authentication", "Multi-factor authentication": "Multi-factor authentication",
"Name": "Name",
"Name format": "Name format",
"New Email": "New Email", "New Email": "New Email",
"New Password": "New Password", "New Password": "New Password",
"New User": "New User", "New User": "New User",
@@ -1011,6 +1067,7 @@
"Upload ID card front picture": "Upload ID card front picture", "Upload ID card front picture": "Upload ID card front picture",
"Upload ID card with person picture": "Upload ID card with person picture", "Upload ID card with person picture": "Upload ID card with person picture",
"Upload a photo": "Upload a photo", "Upload a photo": "Upload a photo",
"Value": "Value",
"Values": "Values", "Values": "Values",
"Verification code sent": "Verification code sent", "Verification code sent": "Verification code sent",
"WebAuthn credentials": "WebAuthn credentials", "WebAuthn credentials": "WebAuthn credentials",

View File

@@ -12,7 +12,9 @@
"Policies": "Policies", "Policies": "Policies",
"Policies - Tooltip": "Casbin policy rules", "Policies - Tooltip": "Casbin policy rules",
"Rule type": "Rule type", "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": { "application": {
"Always": "Always", "Always": "Always",
@@ -30,6 +32,8 @@
"Edit Application": "Edit Application", "Edit Application": "Edit Application",
"Enable Email linking": "Enable Email linking", "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 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": "Enable SAML compression",
"Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp", "Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp",
"Enable WebAuthn signin": "Enable WebAuthn signin", "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 signin session - Tooltip": "Whether Casdoor maintains a session after logging into Casdoor from the application",
"Enable signup": "Enable signup", "Enable signup": "Enable signup",
"Enable signup - Tooltip": "Whether to allow users to register a new account", "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", "Failed to sign in": "Failed to sign in",
"File uploaded successfully": "File uploaded successfully", "File uploaded successfully": "File uploaded successfully",
"First, last": "First, last", "First, last": "First, last",
@@ -60,7 +68,6 @@
"Input": "Input", "Input": "Input",
"Invitation code": "Invitation code", "Invitation code": "Invitation code",
"Invitation code - Tooltip": "Invitation code - Tooltip", "Invitation code - Tooltip": "Invitation code - Tooltip",
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
"Left": "Left", "Left": "Left",
"Logged in successfully": "Logged in successfully", "Logged in successfully": "Logged in successfully",
"Logged out successfully": "Logged out successfully", "Logged out successfully": "Logged out successfully",
@@ -73,7 +80,6 @@
"Please input your application!": "Please input your application!", "Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!", "Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Please select a HTML file", "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", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Redirect URL", "Redirect URL": "Redirect URL",
@@ -86,7 +92,6 @@
"Rule": "Rule", "Rule": "Rule",
"SAML metadata": "SAML metadata", "SAML metadata": "SAML metadata",
"SAML metadata - Tooltip": "The metadata of SAML protocol", "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", "SAML reply URL": "SAML reply URL",
"Select": "Select", "Select": "Select",
"Side panel HTML": "Side panel HTML", "Side panel HTML": "Side panel HTML",
@@ -95,11 +100,9 @@
"Sign Up Error": "Sign Up Error", "Sign Up Error": "Sign Up Error",
"Signin": "Signin", "Signin": "Signin",
"Signin (Default True)": "Signin (Default True)", "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", "Signin session": "Signin session",
"Signup items": "Signup items", "Signup items": "Signup items",
"Signup items - Tooltip": "Items for users to fill in when registering new accounts", "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", "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", "The application does not allow to sign up new account": "The application does not allow to sign up new account",
"Token expire": "Token expire", "Token expire": "Token expire",
@@ -113,7 +116,6 @@
"Bit size - Tooltip": "Secret key length", "Bit size - Tooltip": "Secret key length",
"Certificate": "Certificate", "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 - 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 certificate": "Copy certificate",
"Copy private key": "Copy private key", "Copy private key": "Copy private key",
"Crypto algorithm": "Crypto algorithm", "Crypto algorithm": "Crypto algorithm",
@@ -126,7 +128,6 @@
"New Cert": "New Cert", "New Cert": "New Cert",
"Private key": "Private key", "Private key": "Private key",
"Private key - Tooltip": "Private key corresponding to the public key certificate", "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", "Scope - Tooltip": "Usage scenarios of the certificate",
"Type - Tooltip": "Type of certificate" "Type - Tooltip": "Type of certificate"
}, },
@@ -191,6 +192,7 @@
"Click to Upload": "Click to Upload", "Click to Upload": "Click to Upload",
"Close": "Close", "Close": "Close",
"Confirm": "Confirm", "Confirm": "Confirm",
"Copied to clipboard successfully": "Copied to clipboard successfully",
"Copy": "Copy", "Copy": "Copy",
"Created time": "Created time", "Created time": "Created time",
"Custom": "Custom", "Custom": "Custom",
@@ -200,6 +202,8 @@
"Default application - Tooltip": "Default application for users registered directly from the organization page", "Default application - Tooltip": "Default application for users registered directly from the organization page",
"Default avatar": "Default avatar", "Default avatar": "Default avatar",
"Default avatar - Tooltip": "Default avatar used when newly registered users do not set an avatar image", "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", "Delete": "Delete",
"Description": "Description", "Description": "Description",
"Description - Tooltip": "Detailed description information for reference, Casdoor itself will not use it", "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 connect to server": "Failed to connect to server",
"Failed to delete": "Failed to delete", "Failed to delete": "Failed to delete",
"Failed to enable": "Failed to enable", "Failed to enable": "Failed to enable",
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
"Failed to remove": "Failed to remove", "Failed to remove": "Failed to remove",
"Failed to save": "Failed to save", "Failed to save": "Failed to save",
"Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization", "Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
@@ -251,6 +257,8 @@
"MFA items - Tooltip": "MFA items - Tooltip", "MFA items - Tooltip": "MFA items - Tooltip",
"Master password": "Master password", "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 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", "Menu": "Menu",
"Method": "Method", "Method": "Method",
"Model": "Model", "Model": "Model",
@@ -272,6 +280,8 @@
"Password salt - Tooltip": "Random parameter used for password encryption", "Password salt - Tooltip": "Random parameter used for password encryption",
"Password type": "Password type", "Password type": "Password type",
"Password type - Tooltip": "Storage format of passwords in the database", "Password type - Tooltip": "Storage format of passwords in the database",
"Payment": "Payment",
"Payment - Tooltip": "Payment - Tooltip",
"Payments": "Payments", "Payments": "Payments",
"Permissions": "Permissions", "Permissions": "Permissions",
"Permissions - Tooltip": "Permissions owned by this user", "Permissions - Tooltip": "Permissions owned by this user",
@@ -283,6 +293,8 @@
"Plans - Tooltip": "Plans - Tooltip", "Plans - Tooltip": "Plans - Tooltip",
"Preview": "Preview", "Preview": "Preview",
"Preview - Tooltip": "Preview the configured effects", "Preview - Tooltip": "Preview the configured effects",
"Pricing": "Pricing",
"Pricing - Tooltip": "Pricing - Tooltip",
"Pricings": "Pricings", "Pricings": "Pricings",
"Products": "Products", "Products": "Products",
"Provider": "Provider", "Provider": "Provider",
@@ -296,6 +308,10 @@
"Role - Tooltip": "Role - Tooltip", "Role - Tooltip": "Role - Tooltip",
"Roles": "Roles", "Roles": "Roles",
"Roles - Tooltip": "Roles that the user belongs to", "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": "Save",
"Save & Exit": "Save & Exit", "Save & Exit": "Save & Exit",
"Session ID": "Session ID", "Session ID": "Session ID",
@@ -318,6 +334,7 @@
"Successfully removed": "Successfully removed", "Successfully removed": "Successfully removed",
"Successfully saved": "Successfully saved", "Successfully saved": "Successfully saved",
"Successfully sent": "Successfully sent", "Successfully sent": "Successfully sent",
"Successfully synced": "Successfully synced",
"Supported country codes": "Supported country codes", "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", "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", "Sure to delete": "Sure to delete",
@@ -440,7 +457,6 @@
"Multi-factor methods": "Multi-factor methods", "Multi-factor methods": "Multi-factor methods",
"Multi-factor recover": "Multi-factor recover", "Multi-factor recover": "Multi-factor recover",
"Multi-factor recover description": "Multi-factor recover description", "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", "Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
"Passcode": "Passcode", "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", "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": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"Price per month": "Price per month", "Period": "Period",
"Price per month - Tooltip": "Price per month - Tooltip", "Period - Tooltip": "Period - Tooltip",
"Price per year": "Price per year", "Price": "Price",
"Price per year - Tooltip": "Price per year - Tooltip", "Price - Tooltip": "Price - Tooltip",
"per month": "per month" "Related product": "Related product",
"per month": "per month",
"per year": "per year"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "Copy pricing page URL", "Copy pricing page URL": "Copy pricing page URL",
@@ -589,7 +607,7 @@
"Trial duration": "Trial duration", "Trial duration": "Trial duration",
"Trial duration - Tooltip": "Trial duration period", "Trial duration - Tooltip": "Trial duration period",
"days trial available!": "days trial available!", "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": { "product": {
"Alipay": "Alipay", "Alipay": "Alipay",
@@ -600,17 +618,16 @@
"Detail - Tooltip": "Detail of product", "Detail - Tooltip": "Detail of product",
"Dummy": "Dummy", "Dummy": "Dummy",
"Edit Product": "Edit Product", "Edit Product": "Edit Product",
"I have completed the payment": "I have completed the payment",
"Image": "Image", "Image": "Image",
"Image - Tooltip": "Image of product", "Image - Tooltip": "Image of product",
"New Product": "New Product", "New Product": "New Product",
"Pay": "Pay", "Pay": "Pay",
"PayPal": "PayPal", "PayPal": "PayPal",
"Payment cancelled": "Payment cancelled",
"Payment failed": "Payment failed",
"Payment providers": "Payment providers", "Payment providers": "Payment providers",
"Payment providers - Tooltip": "Providers of payment services", "Payment providers - Tooltip": "Providers of payment services",
"Placing order...": "Placing order...", "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": "Price",
"Price - Tooltip": "Price of product", "Price - Tooltip": "Price of product",
"Quantity": "Quantity", "Quantity": "Quantity",
@@ -672,8 +689,8 @@
"Content": "Content", "Content": "Content",
"Content - Tooltip": "Content - Tooltip", "Content - Tooltip": "Content - Tooltip",
"Copy": "Copy", "Copy": "Copy",
"DB Test": "DB Test", "DB test": "DB test",
"DB Test - Tooltip": "DB Test - Tooltip", "DB test - Tooltip": "DB test - Tooltip",
"Disable SSL": "Disable SSL", "Disable SSL": "Disable SSL",
"Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server", "Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server",
"Domain": "Domain", "Domain": "Domain",
@@ -700,7 +717,10 @@
"Internal": "Internal", "Internal": "Internal",
"Issuer URL": "Issuer URL", "Issuer URL": "Issuer URL",
"Issuer URL - Tooltip": "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": "Metadata",
"Metadata - Tooltip": "SAML metadata", "Metadata - Tooltip": "SAML metadata",
"Method - Tooltip": "Login method, QR code or silent login", "Method - Tooltip": "Login method, QR code or silent login",
@@ -754,6 +774,10 @@
"Sender Id - Tooltip": "Sender Id - Tooltip", "Sender Id - Tooltip": "Sender Id - Tooltip",
"Sender number": "Sender number", "Sender number": "Sender number",
"Sender number - Tooltip": "Sender number - Tooltip", "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": "Sign Name",
"Sign Name - Tooltip": "Name of the signature to be used", "Sign Name - Tooltip": "Name of the signature to be used",
"Sign request": "Sign request", "Sign request": "Sign request",
@@ -764,12 +788,15 @@
"Signup HTML": "Signup HTML", "Signup HTML": "Signup HTML",
"Signup HTML - Edit": "Signup HTML - Edit", "Signup HTML - Edit": "Signup HTML - Edit",
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style", "Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
"Signup group": "Signup group",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Site key", "Site key": "Site key",
"Site key - Tooltip": "Site key", "Site key - Tooltip": "Site key",
"Sliding Validation": "Sliding Validation", "Sliding Validation": "Sliding Validation",
"Sub type": "Sub type", "Sub type": "Sub type",
"Sub type - Tooltip": "Sub type", "Sub type - Tooltip": "Sub type",
"Team ID": "Team ID",
"Team ID - Tooltip": "Team ID - Tooltip",
"Template code": "Template code", "Template code": "Template code",
"Template code - Tooltip": "Template code", "Template code - Tooltip": "Template code",
"Test Email": "Test Email", "Test Email": "Test Email",
@@ -780,6 +807,8 @@
"Token URL - Tooltip": "Token URL", "Token URL - Tooltip": "Token URL",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Select a type", "Type - Tooltip": "Select a type",
"User flow": "User flow",
"User flow - Tooltip": "User flow - Tooltip",
"User mapping": "User mapping", "User mapping": "User mapping",
"User mapping - Tooltip": "User mapping - Tooltip", "User mapping - Tooltip": "User mapping - Tooltip",
"UserInfo URL": "UserInfo URL", "UserInfo URL": "UserInfo URL",
@@ -801,6 +830,8 @@
"New Role": "New Role", "New Role": "New Role",
"Sub domains": "Sub domains", "Sub domains": "Sub domains",
"Sub domains - Tooltip": "Domains included in the current role", "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": "Sub roles",
"Sub roles - Tooltip": "Roles included in the current role", "Sub roles - Tooltip": "Roles included in the current role",
"Sub users": "Sub users", "Sub users": "Sub users",
@@ -812,6 +843,9 @@
"Confirm": "Confirm", "Confirm": "Confirm",
"Decline": "Decline", "Decline": "Decline",
"Have account?": "Have account?", "Have account?": "Have account?",
"Label": "Label",
"Label HTML": "Label HTML",
"Placeholder": "Placeholder",
"Please accept the agreement!": "Please accept the agreement!", "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 click the below button to sign in": "Please click the below button to sign in",
"Please confirm your password!": "Please confirm your password!", "Please confirm your password!": "Please confirm your password!",
@@ -830,6 +864,11 @@
"Please select your country/region!": "Please select your country/region!", "Please select your country/region!": "Please select your country/region!",
"Terms of Use": "Terms of Use", "Terms of Use": "Terms of Use",
"Terms of Use - Tooltip": "Terms of use that users need to read and agree to during registration", "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 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 invoice title!": "The input is not invoice title!",
"The input is not valid Email!": "The input is not valid Email!", "The input is not valid Email!": "The input is not valid Email!",
@@ -841,14 +880,19 @@
"sign in now": "sign in now" "sign in now": "sign in now"
}, },
"subscription": { "subscription": {
"Duration": "Duration", "Active": "Active",
"Duration - Tooltip": "Subscription duration",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "End date", "End time": "End time",
"End date - Tooltip": "End date", "End time - Tooltip": "End time - Tooltip",
"Error": "Error",
"Expired": "Expired",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Start date": "Start date", "Pending": "Pending",
"Start date - Tooltip": "Start date" "Period": "Period",
"Start time": "Start time",
"Start time - Tooltip": "Start time - Tooltip",
"Suspended": "Suspended",
"Upcoming": "Upcoming"
}, },
"syncer": { "syncer": {
"Affiliation table": "Affiliation table", "Affiliation table": "Affiliation table",
@@ -872,6 +916,8 @@
"Is read-only": "Is read-only", "Is read-only": "Is read-only",
"Is read-only - Tooltip": "Is read-only - Tooltip", "Is read-only - Tooltip": "Is read-only - Tooltip",
"New Syncer": "New Syncer", "New Syncer": "New Syncer",
"SSL mode": "SSL mode",
"SSL mode - Tooltip": "SSL mode - Tooltip",
"Sync interval": "Sync interval", "Sync interval": "Sync interval",
"Sync interval - Tooltip": "Unit in seconds", "Sync interval - Tooltip": "Unit in seconds",
"Table": "Table", "Table": "Table",
@@ -913,11 +959,19 @@
}, },
"token": { "token": {
"Access token": "Access token", "Access token": "Access token",
"Access token - Tooltip": "Access token - Tooltip",
"Authorization code": "Authorization code", "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", "Edit Token": "Edit Token",
"Expires in": "Expires in", "Expires in": "Expires in",
"Expires in - Tooltip": "Expires in - Tooltip",
"New Token": "New Token", "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": { "user": {
"3rd-party logins": "3rd-party logins", "3rd-party logins": "3rd-party logins",
@@ -974,6 +1028,8 @@
"Managed accounts": "Managed accounts", "Managed accounts": "Managed accounts",
"Modify password...": "Modify password...", "Modify password...": "Modify password...",
"Multi-factor authentication": "Multi-factor authentication", "Multi-factor authentication": "Multi-factor authentication",
"Name": "Name",
"Name format": "Name format",
"New Email": "New Email", "New Email": "New Email",
"New Password": "New Password", "New Password": "New Password",
"New User": "New User", "New User": "New User",
@@ -1011,6 +1067,7 @@
"Upload ID card front picture": "Upload ID card front picture", "Upload ID card front picture": "Upload ID card front picture",
"Upload ID card with person picture": "Upload ID card with person picture", "Upload ID card with person picture": "Upload ID card with person picture",
"Upload a photo": "Upload a photo", "Upload a photo": "Upload a photo",
"Value": "Value",
"Values": "Values", "Values": "Values",
"Verification code sent": "Verification code sent", "Verification code sent": "Verification code sent",
"WebAuthn credentials": "WebAuthn credentials", "WebAuthn credentials": "WebAuthn credentials",

View File

@@ -12,7 +12,9 @@
"Policies": "Policies", "Policies": "Policies",
"Policies - Tooltip": "Casbin policy rules", "Policies - Tooltip": "Casbin policy rules",
"Rule type": "Rule type", "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": { "application": {
"Always": "Always", "Always": "Always",
@@ -30,6 +32,8 @@
"Edit Application": "Edit Application", "Edit Application": "Edit Application",
"Enable Email linking": "Enable Email linking", "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 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": "Enable SAML compression",
"Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp", "Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp",
"Enable WebAuthn signin": "Enable WebAuthn signin", "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 signin session - Tooltip": "Whether Casdoor maintains a session after logging into Casdoor from the application",
"Enable signup": "Enable signup", "Enable signup": "Enable signup",
"Enable signup - Tooltip": "Whether to allow users to register a new account", "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", "Failed to sign in": "Failed to sign in",
"File uploaded successfully": "File uploaded successfully", "File uploaded successfully": "File uploaded successfully",
"First, last": "First, last", "First, last": "First, last",
@@ -60,7 +68,6 @@
"Input": "Input", "Input": "Input",
"Invitation code": "Invitation code", "Invitation code": "Invitation code",
"Invitation code - Tooltip": "Invitation code - Tooltip", "Invitation code - Tooltip": "Invitation code - Tooltip",
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
"Left": "Left", "Left": "Left",
"Logged in successfully": "Logged in successfully", "Logged in successfully": "Logged in successfully",
"Logged out successfully": "Logged out successfully", "Logged out successfully": "Logged out successfully",
@@ -73,7 +80,6 @@
"Please input your application!": "Please input your application!", "Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!", "Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Please select a HTML file", "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", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Redirect URL", "Redirect URL": "Redirect URL",
@@ -86,7 +92,6 @@
"Rule": "Rule", "Rule": "Rule",
"SAML metadata": "SAML metadata", "SAML metadata": "SAML metadata",
"SAML metadata - Tooltip": "The metadata of SAML protocol", "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", "SAML reply URL": "SAML reply URL",
"Select": "Select", "Select": "Select",
"Side panel HTML": "Side panel HTML", "Side panel HTML": "Side panel HTML",
@@ -95,11 +100,9 @@
"Sign Up Error": "Sign Up Error", "Sign Up Error": "Sign Up Error",
"Signin": "Signin", "Signin": "Signin",
"Signin (Default True)": "Signin (Default True)", "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", "Signin session": "Signin session",
"Signup items": "Signup items", "Signup items": "Signup items",
"Signup items - Tooltip": "Items for users to fill in when registering new accounts", "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", "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", "The application does not allow to sign up new account": "The application does not allow to sign up new account",
"Token expire": "Token expire", "Token expire": "Token expire",
@@ -113,7 +116,6 @@
"Bit size - Tooltip": "Secret key length", "Bit size - Tooltip": "Secret key length",
"Certificate": "Certificate", "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 - 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 certificate": "Copy certificate",
"Copy private key": "Copy private key", "Copy private key": "Copy private key",
"Crypto algorithm": "Crypto algorithm", "Crypto algorithm": "Crypto algorithm",
@@ -126,7 +128,6 @@
"New Cert": "New Cert", "New Cert": "New Cert",
"Private key": "Private key", "Private key": "Private key",
"Private key - Tooltip": "Private key corresponding to the public key certificate", "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", "Scope - Tooltip": "Usage scenarios of the certificate",
"Type - Tooltip": "Type of certificate" "Type - Tooltip": "Type of certificate"
}, },
@@ -191,6 +192,7 @@
"Click to Upload": "Click to Upload", "Click to Upload": "Click to Upload",
"Close": "Close", "Close": "Close",
"Confirm": "Confirm", "Confirm": "Confirm",
"Copied to clipboard successfully": "Copied to clipboard successfully",
"Copy": "Copy", "Copy": "Copy",
"Created time": "Created time", "Created time": "Created time",
"Custom": "Custom", "Custom": "Custom",
@@ -200,6 +202,8 @@
"Default application - Tooltip": "Default application for users registered directly from the organization page", "Default application - Tooltip": "Default application for users registered directly from the organization page",
"Default avatar": "Default avatar", "Default avatar": "Default avatar",
"Default avatar - Tooltip": "Default avatar used when newly registered users do not set an avatar image", "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", "Delete": "Delete",
"Description": "Description", "Description": "Description",
"Description - Tooltip": "Detailed description information for reference, Casdoor itself will not use it", "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 connect to server": "Failed to connect to server",
"Failed to delete": "Failed to delete", "Failed to delete": "Failed to delete",
"Failed to enable": "Failed to enable", "Failed to enable": "Failed to enable",
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
"Failed to remove": "Failed to remove", "Failed to remove": "Failed to remove",
"Failed to save": "Failed to save", "Failed to save": "Failed to save",
"Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization", "Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
@@ -251,6 +257,8 @@
"MFA items - Tooltip": "MFA items - Tooltip", "MFA items - Tooltip": "MFA items - Tooltip",
"Master password": "Master password", "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 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", "Menu": "Menu",
"Method": "Method", "Method": "Method",
"Model": "Model", "Model": "Model",
@@ -272,6 +280,8 @@
"Password salt - Tooltip": "Random parameter used for password encryption", "Password salt - Tooltip": "Random parameter used for password encryption",
"Password type": "Password type", "Password type": "Password type",
"Password type - Tooltip": "Storage format of passwords in the database", "Password type - Tooltip": "Storage format of passwords in the database",
"Payment": "Payment",
"Payment - Tooltip": "Payment - Tooltip",
"Payments": "Payments", "Payments": "Payments",
"Permissions": "Permissions", "Permissions": "Permissions",
"Permissions - Tooltip": "Permissions owned by this user", "Permissions - Tooltip": "Permissions owned by this user",
@@ -283,6 +293,8 @@
"Plans - Tooltip": "Plans - Tooltip", "Plans - Tooltip": "Plans - Tooltip",
"Preview": "Preview", "Preview": "Preview",
"Preview - Tooltip": "Preview the configured effects", "Preview - Tooltip": "Preview the configured effects",
"Pricing": "Pricing",
"Pricing - Tooltip": "Pricing - Tooltip",
"Pricings": "Pricings", "Pricings": "Pricings",
"Products": "Products", "Products": "Products",
"Provider": "Provider", "Provider": "Provider",
@@ -296,6 +308,10 @@
"Role - Tooltip": "Role - Tooltip", "Role - Tooltip": "Role - Tooltip",
"Roles": "Roles", "Roles": "Roles",
"Roles - Tooltip": "Roles that the user belongs to", "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": "Save",
"Save & Exit": "Save & Exit", "Save & Exit": "Save & Exit",
"Session ID": "Session ID", "Session ID": "Session ID",
@@ -318,6 +334,7 @@
"Successfully removed": "Successfully removed", "Successfully removed": "Successfully removed",
"Successfully saved": "Successfully saved", "Successfully saved": "Successfully saved",
"Successfully sent": "Successfully sent", "Successfully sent": "Successfully sent",
"Successfully synced": "Successfully synced",
"Supported country codes": "Supported country codes", "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", "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", "Sure to delete": "Sure to delete",
@@ -440,7 +457,6 @@
"Multi-factor methods": "Multi-factor methods", "Multi-factor methods": "Multi-factor methods",
"Multi-factor recover": "Multi-factor recover", "Multi-factor recover": "Multi-factor recover",
"Multi-factor recover description": "Multi-factor recover description", "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", "Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
"Passcode": "Passcode", "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", "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": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"Price per month": "Price per month", "Period": "Period",
"Price per month - Tooltip": "Price per month - Tooltip", "Period - Tooltip": "Period - Tooltip",
"Price per year": "Price per year", "Price": "Price",
"Price per year - Tooltip": "Price per year - Tooltip", "Price - Tooltip": "Price - Tooltip",
"per month": "per month" "Related product": "Related product",
"per month": "per month",
"per year": "per year"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "Copy pricing page URL", "Copy pricing page URL": "Copy pricing page URL",
@@ -589,7 +607,7 @@
"Trial duration": "Trial duration", "Trial duration": "Trial duration",
"Trial duration - Tooltip": "Trial duration period", "Trial duration - Tooltip": "Trial duration period",
"days trial available!": "days trial available!", "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": { "product": {
"Alipay": "Alipay", "Alipay": "Alipay",
@@ -600,17 +618,16 @@
"Detail - Tooltip": "Detail of product", "Detail - Tooltip": "Detail of product",
"Dummy": "Dummy", "Dummy": "Dummy",
"Edit Product": "Edit Product", "Edit Product": "Edit Product",
"I have completed the payment": "I have completed the payment",
"Image": "Image", "Image": "Image",
"Image - Tooltip": "Image of product", "Image - Tooltip": "Image of product",
"New Product": "New Product", "New Product": "New Product",
"Pay": "Pay", "Pay": "Pay",
"PayPal": "PayPal", "PayPal": "PayPal",
"Payment cancelled": "Payment cancelled",
"Payment failed": "Payment failed",
"Payment providers": "Payment providers", "Payment providers": "Payment providers",
"Payment providers - Tooltip": "Providers of payment services", "Payment providers - Tooltip": "Providers of payment services",
"Placing order...": "Placing order...", "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": "Price",
"Price - Tooltip": "Price of product", "Price - Tooltip": "Price of product",
"Quantity": "Quantity", "Quantity": "Quantity",
@@ -672,8 +689,8 @@
"Content": "Content", "Content": "Content",
"Content - Tooltip": "Content - Tooltip", "Content - Tooltip": "Content - Tooltip",
"Copy": "Copy", "Copy": "Copy",
"DB Test": "DB Test", "DB test": "DB test",
"DB Test - Tooltip": "DB Test - Tooltip", "DB test - Tooltip": "DB test - Tooltip",
"Disable SSL": "Disable SSL", "Disable SSL": "Disable SSL",
"Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server", "Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server",
"Domain": "Domain", "Domain": "Domain",
@@ -700,7 +717,10 @@
"Internal": "Internal", "Internal": "Internal",
"Issuer URL": "Issuer URL", "Issuer URL": "Issuer URL",
"Issuer URL - Tooltip": "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": "Metadata",
"Metadata - Tooltip": "SAML metadata", "Metadata - Tooltip": "SAML metadata",
"Method - Tooltip": "Login method, QR code or silent login", "Method - Tooltip": "Login method, QR code or silent login",
@@ -754,6 +774,10 @@
"Sender Id - Tooltip": "Sender Id - Tooltip", "Sender Id - Tooltip": "Sender Id - Tooltip",
"Sender number": "Sender number", "Sender number": "Sender number",
"Sender number - Tooltip": "Sender number - Tooltip", "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": "Sign Name",
"Sign Name - Tooltip": "Name of the signature to be used", "Sign Name - Tooltip": "Name of the signature to be used",
"Sign request": "Sign request", "Sign request": "Sign request",
@@ -764,12 +788,15 @@
"Signup HTML": "Signup HTML", "Signup HTML": "Signup HTML",
"Signup HTML - Edit": "Signup HTML - Edit", "Signup HTML - Edit": "Signup HTML - Edit",
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style", "Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
"Signup group": "Signup group",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Site key", "Site key": "Site key",
"Site key - Tooltip": "Site key", "Site key - Tooltip": "Site key",
"Sliding Validation": "Sliding Validation", "Sliding Validation": "Sliding Validation",
"Sub type": "Sub type", "Sub type": "Sub type",
"Sub type - Tooltip": "Sub type", "Sub type - Tooltip": "Sub type",
"Team ID": "Team ID",
"Team ID - Tooltip": "Team ID - Tooltip",
"Template code": "Template code", "Template code": "Template code",
"Template code - Tooltip": "Template code", "Template code - Tooltip": "Template code",
"Test Email": "Test Email", "Test Email": "Test Email",
@@ -780,6 +807,8 @@
"Token URL - Tooltip": "Token URL", "Token URL - Tooltip": "Token URL",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Select a type", "Type - Tooltip": "Select a type",
"User flow": "User flow",
"User flow - Tooltip": "User flow - Tooltip",
"User mapping": "User mapping", "User mapping": "User mapping",
"User mapping - Tooltip": "User mapping - Tooltip", "User mapping - Tooltip": "User mapping - Tooltip",
"UserInfo URL": "UserInfo URL", "UserInfo URL": "UserInfo URL",
@@ -801,6 +830,8 @@
"New Role": "New Role", "New Role": "New Role",
"Sub domains": "Sub domains", "Sub domains": "Sub domains",
"Sub domains - Tooltip": "Domains included in the current role", "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": "Sub roles",
"Sub roles - Tooltip": "Roles included in the current role", "Sub roles - Tooltip": "Roles included in the current role",
"Sub users": "Sub users", "Sub users": "Sub users",
@@ -812,6 +843,9 @@
"Confirm": "Confirm", "Confirm": "Confirm",
"Decline": "Decline", "Decline": "Decline",
"Have account?": "Have account?", "Have account?": "Have account?",
"Label": "Label",
"Label HTML": "Label HTML",
"Placeholder": "Placeholder",
"Please accept the agreement!": "Please accept the agreement!", "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 click the below button to sign in": "Please click the below button to sign in",
"Please confirm your password!": "Please confirm your password!", "Please confirm your password!": "Please confirm your password!",
@@ -830,6 +864,11 @@
"Please select your country/region!": "Please select your country/region!", "Please select your country/region!": "Please select your country/region!",
"Terms of Use": "Terms of Use", "Terms of Use": "Terms of Use",
"Terms of Use - Tooltip": "Terms of use that users need to read and agree to during registration", "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 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 invoice title!": "The input is not invoice title!",
"The input is not valid Email!": "The input is not valid Email!", "The input is not valid Email!": "The input is not valid Email!",
@@ -841,14 +880,19 @@
"sign in now": "sign in now" "sign in now": "sign in now"
}, },
"subscription": { "subscription": {
"Duration": "Duration", "Active": "Active",
"Duration - Tooltip": "Subscription duration",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "End date", "End time": "End time",
"End date - Tooltip": "End date", "End time - Tooltip": "End time - Tooltip",
"Error": "Error",
"Expired": "Expired",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Start date": "Start date", "Pending": "Pending",
"Start date - Tooltip": "Start date" "Period": "Period",
"Start time": "Start time",
"Start time - Tooltip": "Start time - Tooltip",
"Suspended": "Suspended",
"Upcoming": "Upcoming"
}, },
"syncer": { "syncer": {
"Affiliation table": "Affiliation table", "Affiliation table": "Affiliation table",
@@ -872,6 +916,8 @@
"Is read-only": "Is read-only", "Is read-only": "Is read-only",
"Is read-only - Tooltip": "Is read-only - Tooltip", "Is read-only - Tooltip": "Is read-only - Tooltip",
"New Syncer": "New Syncer", "New Syncer": "New Syncer",
"SSL mode": "SSL mode",
"SSL mode - Tooltip": "SSL mode - Tooltip",
"Sync interval": "Sync interval", "Sync interval": "Sync interval",
"Sync interval - Tooltip": "Unit in seconds", "Sync interval - Tooltip": "Unit in seconds",
"Table": "Table", "Table": "Table",
@@ -913,11 +959,19 @@
}, },
"token": { "token": {
"Access token": "Access token", "Access token": "Access token",
"Access token - Tooltip": "Access token - Tooltip",
"Authorization code": "Authorization code", "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", "Edit Token": "Edit Token",
"Expires in": "Expires in", "Expires in": "Expires in",
"Expires in - Tooltip": "Expires in - Tooltip",
"New Token": "New Token", "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": { "user": {
"3rd-party logins": "3rd-party logins", "3rd-party logins": "3rd-party logins",
@@ -974,6 +1028,8 @@
"Managed accounts": "Managed accounts", "Managed accounts": "Managed accounts",
"Modify password...": "Modify password...", "Modify password...": "Modify password...",
"Multi-factor authentication": "Multi-factor authentication", "Multi-factor authentication": "Multi-factor authentication",
"Name": "Name",
"Name format": "Name format",
"New Email": "New Email", "New Email": "New Email",
"New Password": "New Password", "New Password": "New Password",
"New User": "New User", "New User": "New User",
@@ -1011,6 +1067,7 @@
"Upload ID card front picture": "Upload ID card front picture", "Upload ID card front picture": "Upload ID card front picture",
"Upload ID card with person picture": "Upload ID card with person picture", "Upload ID card with person picture": "Upload ID card with person picture",
"Upload a photo": "Upload a photo", "Upload a photo": "Upload a photo",
"Value": "Value",
"Values": "Values", "Values": "Values",
"Verification code sent": "Verification code sent", "Verification code sent": "Verification code sent",
"WebAuthn credentials": "WebAuthn credentials", "WebAuthn credentials": "WebAuthn credentials",

View File

@@ -12,7 +12,9 @@
"Policies": "Políticas", "Policies": "Políticas",
"Policies - Tooltip": "Regras de política do Casbin", "Policies - Tooltip": "Regras de política do Casbin",
"Rule type": "Rule type", "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": { "application": {
"Always": "Sempre", "Always": "Sempre",
@@ -30,6 +32,8 @@
"Edit Application": "Editar Aplicação", "Edit Application": "Editar Aplicação",
"Enable Email linking": "Ativar vinculação de e-mail", "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 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": "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 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", "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 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": "Ativar registro",
"Enable signup - Tooltip": "Se permite que os usuários registrem uma nova conta", "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", "Failed to sign in": "Falha ao fazer login",
"File uploaded successfully": "Arquivo enviado com sucesso", "File uploaded successfully": "Arquivo enviado com sucesso",
"First, last": "Primeiro, último", "First, last": "Primeiro, último",
@@ -60,7 +68,6 @@
"Input": "Input", "Input": "Input",
"Invitation code": "Invitation code", "Invitation code": "Invitation code",
"Invitation code - Tooltip": "Invitation code - Tooltip", "Invitation code - Tooltip": "Invitation code - Tooltip",
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
"Left": "Esquerda", "Left": "Esquerda",
"Logged in successfully": "Login realizado com sucesso", "Logged in successfully": "Login realizado com sucesso",
"Logged out successfully": "Logout 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 application!": "Por favor, insira o nome da sua aplicação!",
"Please input your organization!": "Por favor, insira o nome da sua organizaçã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", "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", "Random": "Aleatório",
"Real name": "Nome real", "Real name": "Nome real",
"Redirect URL": "URL de redirecionamento", "Redirect URL": "URL de redirecionamento",
@@ -86,7 +92,6 @@
"Rule": "Regra", "Rule": "Regra",
"SAML metadata": "Metadados do SAML", "SAML metadata": "Metadados do SAML",
"SAML metadata - Tooltip": "Os metadados do protocolo 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", "SAML reply URL": "URL de resposta do SAML",
"Select": "Select", "Select": "Select",
"Side panel HTML": "HTML do painel lateral", "Side panel HTML": "HTML do painel lateral",
@@ -95,11 +100,9 @@
"Sign Up Error": "Erro ao Registrar", "Sign Up Error": "Erro ao Registrar",
"Signin": "Login", "Signin": "Login",
"Signin (Default True)": "Login (Padrão Verdadeiro)", "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", "Signin session": "Sessão de login",
"Signup items": "Itens de registro", "Signup items": "Itens de registro",
"Signup items - Tooltip": "Itens para os usuários preencherem ao registrar novas contas", "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", "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", "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", "Token expire": "Expiração do Token",
@@ -113,7 +116,6 @@
"Bit size - Tooltip": "Comprimento da chave secreta", "Bit size - Tooltip": "Comprimento da chave secreta",
"Certificate": "Certificado", "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 - 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 certificate": "Copiar certificado",
"Copy private key": "Copiar chave privada", "Copy private key": "Copiar chave privada",
"Crypto algorithm": "Algoritmo criptográfico", "Crypto algorithm": "Algoritmo criptográfico",
@@ -126,7 +128,6 @@
"New Cert": "Novo Certificado", "New Cert": "Novo Certificado",
"Private key": "Chave privada", "Private key": "Chave privada",
"Private key - Tooltip": "Chave privada correspondente ao certificado de chave pública", "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", "Scope - Tooltip": "Cenários de uso do certificado",
"Type - Tooltip": "Tipo de certificado" "Type - Tooltip": "Tipo de certificado"
}, },
@@ -191,6 +192,7 @@
"Click to Upload": "Clique para Enviar", "Click to Upload": "Clique para Enviar",
"Close": "Fechar", "Close": "Fechar",
"Confirm": "Confirm", "Confirm": "Confirm",
"Copied to clipboard successfully": "Copied to clipboard successfully",
"Copy": "Copy", "Copy": "Copy",
"Created time": "Hora de Criação", "Created time": "Hora de Criação",
"Custom": "Custom", "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 application - Tooltip": "Aplicação padrão para usuários registrados diretamente na página da organização",
"Default avatar": "Avatar padrã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 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", "Delete": "Excluir",
"Description": "Descrição", "Description": "Descrição",
"Description - Tooltip": "Informações de descrição detalhadas para referência, o Casdoor em si não irá utilizá-las", "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 connect to server": "Falha ao conectar ao servidor",
"Failed to delete": "Falha ao excluir", "Failed to delete": "Falha ao excluir",
"Failed to enable": "Falha ao habilitar", "Failed to enable": "Falha ao habilitar",
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
"Failed to remove": "Failed to remove", "Failed to remove": "Failed to remove",
"Failed to save": "Falha ao salvar", "Failed to save": "Falha ao salvar",
"Failed to sync": "Failed to sync",
"Failed to verify": "Falha ao verificar", "Failed to verify": "Falha ao verificar",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "URL do ícone de favicon usado em todas as páginas do Casdoor da organização", "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", "MFA items - Tooltip": "MFA items - Tooltip",
"Master password": "Senha mestra", "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 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", "Menu": "Menu",
"Method": "Método", "Method": "Método",
"Model": "Modelo", "Model": "Modelo",
@@ -272,6 +280,8 @@
"Password salt - Tooltip": "Parâmetro aleatório usado para criptografia de senha", "Password salt - Tooltip": "Parâmetro aleatório usado para criptografia de senha",
"Password type": "Tipo de senha", "Password type": "Tipo de senha",
"Password type - Tooltip": "Formato de armazenamento de senhas no banco de dados", "Password type - Tooltip": "Formato de armazenamento de senhas no banco de dados",
"Payment": "Payment",
"Payment - Tooltip": "Payment - Tooltip",
"Payments": "Pagamentos", "Payments": "Pagamentos",
"Permissions": "Permissões", "Permissions": "Permissões",
"Permissions - Tooltip": "Permissões pertencentes a este usuário", "Permissions - Tooltip": "Permissões pertencentes a este usuário",
@@ -283,6 +293,8 @@
"Plans - Tooltip": "Plans - Tooltip", "Plans - Tooltip": "Plans - Tooltip",
"Preview": "Visualizar", "Preview": "Visualizar",
"Preview - Tooltip": "Visualizar os efeitos configurados", "Preview - Tooltip": "Visualizar os efeitos configurados",
"Pricing": "Pricing",
"Pricing - Tooltip": "Pricing - Tooltip",
"Pricings": "Bảng giá", "Pricings": "Bảng giá",
"Products": "Produtos", "Products": "Produtos",
"Provider": "Provedor", "Provider": "Provedor",
@@ -296,6 +308,10 @@
"Role - Tooltip": "Role - Tooltip", "Role - Tooltip": "Role - Tooltip",
"Roles": "Funções", "Roles": "Funções",
"Roles - Tooltip": "Funções às quais o usuário pertence", "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": "Salvar",
"Save & Exit": "Salvar e Sair", "Save & Exit": "Salvar e Sair",
"Session ID": "ID da sessão", "Session ID": "ID da sessão",
@@ -318,6 +334,7 @@
"Successfully removed": "Successfully removed", "Successfully removed": "Successfully removed",
"Successfully saved": "Salvo com sucesso", "Successfully saved": "Salvo com sucesso",
"Successfully sent": "Successfully sent", "Successfully sent": "Successfully sent",
"Successfully synced": "Successfully synced",
"Supported country codes": "Códigos de país suportados", "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", "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", "Sure to delete": "Tem certeza que deseja excluir",
@@ -440,7 +457,6 @@
"Multi-factor methods": "Multi-factor methods", "Multi-factor methods": "Multi-factor methods",
"Multi-factor recover": "Multi-factor recover", "Multi-factor recover": "Multi-factor recover",
"Multi-factor recover description": "Multi-factor recover description", "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", "Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
"Passcode": "Passcode", "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", "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": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"Price per month": "Price per month", "Period": "Period",
"Price per month - Tooltip": "Price per month - Tooltip", "Period - Tooltip": "Period - Tooltip",
"Price per year": "Price per year", "Price": "Price",
"Price per year - Tooltip": "Price per year - Tooltip", "Price - Tooltip": "Price - Tooltip",
"per month": "mỗi tháng" "Related product": "Related product",
"per month": "mỗi tháng",
"per year": "per year"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "Sao chép URL trang bảng giá", "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": "Thời gian thử nghiệm",
"Trial duration - Tooltip": "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!", "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": { "product": {
"Alipay": "Alipay", "Alipay": "Alipay",
@@ -600,17 +618,16 @@
"Detail - Tooltip": "Detalhes do produto", "Detail - Tooltip": "Detalhes do produto",
"Dummy": "Dummy", "Dummy": "Dummy",
"Edit Product": "Editar Produto", "Edit Product": "Editar Produto",
"I have completed the payment": "Eu concluí o pagamento",
"Image": "Imagem", "Image": "Imagem",
"Image - Tooltip": "Imagem do produto", "Image - Tooltip": "Imagem do produto",
"New Product": "Novo Produto", "New Product": "Novo Produto",
"Pay": "Pagar", "Pay": "Pagar",
"PayPal": "PayPal", "PayPal": "PayPal",
"Payment cancelled": "Payment cancelled",
"Payment failed": "Payment failed",
"Payment providers": "Provedores de Pagamento", "Payment providers": "Provedores de Pagamento",
"Payment providers - Tooltip": "Fornecedores de serviços de pagamento", "Payment providers - Tooltip": "Fornecedores de serviços de pagamento",
"Placing order...": "Processando pedido...", "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": "Preço",
"Price - Tooltip": "Preço do produto", "Price - Tooltip": "Preço do produto",
"Quantity": "Quantidade", "Quantity": "Quantidade",
@@ -672,8 +689,8 @@
"Content": "Content", "Content": "Content",
"Content - Tooltip": "Content - Tooltip", "Content - Tooltip": "Content - Tooltip",
"Copy": "Copiar", "Copy": "Copiar",
"DB Test": "DB Test", "DB test": "DB test",
"DB Test - Tooltip": "DB Test - Tooltip", "DB test - Tooltip": "DB test - Tooltip",
"Disable SSL": "Desabilitar SSL", "Disable SSL": "Desabilitar SSL",
"Disable SSL - Tooltip": "Se deve desabilitar o protocolo SSL ao comunicar com o servidor SMTP", "Disable SSL - Tooltip": "Se deve desabilitar o protocolo SSL ao comunicar com o servidor SMTP",
"Domain": "Domínio", "Domain": "Domínio",
@@ -700,7 +717,10 @@
"Internal": "Interno", "Internal": "Interno",
"Issuer URL": "URL do Emissor", "Issuer URL": "URL do Emissor",
"Issuer URL - Tooltip": "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": "Metadados",
"Metadata - Tooltip": "Metadados SAML", "Metadata - Tooltip": "Metadados SAML",
"Method - Tooltip": "Método de login, código QR ou login silencioso", "Method - Tooltip": "Método de login, código QR ou login silencioso",
@@ -754,6 +774,10 @@
"Sender Id - Tooltip": "Sender Id - Tooltip", "Sender Id - Tooltip": "Sender Id - Tooltip",
"Sender number": "Sender number", "Sender number": "Sender number",
"Sender number - Tooltip": "Sender number - Tooltip", "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": "Nome do Sinal",
"Sign Name - Tooltip": "Nome da assinatura a ser usada", "Sign Name - Tooltip": "Nome da assinatura a ser usada",
"Sign request": "Solicitação de assinatura", "Sign request": "Solicitação de assinatura",
@@ -764,12 +788,15 @@
"Signup HTML": "HTML de inscrição", "Signup HTML": "HTML de inscrição",
"Signup HTML - Edit": "Editar 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 HTML - Tooltip": "HTML personalizado para substituir o estilo padrão da página de inscrição",
"Signup group": "Signup group",
"Silent": "Silencioso", "Silent": "Silencioso",
"Site key": "Chave do site", "Site key": "Chave do site",
"Site key - Tooltip": "Chave do site", "Site key - Tooltip": "Chave do site",
"Sliding Validation": "Validação deslizante", "Sliding Validation": "Validação deslizante",
"Sub type": "Subtipo", "Sub type": "Subtipo",
"Sub type - Tooltip": "Subtipo", "Sub type - Tooltip": "Subtipo",
"Team ID": "Team ID",
"Team ID - Tooltip": "Team ID - Tooltip",
"Template code": "Código do modelo", "Template code": "Código do modelo",
"Template code - Tooltip": "Código do modelo", "Template code - Tooltip": "Código do modelo",
"Test Email": "Testar E-mail", "Test Email": "Testar E-mail",
@@ -780,6 +807,8 @@
"Token URL - Tooltip": "URL do Token", "Token URL - Tooltip": "URL do Token",
"Type": "Tipo", "Type": "Tipo",
"Type - Tooltip": "Selecione um tipo", "Type - Tooltip": "Selecione um tipo",
"User flow": "User flow",
"User flow - Tooltip": "User flow - Tooltip",
"User mapping": "User mapping", "User mapping": "User mapping",
"User mapping - Tooltip": "User mapping - Tooltip", "User mapping - Tooltip": "User mapping - Tooltip",
"UserInfo URL": "URL do UserInfo", "UserInfo URL": "URL do UserInfo",
@@ -801,6 +830,8 @@
"New Role": "Nova Função", "New Role": "Nova Função",
"Sub domains": "Subdomínios", "Sub domains": "Subdomínios",
"Sub domains - Tooltip": "Domínios incluídos na função atual", "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": "Subfunções",
"Sub roles - Tooltip": "Funções incluídas na função atual", "Sub roles - Tooltip": "Funções incluídas na função atual",
"Sub users": "Subusuários", "Sub users": "Subusuários",
@@ -812,6 +843,9 @@
"Confirm": "Confirmar", "Confirm": "Confirmar",
"Decline": "Recusar", "Decline": "Recusar",
"Have account?": "Já possui uma conta?", "Have account?": "Já possui uma conta?",
"Label": "Label",
"Label HTML": "Label HTML",
"Placeholder": "Placeholder",
"Please accept the agreement!": "Por favor, aceite o acordo!", "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 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!", "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!", "Please select your country/region!": "Por favor, selecione seu país/região!",
"Terms of Use": "Termos de Uso", "Terms of Use": "Termos de Uso",
"Terms of Use - Tooltip": "Termos de uso que os usuários precisam ler e concordar durante o registro", "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 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 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!", "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" "sign in now": "Faça login agora"
}, },
"subscription": { "subscription": {
"Duration": "Thời lượng", "Active": "Active",
"Duration - Tooltip": "Thời lượng đăng ký",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "Ngày kết thúc", "End time": "End time",
"End date - Tooltip": "Ngày kết thúc", "End time - Tooltip": "End time - Tooltip",
"Error": "Error",
"Expired": "Expired",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Start date": "Ngày bắt đầu", "Pending": "Pending",
"Start date - Tooltip": "Ngày bắt đầu" "Period": "Period",
"Start time": "Start time",
"Start time - Tooltip": "Start time - Tooltip",
"Suspended": "Suspended",
"Upcoming": "Upcoming"
}, },
"syncer": { "syncer": {
"Affiliation table": "Tabela de Afiliação", "Affiliation table": "Tabela de Afiliação",
@@ -872,6 +916,8 @@
"Is read-only": "Is read-only", "Is read-only": "Is read-only",
"Is read-only - Tooltip": "Is read-only - Tooltip", "Is read-only - Tooltip": "Is read-only - Tooltip",
"New Syncer": "Novo Syncer", "New Syncer": "Novo Syncer",
"SSL mode": "SSL mode",
"SSL mode - Tooltip": "SSL mode - Tooltip",
"Sync interval": "Intervalo de sincronização", "Sync interval": "Intervalo de sincronização",
"Sync interval - Tooltip": "Unidade em segundos", "Sync interval - Tooltip": "Unidade em segundos",
"Table": "Tabela", "Table": "Tabela",
@@ -913,11 +959,19 @@
}, },
"token": { "token": {
"Access token": "Token de acesso", "Access token": "Token de acesso",
"Access token - Tooltip": "Access token - Tooltip",
"Authorization code": "Código de autorização", "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", "Edit Token": "Editar Token",
"Expires in": "Expira em", "Expires in": "Expira em",
"Expires in - Tooltip": "Expires in - Tooltip",
"New Token": "Novo Token", "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": { "user": {
"3rd-party logins": "Logins de terceiros", "3rd-party logins": "Logins de terceiros",
@@ -974,6 +1028,8 @@
"Managed accounts": "Contas gerenciadas", "Managed accounts": "Contas gerenciadas",
"Modify password...": "Modificar senha...", "Modify password...": "Modificar senha...",
"Multi-factor authentication": "Autenticação de vários fatores", "Multi-factor authentication": "Autenticação de vários fatores",
"Name": "Name",
"Name format": "Name format",
"New Email": "Novo E-mail", "New Email": "Novo E-mail",
"New Password": "Nova Senha", "New Password": "Nova Senha",
"New User": "Novo Usuário", "New User": "Novo Usuário",
@@ -1011,6 +1067,7 @@
"Upload ID card front picture": "Upload ID card front picture", "Upload ID card front picture": "Upload ID card front picture",
"Upload ID card with person picture": "Upload ID card with person picture", "Upload ID card with person picture": "Upload ID card with person picture",
"Upload a photo": "Enviar uma foto", "Upload a photo": "Enviar uma foto",
"Value": "Value",
"Values": "Valores", "Values": "Valores",
"Verification code sent": "Código de verificação enviado", "Verification code sent": "Código de verificação enviado",
"WebAuthn credentials": "Credenciais WebAuthn", "WebAuthn credentials": "Credenciais WebAuthn",

View File

@@ -12,7 +12,9 @@
"Policies": "Политика", "Policies": "Политика",
"Policies - Tooltip": "Правила политики Casbin", "Policies - Tooltip": "Правила политики Casbin",
"Rule type": "Rule type", "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": { "application": {
"Always": "Всегда", "Always": "Всегда",
@@ -30,6 +32,8 @@
"Edit Application": "Изменить приложение", "Edit Application": "Изменить приложение",
"Enable Email linking": "Включить связывание электронной почты", "Enable Email linking": "Включить связывание электронной почты",
"Enable Email linking - Tooltip": "При использовании сторонних провайдеров для входа, если в организации есть пользователь с такой же электронной почтой, то способ входа через стороннего провайдера автоматически будет связан с этим пользователем", "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": "Включите сжатие SAML",
"Enable SAML compression - Tooltip": "Нужно ли сжимать сообщения ответа SAML при использовании Casdoor в качестве SAML-идентификатора", "Enable SAML compression - Tooltip": "Нужно ли сжимать сообщения ответа SAML при использовании Casdoor в качестве SAML-идентификатора",
"Enable WebAuthn signin": "Активировать вход в систему с помощью WebAuthn", "Enable WebAuthn signin": "Активировать вход в систему с помощью WebAuthn",
@@ -42,6 +46,10 @@
"Enable signin session - Tooltip": "Будет ли сохранена сессия в Casdoor после входа в него из приложения?", "Enable signin session - Tooltip": "Будет ли сохранена сессия в Casdoor после входа в него из приложения?",
"Enable signup": "Включить регистрацию", "Enable signup": "Включить регистрацию",
"Enable signup - Tooltip": "Разрешить ли пользователям зарегистрировать новый аккаунт", "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": "Не удалось войти в систему", "Failed to sign in": "Не удалось войти в систему",
"File uploaded successfully": "Файл успешно загружен", "File uploaded successfully": "Файл успешно загружен",
"First, last": "First, last", "First, last": "First, last",
@@ -60,7 +68,6 @@
"Input": "Input", "Input": "Input",
"Invitation code": "Invitation code", "Invitation code": "Invitation code",
"Invitation code - Tooltip": "Invitation code - Tooltip", "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": "Пожалуйста, выберите файл HTML", "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", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Перенаправление URL", "Redirect URL": "Перенаправление URL",
@@ -86,7 +92,6 @@
"Rule": "Правило", "Rule": "Правило",
"SAML metadata": "Метаданные SAML", "SAML metadata": "Метаданные SAML",
"SAML metadata - Tooltip": "Метаданные протокола SAML", "SAML metadata - Tooltip": "Метаданные протокола SAML",
"SAML metadata URL copied to clipboard successfully": "URL метаданных SAML успешно скопирован в буфер обмена",
"SAML reply URL": "URL ответа SAML", "SAML reply URL": "URL ответа SAML",
"Select": "Select", "Select": "Select",
"Side panel HTML": "Боковая панель HTML", "Side panel HTML": "Боковая панель HTML",
@@ -95,11 +100,9 @@
"Sign Up Error": "Ошибка при регистрации", "Sign Up Error": "Ошибка при регистрации",
"Signin": "Signin", "Signin": "Signin",
"Signin (Default True)": "Signin (Default True)", "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": "Сессия входа в систему", "Signin session": "Сессия входа в систему",
"Signup items": "Элементы регистрации", "Signup items": "Элементы регистрации",
"Signup items - Tooltip": "Элементы, которые пользователи должны заполнить при регистрации новых аккаунтов", "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", "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": "Длина секретного ключа", "Bit size - Tooltip": "Длина секретного ключа",
"Certificate": "Сертификат", "Certificate": "Сертификат",
"Certificate - Tooltip": "Сертификат открытого ключа, используется для расшифровки подписи JWT токена доступа. Этот сертификат обычно должен быть развернут на стороне Casdoor SDK (то есть приложения), чтобы распарсить JWT", "Certificate - Tooltip": "Сертификат открытого ключа, используется для расшифровки подписи JWT токена доступа. Этот сертификат обычно должен быть развернут на стороне Casdoor SDK (то есть приложения), чтобы распарсить JWT",
"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 - Tooltip": "Приватный ключ, соответствующий сертификату открытого ключа",
"Private key copied to clipboard successfully": "Приватный ключ успешно скопирован в буфер обмена",
"Scope - Tooltip": "Сценарии использования сертификата", "Scope - Tooltip": "Сценарии использования сертификата",
"Type - Tooltip": "Тип сертификата" "Type - Tooltip": "Тип сертификата"
}, },
@@ -191,6 +192,7 @@
"Click to Upload": "Нажмите, чтобы загрузить", "Click to Upload": "Нажмите, чтобы загрузить",
"Close": "Близко", "Close": "Близко",
"Confirm": "Confirm", "Confirm": "Confirm",
"Copied to clipboard successfully": "Copied to clipboard successfully",
"Copy": "Copy", "Copy": "Copy",
"Created time": "Созданное время", "Created time": "Созданное время",
"Custom": "Custom", "Custom": "Custom",
@@ -200,6 +202,8 @@
"Default application - Tooltip": "По умолчанию приложение для пользователей, зарегистрированных непосредственно со страницы организации", "Default application - Tooltip": "По умолчанию приложение для пользователей, зарегистрированных непосредственно со страницы организации",
"Default avatar": "Стандартный аватар", "Default avatar": "Стандартный аватар",
"Default avatar - Tooltip": "Стандартное изображение аватара, используемое при регистрации новых пользователей, которые не загружают своё собственное изображение аватара", "Default avatar - Tooltip": "Стандартное изображение аватара, используемое при регистрации новых пользователей, которые не загружают своё собственное изображение аватара",
"Default password": "Default password",
"Default password - Tooltip": "Default password - Tooltip",
"Delete": "Удалить", "Delete": "Удалить",
"Description": "Описание", "Description": "Описание",
"Description - Tooltip": "Подробная описательная информация для справки, Casdoor сам не будет использовать ее", "Description - Tooltip": "Подробная описательная информация для справки, Casdoor сам не будет использовать ее",
@@ -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 enable": "Failed to enable",
"Failed to get TermsOfUse URL": "Failed to get TermsOfUse URL",
"Failed to remove": "Failed to remove", "Failed to remove": "Failed to remove",
"Failed to save": "Не удалось сохранить", "Failed to save": "Не удалось сохранить",
"Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"Favicon": "Фавикон", "Favicon": "Фавикон",
"Favicon - Tooltip": "URL иконки Favicon, используемый на всех страницах организации Casdoor", "Favicon - Tooltip": "URL иконки Favicon, используемый на всех страницах организации Casdoor",
@@ -251,6 +257,8 @@
"MFA items - Tooltip": "MFA items - Tooltip", "MFA items - Tooltip": "MFA items - Tooltip",
"Master password": "Главный пароль", "Master password": "Главный пароль",
"Master password - Tooltip": "Можно использовать для входа в учетные записи всех пользователей этой организации, что удобно для администраторов, чтобы войти в качестве этого пользователя и решить технические проблемы", "Master password - Tooltip": "Можно использовать для входа в учетные записи всех пользователей этой организации, что удобно для администраторов, чтобы войти в качестве этого пользователя и решить технические проблемы",
"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": "Случайный параметр, используемый для шифрования пароля", "Password salt - Tooltip": "Случайный параметр, используемый для шифрования пароля",
"Password type": "Тип пароля", "Password type": "Тип пароля",
"Password type - Tooltip": "Формат хранения паролей в базе данных", "Password type - Tooltip": "Формат хранения паролей в базе данных",
"Payment": "Payment",
"Payment - Tooltip": "Payment - Tooltip",
"Payments": "Платежи", "Payments": "Платежи",
"Permissions": "Разрешения", "Permissions": "Разрешения",
"Permissions - Tooltip": "Разрешения, принадлежащие этому пользователю", "Permissions - Tooltip": "Разрешения, принадлежащие этому пользователю",
@@ -283,6 +293,8 @@
"Plans - Tooltip": "Plans - Tooltip", "Plans - Tooltip": "Plans - Tooltip",
"Preview": "Предварительный просмотр", "Preview": "Предварительный просмотр",
"Preview - Tooltip": "Предварительный просмотр настроенных эффектов", "Preview - Tooltip": "Предварительный просмотр настроенных эффектов",
"Pricing": "Pricing",
"Pricing - Tooltip": "Pricing - Tooltip",
"Pricings": "Тарифы", "Pricings": "Тарифы",
"Products": "Продукты", "Products": "Продукты",
"Provider": "Провайдер", "Provider": "Провайдер",
@@ -296,6 +308,10 @@
"Role - Tooltip": "Role - Tooltip", "Role - Tooltip": "Role - Tooltip",
"Roles": "Роли", "Roles": "Роли",
"Roles - Tooltip": "Роли, к которым принадлежит пользователь", "Roles - Tooltip": "Роли, к которым принадлежит пользователь",
"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 removed": "Successfully removed",
"Successfully saved": "Успешно сохранено", "Successfully saved": "Успешно сохранено",
"Successfully sent": "Successfully sent", "Successfully sent": "Successfully sent",
"Successfully synced": "Successfully synced",
"Supported country codes": "Поддерживаемые коды стран", "Supported country codes": "Поддерживаемые коды стран",
"Supported country codes - Tooltip": "Коды стран, поддерживаемые организацией. Эти коды могут быть выбраны в качестве префикса при отправке SMS-кодов подтверждения", "Supported country codes - Tooltip": "Коды стран, поддерживаемые организацией. Эти коды могут быть выбраны в качестве префикса при отправке SMS-кодов подтверждения",
"Sure to delete": "Обязательное удаление", "Sure to delete": "Обязательное удаление",
@@ -440,7 +457,6 @@
"Multi-factor methods": "Multi-factor methods", "Multi-factor methods": "Multi-factor methods",
"Multi-factor recover": "Multi-factor recover", "Multi-factor recover": "Multi-factor recover",
"Multi-factor recover description": "Multi-factor recover description", "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", "Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
"Passcode": "Passcode", "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", "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": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"Price per month": "Price per month", "Period": "Period",
"Price per month - Tooltip": "Price per month - Tooltip", "Period - Tooltip": "Period - Tooltip",
"Price per year": "Price per year", "Price": "Price",
"Price per year - Tooltip": "Price per year - Tooltip", "Price - Tooltip": "Price - Tooltip",
"per month": "в месяц" "Related product": "Related product",
"per month": "в месяц",
"per year": "per year"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "Скопировать URL прайс-листа", "Copy pricing page URL": "Скопировать URL прайс-листа",
@@ -589,7 +607,7 @@
"Trial duration": "Продолжительность пробного периода", "Trial duration": "Продолжительность пробного периода",
"Trial duration - Tooltip": "Продолжительность пробного периода", "Trial duration - Tooltip": "Продолжительность пробного периода",
"days trial available!": "дней пробного периода доступно!", "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": { "product": {
"Alipay": "Alipay", "Alipay": "Alipay",
@@ -600,17 +618,16 @@
"Detail - Tooltip": "Деталь продукта", "Detail - Tooltip": "Деталь продукта",
"Dummy": "Dummy", "Dummy": "Dummy",
"Edit Product": "Редактировать продукт", "Edit Product": "Редактировать продукт",
"I have completed the payment": "Я произвел оплату",
"Image": "Изображение", "Image": "Изображение",
"Image - Tooltip": "Изображение продукта", "Image - Tooltip": "Изображение продукта",
"New Product": "Новый продукт", "New Product": "Новый продукт",
"Pay": "Заплатить", "Pay": "Заплатить",
"PayPal": "PayPal", "PayPal": "PayPal",
"Payment cancelled": "Payment cancelled",
"Payment failed": "Payment failed",
"Payment providers": "Платежные поставщики", "Payment providers": "Платежные поставщики",
"Payment providers - Tooltip": "Провайдеры платежных услуг", "Payment providers - Tooltip": "Провайдеры платежных услуг",
"Placing order...": "Оформление заказа...", "Placing order...": "Оформление заказа...",
"Please provide your username in the remark": "Пожалуйста, укажите имя пользователя в комментарии",
"Please scan the QR code to pay": "Пожалуйста, отсканируйте QR-код для оплаты",
"Price": "Цена", "Price": "Цена",
"Price - Tooltip": "Стоимость продукта", "Price - Tooltip": "Стоимость продукта",
"Quantity": "Количество", "Quantity": "Количество",
@@ -672,8 +689,8 @@
"Content": "Content", "Content": "Content",
"Content - Tooltip": "Content - Tooltip", "Content - Tooltip": "Content - Tooltip",
"Copy": "Копировать", "Copy": "Копировать",
"DB Test": "DB Test", "DB test": "DB test",
"DB Test - Tooltip": "DB Test - Tooltip", "DB test - Tooltip": "DB test - Tooltip",
"Disable SSL": "Отключить SSL", "Disable SSL": "Отключить SSL",
"Disable SSL - Tooltip": "Нужно ли отключать протокол SSL при общении с SMTP сервером?", "Disable SSL - Tooltip": "Нужно ли отключать протокол SSL при общении с SMTP сервером?",
"Domain": "Домен", "Domain": "Домен",
@@ -700,7 +717,10 @@
"Internal": "Internal", "Internal": "Internal",
"Issuer URL": "URL выпускающего органа", "Issuer URL": "URL выпускающего органа",
"Issuer URL - Tooltip": "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": "Метаданные",
"Metadata - Tooltip": "Метаданные SAML", "Metadata - Tooltip": "Метаданные SAML",
"Method - Tooltip": "Метод входа, QR-код или беззвучный вход", "Method - Tooltip": "Метод входа, QR-код или беззвучный вход",
@@ -754,6 +774,10 @@
"Sender Id - Tooltip": "Sender Id - Tooltip", "Sender Id - Tooltip": "Sender Id - Tooltip",
"Sender number": "Sender number", "Sender number": "Sender number",
"Sender number - Tooltip": "Sender number - Tooltip", "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": "Имя подписи, которую нужно использовать", "Sign Name - Tooltip": "Имя подписи, которую нужно использовать",
"Sign request": "Подписать запрос", "Sign request": "Подписать запрос",
@@ -764,12 +788,15 @@
"Signup HTML": "Регистрационная форма HTML", "Signup HTML": "Регистрационная форма HTML",
"Signup HTML - Edit": "Регистрационная форма HTML - Редактировать", "Signup HTML - Edit": "Регистрационная форма HTML - Редактировать",
"Signup HTML - Tooltip": "Пользовательский HTML для замены стиля стандартной страницы регистрации", "Signup HTML - Tooltip": "Пользовательский HTML для замены стиля стандартной страницы регистрации",
"Signup group": "Signup group",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Ключ сайта", "Site key": "Ключ сайта",
"Site key - Tooltip": "Ключ сайта", "Site key - Tooltip": "Ключ сайта",
"Sliding Validation": "Sliding Validation", "Sliding Validation": "Sliding Validation",
"Sub type": "Подтип", "Sub type": "Подтип",
"Sub type - Tooltip": "Подтип", "Sub type - Tooltip": "Подтип",
"Team ID": "Team ID",
"Team ID - Tooltip": "Team ID - Tooltip",
"Template code": "Шаблонный код", "Template code": "Шаблонный код",
"Template code - Tooltip": "Шаблонный код", "Template code - Tooltip": "Шаблонный код",
"Test Email": "Тестовое письмо", "Test Email": "Тестовое письмо",
@@ -780,6 +807,8 @@
"Token URL - Tooltip": "Токен URL", "Token URL - Tooltip": "Токен URL",
"Type": "Тип", "Type": "Тип",
"Type - Tooltip": "Выберите тип", "Type - Tooltip": "Выберите тип",
"User flow": "User flow",
"User flow - Tooltip": "User flow - Tooltip",
"User mapping": "User mapping", "User mapping": "User mapping",
"User mapping - Tooltip": "User mapping - Tooltip", "User mapping - Tooltip": "User mapping - Tooltip",
"UserInfo URL": "URL информации о пользователе", "UserInfo URL": "URL информации о пользователе",
@@ -801,6 +830,8 @@
"New Role": "Новая роль", "New Role": "Новая роль",
"Sub domains": "Поддомены", "Sub domains": "Поддомены",
"Sub domains - Tooltip": "Домены, включенные в текущую роль", "Sub domains - Tooltip": "Домены, включенные в текущую роль",
"Sub groups": "Sub groups",
"Sub groups - Tooltip": "Sub groups - Tooltip",
"Sub roles": "Роли в подчинении", "Sub roles": "Роли в подчинении",
"Sub roles - Tooltip": "Включенные в настоящее время роли", "Sub roles - Tooltip": "Включенные в настоящее время роли",
"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 - 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 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": { "subscription": {
"Duration": "Продолжительность", "Active": "Active",
"Duration - Tooltip": "Продолжительность подписки",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "Дата окончания", "End time": "End time",
"End date - Tooltip": "Дата окончания", "End time - Tooltip": "End time - Tooltip",
"Error": "Error",
"Expired": "Expired",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Start date": "Дата начала", "Pending": "Pending",
"Start date - Tooltip": "Дата начала" "Period": "Period",
"Start time": "Start time",
"Start time - Tooltip": "Start time - Tooltip",
"Suspended": "Suspended",
"Upcoming": "Upcoming"
}, },
"syncer": { "syncer": {
"Affiliation table": "Таблица принадлежности", "Affiliation table": "Таблица принадлежности",
@@ -872,6 +916,8 @@
"Is read-only": "Is read-only", "Is read-only": "Is read-only",
"Is read-only - Tooltip": "Is read-only - Tooltip", "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": "Единица измерения в секундах", "Sync interval - Tooltip": "Единица измерения в секундах",
"Table": "Стол", "Table": "Стол",
@@ -913,11 +959,19 @@
}, },
"token": { "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": "Тип токена" "Parsed result": "Parsed result",
"Parsed result - Tooltip": "Parsed result - Tooltip",
"Token type": "Тип токена",
"Token type - Tooltip": "Token type - Tooltip"
}, },
"user": { "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", "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 front picture": "Upload ID card front picture",
"Upload ID card with person picture": "Upload ID card with person 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 удостоверения", "WebAuthn credentials": "WebAuthn удостоверения",

Some files were not shown because too many files have changed in this diff Show More