mirror of
https://github.com/casdoor/casdoor.git
synced 2025-08-15 02:35:41 +08:00
Compare commits
9 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
62bb257c6d | ||
![]() |
230a77e3e3 | ||
![]() |
dce0a96dea | ||
![]() |
65563fa0cd | ||
![]() |
f2a94f671a | ||
![]() |
1460a0498f | ||
![]() |
adc63ea726 | ||
![]() |
0b8be016c5 | ||
![]() |
986dcbbda1 |
@@ -21,6 +21,7 @@ originFrontend =
|
|||||||
staticBaseUrl = "https://cdn.casbin.org"
|
staticBaseUrl = "https://cdn.casbin.org"
|
||||||
isDemoMode = false
|
isDemoMode = false
|
||||||
batchSize = 100
|
batchSize = 100
|
||||||
|
enableErrorMask = false
|
||||||
enableGzip = true
|
enableGzip = true
|
||||||
ldapServerPort = 389
|
ldapServerPort = 389
|
||||||
radiusServerPort = 1812
|
radiusServerPort = 1812
|
||||||
|
@@ -257,7 +257,7 @@ func (c *ApiController) UploadResource() {
|
|||||||
fileType, _ = util.GetOwnerAndNameFromIdNoCheck(mimeType + "/")
|
fileType, _ = util.GetOwnerAndNameFromIdNoCheck(mimeType + "/")
|
||||||
}
|
}
|
||||||
|
|
||||||
fullFilePath = object.GetTruncatedPath(provider, fullFilePath, 175)
|
fullFilePath = object.GetTruncatedPath(provider, fullFilePath, 450)
|
||||||
if tag != "avatar" && tag != "termsOfUse" && !strings.HasPrefix(tag, "idCard") {
|
if tag != "avatar" && tag != "termsOfUse" && !strings.HasPrefix(tag, "idCard") {
|
||||||
ext := filepath.Ext(filepath.Base(fullFilePath))
|
ext := filepath.Ext(filepath.Base(fullFilePath))
|
||||||
index := len(fullFilePath) - len(ext)
|
index := len(fullFilePath) - len(ext)
|
||||||
|
@@ -289,6 +289,16 @@ func (c *ApiController) UpdateUser() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if user.MfaEmailEnabled && user.Email == "" {
|
||||||
|
c.ResponseError(c.T("user:MFA email is enabled but email is empty"))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if user.MfaPhoneEnabled && user.Phone == "" {
|
||||||
|
c.ResponseError(c.T("user:MFA phone is enabled but phone number is empty"))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
if msg := object.CheckUpdateUser(oldUser, &user, c.GetAcceptLanguage()); msg != "" {
|
if msg := object.CheckUpdateUser(oldUser, &user, c.GetAcceptLanguage()); msg != "" {
|
||||||
c.ResponseError(msg)
|
c.ResponseError(msg)
|
||||||
return
|
return
|
||||||
|
@@ -45,6 +45,13 @@ func (c *ApiController) ResponseOk(data ...interface{}) {
|
|||||||
|
|
||||||
// ResponseError ...
|
// ResponseError ...
|
||||||
func (c *ApiController) ResponseError(error string, data ...interface{}) {
|
func (c *ApiController) ResponseError(error string, data ...interface{}) {
|
||||||
|
enableErrorMask := conf.GetConfigBool("enableErrorMask")
|
||||||
|
if enableErrorMask {
|
||||||
|
if strings.HasPrefix(error, "The user: ") && strings.HasSuffix(error, " doesn't exist") || strings.HasPrefix(error, "用户: ") && strings.HasSuffix(error, "不存在") {
|
||||||
|
error = c.T("check:password or code is incorrect")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
resp := &Response{Status: "error", Msg: error}
|
resp := &Response{Status: "error", Msg: error}
|
||||||
c.ResponseJsonData(resp, data...)
|
c.ResponseJsonData(resp, data...)
|
||||||
}
|
}
|
||||||
|
@@ -32,6 +32,7 @@ type Ldap struct {
|
|||||||
BaseDn string `xorm:"varchar(100)" json:"baseDn"`
|
BaseDn string `xorm:"varchar(100)" json:"baseDn"`
|
||||||
Filter string `xorm:"varchar(200)" json:"filter"`
|
Filter string `xorm:"varchar(200)" json:"filter"`
|
||||||
FilterFields []string `xorm:"varchar(100)" json:"filterFields"`
|
FilterFields []string `xorm:"varchar(100)" json:"filterFields"`
|
||||||
|
DefaultGroup string `xorm:"varchar(100)" json:"defaultGroup"`
|
||||||
|
|
||||||
AutoSync int `json:"autoSync"`
|
AutoSync int `json:"autoSync"`
|
||||||
LastSync string `xorm:"varchar(100)" json:"lastSync"`
|
LastSync string `xorm:"varchar(100)" json:"lastSync"`
|
||||||
@@ -148,7 +149,7 @@ func UpdateLdap(ldap *Ldap) (bool, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
affected, err := ormer.Engine.ID(ldap.Id).Cols("owner", "server_name", "host",
|
affected, err := ormer.Engine.ID(ldap.Id).Cols("owner", "server_name", "host",
|
||||||
"port", "enable_ssl", "username", "password", "base_dn", "filter", "filter_fields", "auto_sync").Update(ldap)
|
"port", "enable_ssl", "username", "password", "base_dn", "filter", "filter_fields", "auto_sync", "default_group").Update(ldap)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return false, nil
|
return false, nil
|
||||||
}
|
}
|
||||||
|
@@ -339,6 +339,10 @@ func SyncLdapUsers(owner string, syncUsers []LdapUser, ldapId string) (existUser
|
|||||||
Ldap: syncUser.Uuid,
|
Ldap: syncUser.Uuid,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ldap.DefaultGroup != "" {
|
||||||
|
newUser.Groups = []string{ldap.DefaultGroup}
|
||||||
|
}
|
||||||
|
|
||||||
affected, err := AddUser(newUser)
|
affected, err := AddUser(newUser)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, nil, err
|
return nil, nil, err
|
||||||
|
@@ -36,7 +36,7 @@ type Resource struct {
|
|||||||
FileType string `xorm:"varchar(100)" json:"fileType"`
|
FileType string `xorm:"varchar(100)" json:"fileType"`
|
||||||
FileFormat string `xorm:"varchar(100)" json:"fileFormat"`
|
FileFormat string `xorm:"varchar(100)" json:"fileFormat"`
|
||||||
FileSize int `json:"fileSize"`
|
FileSize int `json:"fileSize"`
|
||||||
Url string `xorm:"varchar(255)" json:"url"`
|
Url string `xorm:"varchar(500)" json:"url"`
|
||||||
Description string `xorm:"varchar(255)" json:"description"`
|
Description string `xorm:"varchar(255)" json:"description"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -100,12 +100,13 @@ func GetUploadFileUrl(provider *Provider, fullFilePath string, hasTimestamp bool
|
|||||||
|
|
||||||
fileUrl := ""
|
fileUrl := ""
|
||||||
if host != "" {
|
if host != "" {
|
||||||
fileUrl = util.UrlJoin(host, escapePath(objectKey))
|
// fileUrl = util.UrlJoin(host, escapePath(objectKey))
|
||||||
|
fileUrl = util.UrlJoin(host, objectKey)
|
||||||
}
|
}
|
||||||
|
|
||||||
if fileUrl != "" && hasTimestamp {
|
// if fileUrl != "" && hasTimestamp {
|
||||||
fileUrl = fmt.Sprintf("%s?t=%s", fileUrl, util.GetCurrentUnixTime())
|
// fileUrl = fmt.Sprintf("%s?t=%s", fileUrl, util.GetCurrentUnixTime())
|
||||||
}
|
// }
|
||||||
|
|
||||||
if provider.Type == ProviderTypeTencentCloudCOS {
|
if provider.Type == ProviderTypeTencentCloudCOS {
|
||||||
objectKey = escapePath(objectKey)
|
objectKey = escapePath(objectKey)
|
||||||
|
@@ -56,7 +56,7 @@ func getSubject(ctx *context.Context) (string, string) {
|
|||||||
return util.GetOwnerAndNameFromId(username)
|
return util.GetOwnerAndNameFromId(username)
|
||||||
}
|
}
|
||||||
|
|
||||||
func getObject(ctx *context.Context) (string, string) {
|
func getObject(ctx *context.Context) (string, string, error) {
|
||||||
method := ctx.Request.Method
|
method := ctx.Request.Method
|
||||||
path := ctx.Request.URL.Path
|
path := ctx.Request.URL.Path
|
||||||
|
|
||||||
@@ -65,13 +65,13 @@ func getObject(ctx *context.Context) (string, string) {
|
|||||||
if ctx.Input.Query("id") == "/" {
|
if ctx.Input.Query("id") == "/" {
|
||||||
adapterId := ctx.Input.Query("adapterId")
|
adapterId := ctx.Input.Query("adapterId")
|
||||||
if adapterId != "" {
|
if adapterId != "" {
|
||||||
return util.GetOwnerAndNameFromIdNoCheck(adapterId)
|
return util.GetOwnerAndNameFromIdWithError(adapterId)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// query == "?id=built-in/admin"
|
// query == "?id=built-in/admin"
|
||||||
id := ctx.Input.Query("id")
|
id := ctx.Input.Query("id")
|
||||||
if id != "" {
|
if id != "" {
|
||||||
return util.GetOwnerAndNameFromIdNoCheck(id)
|
return util.GetOwnerAndNameFromIdWithError(id)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -80,34 +80,34 @@ func getObject(ctx *context.Context) (string, string) {
|
|||||||
// query == "?id=built-in/admin"
|
// query == "?id=built-in/admin"
|
||||||
id := ctx.Input.Query("id")
|
id := ctx.Input.Query("id")
|
||||||
if id != "" {
|
if id != "" {
|
||||||
return util.GetOwnerAndNameFromIdNoCheck(id)
|
return util.GetOwnerAndNameFromIdWithError(id)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
owner := ctx.Input.Query("owner")
|
owner := ctx.Input.Query("owner")
|
||||||
if owner != "" {
|
if owner != "" {
|
||||||
return owner, ""
|
return owner, "", nil
|
||||||
}
|
}
|
||||||
|
|
||||||
return "", ""
|
return "", "", nil
|
||||||
} else {
|
} else {
|
||||||
if path == "/api/add-policy" || path == "/api/remove-policy" || path == "/api/update-policy" {
|
if path == "/api/add-policy" || path == "/api/remove-policy" || path == "/api/update-policy" {
|
||||||
id := ctx.Input.Query("id")
|
id := ctx.Input.Query("id")
|
||||||
if id != "" {
|
if id != "" {
|
||||||
return util.GetOwnerAndNameFromIdNoCheck(id)
|
return util.GetOwnerAndNameFromIdWithError(id)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
body := ctx.Input.RequestBody
|
body := ctx.Input.RequestBody
|
||||||
if len(body) == 0 {
|
if len(body) == 0 {
|
||||||
return ctx.Request.Form.Get("owner"), ctx.Request.Form.Get("name")
|
return ctx.Request.Form.Get("owner"), ctx.Request.Form.Get("name"), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
var obj Object
|
var obj Object
|
||||||
err := json.Unmarshal(body, &obj)
|
err := json.Unmarshal(body, &obj)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
// panic(err)
|
// this is not error
|
||||||
return "", ""
|
return "", "", nil
|
||||||
}
|
}
|
||||||
|
|
||||||
if path == "/api/delete-resource" {
|
if path == "/api/delete-resource" {
|
||||||
@@ -117,7 +117,7 @@ func getObject(ctx *context.Context) (string, string) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return obj.Owner, obj.Name
|
return obj.Owner, obj.Name, nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -183,7 +183,12 @@ func ApiFilter(ctx *context.Context) {
|
|||||||
|
|
||||||
objOwner, objName := "", ""
|
objOwner, objName := "", ""
|
||||||
if urlPath != "/api/get-app-login" && urlPath != "/api/get-resource" {
|
if urlPath != "/api/get-app-login" && urlPath != "/api/get-resource" {
|
||||||
objOwner, objName = getObject(ctx)
|
var err error
|
||||||
|
objOwner, objName, err = getObject(ctx)
|
||||||
|
if err != nil {
|
||||||
|
responseError(ctx, err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if strings.HasPrefix(urlPath, "/api/notify-payment") {
|
if strings.HasPrefix(urlPath, "/api/notify-payment") {
|
||||||
|
@@ -131,6 +131,15 @@ func GetOwnerAndNameFromId(id string) (string, string) {
|
|||||||
return tokens[0], tokens[1]
|
return tokens[0], tokens[1]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func GetOwnerAndNameFromIdWithError(id string) (string, string, error) {
|
||||||
|
tokens := strings.Split(id, "/")
|
||||||
|
if len(tokens) != 2 {
|
||||||
|
return "", "", errors.New("GetOwnerAndNameFromId() error, wrong token count for ID: " + id)
|
||||||
|
}
|
||||||
|
|
||||||
|
return tokens[0], tokens[1], nil
|
||||||
|
}
|
||||||
|
|
||||||
func GetOwnerFromId(id string) string {
|
func GetOwnerFromId(id string) string {
|
||||||
tokens := strings.Split(id, "/")
|
tokens := strings.Split(id, "/")
|
||||||
if len(tokens) != 2 {
|
if len(tokens) != 2 {
|
||||||
|
@@ -344,7 +344,8 @@ class App extends Component {
|
|||||||
window.location.pathname.startsWith("/cas") ||
|
window.location.pathname.startsWith("/cas") ||
|
||||||
window.location.pathname.startsWith("/select-plan") ||
|
window.location.pathname.startsWith("/select-plan") ||
|
||||||
window.location.pathname.startsWith("/buy-plan") ||
|
window.location.pathname.startsWith("/buy-plan") ||
|
||||||
window.location.pathname.startsWith("/qrcode") ;
|
window.location.pathname.startsWith("/qrcode") ||
|
||||||
|
window.location.pathname.startsWith("/captcha");
|
||||||
}
|
}
|
||||||
|
|
||||||
onClick = ({key}) => {
|
onClick = ({key}) => {
|
||||||
|
116
web/src/CaptchaPage.js
Normal file
116
web/src/CaptchaPage.js
Normal file
@@ -0,0 +1,116 @@
|
|||||||
|
// Copyright 2021 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 React from "react";
|
||||||
|
import {CaptchaModal} from "./common/modal/CaptchaModal";
|
||||||
|
import * as ApplicationBackend from "./backend/ApplicationBackend";
|
||||||
|
import * as Setting from "./Setting";
|
||||||
|
|
||||||
|
class CaptchaPage extends React.Component {
|
||||||
|
constructor(props) {
|
||||||
|
super(props);
|
||||||
|
const params = new URLSearchParams(this.props.location.search);
|
||||||
|
this.state = {
|
||||||
|
owner: "admin",
|
||||||
|
application: null,
|
||||||
|
clientId: params.get("client_id"),
|
||||||
|
applicationName: params.get("state"),
|
||||||
|
redirectUri: params.get("redirect_uri"),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
componentDidMount() {
|
||||||
|
this.getApplication();
|
||||||
|
}
|
||||||
|
|
||||||
|
onUpdateApplication(application) {
|
||||||
|
this.setState({
|
||||||
|
application: application,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
getApplication() {
|
||||||
|
if (this.state.applicationName === null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
ApplicationBackend.getApplication(this.state.owner, this.state.applicationName)
|
||||||
|
.then((res) => {
|
||||||
|
if (res.status === "error") {
|
||||||
|
this.onUpdateApplication(null);
|
||||||
|
this.setState({
|
||||||
|
msg: res.msg,
|
||||||
|
});
|
||||||
|
return ;
|
||||||
|
}
|
||||||
|
this.onUpdateApplication(res.data);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
getCaptchaProviderItems(application) {
|
||||||
|
const providers = application?.providers;
|
||||||
|
|
||||||
|
if (providers === undefined || providers === null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return providers.filter(providerItem => {
|
||||||
|
if (providerItem.provider === undefined || providerItem.provider === null) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return providerItem.provider.category === "Captcha";
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
callback(values) {
|
||||||
|
Setting.goToLink(`${this.state.redirectUri}?code=${values.captchaToken}&type=${values.captchaType}&secret=${values.clientSecret}&applicationId=${values.applicationId}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
renderCaptchaModal(application) {
|
||||||
|
const captchaProviderItems = this.getCaptchaProviderItems(application);
|
||||||
|
if (captchaProviderItems === null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
const alwaysProviderItems = captchaProviderItems.filter(providerItem => providerItem.rule === "Always");
|
||||||
|
const dynamicProviderItems = captchaProviderItems.filter(providerItem => providerItem.rule === "Dynamic");
|
||||||
|
const provider = alwaysProviderItems.length > 0
|
||||||
|
? alwaysProviderItems[0].provider
|
||||||
|
: dynamicProviderItems[0].provider;
|
||||||
|
|
||||||
|
return <CaptchaModal
|
||||||
|
owner={provider.owner}
|
||||||
|
name={provider.name}
|
||||||
|
visible={true}
|
||||||
|
onOk={(captchaType, captchaToken, clientSecret) => {
|
||||||
|
const values = {
|
||||||
|
captchaType: captchaType,
|
||||||
|
captchaToken: captchaToken,
|
||||||
|
clientSecret: clientSecret,
|
||||||
|
applicationId: `${provider.owner}/${provider.name}`,
|
||||||
|
};
|
||||||
|
this.callback(values);
|
||||||
|
}}
|
||||||
|
onCancel={() => this.callback({captchaType: "none", captchaToken: "", clientSecret: ""})}
|
||||||
|
isCurrentProvider={true}
|
||||||
|
/>;
|
||||||
|
}
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
this.renderCaptchaModal(this.state.application)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default CaptchaPage;
|
@@ -32,6 +32,7 @@ import {authConfig} from "./auth/Auth";
|
|||||||
import ProductBuyPage from "./ProductBuyPage";
|
import ProductBuyPage from "./ProductBuyPage";
|
||||||
import PaymentResultPage from "./PaymentResultPage";
|
import PaymentResultPage from "./PaymentResultPage";
|
||||||
import QrCodePage from "./QrCodePage";
|
import QrCodePage from "./QrCodePage";
|
||||||
|
import CaptchaPage from "./CaptchaPage";
|
||||||
import CustomHead from "./basic/CustomHead";
|
import CustomHead from "./basic/CustomHead";
|
||||||
|
|
||||||
class EntryPage extends React.Component {
|
class EntryPage extends React.Component {
|
||||||
@@ -120,6 +121,7 @@ class EntryPage extends React.Component {
|
|||||||
<Route exact path="/buy-plan/:owner/:pricingName" render={(props) => <ProductBuyPage {...this.props} pricing={this.state.pricing} onUpdatePricing={onUpdatePricing} {...props} />} />
|
<Route exact path="/buy-plan/:owner/:pricingName" render={(props) => <ProductBuyPage {...this.props} pricing={this.state.pricing} onUpdatePricing={onUpdatePricing} {...props} />} />
|
||||||
<Route exact path="/buy-plan/:owner/:pricingName/result" render={(props) => <PaymentResultPage {...this.props} pricing={this.state.pricing} onUpdatePricing={onUpdatePricing} {...props} />} />
|
<Route exact path="/buy-plan/:owner/:pricingName/result" render={(props) => <PaymentResultPage {...this.props} pricing={this.state.pricing} onUpdatePricing={onUpdatePricing} {...props} />} />
|
||||||
<Route exact path="/qrcode/:owner/:paymentName" render={(props) => <QrCodePage {...this.props} onUpdateApplication={onUpdateApplication} {...props} />} />
|
<Route exact path="/qrcode/:owner/:paymentName" render={(props) => <QrCodePage {...this.props} onUpdateApplication={onUpdateApplication} {...props} />} />
|
||||||
|
<Route exact path="/captcha" render={(props) => <CaptchaPage {...props} />} />
|
||||||
</Switch>
|
</Switch>
|
||||||
</div>
|
</div>
|
||||||
</React.Fragment>
|
</React.Fragment>
|
||||||
|
@@ -13,12 +13,13 @@
|
|||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import {Button, Card, Col, Input, InputNumber, Row, Select, Switch} from "antd";
|
import {Button, Card, Col, Input, InputNumber, Row, Select, Space, Switch} from "antd";
|
||||||
import {EyeInvisibleOutlined, EyeTwoTone} from "@ant-design/icons";
|
import {EyeInvisibleOutlined, EyeTwoTone, HolderOutlined, UsergroupAddOutlined} from "@ant-design/icons";
|
||||||
import * as LddpBackend from "./backend/LdapBackend";
|
import * as LddpBackend from "./backend/LdapBackend";
|
||||||
import * as OrganizationBackend from "./backend/OrganizationBackend";
|
import * as OrganizationBackend from "./backend/OrganizationBackend";
|
||||||
import * as Setting from "./Setting";
|
import * as Setting from "./Setting";
|
||||||
import i18next from "i18next";
|
import i18next from "i18next";
|
||||||
|
import * as GroupBackend from "./backend/GroupBackend";
|
||||||
|
|
||||||
const {Option} = Select;
|
const {Option} = Select;
|
||||||
|
|
||||||
@@ -30,12 +31,14 @@ class LdapEditPage extends React.Component {
|
|||||||
organizationName: props.match.params.organizationName,
|
organizationName: props.match.params.organizationName,
|
||||||
ldap: null,
|
ldap: null,
|
||||||
organizations: [],
|
organizations: [],
|
||||||
|
groups: null,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
UNSAFE_componentWillMount() {
|
UNSAFE_componentWillMount() {
|
||||||
this.getLdap();
|
this.getLdap();
|
||||||
this.getOrganizations();
|
this.getOrganizations();
|
||||||
|
this.getGroups();
|
||||||
}
|
}
|
||||||
|
|
||||||
getLdap() {
|
getLdap() {
|
||||||
@@ -60,6 +63,17 @@ class LdapEditPage extends React.Component {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getGroups() {
|
||||||
|
GroupBackend.getGroups(this.state.organizationName)
|
||||||
|
.then((res) => {
|
||||||
|
if (res.status === "ok") {
|
||||||
|
this.setState({
|
||||||
|
groups: res.data,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
updateLdapField(key, value) {
|
updateLdapField(key, value) {
|
||||||
this.setState((prevState) => {
|
this.setState((prevState) => {
|
||||||
prevState.ldap[key] = value;
|
prevState.ldap[key] = value;
|
||||||
@@ -214,6 +228,31 @@ class LdapEditPage extends React.Component {
|
|||||||
/>
|
/>
|
||||||
</Col>
|
</Col>
|
||||||
</Row>
|
</Row>
|
||||||
|
<Row style={{marginTop: "20px"}} >
|
||||||
|
<Col style={{lineHeight: "32px", textAlign: "right", paddingRight: "25px"}} span={3}>
|
||||||
|
{Setting.getLabel(i18next.t("ldap:Default group"), i18next.t("ldap:Default group - Tooltip"))} :
|
||||||
|
</Col>
|
||||||
|
<Col span={21}>
|
||||||
|
<Select virtual={false} style={{width: "100%"}} value={this.state.ldap.defaultGroup ?? []} onChange={(value => {
|
||||||
|
this.updateLdapField("defaultGroup", value);
|
||||||
|
})}
|
||||||
|
>
|
||||||
|
<Option key={""} value={""}>
|
||||||
|
<Space>
|
||||||
|
{i18next.t("general:Default")}
|
||||||
|
</Space>
|
||||||
|
</Option>
|
||||||
|
{
|
||||||
|
this.state.groups?.map((group) => <Option key={group.name} value={`${group.owner}/${group.name}`}>
|
||||||
|
<Space>
|
||||||
|
{group.type === "Physical" ? <UsergroupAddOutlined /> : <HolderOutlined />}
|
||||||
|
{group.displayName}
|
||||||
|
</Space>
|
||||||
|
</Option>)
|
||||||
|
}
|
||||||
|
</Select>
|
||||||
|
</Col>
|
||||||
|
</Row>
|
||||||
<Row style={{marginTop: "20px"}}>
|
<Row style={{marginTop: "20px"}}>
|
||||||
<Col style={{lineHeight: "32px", textAlign: "right", paddingRight: "25px"}} span={3}>
|
<Col style={{lineHeight: "32px", textAlign: "right", paddingRight: "25px"}} span={3}>
|
||||||
{Setting.getLabel(i18next.t("ldap:Auto Sync"), i18next.t("ldap:Auto Sync - Tooltip"))} :
|
{Setting.getLabel(i18next.t("ldap:Auto Sync"), i18next.t("ldap:Auto Sync - Tooltip"))} :
|
||||||
|
@@ -234,6 +234,8 @@
|
|||||||
"Enable": "Enable",
|
"Enable": "Enable",
|
||||||
"Enable dark logo": "Enable dark logo",
|
"Enable dark logo": "Enable dark logo",
|
||||||
"Enable dark logo - Tooltip": "Enable dark logo",
|
"Enable dark logo - Tooltip": "Enable dark logo",
|
||||||
|
"Enable tour": "Enable tour",
|
||||||
|
"Enable tour - Tooltip": "Display tour for users",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
"Enabled successfully": "Enabled successfully",
|
"Enabled successfully": "Enabled successfully",
|
||||||
"Enforcers": "Enforcers",
|
"Enforcers": "Enforcers",
|
||||||
@@ -265,6 +267,8 @@
|
|||||||
"Invitations": "Invitations",
|
"Invitations": "Invitations",
|
||||||
"Is enabled": "Is enabled",
|
"Is enabled": "Is enabled",
|
||||||
"Is enabled - Tooltip": "Set whether it can use",
|
"Is enabled - Tooltip": "Set whether it can use",
|
||||||
|
"Is shared": "Is shared",
|
||||||
|
"Is shared - Tooltip": "Share this application with other organizations",
|
||||||
"LDAPs": "LDAPs",
|
"LDAPs": "LDAPs",
|
||||||
"LDAPs - Tooltip": "LDAP servers",
|
"LDAPs - Tooltip": "LDAP servers",
|
||||||
"Languages": "Languages",
|
"Languages": "Languages",
|
||||||
@@ -441,6 +445,8 @@
|
|||||||
"Base DN": "Base DN",
|
"Base DN": "Base DN",
|
||||||
"Base DN - Tooltip": "Base DN during LDAP search",
|
"Base DN - Tooltip": "Base DN during LDAP search",
|
||||||
"CN": "CN",
|
"CN": "CN",
|
||||||
|
"Default group": "Default group",
|
||||||
|
"Default group - Tooltip": "Group to which users belong after synchronization",
|
||||||
"Edit LDAP": "Edit LDAP",
|
"Edit LDAP": "Edit LDAP",
|
||||||
"Enable SSL": "Enable SSL",
|
"Enable SSL": "Enable SSL",
|
||||||
"Enable SSL - Tooltip": "Whether to enable SSL",
|
"Enable SSL - Tooltip": "Whether to enable SSL",
|
||||||
@@ -551,6 +557,11 @@
|
|||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
},
|
},
|
||||||
|
"mfaAccount": {
|
||||||
|
"Account Name": "Account Name",
|
||||||
|
"Issuer": "Issuer",
|
||||||
|
"Secret Key": "Secret Key"
|
||||||
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"Edit Model": "Edit Model",
|
"Edit Model": "Edit Model",
|
||||||
"Model text": "Model text",
|
"Model text": "Model text",
|
||||||
@@ -1136,6 +1147,7 @@
|
|||||||
"Link": "Link",
|
"Link": "Link",
|
||||||
"Location": "Location",
|
"Location": "Location",
|
||||||
"Location - Tooltip": "City of residence",
|
"Location - Tooltip": "City of residence",
|
||||||
|
"MFA accounts": "MFA accounts",
|
||||||
"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",
|
||||||
|
@@ -234,6 +234,8 @@
|
|||||||
"Enable": "Povolit",
|
"Enable": "Povolit",
|
||||||
"Enable dark logo": "Povolit tmavé logo",
|
"Enable dark logo": "Povolit tmavé logo",
|
||||||
"Enable dark logo - Tooltip": "Povolit tmavé logo",
|
"Enable dark logo - Tooltip": "Povolit tmavé logo",
|
||||||
|
"Enable tour": "Enable tour",
|
||||||
|
"Enable tour - Tooltip": "Display tour for users",
|
||||||
"Enabled": "Povoleno",
|
"Enabled": "Povoleno",
|
||||||
"Enabled successfully": "Úspěšně povoleno",
|
"Enabled successfully": "Úspěšně povoleno",
|
||||||
"Enforcers": "Enforcers",
|
"Enforcers": "Enforcers",
|
||||||
@@ -265,6 +267,8 @@
|
|||||||
"Invitations": "Pozvánky",
|
"Invitations": "Pozvánky",
|
||||||
"Is enabled": "Je povoleno",
|
"Is enabled": "Je povoleno",
|
||||||
"Is enabled - Tooltip": "Nastavit, zda může být použito",
|
"Is enabled - Tooltip": "Nastavit, zda může být použito",
|
||||||
|
"Is shared": "Is shared",
|
||||||
|
"Is shared - Tooltip": "Share this application with other organizations",
|
||||||
"LDAPs": "LDAPy",
|
"LDAPs": "LDAPy",
|
||||||
"LDAPs - Tooltip": "LDAP servery",
|
"LDAPs - Tooltip": "LDAP servery",
|
||||||
"Languages": "Jazyky",
|
"Languages": "Jazyky",
|
||||||
@@ -441,6 +445,8 @@
|
|||||||
"Base DN": "Základní DN",
|
"Base DN": "Základní DN",
|
||||||
"Base DN - Tooltip": "Základní DN při vyhledávání v LDAP",
|
"Base DN - Tooltip": "Základní DN při vyhledávání v LDAP",
|
||||||
"CN": "CN",
|
"CN": "CN",
|
||||||
|
"Default group": "Default group",
|
||||||
|
"Default group - Tooltip": "Group to which users belong after synchronization",
|
||||||
"Edit LDAP": "Upravit LDAP",
|
"Edit LDAP": "Upravit LDAP",
|
||||||
"Enable SSL": "Povolit SSL",
|
"Enable SSL": "Povolit SSL",
|
||||||
"Enable SSL - Tooltip": "Zda povolit SSL",
|
"Enable SSL - Tooltip": "Zda povolit SSL",
|
||||||
@@ -521,7 +527,7 @@
|
|||||||
"Failed to initiate MFA": "Nepodařilo se zahájit MFA",
|
"Failed to initiate MFA": "Nepodařilo se zahájit MFA",
|
||||||
"Have problems?": "Máte problémy?",
|
"Have problems?": "Máte problémy?",
|
||||||
"Multi-factor authentication": "Vícefaktorové ověřování",
|
"Multi-factor authentication": "Vícefaktorové ověřování",
|
||||||
"Multi-factor authentication - Tooltip": "Dvoufaktorové ověřování - Tooltip",
|
"Multi-factor authentication - Tooltip ": "Dvoufaktorové ověřování - Tooltip",
|
||||||
"Multi-factor authentication description": "Popis dvoufaktorového ověřování",
|
"Multi-factor authentication description": "Popis dvoufaktorového ověřování",
|
||||||
"Multi-factor methods": "Metody dvoufaktorového ověřování",
|
"Multi-factor methods": "Metody dvoufaktorového ověřování",
|
||||||
"Multi-factor recover": "Obnovení dvoufaktorového ověřování",
|
"Multi-factor recover": "Obnovení dvoufaktorového ověřování",
|
||||||
@@ -551,6 +557,11 @@
|
|||||||
"Your phone is": "Váš telefon je",
|
"Your phone is": "Váš telefon je",
|
||||||
"preferred": "preferované"
|
"preferred": "preferované"
|
||||||
},
|
},
|
||||||
|
"mfaAccount": {
|
||||||
|
"Account Name": "Account Name",
|
||||||
|
"Issuer": "Issuer",
|
||||||
|
"Secret Key": "Secret Key"
|
||||||
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"Edit Model": "Upravit model",
|
"Edit Model": "Upravit model",
|
||||||
"Model text": "Text modelu",
|
"Model text": "Text modelu",
|
||||||
@@ -1136,6 +1147,7 @@
|
|||||||
"Link": "Odkaz",
|
"Link": "Odkaz",
|
||||||
"Location": "Místo",
|
"Location": "Místo",
|
||||||
"Location - Tooltip": "Město bydliště",
|
"Location - Tooltip": "Město bydliště",
|
||||||
|
"MFA accounts": "MFA accounts",
|
||||||
"Managed accounts": "Spravované účty",
|
"Managed accounts": "Spravované účty",
|
||||||
"Modify password...": "Změnit heslo...",
|
"Modify password...": "Změnit heslo...",
|
||||||
"Multi-factor authentication": "Vícefaktorové ověřování",
|
"Multi-factor authentication": "Vícefaktorové ověřování",
|
||||||
|
@@ -234,6 +234,8 @@
|
|||||||
"Enable": "Enable",
|
"Enable": "Enable",
|
||||||
"Enable dark logo": "Enable dark logo",
|
"Enable dark logo": "Enable dark logo",
|
||||||
"Enable dark logo - Tooltip": "Enable dark logo",
|
"Enable dark logo - Tooltip": "Enable dark logo",
|
||||||
|
"Enable tour": "Enable tour",
|
||||||
|
"Enable tour - Tooltip": "Display tour for users",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
"Enabled successfully": "Enabled successfully",
|
"Enabled successfully": "Enabled successfully",
|
||||||
"Enforcers": "Enforcers",
|
"Enforcers": "Enforcers",
|
||||||
@@ -265,6 +267,8 @@
|
|||||||
"Invitations": "Invitations",
|
"Invitations": "Invitations",
|
||||||
"Is enabled": "Ist aktiviert",
|
"Is enabled": "Ist aktiviert",
|
||||||
"Is enabled - Tooltip": "Festlegen, ob es verwendet werden kann",
|
"Is enabled - Tooltip": "Festlegen, ob es verwendet werden kann",
|
||||||
|
"Is shared": "Is shared",
|
||||||
|
"Is shared - Tooltip": "Share this application with other organizations",
|
||||||
"LDAPs": "LDAPs",
|
"LDAPs": "LDAPs",
|
||||||
"LDAPs - Tooltip": "LDAP-Server",
|
"LDAPs - Tooltip": "LDAP-Server",
|
||||||
"Languages": "Sprachen",
|
"Languages": "Sprachen",
|
||||||
@@ -441,6 +445,8 @@
|
|||||||
"Base DN": "Basis-DN",
|
"Base DN": "Basis-DN",
|
||||||
"Base DN - Tooltip": "Basis-DN während der LDAP-Suche",
|
"Base DN - Tooltip": "Basis-DN während der LDAP-Suche",
|
||||||
"CN": "KN",
|
"CN": "KN",
|
||||||
|
"Default group": "Default group",
|
||||||
|
"Default group - Tooltip": "Group to which users belong after synchronization",
|
||||||
"Edit LDAP": "LDAP bearbeiten",
|
"Edit LDAP": "LDAP bearbeiten",
|
||||||
"Enable SSL": "Aktivieren Sie SSL",
|
"Enable SSL": "Aktivieren Sie SSL",
|
||||||
"Enable SSL - Tooltip": "Ob SSL aktiviert werden soll",
|
"Enable SSL - Tooltip": "Ob SSL aktiviert werden soll",
|
||||||
@@ -551,6 +557,11 @@
|
|||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
},
|
},
|
||||||
|
"mfaAccount": {
|
||||||
|
"Account Name": "Account Name",
|
||||||
|
"Issuer": "Issuer",
|
||||||
|
"Secret Key": "Secret Key"
|
||||||
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"Edit Model": "Modell bearbeiten",
|
"Edit Model": "Modell bearbeiten",
|
||||||
"Model text": "Modelltext",
|
"Model text": "Modelltext",
|
||||||
@@ -1136,6 +1147,7 @@
|
|||||||
"Link": "Link",
|
"Link": "Link",
|
||||||
"Location": "Ort",
|
"Location": "Ort",
|
||||||
"Location - Tooltip": "Stadt des Wohnsitzes",
|
"Location - Tooltip": "Stadt des Wohnsitzes",
|
||||||
|
"MFA accounts": "MFA accounts",
|
||||||
"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",
|
||||||
|
@@ -234,6 +234,8 @@
|
|||||||
"Enable": "Enable",
|
"Enable": "Enable",
|
||||||
"Enable dark logo": "Enable dark logo",
|
"Enable dark logo": "Enable dark logo",
|
||||||
"Enable dark logo - Tooltip": "Enable dark logo",
|
"Enable dark logo - Tooltip": "Enable dark logo",
|
||||||
|
"Enable tour": "Enable tour",
|
||||||
|
"Enable tour - Tooltip": "Display tour for users",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
"Enabled successfully": "Enabled successfully",
|
"Enabled successfully": "Enabled successfully",
|
||||||
"Enforcers": "Enforcers",
|
"Enforcers": "Enforcers",
|
||||||
@@ -265,6 +267,8 @@
|
|||||||
"Invitations": "Invitations",
|
"Invitations": "Invitations",
|
||||||
"Is enabled": "Is enabled",
|
"Is enabled": "Is enabled",
|
||||||
"Is enabled - Tooltip": "Set whether it can use",
|
"Is enabled - Tooltip": "Set whether it can use",
|
||||||
|
"Is shared": "Is shared",
|
||||||
|
"Is shared - Tooltip": "Share this application with other organizations",
|
||||||
"LDAPs": "LDAPs",
|
"LDAPs": "LDAPs",
|
||||||
"LDAPs - Tooltip": "LDAP servers",
|
"LDAPs - Tooltip": "LDAP servers",
|
||||||
"Languages": "Languages",
|
"Languages": "Languages",
|
||||||
@@ -441,6 +445,8 @@
|
|||||||
"Base DN": "Base DN",
|
"Base DN": "Base DN",
|
||||||
"Base DN - Tooltip": "Base DN during LDAP search",
|
"Base DN - Tooltip": "Base DN during LDAP search",
|
||||||
"CN": "CN",
|
"CN": "CN",
|
||||||
|
"Default group": "Default group",
|
||||||
|
"Default group - Tooltip": "Group to which users belong after synchronization",
|
||||||
"Edit LDAP": "Edit LDAP",
|
"Edit LDAP": "Edit LDAP",
|
||||||
"Enable SSL": "Enable SSL",
|
"Enable SSL": "Enable SSL",
|
||||||
"Enable SSL - Tooltip": "Whether to enable SSL",
|
"Enable SSL - Tooltip": "Whether to enable SSL",
|
||||||
@@ -551,6 +557,11 @@
|
|||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
},
|
},
|
||||||
|
"mfaAccount": {
|
||||||
|
"Account Name": "Account Name",
|
||||||
|
"Issuer": "Issuer",
|
||||||
|
"Secret Key": "Secret Key"
|
||||||
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"Edit Model": "Edit Model",
|
"Edit Model": "Edit Model",
|
||||||
"Model text": "Model text",
|
"Model text": "Model text",
|
||||||
@@ -1136,6 +1147,7 @@
|
|||||||
"Link": "Link",
|
"Link": "Link",
|
||||||
"Location": "Location",
|
"Location": "Location",
|
||||||
"Location - Tooltip": "City of residence",
|
"Location - Tooltip": "City of residence",
|
||||||
|
"MFA accounts": "MFA accounts",
|
||||||
"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",
|
||||||
|
@@ -234,6 +234,8 @@
|
|||||||
"Enable": "Enable",
|
"Enable": "Enable",
|
||||||
"Enable dark logo": "Enable dark logo",
|
"Enable dark logo": "Enable dark logo",
|
||||||
"Enable dark logo - Tooltip": "Enable dark logo",
|
"Enable dark logo - Tooltip": "Enable dark logo",
|
||||||
|
"Enable tour": "Enable tour",
|
||||||
|
"Enable tour - Tooltip": "Display tour for users",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
"Enabled successfully": "Enabled successfully",
|
"Enabled successfully": "Enabled successfully",
|
||||||
"Enforcers": "Enforcers",
|
"Enforcers": "Enforcers",
|
||||||
@@ -265,6 +267,8 @@
|
|||||||
"Invitations": "Invitations",
|
"Invitations": "Invitations",
|
||||||
"Is enabled": "Está habilitado",
|
"Is enabled": "Está habilitado",
|
||||||
"Is enabled - Tooltip": "Establecer si se puede usar",
|
"Is enabled - Tooltip": "Establecer si se puede usar",
|
||||||
|
"Is shared": "Is shared",
|
||||||
|
"Is shared - Tooltip": "Share this application with other organizations",
|
||||||
"LDAPs": "LDAPs (Secure LDAP)",
|
"LDAPs": "LDAPs (Secure LDAP)",
|
||||||
"LDAPs - Tooltip": "Servidores LDAP",
|
"LDAPs - Tooltip": "Servidores LDAP",
|
||||||
"Languages": "Idiomas",
|
"Languages": "Idiomas",
|
||||||
@@ -441,6 +445,8 @@
|
|||||||
"Base DN": "DN base",
|
"Base DN": "DN base",
|
||||||
"Base DN - Tooltip": "Base DN durante la búsqueda LDAP",
|
"Base DN - Tooltip": "Base DN durante la búsqueda LDAP",
|
||||||
"CN": "CN (siglas en inglés) podría traducirse como \"Red de Comunicaciones\". Sin embargo, sin más contexto, no es posible saber cuál es el significado exacto de estas siglas",
|
"CN": "CN (siglas en inglés) podría traducirse como \"Red de Comunicaciones\". Sin embargo, sin más contexto, no es posible saber cuál es el significado exacto de estas siglas",
|
||||||
|
"Default group": "Default group",
|
||||||
|
"Default group - Tooltip": "Group to which users belong after synchronization",
|
||||||
"Edit LDAP": "Editar LDAP",
|
"Edit LDAP": "Editar LDAP",
|
||||||
"Enable SSL": "Habilitar SSL",
|
"Enable SSL": "Habilitar SSL",
|
||||||
"Enable SSL - Tooltip": "Si se habilita SSL",
|
"Enable SSL - Tooltip": "Si se habilita SSL",
|
||||||
@@ -551,6 +557,11 @@
|
|||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
},
|
},
|
||||||
|
"mfaAccount": {
|
||||||
|
"Account Name": "Account Name",
|
||||||
|
"Issuer": "Issuer",
|
||||||
|
"Secret Key": "Secret Key"
|
||||||
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"Edit Model": "Editar modelo",
|
"Edit Model": "Editar modelo",
|
||||||
"Model text": "Texto modelo",
|
"Model text": "Texto modelo",
|
||||||
@@ -1136,6 +1147,7 @@
|
|||||||
"Link": "Enlace",
|
"Link": "Enlace",
|
||||||
"Location": "Ubicación",
|
"Location": "Ubicación",
|
||||||
"Location - Tooltip": "Ciudad de residencia",
|
"Location - Tooltip": "Ciudad de residencia",
|
||||||
|
"MFA accounts": "MFA accounts",
|
||||||
"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",
|
||||||
|
@@ -234,6 +234,8 @@
|
|||||||
"Enable": "Enable",
|
"Enable": "Enable",
|
||||||
"Enable dark logo": "Enable dark logo",
|
"Enable dark logo": "Enable dark logo",
|
||||||
"Enable dark logo - Tooltip": "Enable dark logo",
|
"Enable dark logo - Tooltip": "Enable dark logo",
|
||||||
|
"Enable tour": "Enable tour",
|
||||||
|
"Enable tour - Tooltip": "Display tour for users",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
"Enabled successfully": "Enabled successfully",
|
"Enabled successfully": "Enabled successfully",
|
||||||
"Enforcers": "Enforcers",
|
"Enforcers": "Enforcers",
|
||||||
@@ -265,6 +267,8 @@
|
|||||||
"Invitations": "Invitations",
|
"Invitations": "Invitations",
|
||||||
"Is enabled": "Is enabled",
|
"Is enabled": "Is enabled",
|
||||||
"Is enabled - Tooltip": "Set whether it can use",
|
"Is enabled - Tooltip": "Set whether it can use",
|
||||||
|
"Is shared": "Is shared",
|
||||||
|
"Is shared - Tooltip": "Share this application with other organizations",
|
||||||
"LDAPs": "LDAPs",
|
"LDAPs": "LDAPs",
|
||||||
"LDAPs - Tooltip": "LDAP servers",
|
"LDAPs - Tooltip": "LDAP servers",
|
||||||
"Languages": "Languages",
|
"Languages": "Languages",
|
||||||
@@ -441,6 +445,8 @@
|
|||||||
"Base DN": "Base DN",
|
"Base DN": "Base DN",
|
||||||
"Base DN - Tooltip": "Base DN during LDAP search",
|
"Base DN - Tooltip": "Base DN during LDAP search",
|
||||||
"CN": "CN",
|
"CN": "CN",
|
||||||
|
"Default group": "Default group",
|
||||||
|
"Default group - Tooltip": "Group to which users belong after synchronization",
|
||||||
"Edit LDAP": "Edit LDAP",
|
"Edit LDAP": "Edit LDAP",
|
||||||
"Enable SSL": "Enable SSL",
|
"Enable SSL": "Enable SSL",
|
||||||
"Enable SSL - Tooltip": "Whether to enable SSL",
|
"Enable SSL - Tooltip": "Whether to enable SSL",
|
||||||
@@ -551,6 +557,11 @@
|
|||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
},
|
},
|
||||||
|
"mfaAccount": {
|
||||||
|
"Account Name": "Account Name",
|
||||||
|
"Issuer": "Issuer",
|
||||||
|
"Secret Key": "Secret Key"
|
||||||
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"Edit Model": "Edit Model",
|
"Edit Model": "Edit Model",
|
||||||
"Model text": "Model text",
|
"Model text": "Model text",
|
||||||
@@ -1136,6 +1147,7 @@
|
|||||||
"Link": "Link",
|
"Link": "Link",
|
||||||
"Location": "Location",
|
"Location": "Location",
|
||||||
"Location - Tooltip": "City of residence",
|
"Location - Tooltip": "City of residence",
|
||||||
|
"MFA accounts": "MFA accounts",
|
||||||
"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",
|
||||||
|
@@ -234,6 +234,8 @@
|
|||||||
"Enable": "Enable",
|
"Enable": "Enable",
|
||||||
"Enable dark logo": "Enable dark logo",
|
"Enable dark logo": "Enable dark logo",
|
||||||
"Enable dark logo - Tooltip": "Enable dark logo",
|
"Enable dark logo - Tooltip": "Enable dark logo",
|
||||||
|
"Enable tour": "Enable tour",
|
||||||
|
"Enable tour - Tooltip": "Display tour for users",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
"Enabled successfully": "Enabled successfully",
|
"Enabled successfully": "Enabled successfully",
|
||||||
"Enforcers": "Enforcers",
|
"Enforcers": "Enforcers",
|
||||||
@@ -265,6 +267,8 @@
|
|||||||
"Invitations": "Invitations",
|
"Invitations": "Invitations",
|
||||||
"Is enabled": "Is enabled",
|
"Is enabled": "Is enabled",
|
||||||
"Is enabled - Tooltip": "Set whether it can use",
|
"Is enabled - Tooltip": "Set whether it can use",
|
||||||
|
"Is shared": "Is shared",
|
||||||
|
"Is shared - Tooltip": "Share this application with other organizations",
|
||||||
"LDAPs": "LDAPs",
|
"LDAPs": "LDAPs",
|
||||||
"LDAPs - Tooltip": "LDAP servers",
|
"LDAPs - Tooltip": "LDAP servers",
|
||||||
"Languages": "Languages",
|
"Languages": "Languages",
|
||||||
@@ -441,6 +445,8 @@
|
|||||||
"Base DN": "Base DN",
|
"Base DN": "Base DN",
|
||||||
"Base DN - Tooltip": "Base DN during LDAP search",
|
"Base DN - Tooltip": "Base DN during LDAP search",
|
||||||
"CN": "CN",
|
"CN": "CN",
|
||||||
|
"Default group": "Default group",
|
||||||
|
"Default group - Tooltip": "Group to which users belong after synchronization",
|
||||||
"Edit LDAP": "Edit LDAP",
|
"Edit LDAP": "Edit LDAP",
|
||||||
"Enable SSL": "Enable SSL",
|
"Enable SSL": "Enable SSL",
|
||||||
"Enable SSL - Tooltip": "Whether to enable SSL",
|
"Enable SSL - Tooltip": "Whether to enable SSL",
|
||||||
@@ -551,6 +557,11 @@
|
|||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
},
|
},
|
||||||
|
"mfaAccount": {
|
||||||
|
"Account Name": "Account Name",
|
||||||
|
"Issuer": "Issuer",
|
||||||
|
"Secret Key": "Secret Key"
|
||||||
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"Edit Model": "Edit Model",
|
"Edit Model": "Edit Model",
|
||||||
"Model text": "Model text",
|
"Model text": "Model text",
|
||||||
@@ -1136,6 +1147,7 @@
|
|||||||
"Link": "Link",
|
"Link": "Link",
|
||||||
"Location": "Location",
|
"Location": "Location",
|
||||||
"Location - Tooltip": "City of residence",
|
"Location - Tooltip": "City of residence",
|
||||||
|
"MFA accounts": "MFA accounts",
|
||||||
"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",
|
||||||
|
@@ -234,6 +234,8 @@
|
|||||||
"Enable": "Activer",
|
"Enable": "Activer",
|
||||||
"Enable dark logo": "Enable dark logo",
|
"Enable dark logo": "Enable dark logo",
|
||||||
"Enable dark logo - Tooltip": "Enable dark logo",
|
"Enable dark logo - Tooltip": "Enable dark logo",
|
||||||
|
"Enable tour": "Enable tour",
|
||||||
|
"Enable tour - Tooltip": "Display tour for users",
|
||||||
"Enabled": "Activé",
|
"Enabled": "Activé",
|
||||||
"Enabled successfully": "Activé avec succès",
|
"Enabled successfully": "Activé avec succès",
|
||||||
"Enforcers": "Exécuteurs",
|
"Enforcers": "Exécuteurs",
|
||||||
@@ -265,6 +267,8 @@
|
|||||||
"Invitations": "Invitations",
|
"Invitations": "Invitations",
|
||||||
"Is enabled": "Est activé",
|
"Is enabled": "Est activé",
|
||||||
"Is enabled - Tooltip": "Définir s'il peut être utilisé",
|
"Is enabled - Tooltip": "Définir s'il peut être utilisé",
|
||||||
|
"Is shared": "Is shared",
|
||||||
|
"Is shared - Tooltip": "Share this application with other organizations",
|
||||||
"LDAPs": "LDAPs",
|
"LDAPs": "LDAPs",
|
||||||
"LDAPs - Tooltip": "Serveurs LDAP",
|
"LDAPs - Tooltip": "Serveurs LDAP",
|
||||||
"Languages": "Langues",
|
"Languages": "Langues",
|
||||||
@@ -441,6 +445,8 @@
|
|||||||
"Base DN": "DN racine",
|
"Base DN": "DN racine",
|
||||||
"Base DN - Tooltip": "Le DN racine (base DN) lors de la recherche LDAP",
|
"Base DN - Tooltip": "Le DN racine (base DN) lors de la recherche LDAP",
|
||||||
"CN": "CN",
|
"CN": "CN",
|
||||||
|
"Default group": "Default group",
|
||||||
|
"Default group - Tooltip": "Group to which users belong after synchronization",
|
||||||
"Edit LDAP": "Modifier le LDAP",
|
"Edit LDAP": "Modifier le LDAP",
|
||||||
"Enable SSL": "Activer SSL",
|
"Enable SSL": "Activer SSL",
|
||||||
"Enable SSL - Tooltip": "Activer SSL",
|
"Enable SSL - Tooltip": "Activer SSL",
|
||||||
@@ -551,6 +557,11 @@
|
|||||||
"Your phone is": "Votre téléphone est",
|
"Your phone is": "Votre téléphone est",
|
||||||
"preferred": "préféré"
|
"preferred": "préféré"
|
||||||
},
|
},
|
||||||
|
"mfaAccount": {
|
||||||
|
"Account Name": "Account Name",
|
||||||
|
"Issuer": "Issuer",
|
||||||
|
"Secret Key": "Secret Key"
|
||||||
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"Edit Model": "Modifier le modèle",
|
"Edit Model": "Modifier le modèle",
|
||||||
"Model text": "Définition du modèle",
|
"Model text": "Définition du modèle",
|
||||||
@@ -1136,6 +1147,7 @@
|
|||||||
"Link": "Lier",
|
"Link": "Lier",
|
||||||
"Location": "Localisation",
|
"Location": "Localisation",
|
||||||
"Location - Tooltip": "Ville de résidence",
|
"Location - Tooltip": "Ville de résidence",
|
||||||
|
"MFA accounts": "MFA accounts",
|
||||||
"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",
|
||||||
|
@@ -234,6 +234,8 @@
|
|||||||
"Enable": "Enable",
|
"Enable": "Enable",
|
||||||
"Enable dark logo": "Enable dark logo",
|
"Enable dark logo": "Enable dark logo",
|
||||||
"Enable dark logo - Tooltip": "Enable dark logo",
|
"Enable dark logo - Tooltip": "Enable dark logo",
|
||||||
|
"Enable tour": "Enable tour",
|
||||||
|
"Enable tour - Tooltip": "Display tour for users",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
"Enabled successfully": "Enabled successfully",
|
"Enabled successfully": "Enabled successfully",
|
||||||
"Enforcers": "Enforcers",
|
"Enforcers": "Enforcers",
|
||||||
@@ -265,6 +267,8 @@
|
|||||||
"Invitations": "Invitations",
|
"Invitations": "Invitations",
|
||||||
"Is enabled": "Is enabled",
|
"Is enabled": "Is enabled",
|
||||||
"Is enabled - Tooltip": "Set whether it can use",
|
"Is enabled - Tooltip": "Set whether it can use",
|
||||||
|
"Is shared": "Is shared",
|
||||||
|
"Is shared - Tooltip": "Share this application with other organizations",
|
||||||
"LDAPs": "LDAPs",
|
"LDAPs": "LDAPs",
|
||||||
"LDAPs - Tooltip": "LDAP servers",
|
"LDAPs - Tooltip": "LDAP servers",
|
||||||
"Languages": "Languages",
|
"Languages": "Languages",
|
||||||
@@ -441,6 +445,8 @@
|
|||||||
"Base DN": "Base DN",
|
"Base DN": "Base DN",
|
||||||
"Base DN - Tooltip": "Base DN during LDAP search",
|
"Base DN - Tooltip": "Base DN during LDAP search",
|
||||||
"CN": "CN",
|
"CN": "CN",
|
||||||
|
"Default group": "Default group",
|
||||||
|
"Default group - Tooltip": "Group to which users belong after synchronization",
|
||||||
"Edit LDAP": "Edit LDAP",
|
"Edit LDAP": "Edit LDAP",
|
||||||
"Enable SSL": "Enable SSL",
|
"Enable SSL": "Enable SSL",
|
||||||
"Enable SSL - Tooltip": "Whether to enable SSL",
|
"Enable SSL - Tooltip": "Whether to enable SSL",
|
||||||
@@ -551,6 +557,11 @@
|
|||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
},
|
},
|
||||||
|
"mfaAccount": {
|
||||||
|
"Account Name": "Account Name",
|
||||||
|
"Issuer": "Issuer",
|
||||||
|
"Secret Key": "Secret Key"
|
||||||
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"Edit Model": "Edit Model",
|
"Edit Model": "Edit Model",
|
||||||
"Model text": "Model text",
|
"Model text": "Model text",
|
||||||
@@ -1136,6 +1147,7 @@
|
|||||||
"Link": "Link",
|
"Link": "Link",
|
||||||
"Location": "Location",
|
"Location": "Location",
|
||||||
"Location - Tooltip": "City of residence",
|
"Location - Tooltip": "City of residence",
|
||||||
|
"MFA accounts": "MFA accounts",
|
||||||
"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",
|
||||||
|
@@ -234,6 +234,8 @@
|
|||||||
"Enable": "Enable",
|
"Enable": "Enable",
|
||||||
"Enable dark logo": "Enable dark logo",
|
"Enable dark logo": "Enable dark logo",
|
||||||
"Enable dark logo - Tooltip": "Enable dark logo",
|
"Enable dark logo - Tooltip": "Enable dark logo",
|
||||||
|
"Enable tour": "Enable tour",
|
||||||
|
"Enable tour - Tooltip": "Display tour for users",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
"Enabled successfully": "Enabled successfully",
|
"Enabled successfully": "Enabled successfully",
|
||||||
"Enforcers": "Enforcers",
|
"Enforcers": "Enforcers",
|
||||||
@@ -265,6 +267,8 @@
|
|||||||
"Invitations": "Invitations",
|
"Invitations": "Invitations",
|
||||||
"Is enabled": "Diaktifkan",
|
"Is enabled": "Diaktifkan",
|
||||||
"Is enabled - Tooltip": "Atur apakah itu dapat digunakan",
|
"Is enabled - Tooltip": "Atur apakah itu dapat digunakan",
|
||||||
|
"Is shared": "Is shared",
|
||||||
|
"Is shared - Tooltip": "Share this application with other organizations",
|
||||||
"LDAPs": "LDAPs",
|
"LDAPs": "LDAPs",
|
||||||
"LDAPs - Tooltip": "Server LDAP",
|
"LDAPs - Tooltip": "Server LDAP",
|
||||||
"Languages": "Bahasa-bahasa",
|
"Languages": "Bahasa-bahasa",
|
||||||
@@ -441,6 +445,8 @@
|
|||||||
"Base DN": "DN dasar",
|
"Base DN": "DN dasar",
|
||||||
"Base DN - Tooltip": "Base DN selama pencarian LDAP",
|
"Base DN - Tooltip": "Base DN selama pencarian LDAP",
|
||||||
"CN": "CN",
|
"CN": "CN",
|
||||||
|
"Default group": "Default group",
|
||||||
|
"Default group - Tooltip": "Group to which users belong after synchronization",
|
||||||
"Edit LDAP": "Mengedit LDAP",
|
"Edit LDAP": "Mengedit LDAP",
|
||||||
"Enable SSL": "Aktifkan SSL",
|
"Enable SSL": "Aktifkan SSL",
|
||||||
"Enable SSL - Tooltip": "Apakah untuk mengaktifkan SSL?",
|
"Enable SSL - Tooltip": "Apakah untuk mengaktifkan SSL?",
|
||||||
@@ -551,6 +557,11 @@
|
|||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
},
|
},
|
||||||
|
"mfaAccount": {
|
||||||
|
"Account Name": "Account Name",
|
||||||
|
"Issuer": "Issuer",
|
||||||
|
"Secret Key": "Secret Key"
|
||||||
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"Edit Model": "Mengedit Model",
|
"Edit Model": "Mengedit Model",
|
||||||
"Model text": "Teks Model",
|
"Model text": "Teks Model",
|
||||||
@@ -1136,6 +1147,7 @@
|
|||||||
"Link": "Tautan",
|
"Link": "Tautan",
|
||||||
"Location": "Lokasi",
|
"Location": "Lokasi",
|
||||||
"Location - Tooltip": "Kota tempat tinggal",
|
"Location - Tooltip": "Kota tempat tinggal",
|
||||||
|
"MFA accounts": "MFA accounts",
|
||||||
"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",
|
||||||
|
@@ -234,6 +234,8 @@
|
|||||||
"Enable": "Enable",
|
"Enable": "Enable",
|
||||||
"Enable dark logo": "Enable dark logo",
|
"Enable dark logo": "Enable dark logo",
|
||||||
"Enable dark logo - Tooltip": "Enable dark logo",
|
"Enable dark logo - Tooltip": "Enable dark logo",
|
||||||
|
"Enable tour": "Enable tour",
|
||||||
|
"Enable tour - Tooltip": "Display tour for users",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
"Enabled successfully": "Enabled successfully",
|
"Enabled successfully": "Enabled successfully",
|
||||||
"Enforcers": "Enforcers",
|
"Enforcers": "Enforcers",
|
||||||
@@ -265,6 +267,8 @@
|
|||||||
"Invitations": "Invitations",
|
"Invitations": "Invitations",
|
||||||
"Is enabled": "Is enabled",
|
"Is enabled": "Is enabled",
|
||||||
"Is enabled - Tooltip": "Set whether it can use",
|
"Is enabled - Tooltip": "Set whether it can use",
|
||||||
|
"Is shared": "Is shared",
|
||||||
|
"Is shared - Tooltip": "Share this application with other organizations",
|
||||||
"LDAPs": "LDAPs",
|
"LDAPs": "LDAPs",
|
||||||
"LDAPs - Tooltip": "LDAP servers",
|
"LDAPs - Tooltip": "LDAP servers",
|
||||||
"Languages": "Languages",
|
"Languages": "Languages",
|
||||||
@@ -441,6 +445,8 @@
|
|||||||
"Base DN": "Base DN",
|
"Base DN": "Base DN",
|
||||||
"Base DN - Tooltip": "Base DN during LDAP search",
|
"Base DN - Tooltip": "Base DN during LDAP search",
|
||||||
"CN": "CN",
|
"CN": "CN",
|
||||||
|
"Default group": "Default group",
|
||||||
|
"Default group - Tooltip": "Group to which users belong after synchronization",
|
||||||
"Edit LDAP": "Edit LDAP",
|
"Edit LDAP": "Edit LDAP",
|
||||||
"Enable SSL": "Enable SSL",
|
"Enable SSL": "Enable SSL",
|
||||||
"Enable SSL - Tooltip": "Whether to enable SSL",
|
"Enable SSL - Tooltip": "Whether to enable SSL",
|
||||||
@@ -551,6 +557,11 @@
|
|||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
},
|
},
|
||||||
|
"mfaAccount": {
|
||||||
|
"Account Name": "Account Name",
|
||||||
|
"Issuer": "Issuer",
|
||||||
|
"Secret Key": "Secret Key"
|
||||||
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"Edit Model": "Edit Model",
|
"Edit Model": "Edit Model",
|
||||||
"Model text": "Model text",
|
"Model text": "Model text",
|
||||||
@@ -1136,6 +1147,7 @@
|
|||||||
"Link": "Link",
|
"Link": "Link",
|
||||||
"Location": "Location",
|
"Location": "Location",
|
||||||
"Location - Tooltip": "City of residence",
|
"Location - Tooltip": "City of residence",
|
||||||
|
"MFA accounts": "MFA accounts",
|
||||||
"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",
|
||||||
|
@@ -234,6 +234,8 @@
|
|||||||
"Enable": "Enable",
|
"Enable": "Enable",
|
||||||
"Enable dark logo": "Enable dark logo",
|
"Enable dark logo": "Enable dark logo",
|
||||||
"Enable dark logo - Tooltip": "Enable dark logo",
|
"Enable dark logo - Tooltip": "Enable dark logo",
|
||||||
|
"Enable tour": "Enable tour",
|
||||||
|
"Enable tour - Tooltip": "Display tour for users",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
"Enabled successfully": "Enabled successfully",
|
"Enabled successfully": "Enabled successfully",
|
||||||
"Enforcers": "Enforcers",
|
"Enforcers": "Enforcers",
|
||||||
@@ -265,6 +267,8 @@
|
|||||||
"Invitations": "Invitations",
|
"Invitations": "Invitations",
|
||||||
"Is enabled": "可能になっています",
|
"Is enabled": "可能になっています",
|
||||||
"Is enabled - Tooltip": "使用可能かどうかを設定してください",
|
"Is enabled - Tooltip": "使用可能かどうかを設定してください",
|
||||||
|
"Is shared": "Is shared",
|
||||||
|
"Is shared - Tooltip": "Share this application with other organizations",
|
||||||
"LDAPs": "LDAP",
|
"LDAPs": "LDAP",
|
||||||
"LDAPs - Tooltip": "LDAPサーバー",
|
"LDAPs - Tooltip": "LDAPサーバー",
|
||||||
"Languages": "言語",
|
"Languages": "言語",
|
||||||
@@ -441,6 +445,8 @@
|
|||||||
"Base DN": "ベース DN",
|
"Base DN": "ベース DN",
|
||||||
"Base DN - Tooltip": "LDAP検索中のBase DN",
|
"Base DN - Tooltip": "LDAP検索中のBase DN",
|
||||||
"CN": "CN",
|
"CN": "CN",
|
||||||
|
"Default group": "Default group",
|
||||||
|
"Default group - Tooltip": "Group to which users belong after synchronization",
|
||||||
"Edit LDAP": "LDAPを編集",
|
"Edit LDAP": "LDAPを編集",
|
||||||
"Enable SSL": "SSL を有効にする",
|
"Enable SSL": "SSL を有効にする",
|
||||||
"Enable SSL - Tooltip": "SSLを有効にするかどうか",
|
"Enable SSL - Tooltip": "SSLを有効にするかどうか",
|
||||||
@@ -551,6 +557,11 @@
|
|||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
},
|
},
|
||||||
|
"mfaAccount": {
|
||||||
|
"Account Name": "Account Name",
|
||||||
|
"Issuer": "Issuer",
|
||||||
|
"Secret Key": "Secret Key"
|
||||||
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"Edit Model": "編集モデル",
|
"Edit Model": "編集モデル",
|
||||||
"Model text": "モデルテキスト",
|
"Model text": "モデルテキスト",
|
||||||
@@ -1136,6 +1147,7 @@
|
|||||||
"Link": "リンク",
|
"Link": "リンク",
|
||||||
"Location": "場所",
|
"Location": "場所",
|
||||||
"Location - Tooltip": "居住都市",
|
"Location - Tooltip": "居住都市",
|
||||||
|
"MFA accounts": "MFA accounts",
|
||||||
"Managed accounts": "管理アカウント",
|
"Managed accounts": "管理アカウント",
|
||||||
"Modify password...": "パスワードを変更する...",
|
"Modify password...": "パスワードを変更する...",
|
||||||
"Multi-factor authentication": "Multi-factor authentication",
|
"Multi-factor authentication": "Multi-factor authentication",
|
||||||
|
@@ -234,6 +234,8 @@
|
|||||||
"Enable": "Enable",
|
"Enable": "Enable",
|
||||||
"Enable dark logo": "Enable dark logo",
|
"Enable dark logo": "Enable dark logo",
|
||||||
"Enable dark logo - Tooltip": "Enable dark logo",
|
"Enable dark logo - Tooltip": "Enable dark logo",
|
||||||
|
"Enable tour": "Enable tour",
|
||||||
|
"Enable tour - Tooltip": "Display tour for users",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
"Enabled successfully": "Enabled successfully",
|
"Enabled successfully": "Enabled successfully",
|
||||||
"Enforcers": "Enforcers",
|
"Enforcers": "Enforcers",
|
||||||
@@ -265,6 +267,8 @@
|
|||||||
"Invitations": "Invitations",
|
"Invitations": "Invitations",
|
||||||
"Is enabled": "Is enabled",
|
"Is enabled": "Is enabled",
|
||||||
"Is enabled - Tooltip": "Set whether it can use",
|
"Is enabled - Tooltip": "Set whether it can use",
|
||||||
|
"Is shared": "Is shared",
|
||||||
|
"Is shared - Tooltip": "Share this application with other organizations",
|
||||||
"LDAPs": "LDAPs",
|
"LDAPs": "LDAPs",
|
||||||
"LDAPs - Tooltip": "LDAP servers",
|
"LDAPs - Tooltip": "LDAP servers",
|
||||||
"Languages": "Languages",
|
"Languages": "Languages",
|
||||||
@@ -441,6 +445,8 @@
|
|||||||
"Base DN": "Base DN",
|
"Base DN": "Base DN",
|
||||||
"Base DN - Tooltip": "Base DN during LDAP search",
|
"Base DN - Tooltip": "Base DN during LDAP search",
|
||||||
"CN": "CN",
|
"CN": "CN",
|
||||||
|
"Default group": "Default group",
|
||||||
|
"Default group - Tooltip": "Group to which users belong after synchronization",
|
||||||
"Edit LDAP": "Edit LDAP",
|
"Edit LDAP": "Edit LDAP",
|
||||||
"Enable SSL": "Enable SSL",
|
"Enable SSL": "Enable SSL",
|
||||||
"Enable SSL - Tooltip": "Whether to enable SSL",
|
"Enable SSL - Tooltip": "Whether to enable SSL",
|
||||||
@@ -551,6 +557,11 @@
|
|||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
},
|
},
|
||||||
|
"mfaAccount": {
|
||||||
|
"Account Name": "Account Name",
|
||||||
|
"Issuer": "Issuer",
|
||||||
|
"Secret Key": "Secret Key"
|
||||||
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"Edit Model": "Edit Model",
|
"Edit Model": "Edit Model",
|
||||||
"Model text": "Model text",
|
"Model text": "Model text",
|
||||||
@@ -1136,6 +1147,7 @@
|
|||||||
"Link": "Link",
|
"Link": "Link",
|
||||||
"Location": "Location",
|
"Location": "Location",
|
||||||
"Location - Tooltip": "City of residence",
|
"Location - Tooltip": "City of residence",
|
||||||
|
"MFA accounts": "MFA accounts",
|
||||||
"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",
|
||||||
|
@@ -234,6 +234,8 @@
|
|||||||
"Enable": "Enable",
|
"Enable": "Enable",
|
||||||
"Enable dark logo": "Enable dark logo",
|
"Enable dark logo": "Enable dark logo",
|
||||||
"Enable dark logo - Tooltip": "Enable dark logo",
|
"Enable dark logo - Tooltip": "Enable dark logo",
|
||||||
|
"Enable tour": "Enable tour",
|
||||||
|
"Enable tour - Tooltip": "Display tour for users",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
"Enabled successfully": "Enabled successfully",
|
"Enabled successfully": "Enabled successfully",
|
||||||
"Enforcers": "Enforcers",
|
"Enforcers": "Enforcers",
|
||||||
@@ -265,6 +267,8 @@
|
|||||||
"Invitations": "Invitations",
|
"Invitations": "Invitations",
|
||||||
"Is enabled": "활성화됩니다",
|
"Is enabled": "활성화됩니다",
|
||||||
"Is enabled - Tooltip": "사용 가능한 지 여부를 설정하세요",
|
"Is enabled - Tooltip": "사용 가능한 지 여부를 설정하세요",
|
||||||
|
"Is shared": "Is shared",
|
||||||
|
"Is shared - Tooltip": "Share this application with other organizations",
|
||||||
"LDAPs": "LDAPs",
|
"LDAPs": "LDAPs",
|
||||||
"LDAPs - Tooltip": "LDAP 서버",
|
"LDAPs - Tooltip": "LDAP 서버",
|
||||||
"Languages": "언어",
|
"Languages": "언어",
|
||||||
@@ -441,6 +445,8 @@
|
|||||||
"Base DN": "기본 DN",
|
"Base DN": "기본 DN",
|
||||||
"Base DN - Tooltip": "LDAP 검색 중 기본 DN",
|
"Base DN - Tooltip": "LDAP 검색 중 기본 DN",
|
||||||
"CN": "CN",
|
"CN": "CN",
|
||||||
|
"Default group": "Default group",
|
||||||
|
"Default group - Tooltip": "Group to which users belong after synchronization",
|
||||||
"Edit LDAP": "LDAP 수정",
|
"Edit LDAP": "LDAP 수정",
|
||||||
"Enable SSL": "SSL 활성화",
|
"Enable SSL": "SSL 활성화",
|
||||||
"Enable SSL - Tooltip": "SSL을 활성화할지 여부를 결정하십시오",
|
"Enable SSL - Tooltip": "SSL을 활성화할지 여부를 결정하십시오",
|
||||||
@@ -551,6 +557,11 @@
|
|||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
},
|
},
|
||||||
|
"mfaAccount": {
|
||||||
|
"Account Name": "Account Name",
|
||||||
|
"Issuer": "Issuer",
|
||||||
|
"Secret Key": "Secret Key"
|
||||||
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"Edit Model": "편집 형태 모델",
|
"Edit Model": "편집 형태 모델",
|
||||||
"Model text": "모델 텍스트",
|
"Model text": "모델 텍스트",
|
||||||
@@ -1136,6 +1147,7 @@
|
|||||||
"Link": "링크",
|
"Link": "링크",
|
||||||
"Location": "장소",
|
"Location": "장소",
|
||||||
"Location - Tooltip": "거주 도시",
|
"Location - Tooltip": "거주 도시",
|
||||||
|
"MFA accounts": "MFA accounts",
|
||||||
"Managed accounts": "관리 계정",
|
"Managed accounts": "관리 계정",
|
||||||
"Modify password...": "비밀번호 수정하기...",
|
"Modify password...": "비밀번호 수정하기...",
|
||||||
"Multi-factor authentication": "Multi-factor authentication",
|
"Multi-factor authentication": "Multi-factor authentication",
|
||||||
|
@@ -234,6 +234,8 @@
|
|||||||
"Enable": "Enable",
|
"Enable": "Enable",
|
||||||
"Enable dark logo": "Enable dark logo",
|
"Enable dark logo": "Enable dark logo",
|
||||||
"Enable dark logo - Tooltip": "Enable dark logo",
|
"Enable dark logo - Tooltip": "Enable dark logo",
|
||||||
|
"Enable tour": "Enable tour",
|
||||||
|
"Enable tour - Tooltip": "Display tour for users",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
"Enabled successfully": "Enabled successfully",
|
"Enabled successfully": "Enabled successfully",
|
||||||
"Enforcers": "Enforcers",
|
"Enforcers": "Enforcers",
|
||||||
@@ -265,6 +267,8 @@
|
|||||||
"Invitations": "Invitations",
|
"Invitations": "Invitations",
|
||||||
"Is enabled": "Is enabled",
|
"Is enabled": "Is enabled",
|
||||||
"Is enabled - Tooltip": "Set whether it can use",
|
"Is enabled - Tooltip": "Set whether it can use",
|
||||||
|
"Is shared": "Is shared",
|
||||||
|
"Is shared - Tooltip": "Share this application with other organizations",
|
||||||
"LDAPs": "LDAPs",
|
"LDAPs": "LDAPs",
|
||||||
"LDAPs - Tooltip": "LDAP servers",
|
"LDAPs - Tooltip": "LDAP servers",
|
||||||
"Languages": "Languages",
|
"Languages": "Languages",
|
||||||
@@ -441,6 +445,8 @@
|
|||||||
"Base DN": "Base DN",
|
"Base DN": "Base DN",
|
||||||
"Base DN - Tooltip": "Base DN during LDAP search",
|
"Base DN - Tooltip": "Base DN during LDAP search",
|
||||||
"CN": "CN",
|
"CN": "CN",
|
||||||
|
"Default group": "Default group",
|
||||||
|
"Default group - Tooltip": "Group to which users belong after synchronization",
|
||||||
"Edit LDAP": "Edit LDAP",
|
"Edit LDAP": "Edit LDAP",
|
||||||
"Enable SSL": "Enable SSL",
|
"Enable SSL": "Enable SSL",
|
||||||
"Enable SSL - Tooltip": "Whether to enable SSL",
|
"Enable SSL - Tooltip": "Whether to enable SSL",
|
||||||
@@ -551,6 +557,11 @@
|
|||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
},
|
},
|
||||||
|
"mfaAccount": {
|
||||||
|
"Account Name": "Account Name",
|
||||||
|
"Issuer": "Issuer",
|
||||||
|
"Secret Key": "Secret Key"
|
||||||
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"Edit Model": "Edit Model",
|
"Edit Model": "Edit Model",
|
||||||
"Model text": "Model text",
|
"Model text": "Model text",
|
||||||
@@ -1136,6 +1147,7 @@
|
|||||||
"Link": "Link",
|
"Link": "Link",
|
||||||
"Location": "Location",
|
"Location": "Location",
|
||||||
"Location - Tooltip": "City of residence",
|
"Location - Tooltip": "City of residence",
|
||||||
|
"MFA accounts": "MFA accounts",
|
||||||
"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",
|
||||||
|
@@ -234,6 +234,8 @@
|
|||||||
"Enable": "Enable",
|
"Enable": "Enable",
|
||||||
"Enable dark logo": "Enable dark logo",
|
"Enable dark logo": "Enable dark logo",
|
||||||
"Enable dark logo - Tooltip": "Enable dark logo",
|
"Enable dark logo - Tooltip": "Enable dark logo",
|
||||||
|
"Enable tour": "Enable tour",
|
||||||
|
"Enable tour - Tooltip": "Display tour for users",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
"Enabled successfully": "Enabled successfully",
|
"Enabled successfully": "Enabled successfully",
|
||||||
"Enforcers": "Enforcers",
|
"Enforcers": "Enforcers",
|
||||||
@@ -265,6 +267,8 @@
|
|||||||
"Invitations": "Invitations",
|
"Invitations": "Invitations",
|
||||||
"Is enabled": "Is enabled",
|
"Is enabled": "Is enabled",
|
||||||
"Is enabled - Tooltip": "Set whether it can use",
|
"Is enabled - Tooltip": "Set whether it can use",
|
||||||
|
"Is shared": "Is shared",
|
||||||
|
"Is shared - Tooltip": "Share this application with other organizations",
|
||||||
"LDAPs": "LDAPs",
|
"LDAPs": "LDAPs",
|
||||||
"LDAPs - Tooltip": "LDAP servers",
|
"LDAPs - Tooltip": "LDAP servers",
|
||||||
"Languages": "Languages",
|
"Languages": "Languages",
|
||||||
@@ -441,6 +445,8 @@
|
|||||||
"Base DN": "Base DN",
|
"Base DN": "Base DN",
|
||||||
"Base DN - Tooltip": "Base DN during LDAP search",
|
"Base DN - Tooltip": "Base DN during LDAP search",
|
||||||
"CN": "CN",
|
"CN": "CN",
|
||||||
|
"Default group": "Default group",
|
||||||
|
"Default group - Tooltip": "Group to which users belong after synchronization",
|
||||||
"Edit LDAP": "Edit LDAP",
|
"Edit LDAP": "Edit LDAP",
|
||||||
"Enable SSL": "Enable SSL",
|
"Enable SSL": "Enable SSL",
|
||||||
"Enable SSL - Tooltip": "Whether to enable SSL",
|
"Enable SSL - Tooltip": "Whether to enable SSL",
|
||||||
@@ -551,6 +557,11 @@
|
|||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
},
|
},
|
||||||
|
"mfaAccount": {
|
||||||
|
"Account Name": "Account Name",
|
||||||
|
"Issuer": "Issuer",
|
||||||
|
"Secret Key": "Secret Key"
|
||||||
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"Edit Model": "Edit Model",
|
"Edit Model": "Edit Model",
|
||||||
"Model text": "Model text",
|
"Model text": "Model text",
|
||||||
@@ -1136,6 +1147,7 @@
|
|||||||
"Link": "Link",
|
"Link": "Link",
|
||||||
"Location": "Location",
|
"Location": "Location",
|
||||||
"Location - Tooltip": "City of residence",
|
"Location - Tooltip": "City of residence",
|
||||||
|
"MFA accounts": "MFA accounts",
|
||||||
"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",
|
||||||
|
@@ -234,6 +234,8 @@
|
|||||||
"Enable": "Enable",
|
"Enable": "Enable",
|
||||||
"Enable dark logo": "Enable dark logo",
|
"Enable dark logo": "Enable dark logo",
|
||||||
"Enable dark logo - Tooltip": "Enable dark logo",
|
"Enable dark logo - Tooltip": "Enable dark logo",
|
||||||
|
"Enable tour": "Enable tour",
|
||||||
|
"Enable tour - Tooltip": "Display tour for users",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
"Enabled successfully": "Enabled successfully",
|
"Enabled successfully": "Enabled successfully",
|
||||||
"Enforcers": "Enforcers",
|
"Enforcers": "Enforcers",
|
||||||
@@ -265,6 +267,8 @@
|
|||||||
"Invitations": "Invitations",
|
"Invitations": "Invitations",
|
||||||
"Is enabled": "Is enabled",
|
"Is enabled": "Is enabled",
|
||||||
"Is enabled - Tooltip": "Set whether it can use",
|
"Is enabled - Tooltip": "Set whether it can use",
|
||||||
|
"Is shared": "Is shared",
|
||||||
|
"Is shared - Tooltip": "Share this application with other organizations",
|
||||||
"LDAPs": "LDAPs",
|
"LDAPs": "LDAPs",
|
||||||
"LDAPs - Tooltip": "LDAP servers",
|
"LDAPs - Tooltip": "LDAP servers",
|
||||||
"Languages": "Languages",
|
"Languages": "Languages",
|
||||||
@@ -441,6 +445,8 @@
|
|||||||
"Base DN": "Base DN",
|
"Base DN": "Base DN",
|
||||||
"Base DN - Tooltip": "Base DN during LDAP search",
|
"Base DN - Tooltip": "Base DN during LDAP search",
|
||||||
"CN": "CN",
|
"CN": "CN",
|
||||||
|
"Default group": "Default group",
|
||||||
|
"Default group - Tooltip": "Group to which users belong after synchronization",
|
||||||
"Edit LDAP": "Edit LDAP",
|
"Edit LDAP": "Edit LDAP",
|
||||||
"Enable SSL": "Enable SSL",
|
"Enable SSL": "Enable SSL",
|
||||||
"Enable SSL - Tooltip": "Whether to enable SSL",
|
"Enable SSL - Tooltip": "Whether to enable SSL",
|
||||||
@@ -551,6 +557,11 @@
|
|||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
},
|
},
|
||||||
|
"mfaAccount": {
|
||||||
|
"Account Name": "Account Name",
|
||||||
|
"Issuer": "Issuer",
|
||||||
|
"Secret Key": "Secret Key"
|
||||||
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"Edit Model": "Edit Model",
|
"Edit Model": "Edit Model",
|
||||||
"Model text": "Model text",
|
"Model text": "Model text",
|
||||||
@@ -1136,6 +1147,7 @@
|
|||||||
"Link": "Link",
|
"Link": "Link",
|
||||||
"Location": "Location",
|
"Location": "Location",
|
||||||
"Location - Tooltip": "City of residence",
|
"Location - Tooltip": "City of residence",
|
||||||
|
"MFA accounts": "MFA accounts",
|
||||||
"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",
|
||||||
|
@@ -234,6 +234,8 @@
|
|||||||
"Enable": "Habilitar",
|
"Enable": "Habilitar",
|
||||||
"Enable dark logo": "Enable dark logo",
|
"Enable dark logo": "Enable dark logo",
|
||||||
"Enable dark logo - Tooltip": "Enable dark logo",
|
"Enable dark logo - Tooltip": "Enable dark logo",
|
||||||
|
"Enable tour": "Enable tour",
|
||||||
|
"Enable tour - Tooltip": "Display tour for users",
|
||||||
"Enabled": "Habilitado",
|
"Enabled": "Habilitado",
|
||||||
"Enabled successfully": "Habilitado com sucesso",
|
"Enabled successfully": "Habilitado com sucesso",
|
||||||
"Enforcers": "Enforcers",
|
"Enforcers": "Enforcers",
|
||||||
@@ -265,6 +267,8 @@
|
|||||||
"Invitations": "Invitations",
|
"Invitations": "Invitations",
|
||||||
"Is enabled": "Está habilitado",
|
"Is enabled": "Está habilitado",
|
||||||
"Is enabled - Tooltip": "Define se está habilitado",
|
"Is enabled - Tooltip": "Define se está habilitado",
|
||||||
|
"Is shared": "Is shared",
|
||||||
|
"Is shared - Tooltip": "Share this application with other organizations",
|
||||||
"LDAPs": "LDAPs",
|
"LDAPs": "LDAPs",
|
||||||
"LDAPs - Tooltip": "Servidores LDAP",
|
"LDAPs - Tooltip": "Servidores LDAP",
|
||||||
"Languages": "Idiomas",
|
"Languages": "Idiomas",
|
||||||
@@ -441,6 +445,8 @@
|
|||||||
"Base DN": "Base DN",
|
"Base DN": "Base DN",
|
||||||
"Base DN - Tooltip": "Base DN durante a busca LDAP",
|
"Base DN - Tooltip": "Base DN durante a busca LDAP",
|
||||||
"CN": "CN",
|
"CN": "CN",
|
||||||
|
"Default group": "Default group",
|
||||||
|
"Default group - Tooltip": "Group to which users belong after synchronization",
|
||||||
"Edit LDAP": "Editar LDAP",
|
"Edit LDAP": "Editar LDAP",
|
||||||
"Enable SSL": "Habilitar SSL",
|
"Enable SSL": "Habilitar SSL",
|
||||||
"Enable SSL - Tooltip": "Se habilitar o SSL",
|
"Enable SSL - Tooltip": "Se habilitar o SSL",
|
||||||
@@ -551,6 +557,11 @@
|
|||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
},
|
},
|
||||||
|
"mfaAccount": {
|
||||||
|
"Account Name": "Account Name",
|
||||||
|
"Issuer": "Issuer",
|
||||||
|
"Secret Key": "Secret Key"
|
||||||
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"Edit Model": "Editar Modelo",
|
"Edit Model": "Editar Modelo",
|
||||||
"Model text": "Texto do Modelo",
|
"Model text": "Texto do Modelo",
|
||||||
@@ -1136,6 +1147,7 @@
|
|||||||
"Link": "Link",
|
"Link": "Link",
|
||||||
"Location": "Localização",
|
"Location": "Localização",
|
||||||
"Location - Tooltip": "Cidade de residência",
|
"Location - Tooltip": "Cidade de residência",
|
||||||
|
"MFA accounts": "MFA accounts",
|
||||||
"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",
|
||||||
|
@@ -234,6 +234,8 @@
|
|||||||
"Enable": "Включить",
|
"Enable": "Включить",
|
||||||
"Enable dark logo": "Enable dark logo",
|
"Enable dark logo": "Enable dark logo",
|
||||||
"Enable dark logo - Tooltip": "Enable dark logo",
|
"Enable dark logo - Tooltip": "Enable dark logo",
|
||||||
|
"Enable tour": "Enable tour",
|
||||||
|
"Enable tour - Tooltip": "Display tour for users",
|
||||||
"Enabled": "Включено",
|
"Enabled": "Включено",
|
||||||
"Enabled successfully": "Успешно включено",
|
"Enabled successfully": "Успешно включено",
|
||||||
"Enforcers": "Контролёры доступа",
|
"Enforcers": "Контролёры доступа",
|
||||||
@@ -265,6 +267,8 @@
|
|||||||
"Invitations": "Invitations",
|
"Invitations": "Invitations",
|
||||||
"Is enabled": "Включен",
|
"Is enabled": "Включен",
|
||||||
"Is enabled - Tooltip": "Установить, может ли использоваться",
|
"Is enabled - Tooltip": "Установить, может ли использоваться",
|
||||||
|
"Is shared": "Is shared",
|
||||||
|
"Is shared - Tooltip": "Share this application with other organizations",
|
||||||
"LDAPs": "LDAPы",
|
"LDAPs": "LDAPы",
|
||||||
"LDAPs - Tooltip": "LDAP серверы",
|
"LDAPs - Tooltip": "LDAP серверы",
|
||||||
"Languages": "Языки",
|
"Languages": "Языки",
|
||||||
@@ -441,6 +445,8 @@
|
|||||||
"Base DN": "Базовый DN",
|
"Base DN": "Базовый DN",
|
||||||
"Base DN - Tooltip": "Базовый DN во время поиска LDAP",
|
"Base DN - Tooltip": "Базовый DN во время поиска LDAP",
|
||||||
"CN": "КНР",
|
"CN": "КНР",
|
||||||
|
"Default group": "Default group",
|
||||||
|
"Default group - Tooltip": "Group to which users belong after synchronization",
|
||||||
"Edit LDAP": "Изменить LDAP",
|
"Edit LDAP": "Изменить LDAP",
|
||||||
"Enable SSL": "Включить SSL",
|
"Enable SSL": "Включить SSL",
|
||||||
"Enable SSL - Tooltip": "Перевод: Следует ли включать SSL",
|
"Enable SSL - Tooltip": "Перевод: Следует ли включать SSL",
|
||||||
@@ -551,6 +557,11 @@
|
|||||||
"Your phone is": "Ваш телефон",
|
"Your phone is": "Ваш телефон",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
},
|
},
|
||||||
|
"mfaAccount": {
|
||||||
|
"Account Name": "Account Name",
|
||||||
|
"Issuer": "Issuer",
|
||||||
|
"Secret Key": "Secret Key"
|
||||||
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"Edit Model": "Редактировать модель",
|
"Edit Model": "Редактировать модель",
|
||||||
"Model text": "Модельный текст",
|
"Model text": "Модельный текст",
|
||||||
@@ -1136,6 +1147,7 @@
|
|||||||
"Link": "Ссылка",
|
"Link": "Ссылка",
|
||||||
"Location": "Местоположение",
|
"Location": "Местоположение",
|
||||||
"Location - Tooltip": "Город проживания",
|
"Location - Tooltip": "Город проживания",
|
||||||
|
"MFA accounts": "MFA accounts",
|
||||||
"Managed accounts": "Управляемые аккаунты",
|
"Managed accounts": "Управляемые аккаунты",
|
||||||
"Modify password...": "Изменить пароль...",
|
"Modify password...": "Изменить пароль...",
|
||||||
"Multi-factor authentication": "Multi-factor authentication",
|
"Multi-factor authentication": "Multi-factor authentication",
|
||||||
|
@@ -234,6 +234,8 @@
|
|||||||
"Enable": "Povoliť",
|
"Enable": "Povoliť",
|
||||||
"Enable dark logo": "Povoliť tmavé logo",
|
"Enable dark logo": "Povoliť tmavé logo",
|
||||||
"Enable dark logo - Tooltip": "Povoliť tmavé logo",
|
"Enable dark logo - Tooltip": "Povoliť tmavé logo",
|
||||||
|
"Enable tour": "Enable tour",
|
||||||
|
"Enable tour - Tooltip": "Display tour for users",
|
||||||
"Enabled": "Povolené",
|
"Enabled": "Povolené",
|
||||||
"Enabled successfully": "Úspešne povolené",
|
"Enabled successfully": "Úspešne povolené",
|
||||||
"Enforcers": "Vynútitelia",
|
"Enforcers": "Vynútitelia",
|
||||||
@@ -265,6 +267,8 @@
|
|||||||
"Invitations": "Pozvánky",
|
"Invitations": "Pozvánky",
|
||||||
"Is enabled": "Je povolené",
|
"Is enabled": "Je povolené",
|
||||||
"Is enabled - Tooltip": "Nastavte, či môže byť použitý",
|
"Is enabled - Tooltip": "Nastavte, či môže byť použitý",
|
||||||
|
"Is shared": "Is shared",
|
||||||
|
"Is shared - Tooltip": "Share this application with other organizations",
|
||||||
"LDAPs": "LDAP",
|
"LDAPs": "LDAP",
|
||||||
"LDAPs - Tooltip": "LDAP servery",
|
"LDAPs - Tooltip": "LDAP servery",
|
||||||
"Languages": "Jazyky",
|
"Languages": "Jazyky",
|
||||||
@@ -441,6 +445,8 @@
|
|||||||
"Base DN": "Základný DN",
|
"Base DN": "Základný DN",
|
||||||
"Base DN - Tooltip": "Základný DN počas vyhľadávania LDAP",
|
"Base DN - Tooltip": "Základný DN počas vyhľadávania LDAP",
|
||||||
"CN": "CN",
|
"CN": "CN",
|
||||||
|
"Default group": "Default group",
|
||||||
|
"Default group - Tooltip": "Group to which users belong after synchronization",
|
||||||
"Edit LDAP": "Upraviť LDAP",
|
"Edit LDAP": "Upraviť LDAP",
|
||||||
"Enable SSL": "Povoliť SSL",
|
"Enable SSL": "Povoliť SSL",
|
||||||
"Enable SSL - Tooltip": "Či povoliť SSL",
|
"Enable SSL - Tooltip": "Či povoliť SSL",
|
||||||
@@ -551,6 +557,11 @@
|
|||||||
"Your phone is": "Váš telefón je",
|
"Your phone is": "Váš telefón je",
|
||||||
"preferred": "preferované"
|
"preferred": "preferované"
|
||||||
},
|
},
|
||||||
|
"mfaAccount": {
|
||||||
|
"Account Name": "Account Name",
|
||||||
|
"Issuer": "Issuer",
|
||||||
|
"Secret Key": "Secret Key"
|
||||||
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"Edit Model": "Upraviť model",
|
"Edit Model": "Upraviť model",
|
||||||
"Model text": "Text modelu",
|
"Model text": "Text modelu",
|
||||||
@@ -1136,6 +1147,7 @@
|
|||||||
"Link": "Odkaz",
|
"Link": "Odkaz",
|
||||||
"Location": "Miesto",
|
"Location": "Miesto",
|
||||||
"Location - Tooltip": "Mesto bydliska",
|
"Location - Tooltip": "Mesto bydliska",
|
||||||
|
"MFA accounts": "MFA accounts",
|
||||||
"Managed accounts": "Spravované účty",
|
"Managed accounts": "Spravované účty",
|
||||||
"Modify password...": "Zmeniť heslo...",
|
"Modify password...": "Zmeniť heslo...",
|
||||||
"Multi-factor authentication": "Viacfaktorová autentifikácia",
|
"Multi-factor authentication": "Viacfaktorová autentifikácia",
|
||||||
|
@@ -234,6 +234,8 @@
|
|||||||
"Enable": "Enable",
|
"Enable": "Enable",
|
||||||
"Enable dark logo": "Enable dark logo",
|
"Enable dark logo": "Enable dark logo",
|
||||||
"Enable dark logo - Tooltip": "Enable dark logo",
|
"Enable dark logo - Tooltip": "Enable dark logo",
|
||||||
|
"Enable tour": "Enable tour",
|
||||||
|
"Enable tour - Tooltip": "Display tour for users",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
"Enabled successfully": "Enabled successfully",
|
"Enabled successfully": "Enabled successfully",
|
||||||
"Enforcers": "Enforcers",
|
"Enforcers": "Enforcers",
|
||||||
@@ -265,6 +267,8 @@
|
|||||||
"Invitations": "Invitations",
|
"Invitations": "Invitations",
|
||||||
"Is enabled": "Is enabled",
|
"Is enabled": "Is enabled",
|
||||||
"Is enabled - Tooltip": "Set whether it can use",
|
"Is enabled - Tooltip": "Set whether it can use",
|
||||||
|
"Is shared": "Is shared",
|
||||||
|
"Is shared - Tooltip": "Share this application with other organizations",
|
||||||
"LDAPs": "LDAPs",
|
"LDAPs": "LDAPs",
|
||||||
"LDAPs - Tooltip": "LDAP servers",
|
"LDAPs - Tooltip": "LDAP servers",
|
||||||
"Languages": "Languages",
|
"Languages": "Languages",
|
||||||
@@ -441,6 +445,8 @@
|
|||||||
"Base DN": "Base DN",
|
"Base DN": "Base DN",
|
||||||
"Base DN - Tooltip": "Base DN during LDAP search",
|
"Base DN - Tooltip": "Base DN during LDAP search",
|
||||||
"CN": "CN",
|
"CN": "CN",
|
||||||
|
"Default group": "Default group",
|
||||||
|
"Default group - Tooltip": "Group to which users belong after synchronization",
|
||||||
"Edit LDAP": "Edit LDAP",
|
"Edit LDAP": "Edit LDAP",
|
||||||
"Enable SSL": "Enable SSL",
|
"Enable SSL": "Enable SSL",
|
||||||
"Enable SSL - Tooltip": "Whether to enable SSL",
|
"Enable SSL - Tooltip": "Whether to enable SSL",
|
||||||
@@ -551,6 +557,11 @@
|
|||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
},
|
},
|
||||||
|
"mfaAccount": {
|
||||||
|
"Account Name": "Account Name",
|
||||||
|
"Issuer": "Issuer",
|
||||||
|
"Secret Key": "Secret Key"
|
||||||
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"Edit Model": "Edit Model",
|
"Edit Model": "Edit Model",
|
||||||
"Model text": "Model text",
|
"Model text": "Model text",
|
||||||
@@ -1136,6 +1147,7 @@
|
|||||||
"Link": "Link",
|
"Link": "Link",
|
||||||
"Location": "Location",
|
"Location": "Location",
|
||||||
"Location - Tooltip": "City of residence",
|
"Location - Tooltip": "City of residence",
|
||||||
|
"MFA accounts": "MFA accounts",
|
||||||
"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",
|
||||||
|
@@ -234,6 +234,8 @@
|
|||||||
"Enable": "Etkinleştir",
|
"Enable": "Etkinleştir",
|
||||||
"Enable dark logo": "Enable dark logo",
|
"Enable dark logo": "Enable dark logo",
|
||||||
"Enable dark logo - Tooltip": "Enable dark logo",
|
"Enable dark logo - Tooltip": "Enable dark logo",
|
||||||
|
"Enable tour": "Enable tour",
|
||||||
|
"Enable tour - Tooltip": "Display tour for users",
|
||||||
"Enabled": "Etkin",
|
"Enabled": "Etkin",
|
||||||
"Enabled successfully": "Başarıyla etkinleştirildi",
|
"Enabled successfully": "Başarıyla etkinleştirildi",
|
||||||
"Enforcers": "Enforcers",
|
"Enforcers": "Enforcers",
|
||||||
@@ -265,6 +267,8 @@
|
|||||||
"Invitations": "Davetler",
|
"Invitations": "Davetler",
|
||||||
"Is enabled": "Aktif Mi?",
|
"Is enabled": "Aktif Mi?",
|
||||||
"Is enabled - Tooltip": "Set whether it can use",
|
"Is enabled - Tooltip": "Set whether it can use",
|
||||||
|
"Is shared": "Is shared",
|
||||||
|
"Is shared - Tooltip": "Share this application with other organizations",
|
||||||
"LDAPs": "LDAPs",
|
"LDAPs": "LDAPs",
|
||||||
"LDAPs - Tooltip": "LDAP servers",
|
"LDAPs - Tooltip": "LDAP servers",
|
||||||
"Languages": "Diller",
|
"Languages": "Diller",
|
||||||
@@ -441,6 +445,8 @@
|
|||||||
"Base DN": "Base DN",
|
"Base DN": "Base DN",
|
||||||
"Base DN - Tooltip": "Base DN during LDAP search",
|
"Base DN - Tooltip": "Base DN during LDAP search",
|
||||||
"CN": "CN",
|
"CN": "CN",
|
||||||
|
"Default group": "Default group",
|
||||||
|
"Default group - Tooltip": "Group to which users belong after synchronization",
|
||||||
"Edit LDAP": "Edit LDAP",
|
"Edit LDAP": "Edit LDAP",
|
||||||
"Enable SSL": "Enable SSL",
|
"Enable SSL": "Enable SSL",
|
||||||
"Enable SSL - Tooltip": "Whether to enable SSL",
|
"Enable SSL - Tooltip": "Whether to enable SSL",
|
||||||
@@ -551,6 +557,11 @@
|
|||||||
"Your phone is": "Telefon numaranız",
|
"Your phone is": "Telefon numaranız",
|
||||||
"preferred": "tercih edilen"
|
"preferred": "tercih edilen"
|
||||||
},
|
},
|
||||||
|
"mfaAccount": {
|
||||||
|
"Account Name": "Account Name",
|
||||||
|
"Issuer": "Issuer",
|
||||||
|
"Secret Key": "Secret Key"
|
||||||
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"Edit Model": "Modeli Düzenle",
|
"Edit Model": "Modeli Düzenle",
|
||||||
"Model text": "Model text",
|
"Model text": "Model text",
|
||||||
@@ -1136,6 +1147,7 @@
|
|||||||
"Link": "Link",
|
"Link": "Link",
|
||||||
"Location": "Location",
|
"Location": "Location",
|
||||||
"Location - Tooltip": "City of residence",
|
"Location - Tooltip": "City of residence",
|
||||||
|
"MFA accounts": "MFA accounts",
|
||||||
"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",
|
||||||
|
@@ -234,6 +234,8 @@
|
|||||||
"Enable": "Увімкнути",
|
"Enable": "Увімкнути",
|
||||||
"Enable dark logo": "Увімкнути темний логотип",
|
"Enable dark logo": "Увімкнути темний логотип",
|
||||||
"Enable dark logo - Tooltip": "Увімкнути темний логотип",
|
"Enable dark logo - Tooltip": "Увімкнути темний логотип",
|
||||||
|
"Enable tour": "Enable tour",
|
||||||
|
"Enable tour - Tooltip": "Display tour for users",
|
||||||
"Enabled": "Увімкнено",
|
"Enabled": "Увімкнено",
|
||||||
"Enabled successfully": "Успішно ввімкнено",
|
"Enabled successfully": "Успішно ввімкнено",
|
||||||
"Enforcers": "Силовики",
|
"Enforcers": "Силовики",
|
||||||
@@ -265,6 +267,8 @@
|
|||||||
"Invitations": "Запрошення",
|
"Invitations": "Запрошення",
|
||||||
"Is enabled": "Увімкнено",
|
"Is enabled": "Увімкнено",
|
||||||
"Is enabled - Tooltip": "Встановіть, чи можна використовувати",
|
"Is enabled - Tooltip": "Встановіть, чи можна використовувати",
|
||||||
|
"Is shared": "Is shared",
|
||||||
|
"Is shared - Tooltip": "Share this application with other organizations",
|
||||||
"LDAPs": "LDAP",
|
"LDAPs": "LDAP",
|
||||||
"LDAPs - Tooltip": "Сервери LDAP",
|
"LDAPs - Tooltip": "Сервери LDAP",
|
||||||
"Languages": "Мови",
|
"Languages": "Мови",
|
||||||
@@ -441,6 +445,8 @@
|
|||||||
"Base DN": "Базовий DN",
|
"Base DN": "Базовий DN",
|
||||||
"Base DN - Tooltip": "Базовий DN під час пошуку LDAP",
|
"Base DN - Tooltip": "Базовий DN під час пошуку LDAP",
|
||||||
"CN": "CN",
|
"CN": "CN",
|
||||||
|
"Default group": "Default group",
|
||||||
|
"Default group - Tooltip": "Group to which users belong after synchronization",
|
||||||
"Edit LDAP": "Редагувати LDAP",
|
"Edit LDAP": "Редагувати LDAP",
|
||||||
"Enable SSL": "Увімкніть SSL",
|
"Enable SSL": "Увімкніть SSL",
|
||||||
"Enable SSL - Tooltip": "Чи вмикати SSL",
|
"Enable SSL - Tooltip": "Чи вмикати SSL",
|
||||||
@@ -551,6 +557,11 @@
|
|||||||
"Your phone is": "Ваш телефон",
|
"Your phone is": "Ваш телефон",
|
||||||
"preferred": "бажаний"
|
"preferred": "бажаний"
|
||||||
},
|
},
|
||||||
|
"mfaAccount": {
|
||||||
|
"Account Name": "Account Name",
|
||||||
|
"Issuer": "Issuer",
|
||||||
|
"Secret Key": "Secret Key"
|
||||||
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"Edit Model": "Редагувати модель",
|
"Edit Model": "Редагувати модель",
|
||||||
"Model text": "Текст моделі",
|
"Model text": "Текст моделі",
|
||||||
@@ -1136,6 +1147,7 @@
|
|||||||
"Link": "Посилання",
|
"Link": "Посилання",
|
||||||
"Location": "Місцезнаходження",
|
"Location": "Місцезнаходження",
|
||||||
"Location - Tooltip": "Місто проживання",
|
"Location - Tooltip": "Місто проживання",
|
||||||
|
"MFA accounts": "MFA accounts",
|
||||||
"Managed accounts": "Керовані облікові записи",
|
"Managed accounts": "Керовані облікові записи",
|
||||||
"Modify password...": "Змінити пароль...",
|
"Modify password...": "Змінити пароль...",
|
||||||
"Multi-factor authentication": "Багатофакторна аутентифікація",
|
"Multi-factor authentication": "Багатофакторна аутентифікація",
|
||||||
|
@@ -234,6 +234,8 @@
|
|||||||
"Enable": "Enable",
|
"Enable": "Enable",
|
||||||
"Enable dark logo": "Enable dark logo",
|
"Enable dark logo": "Enable dark logo",
|
||||||
"Enable dark logo - Tooltip": "Enable dark logo",
|
"Enable dark logo - Tooltip": "Enable dark logo",
|
||||||
|
"Enable tour": "Enable tour",
|
||||||
|
"Enable tour - Tooltip": "Display tour for users",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
"Enabled successfully": "Enabled successfully",
|
"Enabled successfully": "Enabled successfully",
|
||||||
"Enforcers": "Enforcers",
|
"Enforcers": "Enforcers",
|
||||||
@@ -265,6 +267,8 @@
|
|||||||
"Invitations": "Invitations",
|
"Invitations": "Invitations",
|
||||||
"Is enabled": "Đã được kích hoạt",
|
"Is enabled": "Đã được kích hoạt",
|
||||||
"Is enabled - Tooltip": "Đặt liệu nó có thể sử dụng hay không",
|
"Is enabled - Tooltip": "Đặt liệu nó có thể sử dụng hay không",
|
||||||
|
"Is shared": "Is shared",
|
||||||
|
"Is shared - Tooltip": "Share this application with other organizations",
|
||||||
"LDAPs": "LDAPs",
|
"LDAPs": "LDAPs",
|
||||||
"LDAPs - Tooltip": "Máy chủ LDAP",
|
"LDAPs - Tooltip": "Máy chủ LDAP",
|
||||||
"Languages": "Ngôn ngữ",
|
"Languages": "Ngôn ngữ",
|
||||||
@@ -441,6 +445,8 @@
|
|||||||
"Base DN": "DN cơ sở",
|
"Base DN": "DN cơ sở",
|
||||||
"Base DN - Tooltip": "Đơn vị căn bản (Base DN) trong quá trình tìm kiếm LDAP",
|
"Base DN - Tooltip": "Đơn vị căn bản (Base DN) trong quá trình tìm kiếm LDAP",
|
||||||
"CN": "CN",
|
"CN": "CN",
|
||||||
|
"Default group": "Default group",
|
||||||
|
"Default group - Tooltip": "Group to which users belong after synchronization",
|
||||||
"Edit LDAP": "Sửa LDAP",
|
"Edit LDAP": "Sửa LDAP",
|
||||||
"Enable SSL": "Kích hoạt SSL",
|
"Enable SSL": "Kích hoạt SSL",
|
||||||
"Enable SSL - Tooltip": "Có nên kích hoạt SSL hay không?",
|
"Enable SSL - Tooltip": "Có nên kích hoạt SSL hay không?",
|
||||||
@@ -551,6 +557,11 @@
|
|||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
},
|
},
|
||||||
|
"mfaAccount": {
|
||||||
|
"Account Name": "Account Name",
|
||||||
|
"Issuer": "Issuer",
|
||||||
|
"Secret Key": "Secret Key"
|
||||||
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"Edit Model": "Sửa mô hình",
|
"Edit Model": "Sửa mô hình",
|
||||||
"Model text": "Văn bản mẫu",
|
"Model text": "Văn bản mẫu",
|
||||||
@@ -1136,6 +1147,7 @@
|
|||||||
"Link": "Liên kết",
|
"Link": "Liên kết",
|
||||||
"Location": "Vị trí",
|
"Location": "Vị trí",
|
||||||
"Location - Tooltip": "Thành phố cư trú",
|
"Location - Tooltip": "Thành phố cư trú",
|
||||||
|
"MFA accounts": "MFA accounts",
|
||||||
"Managed accounts": "Quản lý tài khoản",
|
"Managed accounts": "Quản lý tài khoản",
|
||||||
"Modify password...": "Sửa đổi mật khẩu...",
|
"Modify password...": "Sửa đổi mật khẩu...",
|
||||||
"Multi-factor authentication": "Multi-factor authentication",
|
"Multi-factor authentication": "Multi-factor authentication",
|
||||||
|
@@ -234,6 +234,8 @@
|
|||||||
"Enable": "启用",
|
"Enable": "启用",
|
||||||
"Enable dark logo": "开启暗黑Logo",
|
"Enable dark logo": "开启暗黑Logo",
|
||||||
"Enable dark logo - Tooltip": "开启暗黑Logo",
|
"Enable dark logo - Tooltip": "开启暗黑Logo",
|
||||||
|
"Enable tour": "启用导引",
|
||||||
|
"Enable tour - Tooltip": "为用户显示导引",
|
||||||
"Enabled": "已开启",
|
"Enabled": "已开启",
|
||||||
"Enabled successfully": "启用成功",
|
"Enabled successfully": "启用成功",
|
||||||
"Enforcers": "Casbin执行器",
|
"Enforcers": "Casbin执行器",
|
||||||
@@ -265,6 +267,8 @@
|
|||||||
"Invitations": "邀请码",
|
"Invitations": "邀请码",
|
||||||
"Is enabled": "已启用",
|
"Is enabled": "已启用",
|
||||||
"Is enabled - Tooltip": "是否启用",
|
"Is enabled - Tooltip": "是否启用",
|
||||||
|
"Is shared": "是否共享",
|
||||||
|
"Is shared - Tooltip": "与其他组织共享此应用",
|
||||||
"LDAPs": "LDAP",
|
"LDAPs": "LDAP",
|
||||||
"LDAPs - Tooltip": "LDAPs",
|
"LDAPs - Tooltip": "LDAPs",
|
||||||
"Languages": "语言",
|
"Languages": "语言",
|
||||||
@@ -441,6 +445,8 @@
|
|||||||
"Base DN": "基本DN",
|
"Base DN": "基本DN",
|
||||||
"Base DN - Tooltip": "LDAP搜索时的基DN",
|
"Base DN - Tooltip": "LDAP搜索时的基DN",
|
||||||
"CN": "CN",
|
"CN": "CN",
|
||||||
|
"Default group": "默认群组",
|
||||||
|
"Default group - Tooltip": "同步用户后用户所在的群组",
|
||||||
"Edit LDAP": "编辑LDAP",
|
"Edit LDAP": "编辑LDAP",
|
||||||
"Enable SSL": "启用SSL",
|
"Enable SSL": "启用SSL",
|
||||||
"Enable SSL - Tooltip": "是否启用SSL",
|
"Enable SSL - Tooltip": "是否启用SSL",
|
||||||
@@ -551,6 +557,11 @@
|
|||||||
"Your phone is": "你的手机号",
|
"Your phone is": "你的手机号",
|
||||||
"preferred": "首选"
|
"preferred": "首选"
|
||||||
},
|
},
|
||||||
|
"mfaAccount": {
|
||||||
|
"Account Name": "账号名",
|
||||||
|
"Issuer": "Issuer",
|
||||||
|
"Secret Key": "密钥"
|
||||||
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"Edit Model": "编辑模型",
|
"Edit Model": "编辑模型",
|
||||||
"Model text": "模型文本",
|
"Model text": "模型文本",
|
||||||
@@ -1136,6 +1147,7 @@
|
|||||||
"Link": "绑定",
|
"Link": "绑定",
|
||||||
"Location": "城市",
|
"Location": "城市",
|
||||||
"Location - Tooltip": "居住地址所在的城市",
|
"Location - Tooltip": "居住地址所在的城市",
|
||||||
|
"MFA accounts": "MFA账户",
|
||||||
"Managed accounts": "托管账户",
|
"Managed accounts": "托管账户",
|
||||||
"Modify password...": "编辑密码...",
|
"Modify password...": "编辑密码...",
|
||||||
"Multi-factor authentication": "多因素认证",
|
"Multi-factor authentication": "多因素认证",
|
||||||
|
Reference in New Issue
Block a user