mirror of
https://github.com/casdoor/casdoor.git
synced 2025-05-22 18:25:47 +08:00
feat: add invitation code for signup feature (#2249)
* feat: add invitation code for signup feature * feat: add invitation code for signup feature
This commit is contained in:
parent
a0c5eb241f
commit
f5e0461cae
23
form/auth.go
23
form/auth.go
@ -17,17 +17,18 @@ package form
|
|||||||
type AuthForm struct {
|
type AuthForm struct {
|
||||||
Type string `json:"type"`
|
Type string `json:"type"`
|
||||||
|
|
||||||
Organization string `json:"organization"`
|
Organization string `json:"organization"`
|
||||||
Username string `json:"username"`
|
Username string `json:"username"`
|
||||||
Password string `json:"password"`
|
Password string `json:"password"`
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
FirstName string `json:"firstName"`
|
FirstName string `json:"firstName"`
|
||||||
LastName string `json:"lastName"`
|
LastName string `json:"lastName"`
|
||||||
Email string `json:"email"`
|
Email string `json:"email"`
|
||||||
Phone string `json:"phone"`
|
Phone string `json:"phone"`
|
||||||
Affiliation string `json:"affiliation"`
|
Affiliation string `json:"affiliation"`
|
||||||
IdCard string `json:"idCard"`
|
IdCard string `json:"idCard"`
|
||||||
Region string `json:"region"`
|
Region string `json:"region"`
|
||||||
|
InvitationCode string `json:"invitationCode"`
|
||||||
|
|
||||||
Application string `json:"application"`
|
Application string `json:"application"`
|
||||||
ClientId string `json:"clientId"`
|
ClientId string `json:"clientId"`
|
||||||
|
@ -58,6 +58,7 @@ type Application struct {
|
|||||||
GrantTypes []string `xorm:"varchar(1000)" json:"grantTypes"`
|
GrantTypes []string `xorm:"varchar(1000)" json:"grantTypes"`
|
||||||
OrganizationObj *Organization `xorm:"-" json:"organizationObj"`
|
OrganizationObj *Organization `xorm:"-" json:"organizationObj"`
|
||||||
Tags []string `xorm:"mediumtext" json:"tags"`
|
Tags []string `xorm:"mediumtext" json:"tags"`
|
||||||
|
InvitationCodes []string `xorm:"varchar(200)" json:"invitationCodes"`
|
||||||
|
|
||||||
ClientId string `xorm:"varchar(100)" json:"clientId"`
|
ClientId string `xorm:"varchar(100)" json:"clientId"`
|
||||||
ClientSecret string `xorm:"varchar(100)" json:"clientSecret"`
|
ClientSecret string `xorm:"varchar(100)" json:"clientSecret"`
|
||||||
@ -311,6 +312,11 @@ func GetMaskedApplication(application *Application, userId string) *Application
|
|||||||
application.OrganizationObj.PasswordSalt = "***"
|
application.OrganizationObj.PasswordSalt = "***"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if application.InvitationCodes != nil {
|
||||||
|
application.InvitationCodes = []string{"***"}
|
||||||
|
}
|
||||||
|
|
||||||
return application
|
return application
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -124,6 +124,16 @@ func CheckUserSignup(application *Application, organization *Organization, form
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if len(application.InvitationCodes) > 0 {
|
||||||
|
if form.InvitationCode == "" {
|
||||||
|
return i18n.Translate(lang, "check:Invitation code cannot be blank")
|
||||||
|
} else {
|
||||||
|
if !util.InSlice(application.InvitationCodes, form.InvitationCode) {
|
||||||
|
return i18n.Translate(lang, "check:Invitation code is invalid")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import {Button, Card, Col, ConfigProvider, Input, Popover, Radio, Result, Row, Select, Switch, Upload} from "antd";
|
import {Button, Card, Col, ConfigProvider, Input, List, Popover, Radio, Result, Row, Select, Space, Switch, Upload} from "antd";
|
||||||
import {CopyOutlined, LinkOutlined, UploadOutlined} from "@ant-design/icons";
|
import {CopyOutlined, LinkOutlined, UploadOutlined} from "@ant-design/icons";
|
||||||
import * as ApplicationBackend from "./backend/ApplicationBackend";
|
import * as ApplicationBackend from "./backend/ApplicationBackend";
|
||||||
import * as CertBackend from "./backend/CertBackend";
|
import * as CertBackend from "./backend/CertBackend";
|
||||||
@ -138,6 +138,10 @@ class ApplicationEditPage extends React.Component {
|
|||||||
application.tags = [];
|
application.tags = [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (application.invitationCodes === null) {
|
||||||
|
application.invitationCodes = [];
|
||||||
|
}
|
||||||
|
|
||||||
this.setState({
|
this.setState({
|
||||||
application: application,
|
application: application,
|
||||||
});
|
});
|
||||||
@ -201,7 +205,6 @@ class ApplicationEditPage extends React.Component {
|
|||||||
|
|
||||||
updateApplicationField(key, value) {
|
updateApplicationField(key, value) {
|
||||||
value = this.parseApplicationField(key, value);
|
value = this.parseApplicationField(key, value);
|
||||||
|
|
||||||
const application = this.state.application;
|
const application = this.state.application;
|
||||||
application[key] = value;
|
application[key] = value;
|
||||||
this.setState({
|
this.setState({
|
||||||
@ -813,18 +816,68 @@ class ApplicationEditPage extends React.Component {
|
|||||||
</Row>
|
</Row>
|
||||||
{
|
{
|
||||||
!this.state.application.enableSignUp ? null : (
|
!this.state.application.enableSignUp ? null : (
|
||||||
<Row style={{marginTop: "20px"}} >
|
<React.Fragment>
|
||||||
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
<Row style={{marginTop: "20px"}} >
|
||||||
{Setting.getLabel(i18next.t("application:Signup items"), i18next.t("application:Signup items - Tooltip"))} :
|
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
||||||
</Col>
|
{Setting.getLabel(i18next.t("application:Signup items"), i18next.t("application:Signup items - Tooltip"))} :
|
||||||
<Col span={22} >
|
</Col>
|
||||||
<SignupTable
|
<Col span={22} >
|
||||||
title={i18next.t("application:Signup items")}
|
<SignupTable
|
||||||
table={this.state.application.signupItems}
|
title={i18next.t("application:Signup items")}
|
||||||
onUpdateTable={(value) => {this.updateApplicationField("signupItems", value);}}
|
table={this.state.application.signupItems}
|
||||||
/>
|
onUpdateTable={(value) => {
|
||||||
</Col>
|
this.updateApplicationField("signupItems", value);
|
||||||
</Row>
|
}}
|
||||||
|
/>
|
||||||
|
</Col>
|
||||||
|
</Row>
|
||||||
|
<Row style={{marginTop: "20px"}} >
|
||||||
|
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
||||||
|
{Setting.getLabel(i18next.t("application:Invitation code"), i18next.t("application:Invitation code - Tooltip"))} :
|
||||||
|
</Col>
|
||||||
|
<Col span={22} >
|
||||||
|
<List
|
||||||
|
header={
|
||||||
|
<Button type="primary" onClick={() => {
|
||||||
|
this.updateApplicationField("invitationCodes", Setting.addRow(this.state.application.invitationCodes, Setting.getRandomName()));
|
||||||
|
}
|
||||||
|
}>
|
||||||
|
{i18next.t("general:Add")}
|
||||||
|
</Button>
|
||||||
|
}
|
||||||
|
dataSource={this.state.application.invitationCodes.map(code => {
|
||||||
|
return {code: code};
|
||||||
|
})}
|
||||||
|
renderItem={(item, index) => (
|
||||||
|
<List.Item key={index}>
|
||||||
|
<Space>
|
||||||
|
<Input value={item.code} onChange={e => {
|
||||||
|
const invitationCodes = [...this.state.application.invitationCodes];
|
||||||
|
invitationCodes[index] = e.target.value;
|
||||||
|
this.updateApplicationField("invitationCodes", invitationCodes);
|
||||||
|
}} />
|
||||||
|
</Space>
|
||||||
|
<Space>
|
||||||
|
<Button icon={<CopyOutlined />} onClick={() => {
|
||||||
|
copy(item.code);
|
||||||
|
Setting.showMessage("success", i18next.t("application:Invitation code copied to clipboard successfully"));
|
||||||
|
}
|
||||||
|
}>
|
||||||
|
{i18next.t("general:Copy")}
|
||||||
|
</Button>
|
||||||
|
<Button type="primary" danger onClick={() => {
|
||||||
|
this.updateApplicationField("invitationCodes", this.state.application.invitationCodes.filter(code => code !== item.code));
|
||||||
|
}
|
||||||
|
}>
|
||||||
|
{i18next.t("general:Delete")}
|
||||||
|
</Button>
|
||||||
|
</Space>
|
||||||
|
</List.Item>
|
||||||
|
)}
|
||||||
|
/>
|
||||||
|
</Col>
|
||||||
|
</Row>
|
||||||
|
</React.Fragment>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
<Row style={{marginTop: "20px"}} >
|
<Row style={{marginTop: "20px"}} >
|
||||||
|
@ -506,6 +506,21 @@ class SignupPage extends React.Component {
|
|||||||
<Input.Password />
|
<Input.Password />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
);
|
);
|
||||||
|
} else if (signupItem.name === "Invitation code") {
|
||||||
|
return (
|
||||||
|
<Form.Item
|
||||||
|
name="invitationCode"
|
||||||
|
label={i18next.t("application:Invitation code")}
|
||||||
|
rules={[
|
||||||
|
{
|
||||||
|
required: required,
|
||||||
|
message: i18next.t("signup:Please input your invitation code!"),
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
>
|
||||||
|
<Input />
|
||||||
|
</Form.Item>
|
||||||
|
);
|
||||||
} else if (signupItem.name === "Agreement") {
|
} else if (signupItem.name === "Agreement") {
|
||||||
return AgreementModal.renderAgreementFormItem(application, required, tailFormItemLayout, this);
|
return AgreementModal.renderAgreementFormItem(application, required, tailFormItemLayout, this);
|
||||||
}
|
}
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"Grant types - Tooltip": "Select which grant types are allowed in the OAuth protocol",
|
"Grant types - Tooltip": "Select which grant types are allowed in the OAuth protocol",
|
||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
|
"Invitation code": "Invitation code",
|
||||||
|
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||||
|
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||||
"Left": "Left",
|
"Left": "Left",
|
||||||
"Logged in successfully": "Logged in successfully",
|
"Logged in successfully": "Logged in successfully",
|
||||||
"Logged out successfully": "Logged out successfully",
|
"Logged out successfully": "Logged out successfully",
|
||||||
@ -186,9 +189,9 @@
|
|||||||
"Cert - Tooltip": "The public key certificate that needs to be verified by the client SDK corresponding to this application",
|
"Cert - Tooltip": "The public key certificate that needs to be verified by the client SDK corresponding to this application",
|
||||||
"Certs": "Certs",
|
"Certs": "Certs",
|
||||||
"Click to Upload": "Click to Upload",
|
"Click to Upload": "Click to Upload",
|
||||||
"Client IP": "Client IP",
|
|
||||||
"Close": "Close",
|
"Close": "Close",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
|
"Copy": "Copy",
|
||||||
"Created time": "Created time",
|
"Created time": "Created time",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -288,7 +291,6 @@
|
|||||||
"Providers - Tooltip": "Providers to be configured, including 3rd-party login, object storage, verification code, etc.",
|
"Providers - Tooltip": "Providers to be configured, including 3rd-party login, object storage, verification code, etc.",
|
||||||
"Real name": "Real name",
|
"Real name": "Real name",
|
||||||
"Records": "Records",
|
"Records": "Records",
|
||||||
"Request URI": "Request URI",
|
|
||||||
"Resources": "Resources",
|
"Resources": "Resources",
|
||||||
"Role": "Role",
|
"Role": "Role",
|
||||||
"Role - Tooltip": "Role - Tooltip",
|
"Role - Tooltip": "Role - Tooltip",
|
||||||
@ -327,7 +329,6 @@
|
|||||||
"System Info": "System Info",
|
"System Info": "System Info",
|
||||||
"There was a problem signing you in..": "There was a problem signing you in..",
|
"There was a problem signing you in..": "There was a problem signing you in..",
|
||||||
"This is a read-only demo site!": "This is a read-only demo site!",
|
"This is a read-only demo site!": "This is a read-only demo site!",
|
||||||
"Timestamp": "Timestamp",
|
|
||||||
"Tokens": "Tokens",
|
"Tokens": "Tokens",
|
||||||
"Type": "Type",
|
"Type": "Type",
|
||||||
"Type - Tooltip": "Type - Tooltip",
|
"Type - Tooltip": "Type - Tooltip",
|
||||||
@ -634,10 +635,10 @@
|
|||||||
"Agent ID - Tooltip": "Agent ID",
|
"Agent ID - Tooltip": "Agent ID",
|
||||||
"Api Key": "Api Key",
|
"Api Key": "Api Key",
|
||||||
"Api Key - Tooltip": "Api Key - Tooltip",
|
"Api Key - Tooltip": "Api Key - Tooltip",
|
||||||
"Api Token": "Api Token",
|
|
||||||
"Api Token - Tooltip": "Api Token - Tooltip",
|
|
||||||
"App ID": "App ID",
|
"App ID": "App ID",
|
||||||
"App ID - Tooltip": "App ID",
|
"App ID - Tooltip": "App ID",
|
||||||
|
"App Key": "App Key",
|
||||||
|
"App Key - Tooltip": "App Key - Tooltip",
|
||||||
"App key": "App key",
|
"App key": "App key",
|
||||||
"App key - Tooltip": "App key",
|
"App key - Tooltip": "App key",
|
||||||
"App secret": "App secret",
|
"App secret": "App secret",
|
||||||
@ -658,8 +659,8 @@
|
|||||||
"Category - Tooltip": "Select a category",
|
"Category - Tooltip": "Select a category",
|
||||||
"Channel No.": "Channel No.",
|
"Channel No.": "Channel No.",
|
||||||
"Channel No. - Tooltip": "Channel No.",
|
"Channel No. - Tooltip": "Channel No.",
|
||||||
"Chat Id": "Chat Id",
|
"Chat ID": "Chat ID",
|
||||||
"Chat Id - Tooltip": "Chat Id - Tooltip",
|
"Chat ID - Tooltip": "Chat ID - Tooltip",
|
||||||
"Client ID": "Client ID",
|
"Client ID": "Client ID",
|
||||||
"Client ID - Tooltip": "Client ID",
|
"Client ID - Tooltip": "Client ID",
|
||||||
"Client ID 2": "Client ID 2",
|
"Client ID 2": "Client ID 2",
|
||||||
@ -705,10 +706,8 @@
|
|||||||
"Method - Tooltip": "Login method, QR code or silent login",
|
"Method - Tooltip": "Login method, QR code or silent login",
|
||||||
"New Provider": "New Provider",
|
"New Provider": "New Provider",
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"Notification content": "Notification content",
|
"Parameter": "Parameter",
|
||||||
"Notification content - Tooltip": "Notification content - Tooltip",
|
"Parameter - Tooltip": "Parameter - Tooltip",
|
||||||
"Parameter name": "Parameter name",
|
|
||||||
"Parameter name - Tooltip": "Parameter name - Tooltip",
|
|
||||||
"Parse": "Parse",
|
"Parse": "Parse",
|
||||||
"Parse metadata successfully": "Parse metadata successfully",
|
"Parse metadata successfully": "Parse metadata successfully",
|
||||||
"Path prefix": "Path prefix",
|
"Path prefix": "Path prefix",
|
||||||
@ -789,9 +788,6 @@
|
|||||||
"Wallets - Tooltip": "Wallets - Tooltip",
|
"Wallets - Tooltip": "Wallets - Tooltip",
|
||||||
"admin (Shared)": "admin (Shared)"
|
"admin (Shared)": "admin (Shared)"
|
||||||
},
|
},
|
||||||
"record": {
|
|
||||||
"Is triggered": "Is triggered"
|
|
||||||
},
|
|
||||||
"resource": {
|
"resource": {
|
||||||
"Copy Link": "Copy Link",
|
"Copy Link": "Copy Link",
|
||||||
"File name": "File name",
|
"File name": "File name",
|
||||||
@ -826,6 +822,7 @@
|
|||||||
"Please input your affiliation!": "Please input your affiliation!",
|
"Please input your affiliation!": "Please input your affiliation!",
|
||||||
"Please input your display name!": "Please input your display name!",
|
"Please input your display name!": "Please input your display name!",
|
||||||
"Please input your first name!": "Please input your first name!",
|
"Please input your first name!": "Please input your first name!",
|
||||||
|
"Please input your invitation code!": "Please input your invitation code!",
|
||||||
"Please input your last name!": "Please input your last name!",
|
"Please input your last name!": "Please input your last name!",
|
||||||
"Please input your phone number!": "Please input your phone number!",
|
"Please input your phone number!": "Please input your phone number!",
|
||||||
"Please input your real name!": "Please input your real name!",
|
"Please input your real name!": "Please input your real name!",
|
||||||
@ -957,7 +954,6 @@
|
|||||||
"ID card type": "ID card type",
|
"ID card type": "ID card type",
|
||||||
"ID card type - Tooltip": "ID card type - Tooltip",
|
"ID card type - Tooltip": "ID card type - Tooltip",
|
||||||
"ID card with person": "ID card with person",
|
"ID card with person": "ID card with person",
|
||||||
"Input your chat id": "Input your chat id",
|
|
||||||
"Input your email": "Input your email",
|
"Input your email": "Input your email",
|
||||||
"Input your phone number": "Input your phone number",
|
"Input your phone number": "Input your phone number",
|
||||||
"Is admin": "Is admin",
|
"Is admin": "Is admin",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"Grant types - Tooltip": "Wählen Sie aus, welche Grant-Typen im OAuth-Protokoll zulässig sind",
|
"Grant types - Tooltip": "Wählen Sie aus, welche Grant-Typen im OAuth-Protokoll zulässig sind",
|
||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
|
"Invitation code": "Invitation code",
|
||||||
|
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||||
|
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||||
"Left": "Links",
|
"Left": "Links",
|
||||||
"Logged in successfully": "Erfolgreich eingeloggt",
|
"Logged in successfully": "Erfolgreich eingeloggt",
|
||||||
"Logged out successfully": "Erfolgreich ausgeloggt",
|
"Logged out successfully": "Erfolgreich ausgeloggt",
|
||||||
@ -186,9 +189,9 @@
|
|||||||
"Cert - Tooltip": "Das Public-Key-Zertifikat, das vom Client-SDK, das mit dieser Anwendung korrespondiert, verifiziert werden muss",
|
"Cert - Tooltip": "Das Public-Key-Zertifikat, das vom Client-SDK, das mit dieser Anwendung korrespondiert, verifiziert werden muss",
|
||||||
"Certs": "Zertifikate",
|
"Certs": "Zertifikate",
|
||||||
"Click to Upload": "Klicken Sie zum Hochladen",
|
"Click to Upload": "Klicken Sie zum Hochladen",
|
||||||
"Client IP": "Client-IP",
|
|
||||||
"Close": "Schließen",
|
"Close": "Schließen",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
|
"Copy": "Copy",
|
||||||
"Created time": "Erstellte Zeit",
|
"Created time": "Erstellte Zeit",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -288,7 +291,6 @@
|
|||||||
"Providers - Tooltip": "Provider, die konfiguriert werden müssen, einschließlich Drittanbieter-Logins, Objektspeicherung, Verifizierungscode usw.",
|
"Providers - Tooltip": "Provider, die konfiguriert werden müssen, einschließlich Drittanbieter-Logins, Objektspeicherung, Verifizierungscode usw.",
|
||||||
"Real name": "Echter Name",
|
"Real name": "Echter Name",
|
||||||
"Records": "Datensätze",
|
"Records": "Datensätze",
|
||||||
"Request URI": "Anforderungs-URI",
|
|
||||||
"Resources": "Ressourcen",
|
"Resources": "Ressourcen",
|
||||||
"Role": "Role",
|
"Role": "Role",
|
||||||
"Role - Tooltip": "Role - Tooltip",
|
"Role - Tooltip": "Role - Tooltip",
|
||||||
@ -327,7 +329,6 @@
|
|||||||
"System Info": "Systeminformationen",
|
"System Info": "Systeminformationen",
|
||||||
"There was a problem signing you in..": "There was a problem signing you in..",
|
"There was a problem signing you in..": "There was a problem signing you in..",
|
||||||
"This is a read-only demo site!": "Dies ist eine schreibgeschützte Demo-Seite!",
|
"This is a read-only demo site!": "Dies ist eine schreibgeschützte Demo-Seite!",
|
||||||
"Timestamp": "Zeitstempel",
|
|
||||||
"Tokens": "Token",
|
"Tokens": "Token",
|
||||||
"Type": "Type",
|
"Type": "Type",
|
||||||
"Type - Tooltip": "Type - Tooltip",
|
"Type - Tooltip": "Type - Tooltip",
|
||||||
@ -634,10 +635,10 @@
|
|||||||
"Agent ID - Tooltip": "Agenten-ID",
|
"Agent ID - Tooltip": "Agenten-ID",
|
||||||
"Api Key": "Api Key",
|
"Api Key": "Api Key",
|
||||||
"Api Key - Tooltip": "Api Key - Tooltip",
|
"Api Key - Tooltip": "Api Key - Tooltip",
|
||||||
"Api Token": "Api Token",
|
|
||||||
"Api Token - Tooltip": "Api Token - Tooltip",
|
|
||||||
"App ID": "App ID",
|
"App ID": "App ID",
|
||||||
"App ID - Tooltip": "App-ID",
|
"App ID - Tooltip": "App-ID",
|
||||||
|
"App Key": "App Key",
|
||||||
|
"App Key - Tooltip": "App Key - Tooltip",
|
||||||
"App key": "App-Key",
|
"App key": "App-Key",
|
||||||
"App key - Tooltip": "App-Schlüssel",
|
"App key - Tooltip": "App-Schlüssel",
|
||||||
"App secret": "App-Secret",
|
"App secret": "App-Secret",
|
||||||
@ -658,8 +659,8 @@
|
|||||||
"Category - Tooltip": "Wählen Sie eine Kategorie aus",
|
"Category - Tooltip": "Wählen Sie eine Kategorie aus",
|
||||||
"Channel No.": "Kanal Nr.",
|
"Channel No.": "Kanal Nr.",
|
||||||
"Channel No. - Tooltip": "Kanalnummer.",
|
"Channel No. - Tooltip": "Kanalnummer.",
|
||||||
"Chat Id": "Chat Id",
|
"Chat ID": "Chat ID",
|
||||||
"Chat Id - Tooltip": "Chat Id - Tooltip",
|
"Chat ID - Tooltip": "Chat ID - Tooltip",
|
||||||
"Client ID": "Client-ID",
|
"Client ID": "Client-ID",
|
||||||
"Client ID - Tooltip": "Client-ID",
|
"Client ID - Tooltip": "Client-ID",
|
||||||
"Client ID 2": "Client-ID 2",
|
"Client ID 2": "Client-ID 2",
|
||||||
@ -705,10 +706,8 @@
|
|||||||
"Method - Tooltip": "Anmeldeverfahren, QR-Code oder Silent-Login",
|
"Method - Tooltip": "Anmeldeverfahren, QR-Code oder Silent-Login",
|
||||||
"New Provider": "Neuer Provider",
|
"New Provider": "Neuer Provider",
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"Notification content": "Notification content",
|
"Parameter": "Parameter",
|
||||||
"Notification content - Tooltip": "Notification content - Tooltip",
|
"Parameter - Tooltip": "Parameter - Tooltip",
|
||||||
"Parameter name": "Parameter name",
|
|
||||||
"Parameter name - Tooltip": "Parameter name - Tooltip",
|
|
||||||
"Parse": "parsen",
|
"Parse": "parsen",
|
||||||
"Parse metadata successfully": "Metadaten erfolgreich analysiert",
|
"Parse metadata successfully": "Metadaten erfolgreich analysiert",
|
||||||
"Path prefix": "Pfadpräfix",
|
"Path prefix": "Pfadpräfix",
|
||||||
@ -789,9 +788,6 @@
|
|||||||
"Wallets - Tooltip": "Wallets - Tooltip",
|
"Wallets - Tooltip": "Wallets - Tooltip",
|
||||||
"admin (Shared)": "admin (Shared)"
|
"admin (Shared)": "admin (Shared)"
|
||||||
},
|
},
|
||||||
"record": {
|
|
||||||
"Is triggered": "Ist ausgelöst"
|
|
||||||
},
|
|
||||||
"resource": {
|
"resource": {
|
||||||
"Copy Link": "Link kopieren",
|
"Copy Link": "Link kopieren",
|
||||||
"File name": "Dateiname",
|
"File name": "Dateiname",
|
||||||
@ -826,6 +822,7 @@
|
|||||||
"Please input your affiliation!": "Bitte geben Sie Ihre Zugehörigkeit ein!",
|
"Please input your affiliation!": "Bitte geben Sie Ihre Zugehörigkeit ein!",
|
||||||
"Please input your display name!": "Bitte geben Sie Ihren Anzeigenamen ein!",
|
"Please input your display name!": "Bitte geben Sie Ihren Anzeigenamen ein!",
|
||||||
"Please input your first name!": "Bitte geben Sie Ihren Vornamen ein!",
|
"Please input your first name!": "Bitte geben Sie Ihren Vornamen ein!",
|
||||||
|
"Please input your invitation code!": "Please input your invitation code!",
|
||||||
"Please input your last name!": "Bitte geben Sie Ihren Nachnamen ein!",
|
"Please input your last name!": "Bitte geben Sie Ihren Nachnamen ein!",
|
||||||
"Please input your phone number!": "Bitte geben Sie Ihre Telefonnummer ein!",
|
"Please input your phone number!": "Bitte geben Sie Ihre Telefonnummer ein!",
|
||||||
"Please input your real name!": "Bitte geben Sie Ihren richtigen Namen ein!",
|
"Please input your real name!": "Bitte geben Sie Ihren richtigen Namen ein!",
|
||||||
@ -957,7 +954,6 @@
|
|||||||
"ID card type": "ID card type",
|
"ID card type": "ID card type",
|
||||||
"ID card type - Tooltip": "ID card type - Tooltip",
|
"ID card type - Tooltip": "ID card type - Tooltip",
|
||||||
"ID card with person": "ID card with person",
|
"ID card with person": "ID card with person",
|
||||||
"Input your chat id": "Input your chat id",
|
|
||||||
"Input your email": "Geben Sie Ihre E-Mail-Adresse ein",
|
"Input your email": "Geben Sie Ihre E-Mail-Adresse ein",
|
||||||
"Input your phone number": "Geben Sie Ihre Telefonnummer ein",
|
"Input your phone number": "Geben Sie Ihre Telefonnummer ein",
|
||||||
"Is admin": "Ist Admin",
|
"Is admin": "Ist Admin",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"Grant types - Tooltip": "Select which grant types are allowed in the OAuth protocol",
|
"Grant types - Tooltip": "Select which grant types are allowed in the OAuth protocol",
|
||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
|
"Invitation code": "Invitation code",
|
||||||
|
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||||
|
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||||
"Left": "Left",
|
"Left": "Left",
|
||||||
"Logged in successfully": "Logged in successfully",
|
"Logged in successfully": "Logged in successfully",
|
||||||
"Logged out successfully": "Logged out successfully",
|
"Logged out successfully": "Logged out successfully",
|
||||||
@ -186,9 +189,9 @@
|
|||||||
"Cert - Tooltip": "The public key certificate that needs to be verified by the client SDK corresponding to this application",
|
"Cert - Tooltip": "The public key certificate that needs to be verified by the client SDK corresponding to this application",
|
||||||
"Certs": "Certs",
|
"Certs": "Certs",
|
||||||
"Click to Upload": "Click to Upload",
|
"Click to Upload": "Click to Upload",
|
||||||
"Client IP": "Client IP",
|
|
||||||
"Close": "Close",
|
"Close": "Close",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
|
"Copy": "Copy",
|
||||||
"Created time": "Created time",
|
"Created time": "Created time",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -288,7 +291,6 @@
|
|||||||
"Providers - Tooltip": "Providers to be configured, including 3rd-party login, object storage, verification code, etc.",
|
"Providers - Tooltip": "Providers to be configured, including 3rd-party login, object storage, verification code, etc.",
|
||||||
"Real name": "Real name",
|
"Real name": "Real name",
|
||||||
"Records": "Records",
|
"Records": "Records",
|
||||||
"Request URI": "Request URI",
|
|
||||||
"Resources": "Resources",
|
"Resources": "Resources",
|
||||||
"Role": "Role",
|
"Role": "Role",
|
||||||
"Role - Tooltip": "Role - Tooltip",
|
"Role - Tooltip": "Role - Tooltip",
|
||||||
@ -327,7 +329,6 @@
|
|||||||
"System Info": "System Info",
|
"System Info": "System Info",
|
||||||
"There was a problem signing you in..": "There was a problem signing you in..",
|
"There was a problem signing you in..": "There was a problem signing you in..",
|
||||||
"This is a read-only demo site!": "This is a read-only demo site!",
|
"This is a read-only demo site!": "This is a read-only demo site!",
|
||||||
"Timestamp": "Timestamp",
|
|
||||||
"Tokens": "Tokens",
|
"Tokens": "Tokens",
|
||||||
"Type": "Type",
|
"Type": "Type",
|
||||||
"Type - Tooltip": "Type - Tooltip",
|
"Type - Tooltip": "Type - Tooltip",
|
||||||
@ -634,10 +635,10 @@
|
|||||||
"Agent ID - Tooltip": "Agent ID",
|
"Agent ID - Tooltip": "Agent ID",
|
||||||
"Api Key": "Api Key",
|
"Api Key": "Api Key",
|
||||||
"Api Key - Tooltip": "Api Key - Tooltip",
|
"Api Key - Tooltip": "Api Key - Tooltip",
|
||||||
"Api Token": "Api Token",
|
|
||||||
"Api Token - Tooltip": "Api Token - Tooltip",
|
|
||||||
"App ID": "App ID",
|
"App ID": "App ID",
|
||||||
"App ID - Tooltip": "App ID",
|
"App ID - Tooltip": "App ID",
|
||||||
|
"App Key": "App Key",
|
||||||
|
"App Key - Tooltip": "App Key - Tooltip",
|
||||||
"App key": "App key",
|
"App key": "App key",
|
||||||
"App key - Tooltip": "App key",
|
"App key - Tooltip": "App key",
|
||||||
"App secret": "App secret",
|
"App secret": "App secret",
|
||||||
@ -658,8 +659,8 @@
|
|||||||
"Category - Tooltip": "Select a category",
|
"Category - Tooltip": "Select a category",
|
||||||
"Channel No.": "Channel No.",
|
"Channel No.": "Channel No.",
|
||||||
"Channel No. - Tooltip": "Channel No.",
|
"Channel No. - Tooltip": "Channel No.",
|
||||||
"Chat Id": "Chat Id",
|
"Chat ID": "Chat ID",
|
||||||
"Chat Id - Tooltip": "Chat Id - Tooltip",
|
"Chat ID - Tooltip": "Chat ID - Tooltip",
|
||||||
"Client ID": "Client ID",
|
"Client ID": "Client ID",
|
||||||
"Client ID - Tooltip": "Client ID",
|
"Client ID - Tooltip": "Client ID",
|
||||||
"Client ID 2": "Client ID 2",
|
"Client ID 2": "Client ID 2",
|
||||||
@ -705,10 +706,8 @@
|
|||||||
"Method - Tooltip": "Login method, QR code or silent login",
|
"Method - Tooltip": "Login method, QR code or silent login",
|
||||||
"New Provider": "New Provider",
|
"New Provider": "New Provider",
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"Notification content": "Notification content",
|
"Parameter": "Parameter",
|
||||||
"Notification content - Tooltip": "Notification content - Tooltip",
|
"Parameter - Tooltip": "Parameter - Tooltip",
|
||||||
"Parameter name": "Parameter name",
|
|
||||||
"Parameter name - Tooltip": "Parameter name - Tooltip",
|
|
||||||
"Parse": "Parse",
|
"Parse": "Parse",
|
||||||
"Parse metadata successfully": "Parse metadata successfully",
|
"Parse metadata successfully": "Parse metadata successfully",
|
||||||
"Path prefix": "Path prefix",
|
"Path prefix": "Path prefix",
|
||||||
@ -789,9 +788,6 @@
|
|||||||
"Wallets - Tooltip": "Wallets - Tooltip",
|
"Wallets - Tooltip": "Wallets - Tooltip",
|
||||||
"admin (Shared)": "admin (Shared)"
|
"admin (Shared)": "admin (Shared)"
|
||||||
},
|
},
|
||||||
"record": {
|
|
||||||
"Is triggered": "Is triggered"
|
|
||||||
},
|
|
||||||
"resource": {
|
"resource": {
|
||||||
"Copy Link": "Copy Link",
|
"Copy Link": "Copy Link",
|
||||||
"File name": "File name",
|
"File name": "File name",
|
||||||
@ -826,6 +822,7 @@
|
|||||||
"Please input your affiliation!": "Please input your affiliation!",
|
"Please input your affiliation!": "Please input your affiliation!",
|
||||||
"Please input your display name!": "Please input your display name!",
|
"Please input your display name!": "Please input your display name!",
|
||||||
"Please input your first name!": "Please input your first name!",
|
"Please input your first name!": "Please input your first name!",
|
||||||
|
"Please input your invitation code!": "Please input your invitation code!",
|
||||||
"Please input your last name!": "Please input your last name!",
|
"Please input your last name!": "Please input your last name!",
|
||||||
"Please input your phone number!": "Please input your phone number!",
|
"Please input your phone number!": "Please input your phone number!",
|
||||||
"Please input your real name!": "Please input your real name!",
|
"Please input your real name!": "Please input your real name!",
|
||||||
@ -957,7 +954,6 @@
|
|||||||
"ID card type": "ID card type",
|
"ID card type": "ID card type",
|
||||||
"ID card type - Tooltip": "ID card type - Tooltip",
|
"ID card type - Tooltip": "ID card type - Tooltip",
|
||||||
"ID card with person": "ID card with person",
|
"ID card with person": "ID card with person",
|
||||||
"Input your chat id": "Input your chat id",
|
|
||||||
"Input your email": "Input your email",
|
"Input your email": "Input your email",
|
||||||
"Input your phone number": "Input your phone number",
|
"Input your phone number": "Input your phone number",
|
||||||
"Is admin": "Is admin",
|
"Is admin": "Is admin",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"Grant types - Tooltip": "Selecciona cuáles tipos de subvenciones están permitidas en el protocolo OAuth",
|
"Grant types - Tooltip": "Selecciona cuáles tipos de subvenciones están permitidas en el protocolo OAuth",
|
||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
|
"Invitation code": "Invitation code",
|
||||||
|
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||||
|
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||||
"Left": "Izquierda",
|
"Left": "Izquierda",
|
||||||
"Logged in successfully": "Acceso satisfactorio",
|
"Logged in successfully": "Acceso satisfactorio",
|
||||||
"Logged out successfully": "Cerró sesión exitosamente",
|
"Logged out successfully": "Cerró sesión exitosamente",
|
||||||
@ -186,9 +189,9 @@
|
|||||||
"Cert - Tooltip": "El certificado de clave pública que necesita ser verificado por el SDK del cliente correspondiente a esta aplicación",
|
"Cert - Tooltip": "El certificado de clave pública que necesita ser verificado por el SDK del cliente correspondiente a esta aplicación",
|
||||||
"Certs": "Certificaciones",
|
"Certs": "Certificaciones",
|
||||||
"Click to Upload": "Haz clic para cargar",
|
"Click to Upload": "Haz clic para cargar",
|
||||||
"Client IP": "Dirección IP del cliente",
|
|
||||||
"Close": "Cerca",
|
"Close": "Cerca",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
|
"Copy": "Copy",
|
||||||
"Created time": "Tiempo creado",
|
"Created time": "Tiempo creado",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -288,7 +291,6 @@
|
|||||||
"Providers - Tooltip": "Proveedores a configurar, incluyendo inicio de sesión de terceros, almacenamiento de objetos, código de verificación, etc.",
|
"Providers - Tooltip": "Proveedores a configurar, incluyendo inicio de sesión de terceros, almacenamiento de objetos, código de verificación, etc.",
|
||||||
"Real name": "Nombre real",
|
"Real name": "Nombre real",
|
||||||
"Records": "Registros",
|
"Records": "Registros",
|
||||||
"Request URI": "URI de solicitud",
|
|
||||||
"Resources": "Recursos",
|
"Resources": "Recursos",
|
||||||
"Role": "Role",
|
"Role": "Role",
|
||||||
"Role - Tooltip": "Role - Tooltip",
|
"Role - Tooltip": "Role - Tooltip",
|
||||||
@ -327,7 +329,6 @@
|
|||||||
"System Info": "Información del Sistema",
|
"System Info": "Información del Sistema",
|
||||||
"There was a problem signing you in..": "There was a problem signing you in..",
|
"There was a problem signing you in..": "There was a problem signing you in..",
|
||||||
"This is a read-only demo site!": "¡Este es un sitio de demostración solo de lectura!",
|
"This is a read-only demo site!": "¡Este es un sitio de demostración solo de lectura!",
|
||||||
"Timestamp": "Marca de tiempo",
|
|
||||||
"Tokens": "Tokens",
|
"Tokens": "Tokens",
|
||||||
"Type": "Type",
|
"Type": "Type",
|
||||||
"Type - Tooltip": "Type - Tooltip",
|
"Type - Tooltip": "Type - Tooltip",
|
||||||
@ -634,10 +635,10 @@
|
|||||||
"Agent ID - Tooltip": "Identificador de agente",
|
"Agent ID - Tooltip": "Identificador de agente",
|
||||||
"Api Key": "Api Key",
|
"Api Key": "Api Key",
|
||||||
"Api Key - Tooltip": "Api Key - Tooltip",
|
"Api Key - Tooltip": "Api Key - Tooltip",
|
||||||
"Api Token": "Api Token",
|
|
||||||
"Api Token - Tooltip": "Api Token - Tooltip",
|
|
||||||
"App ID": "ID de aplicación",
|
"App ID": "ID de aplicación",
|
||||||
"App ID - Tooltip": "Identificador de la aplicación",
|
"App ID - Tooltip": "Identificador de la aplicación",
|
||||||
|
"App Key": "App Key",
|
||||||
|
"App Key - Tooltip": "App Key - Tooltip",
|
||||||
"App key": "Clave de aplicación",
|
"App key": "Clave de aplicación",
|
||||||
"App key - Tooltip": "Clave de aplicación",
|
"App key - Tooltip": "Clave de aplicación",
|
||||||
"App secret": "Secreto de la aplicación",
|
"App secret": "Secreto de la aplicación",
|
||||||
@ -658,8 +659,8 @@
|
|||||||
"Category - Tooltip": "Selecciona una categoría",
|
"Category - Tooltip": "Selecciona una categoría",
|
||||||
"Channel No.": "Canal No.",
|
"Channel No.": "Canal No.",
|
||||||
"Channel No. - Tooltip": "Canal No.",
|
"Channel No. - Tooltip": "Canal No.",
|
||||||
"Chat Id": "Chat Id",
|
"Chat ID": "Chat ID",
|
||||||
"Chat Id - Tooltip": "Chat Id - Tooltip",
|
"Chat ID - Tooltip": "Chat ID - Tooltip",
|
||||||
"Client ID": "Identificación de cliente",
|
"Client ID": "Identificación de cliente",
|
||||||
"Client ID - Tooltip": "Identificación del cliente",
|
"Client ID - Tooltip": "Identificación del cliente",
|
||||||
"Client ID 2": "Identificación de cliente 2",
|
"Client ID 2": "Identificación de cliente 2",
|
||||||
@ -705,10 +706,8 @@
|
|||||||
"Method - Tooltip": "Método de inicio de sesión, código QR o inicio de sesión silencioso",
|
"Method - Tooltip": "Método de inicio de sesión, código QR o inicio de sesión silencioso",
|
||||||
"New Provider": "Nuevo proveedor",
|
"New Provider": "Nuevo proveedor",
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"Notification content": "Notification content",
|
"Parameter": "Parameter",
|
||||||
"Notification content - Tooltip": "Notification content - Tooltip",
|
"Parameter - Tooltip": "Parameter - Tooltip",
|
||||||
"Parameter name": "Parameter name",
|
|
||||||
"Parameter name - Tooltip": "Parameter name - Tooltip",
|
|
||||||
"Parse": "Analizar",
|
"Parse": "Analizar",
|
||||||
"Parse metadata successfully": "Analizar los metadatos con éxito",
|
"Parse metadata successfully": "Analizar los metadatos con éxito",
|
||||||
"Path prefix": "Prefijo de ruta",
|
"Path prefix": "Prefijo de ruta",
|
||||||
@ -789,9 +788,6 @@
|
|||||||
"Wallets - Tooltip": "Wallets - Tooltip",
|
"Wallets - Tooltip": "Wallets - Tooltip",
|
||||||
"admin (Shared)": "administrador (compartido)"
|
"admin (Shared)": "administrador (compartido)"
|
||||||
},
|
},
|
||||||
"record": {
|
|
||||||
"Is triggered": "Es desencadenado / es disparado / es activado"
|
|
||||||
},
|
|
||||||
"resource": {
|
"resource": {
|
||||||
"Copy Link": "Copiar enlace",
|
"Copy Link": "Copiar enlace",
|
||||||
"File name": "Nombre del archivo",
|
"File name": "Nombre del archivo",
|
||||||
@ -826,6 +822,7 @@
|
|||||||
"Please input your affiliation!": "¡Por favor, ingrese su afiliación!",
|
"Please input your affiliation!": "¡Por favor, ingrese su afiliación!",
|
||||||
"Please input your display name!": "¡Por favor ingrese su nombre de pantalla!",
|
"Please input your display name!": "¡Por favor ingrese su nombre de pantalla!",
|
||||||
"Please input your first name!": "¡Por favor ingrese su primer nombre!",
|
"Please input your first name!": "¡Por favor ingrese su primer nombre!",
|
||||||
|
"Please input your invitation code!": "Please input your invitation code!",
|
||||||
"Please input your last name!": "¡Por favor ingrese su apellido!",
|
"Please input your last name!": "¡Por favor ingrese su apellido!",
|
||||||
"Please input your phone number!": "¡Por favor, ingrese su número de teléfono!",
|
"Please input your phone number!": "¡Por favor, ingrese su número de teléfono!",
|
||||||
"Please input your real name!": "¡Por favor, ingresa tu nombre real!",
|
"Please input your real name!": "¡Por favor, ingresa tu nombre real!",
|
||||||
@ -957,7 +954,6 @@
|
|||||||
"ID card type": "ID card type",
|
"ID card type": "ID card type",
|
||||||
"ID card type - Tooltip": "ID card type - Tooltip",
|
"ID card type - Tooltip": "ID card type - Tooltip",
|
||||||
"ID card with person": "ID card with person",
|
"ID card with person": "ID card with person",
|
||||||
"Input your chat id": "Input your chat id",
|
|
||||||
"Input your email": "Introduce tu correo electrónico",
|
"Input your email": "Introduce tu correo electrónico",
|
||||||
"Input your phone number": "Ingrese su número de teléfono",
|
"Input your phone number": "Ingrese su número de teléfono",
|
||||||
"Is admin": "Es el administrador",
|
"Is admin": "Es el administrador",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"Grant types - Tooltip": "Select which grant types are allowed in the OAuth protocol",
|
"Grant types - Tooltip": "Select which grant types are allowed in the OAuth protocol",
|
||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
|
"Invitation code": "Invitation code",
|
||||||
|
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||||
|
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||||
"Left": "Left",
|
"Left": "Left",
|
||||||
"Logged in successfully": "Logged in successfully",
|
"Logged in successfully": "Logged in successfully",
|
||||||
"Logged out successfully": "Logged out successfully",
|
"Logged out successfully": "Logged out successfully",
|
||||||
@ -186,9 +189,9 @@
|
|||||||
"Cert - Tooltip": "The public key certificate that needs to be verified by the client SDK corresponding to this application",
|
"Cert - Tooltip": "The public key certificate that needs to be verified by the client SDK corresponding to this application",
|
||||||
"Certs": "Certs",
|
"Certs": "Certs",
|
||||||
"Click to Upload": "Click to Upload",
|
"Click to Upload": "Click to Upload",
|
||||||
"Client IP": "Client IP",
|
|
||||||
"Close": "Close",
|
"Close": "Close",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
|
"Copy": "Copy",
|
||||||
"Created time": "Created time",
|
"Created time": "Created time",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -288,7 +291,6 @@
|
|||||||
"Providers - Tooltip": "Providers to be configured, including 3rd-party login, object storage, verification code, etc.",
|
"Providers - Tooltip": "Providers to be configured, including 3rd-party login, object storage, verification code, etc.",
|
||||||
"Real name": "Real name",
|
"Real name": "Real name",
|
||||||
"Records": "Records",
|
"Records": "Records",
|
||||||
"Request URI": "Request URI",
|
|
||||||
"Resources": "Resources",
|
"Resources": "Resources",
|
||||||
"Role": "Role",
|
"Role": "Role",
|
||||||
"Role - Tooltip": "Role - Tooltip",
|
"Role - Tooltip": "Role - Tooltip",
|
||||||
@ -327,7 +329,6 @@
|
|||||||
"System Info": "System Info",
|
"System Info": "System Info",
|
||||||
"There was a problem signing you in..": "There was a problem signing you in..",
|
"There was a problem signing you in..": "There was a problem signing you in..",
|
||||||
"This is a read-only demo site!": "This is a read-only demo site!",
|
"This is a read-only demo site!": "This is a read-only demo site!",
|
||||||
"Timestamp": "Timestamp",
|
|
||||||
"Tokens": "Tokens",
|
"Tokens": "Tokens",
|
||||||
"Type": "Type",
|
"Type": "Type",
|
||||||
"Type - Tooltip": "Type - Tooltip",
|
"Type - Tooltip": "Type - Tooltip",
|
||||||
@ -634,10 +635,10 @@
|
|||||||
"Agent ID - Tooltip": "Agent ID",
|
"Agent ID - Tooltip": "Agent ID",
|
||||||
"Api Key": "Api Key",
|
"Api Key": "Api Key",
|
||||||
"Api Key - Tooltip": "Api Key - Tooltip",
|
"Api Key - Tooltip": "Api Key - Tooltip",
|
||||||
"Api Token": "Api Token",
|
|
||||||
"Api Token - Tooltip": "Api Token - Tooltip",
|
|
||||||
"App ID": "App ID",
|
"App ID": "App ID",
|
||||||
"App ID - Tooltip": "App ID",
|
"App ID - Tooltip": "App ID",
|
||||||
|
"App Key": "App Key",
|
||||||
|
"App Key - Tooltip": "App Key - Tooltip",
|
||||||
"App key": "App key",
|
"App key": "App key",
|
||||||
"App key - Tooltip": "App key",
|
"App key - Tooltip": "App key",
|
||||||
"App secret": "App secret",
|
"App secret": "App secret",
|
||||||
@ -658,8 +659,8 @@
|
|||||||
"Category - Tooltip": "Select a category",
|
"Category - Tooltip": "Select a category",
|
||||||
"Channel No.": "Channel No.",
|
"Channel No.": "Channel No.",
|
||||||
"Channel No. - Tooltip": "Channel No.",
|
"Channel No. - Tooltip": "Channel No.",
|
||||||
"Chat Id": "Chat Id",
|
"Chat ID": "Chat ID",
|
||||||
"Chat Id - Tooltip": "Chat Id - Tooltip",
|
"Chat ID - Tooltip": "Chat ID - Tooltip",
|
||||||
"Client ID": "Client ID",
|
"Client ID": "Client ID",
|
||||||
"Client ID - Tooltip": "Client ID",
|
"Client ID - Tooltip": "Client ID",
|
||||||
"Client ID 2": "Client ID 2",
|
"Client ID 2": "Client ID 2",
|
||||||
@ -705,10 +706,8 @@
|
|||||||
"Method - Tooltip": "Login method, QR code or silent login",
|
"Method - Tooltip": "Login method, QR code or silent login",
|
||||||
"New Provider": "New Provider",
|
"New Provider": "New Provider",
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"Notification content": "Notification content",
|
"Parameter": "Parameter",
|
||||||
"Notification content - Tooltip": "Notification content - Tooltip",
|
"Parameter - Tooltip": "Parameter - Tooltip",
|
||||||
"Parameter name": "Parameter name",
|
|
||||||
"Parameter name - Tooltip": "Parameter name - Tooltip",
|
|
||||||
"Parse": "Parse",
|
"Parse": "Parse",
|
||||||
"Parse metadata successfully": "Parse metadata successfully",
|
"Parse metadata successfully": "Parse metadata successfully",
|
||||||
"Path prefix": "Path prefix",
|
"Path prefix": "Path prefix",
|
||||||
@ -789,9 +788,6 @@
|
|||||||
"Wallets - Tooltip": "Wallets - Tooltip",
|
"Wallets - Tooltip": "Wallets - Tooltip",
|
||||||
"admin (Shared)": "admin (Shared)"
|
"admin (Shared)": "admin (Shared)"
|
||||||
},
|
},
|
||||||
"record": {
|
|
||||||
"Is triggered": "Is triggered"
|
|
||||||
},
|
|
||||||
"resource": {
|
"resource": {
|
||||||
"Copy Link": "Copy Link",
|
"Copy Link": "Copy Link",
|
||||||
"File name": "File name",
|
"File name": "File name",
|
||||||
@ -826,6 +822,7 @@
|
|||||||
"Please input your affiliation!": "Please input your affiliation!",
|
"Please input your affiliation!": "Please input your affiliation!",
|
||||||
"Please input your display name!": "Please input your display name!",
|
"Please input your display name!": "Please input your display name!",
|
||||||
"Please input your first name!": "Please input your first name!",
|
"Please input your first name!": "Please input your first name!",
|
||||||
|
"Please input your invitation code!": "Please input your invitation code!",
|
||||||
"Please input your last name!": "Please input your last name!",
|
"Please input your last name!": "Please input your last name!",
|
||||||
"Please input your phone number!": "Please input your phone number!",
|
"Please input your phone number!": "Please input your phone number!",
|
||||||
"Please input your real name!": "Please input your real name!",
|
"Please input your real name!": "Please input your real name!",
|
||||||
@ -957,7 +954,6 @@
|
|||||||
"ID card type": "ID card type",
|
"ID card type": "ID card type",
|
||||||
"ID card type - Tooltip": "ID card type - Tooltip",
|
"ID card type - Tooltip": "ID card type - Tooltip",
|
||||||
"ID card with person": "ID card with person",
|
"ID card with person": "ID card with person",
|
||||||
"Input your chat id": "Input your chat id",
|
|
||||||
"Input your email": "Input your email",
|
"Input your email": "Input your email",
|
||||||
"Input your phone number": "Input your phone number",
|
"Input your phone number": "Input your phone number",
|
||||||
"Is admin": "Is admin",
|
"Is admin": "Is admin",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"Grant types - Tooltip": "Sélectionnez les types d'autorisations autorisés dans le protocole OAuth",
|
"Grant types - Tooltip": "Sélectionnez les types d'autorisations autorisés dans le protocole OAuth",
|
||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
|
"Invitation code": "Invitation code",
|
||||||
|
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||||
|
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||||
"Left": "gauche",
|
"Left": "gauche",
|
||||||
"Logged in successfully": "Connecté avec succès",
|
"Logged in successfully": "Connecté avec succès",
|
||||||
"Logged out successfully": "Déconnecté avec succès",
|
"Logged out successfully": "Déconnecté avec succès",
|
||||||
@ -186,9 +189,9 @@
|
|||||||
"Cert - Tooltip": "Le certificat de clé publique qui doit être vérifié par le kit de développement client correspondant à cette application",
|
"Cert - Tooltip": "Le certificat de clé publique qui doit être vérifié par le kit de développement client correspondant à cette application",
|
||||||
"Certs": "Certains",
|
"Certs": "Certains",
|
||||||
"Click to Upload": "Cliquez pour télécharger",
|
"Click to Upload": "Cliquez pour télécharger",
|
||||||
"Client IP": "Adresse IP du client",
|
|
||||||
"Close": "Fermer",
|
"Close": "Fermer",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
|
"Copy": "Copy",
|
||||||
"Created time": "Temps créé",
|
"Created time": "Temps créé",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -288,7 +291,6 @@
|
|||||||
"Providers - Tooltip": "Les fournisseurs doivent être configurés, y compris la connexion de tiers, le stockage d'objets, le code de vérification, etc.",
|
"Providers - Tooltip": "Les fournisseurs doivent être configurés, y compris la connexion de tiers, le stockage d'objets, le code de vérification, etc.",
|
||||||
"Real name": "Nom réel",
|
"Real name": "Nom réel",
|
||||||
"Records": "Dossiers",
|
"Records": "Dossiers",
|
||||||
"Request URI": "URI de demande",
|
|
||||||
"Resources": "Ressources",
|
"Resources": "Ressources",
|
||||||
"Role": "Role",
|
"Role": "Role",
|
||||||
"Role - Tooltip": "Role - Tooltip",
|
"Role - Tooltip": "Role - Tooltip",
|
||||||
@ -327,7 +329,6 @@
|
|||||||
"System Info": "Information système",
|
"System Info": "Information système",
|
||||||
"There was a problem signing you in..": "There was a problem signing you in..",
|
"There was a problem signing you in..": "There was a problem signing you in..",
|
||||||
"This is a read-only demo site!": "Ceci est un site de démonstration en lecture seule !",
|
"This is a read-only demo site!": "Ceci est un site de démonstration en lecture seule !",
|
||||||
"Timestamp": "Horodatage",
|
|
||||||
"Tokens": "Les jetons",
|
"Tokens": "Les jetons",
|
||||||
"Type": "Type",
|
"Type": "Type",
|
||||||
"Type - Tooltip": "Type - Tooltip",
|
"Type - Tooltip": "Type - Tooltip",
|
||||||
@ -634,10 +635,10 @@
|
|||||||
"Agent ID - Tooltip": "Identifiant d'agent",
|
"Agent ID - Tooltip": "Identifiant d'agent",
|
||||||
"Api Key": "Api Key",
|
"Api Key": "Api Key",
|
||||||
"Api Key - Tooltip": "Api Key - Tooltip",
|
"Api Key - Tooltip": "Api Key - Tooltip",
|
||||||
"Api Token": "Api Token",
|
|
||||||
"Api Token - Tooltip": "Api Token - Tooltip",
|
|
||||||
"App ID": "Identifiant d'application",
|
"App ID": "Identifiant d'application",
|
||||||
"App ID - Tooltip": "Identifiant d'application",
|
"App ID - Tooltip": "Identifiant d'application",
|
||||||
|
"App Key": "App Key",
|
||||||
|
"App Key - Tooltip": "App Key - Tooltip",
|
||||||
"App key": "Clé d'application",
|
"App key": "Clé d'application",
|
||||||
"App key - Tooltip": "Clé d'application",
|
"App key - Tooltip": "Clé d'application",
|
||||||
"App secret": "Secret d'application",
|
"App secret": "Secret d'application",
|
||||||
@ -658,8 +659,8 @@
|
|||||||
"Category - Tooltip": "Sélectionnez une catégorie",
|
"Category - Tooltip": "Sélectionnez une catégorie",
|
||||||
"Channel No.": "chaîne n°",
|
"Channel No.": "chaîne n°",
|
||||||
"Channel No. - Tooltip": "Canal N°",
|
"Channel No. - Tooltip": "Canal N°",
|
||||||
"Chat Id": "Chat Id",
|
"Chat ID": "Chat ID",
|
||||||
"Chat Id - Tooltip": "Chat Id - Tooltip",
|
"Chat ID - Tooltip": "Chat ID - Tooltip",
|
||||||
"Client ID": "Identifiant client",
|
"Client ID": "Identifiant client",
|
||||||
"Client ID - Tooltip": "Identifiant du client",
|
"Client ID - Tooltip": "Identifiant du client",
|
||||||
"Client ID 2": "Identifiant client 2",
|
"Client ID 2": "Identifiant client 2",
|
||||||
@ -705,10 +706,8 @@
|
|||||||
"Method - Tooltip": "Méthode de connexion, code QR ou connexion silencieuse",
|
"Method - Tooltip": "Méthode de connexion, code QR ou connexion silencieuse",
|
||||||
"New Provider": "Nouveau fournisseur",
|
"New Provider": "Nouveau fournisseur",
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"Notification content": "Notification content",
|
"Parameter": "Parameter",
|
||||||
"Notification content - Tooltip": "Notification content - Tooltip",
|
"Parameter - Tooltip": "Parameter - Tooltip",
|
||||||
"Parameter name": "Parameter name",
|
|
||||||
"Parameter name - Tooltip": "Parameter name - Tooltip",
|
|
||||||
"Parse": "Parser",
|
"Parse": "Parser",
|
||||||
"Parse metadata successfully": "Parcourir les métadonnées avec succès",
|
"Parse metadata successfully": "Parcourir les métadonnées avec succès",
|
||||||
"Path prefix": "Préfixe de chemin",
|
"Path prefix": "Préfixe de chemin",
|
||||||
@ -789,9 +788,6 @@
|
|||||||
"Wallets - Tooltip": "Wallets - Tooltip",
|
"Wallets - Tooltip": "Wallets - Tooltip",
|
||||||
"admin (Shared)": "admin (Partagé)"
|
"admin (Shared)": "admin (Partagé)"
|
||||||
},
|
},
|
||||||
"record": {
|
|
||||||
"Is triggered": "Est déclenché"
|
|
||||||
},
|
|
||||||
"resource": {
|
"resource": {
|
||||||
"Copy Link": "Copier le lien",
|
"Copy Link": "Copier le lien",
|
||||||
"File name": "Nom de fichier",
|
"File name": "Nom de fichier",
|
||||||
@ -826,6 +822,7 @@
|
|||||||
"Please input your affiliation!": "Veuillez indiquer votre affiliation !",
|
"Please input your affiliation!": "Veuillez indiquer votre affiliation !",
|
||||||
"Please input your display name!": "S'il vous plaît entrer votre nom d'affichage !",
|
"Please input your display name!": "S'il vous plaît entrer votre nom d'affichage !",
|
||||||
"Please input your first name!": "Veuillez entrer votre prénom !",
|
"Please input your first name!": "Veuillez entrer votre prénom !",
|
||||||
|
"Please input your invitation code!": "Please input your invitation code!",
|
||||||
"Please input your last name!": "Veuillez entrer votre nom de famille !",
|
"Please input your last name!": "Veuillez entrer votre nom de famille !",
|
||||||
"Please input your phone number!": "Veuillez saisir votre numéro de téléphone !",
|
"Please input your phone number!": "Veuillez saisir votre numéro de téléphone !",
|
||||||
"Please input your real name!": "Veuillez entrer votre vrai nom!",
|
"Please input your real name!": "Veuillez entrer votre vrai nom!",
|
||||||
@ -957,7 +954,6 @@
|
|||||||
"ID card type": "ID card type",
|
"ID card type": "ID card type",
|
||||||
"ID card type - Tooltip": "ID card type - Tooltip",
|
"ID card type - Tooltip": "ID card type - Tooltip",
|
||||||
"ID card with person": "ID card with person",
|
"ID card with person": "ID card with person",
|
||||||
"Input your chat id": "Input your chat id",
|
|
||||||
"Input your email": "Entrez votre adresse e-mail",
|
"Input your email": "Entrez votre adresse e-mail",
|
||||||
"Input your phone number": "Saisissez votre numéro de téléphone",
|
"Input your phone number": "Saisissez votre numéro de téléphone",
|
||||||
"Is admin": "Est l'administrateur",
|
"Is admin": "Est l'administrateur",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"Grant types - Tooltip": "Select which grant types are allowed in the OAuth protocol",
|
"Grant types - Tooltip": "Select which grant types are allowed in the OAuth protocol",
|
||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
|
"Invitation code": "Invitation code",
|
||||||
|
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||||
|
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||||
"Left": "Left",
|
"Left": "Left",
|
||||||
"Logged in successfully": "Logged in successfully",
|
"Logged in successfully": "Logged in successfully",
|
||||||
"Logged out successfully": "Logged out successfully",
|
"Logged out successfully": "Logged out successfully",
|
||||||
@ -186,9 +189,9 @@
|
|||||||
"Cert - Tooltip": "The public key certificate that needs to be verified by the client SDK corresponding to this application",
|
"Cert - Tooltip": "The public key certificate that needs to be verified by the client SDK corresponding to this application",
|
||||||
"Certs": "Certs",
|
"Certs": "Certs",
|
||||||
"Click to Upload": "Click to Upload",
|
"Click to Upload": "Click to Upload",
|
||||||
"Client IP": "Client IP",
|
|
||||||
"Close": "Close",
|
"Close": "Close",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
|
"Copy": "Copy",
|
||||||
"Created time": "Created time",
|
"Created time": "Created time",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -288,7 +291,6 @@
|
|||||||
"Providers - Tooltip": "Providers to be configured, including 3rd-party login, object storage, verification code, etc.",
|
"Providers - Tooltip": "Providers to be configured, including 3rd-party login, object storage, verification code, etc.",
|
||||||
"Real name": "Real name",
|
"Real name": "Real name",
|
||||||
"Records": "Records",
|
"Records": "Records",
|
||||||
"Request URI": "Request URI",
|
|
||||||
"Resources": "Resources",
|
"Resources": "Resources",
|
||||||
"Role": "Role",
|
"Role": "Role",
|
||||||
"Role - Tooltip": "Role - Tooltip",
|
"Role - Tooltip": "Role - Tooltip",
|
||||||
@ -327,7 +329,6 @@
|
|||||||
"System Info": "System Info",
|
"System Info": "System Info",
|
||||||
"There was a problem signing you in..": "There was a problem signing you in..",
|
"There was a problem signing you in..": "There was a problem signing you in..",
|
||||||
"This is a read-only demo site!": "This is a read-only demo site!",
|
"This is a read-only demo site!": "This is a read-only demo site!",
|
||||||
"Timestamp": "Timestamp",
|
|
||||||
"Tokens": "Tokens",
|
"Tokens": "Tokens",
|
||||||
"Type": "Type",
|
"Type": "Type",
|
||||||
"Type - Tooltip": "Type - Tooltip",
|
"Type - Tooltip": "Type - Tooltip",
|
||||||
@ -634,10 +635,10 @@
|
|||||||
"Agent ID - Tooltip": "Agent ID",
|
"Agent ID - Tooltip": "Agent ID",
|
||||||
"Api Key": "Api Key",
|
"Api Key": "Api Key",
|
||||||
"Api Key - Tooltip": "Api Key - Tooltip",
|
"Api Key - Tooltip": "Api Key - Tooltip",
|
||||||
"Api Token": "Api Token",
|
|
||||||
"Api Token - Tooltip": "Api Token - Tooltip",
|
|
||||||
"App ID": "App ID",
|
"App ID": "App ID",
|
||||||
"App ID - Tooltip": "App ID",
|
"App ID - Tooltip": "App ID",
|
||||||
|
"App Key": "App Key",
|
||||||
|
"App Key - Tooltip": "App Key - Tooltip",
|
||||||
"App key": "App key",
|
"App key": "App key",
|
||||||
"App key - Tooltip": "App key",
|
"App key - Tooltip": "App key",
|
||||||
"App secret": "App secret",
|
"App secret": "App secret",
|
||||||
@ -658,8 +659,8 @@
|
|||||||
"Category - Tooltip": "Select a category",
|
"Category - Tooltip": "Select a category",
|
||||||
"Channel No.": "Channel No.",
|
"Channel No.": "Channel No.",
|
||||||
"Channel No. - Tooltip": "Channel No.",
|
"Channel No. - Tooltip": "Channel No.",
|
||||||
"Chat Id": "Chat Id",
|
"Chat ID": "Chat ID",
|
||||||
"Chat Id - Tooltip": "Chat Id - Tooltip",
|
"Chat ID - Tooltip": "Chat ID - Tooltip",
|
||||||
"Client ID": "Client ID",
|
"Client ID": "Client ID",
|
||||||
"Client ID - Tooltip": "Client ID",
|
"Client ID - Tooltip": "Client ID",
|
||||||
"Client ID 2": "Client ID 2",
|
"Client ID 2": "Client ID 2",
|
||||||
@ -705,10 +706,8 @@
|
|||||||
"Method - Tooltip": "Login method, QR code or silent login",
|
"Method - Tooltip": "Login method, QR code or silent login",
|
||||||
"New Provider": "New Provider",
|
"New Provider": "New Provider",
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"Notification content": "Notification content",
|
"Parameter": "Parameter",
|
||||||
"Notification content - Tooltip": "Notification content - Tooltip",
|
"Parameter - Tooltip": "Parameter - Tooltip",
|
||||||
"Parameter name": "Parameter name",
|
|
||||||
"Parameter name - Tooltip": "Parameter name - Tooltip",
|
|
||||||
"Parse": "Parse",
|
"Parse": "Parse",
|
||||||
"Parse metadata successfully": "Parse metadata successfully",
|
"Parse metadata successfully": "Parse metadata successfully",
|
||||||
"Path prefix": "Path prefix",
|
"Path prefix": "Path prefix",
|
||||||
@ -789,9 +788,6 @@
|
|||||||
"Wallets - Tooltip": "Wallets - Tooltip",
|
"Wallets - Tooltip": "Wallets - Tooltip",
|
||||||
"admin (Shared)": "admin (Shared)"
|
"admin (Shared)": "admin (Shared)"
|
||||||
},
|
},
|
||||||
"record": {
|
|
||||||
"Is triggered": "Is triggered"
|
|
||||||
},
|
|
||||||
"resource": {
|
"resource": {
|
||||||
"Copy Link": "Copy Link",
|
"Copy Link": "Copy Link",
|
||||||
"File name": "File name",
|
"File name": "File name",
|
||||||
@ -826,6 +822,7 @@
|
|||||||
"Please input your affiliation!": "Please input your affiliation!",
|
"Please input your affiliation!": "Please input your affiliation!",
|
||||||
"Please input your display name!": "Please input your display name!",
|
"Please input your display name!": "Please input your display name!",
|
||||||
"Please input your first name!": "Please input your first name!",
|
"Please input your first name!": "Please input your first name!",
|
||||||
|
"Please input your invitation code!": "Please input your invitation code!",
|
||||||
"Please input your last name!": "Please input your last name!",
|
"Please input your last name!": "Please input your last name!",
|
||||||
"Please input your phone number!": "Please input your phone number!",
|
"Please input your phone number!": "Please input your phone number!",
|
||||||
"Please input your real name!": "Please input your real name!",
|
"Please input your real name!": "Please input your real name!",
|
||||||
@ -957,7 +954,6 @@
|
|||||||
"ID card type": "ID card type",
|
"ID card type": "ID card type",
|
||||||
"ID card type - Tooltip": "ID card type - Tooltip",
|
"ID card type - Tooltip": "ID card type - Tooltip",
|
||||||
"ID card with person": "ID card with person",
|
"ID card with person": "ID card with person",
|
||||||
"Input your chat id": "Input your chat id",
|
|
||||||
"Input your email": "Input your email",
|
"Input your email": "Input your email",
|
||||||
"Input your phone number": "Input your phone number",
|
"Input your phone number": "Input your phone number",
|
||||||
"Is admin": "Is admin",
|
"Is admin": "Is admin",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"Grant types - Tooltip": "Pilih jenis hibah apa yang diperbolehkan dalam protokol OAuth",
|
"Grant types - Tooltip": "Pilih jenis hibah apa yang diperbolehkan dalam protokol OAuth",
|
||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
|
"Invitation code": "Invitation code",
|
||||||
|
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||||
|
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||||
"Left": "Kiri",
|
"Left": "Kiri",
|
||||||
"Logged in successfully": "Berhasil masuk",
|
"Logged in successfully": "Berhasil masuk",
|
||||||
"Logged out successfully": "Berhasil keluar dari sistem",
|
"Logged out successfully": "Berhasil keluar dari sistem",
|
||||||
@ -186,9 +189,9 @@
|
|||||||
"Cert - Tooltip": "Sertifikat kunci publik yang perlu diverifikasi oleh SDK klien yang sesuai dengan aplikasi ini",
|
"Cert - Tooltip": "Sertifikat kunci publik yang perlu diverifikasi oleh SDK klien yang sesuai dengan aplikasi ini",
|
||||||
"Certs": "Sertifikat",
|
"Certs": "Sertifikat",
|
||||||
"Click to Upload": "Klik untuk Mengunggah",
|
"Click to Upload": "Klik untuk Mengunggah",
|
||||||
"Client IP": "IP klien",
|
|
||||||
"Close": "Tutup",
|
"Close": "Tutup",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
|
"Copy": "Copy",
|
||||||
"Created time": "Waktu dibuat",
|
"Created time": "Waktu dibuat",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -288,7 +291,6 @@
|
|||||||
"Providers - Tooltip": "Penyedia harus dikonfigurasi, termasuk login pihak ketiga, penyimpanan objek, kode verifikasi, dan lain-lain.",
|
"Providers - Tooltip": "Penyedia harus dikonfigurasi, termasuk login pihak ketiga, penyimpanan objek, kode verifikasi, dan lain-lain.",
|
||||||
"Real name": "Nama asli",
|
"Real name": "Nama asli",
|
||||||
"Records": "Catatan",
|
"Records": "Catatan",
|
||||||
"Request URI": "Permintaan URI",
|
|
||||||
"Resources": "Sumber daya",
|
"Resources": "Sumber daya",
|
||||||
"Role": "Role",
|
"Role": "Role",
|
||||||
"Role - Tooltip": "Role - Tooltip",
|
"Role - Tooltip": "Role - Tooltip",
|
||||||
@ -327,7 +329,6 @@
|
|||||||
"System Info": "Informasi Sistem",
|
"System Info": "Informasi Sistem",
|
||||||
"There was a problem signing you in..": "There was a problem signing you in..",
|
"There was a problem signing you in..": "There was a problem signing you in..",
|
||||||
"This is a read-only demo site!": "Ini adalah situs demo hanya untuk dibaca saja!",
|
"This is a read-only demo site!": "Ini adalah situs demo hanya untuk dibaca saja!",
|
||||||
"Timestamp": "Waktu penanda waktu",
|
|
||||||
"Tokens": "Token-token",
|
"Tokens": "Token-token",
|
||||||
"Type": "Type",
|
"Type": "Type",
|
||||||
"Type - Tooltip": "Type - Tooltip",
|
"Type - Tooltip": "Type - Tooltip",
|
||||||
@ -634,10 +635,10 @@
|
|||||||
"Agent ID - Tooltip": "ID Agen",
|
"Agent ID - Tooltip": "ID Agen",
|
||||||
"Api Key": "Api Key",
|
"Api Key": "Api Key",
|
||||||
"Api Key - Tooltip": "Api Key - Tooltip",
|
"Api Key - Tooltip": "Api Key - Tooltip",
|
||||||
"Api Token": "Api Token",
|
|
||||||
"Api Token - Tooltip": "Api Token - Tooltip",
|
|
||||||
"App ID": "ID Aplikasi",
|
"App ID": "ID Aplikasi",
|
||||||
"App ID - Tooltip": "ID Aplikasi",
|
"App ID - Tooltip": "ID Aplikasi",
|
||||||
|
"App Key": "App Key",
|
||||||
|
"App Key - Tooltip": "App Key - Tooltip",
|
||||||
"App key": "Kunci aplikasi",
|
"App key": "Kunci aplikasi",
|
||||||
"App key - Tooltip": "Kunci aplikasi",
|
"App key - Tooltip": "Kunci aplikasi",
|
||||||
"App secret": "Rahasia aplikasi",
|
"App secret": "Rahasia aplikasi",
|
||||||
@ -658,8 +659,8 @@
|
|||||||
"Category - Tooltip": "Pilih kategori",
|
"Category - Tooltip": "Pilih kategori",
|
||||||
"Channel No.": "Saluran nomor.",
|
"Channel No.": "Saluran nomor.",
|
||||||
"Channel No. - Tooltip": "Saluran No.",
|
"Channel No. - Tooltip": "Saluran No.",
|
||||||
"Chat Id": "Chat Id",
|
"Chat ID": "Chat ID",
|
||||||
"Chat Id - Tooltip": "Chat Id - Tooltip",
|
"Chat ID - Tooltip": "Chat ID - Tooltip",
|
||||||
"Client ID": "ID klien",
|
"Client ID": "ID klien",
|
||||||
"Client ID - Tooltip": "ID klien",
|
"Client ID - Tooltip": "ID klien",
|
||||||
"Client ID 2": "ID klien 2",
|
"Client ID 2": "ID klien 2",
|
||||||
@ -705,10 +706,8 @@
|
|||||||
"Method - Tooltip": "Metode login, kode QR atau login tanpa suara",
|
"Method - Tooltip": "Metode login, kode QR atau login tanpa suara",
|
||||||
"New Provider": "Penyedia Baru",
|
"New Provider": "Penyedia Baru",
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"Notification content": "Notification content",
|
"Parameter": "Parameter",
|
||||||
"Notification content - Tooltip": "Notification content - Tooltip",
|
"Parameter - Tooltip": "Parameter - Tooltip",
|
||||||
"Parameter name": "Parameter name",
|
|
||||||
"Parameter name - Tooltip": "Parameter name - Tooltip",
|
|
||||||
"Parse": "Parse: Memecah atau mengurai data atau teks menjadi bagian-bagian yang lebih kecil dan lebih mudah dipahami atau dimanipulasi",
|
"Parse": "Parse: Memecah atau mengurai data atau teks menjadi bagian-bagian yang lebih kecil dan lebih mudah dipahami atau dimanipulasi",
|
||||||
"Parse metadata successfully": "Berhasil mem-parse metadata",
|
"Parse metadata successfully": "Berhasil mem-parse metadata",
|
||||||
"Path prefix": "Awalan jalur",
|
"Path prefix": "Awalan jalur",
|
||||||
@ -789,9 +788,6 @@
|
|||||||
"Wallets - Tooltip": "Wallets - Tooltip",
|
"Wallets - Tooltip": "Wallets - Tooltip",
|
||||||
"admin (Shared)": "Admin (Berbagi)"
|
"admin (Shared)": "Admin (Berbagi)"
|
||||||
},
|
},
|
||||||
"record": {
|
|
||||||
"Is triggered": "Ditimbulkan"
|
|
||||||
},
|
|
||||||
"resource": {
|
"resource": {
|
||||||
"Copy Link": "Salin Tautan",
|
"Copy Link": "Salin Tautan",
|
||||||
"File name": "Nama file",
|
"File name": "Nama file",
|
||||||
@ -826,6 +822,7 @@
|
|||||||
"Please input your affiliation!": "Silakan masukkan afiliasi Anda!",
|
"Please input your affiliation!": "Silakan masukkan afiliasi Anda!",
|
||||||
"Please input your display name!": "Silakan masukkan nama tampilan Anda!",
|
"Please input your display name!": "Silakan masukkan nama tampilan Anda!",
|
||||||
"Please input your first name!": "Silahkan masukkan nama depan Anda!",
|
"Please input your first name!": "Silahkan masukkan nama depan Anda!",
|
||||||
|
"Please input your invitation code!": "Please input your invitation code!",
|
||||||
"Please input your last name!": "Silahkan masukkan nama belakang Anda!",
|
"Please input your last name!": "Silahkan masukkan nama belakang Anda!",
|
||||||
"Please input your phone number!": "Silakan masukkan nomor telepon Anda!",
|
"Please input your phone number!": "Silakan masukkan nomor telepon Anda!",
|
||||||
"Please input your real name!": "Silakan masukkan nama asli Anda!",
|
"Please input your real name!": "Silakan masukkan nama asli Anda!",
|
||||||
@ -957,7 +954,6 @@
|
|||||||
"ID card type": "ID card type",
|
"ID card type": "ID card type",
|
||||||
"ID card type - Tooltip": "ID card type - Tooltip",
|
"ID card type - Tooltip": "ID card type - Tooltip",
|
||||||
"ID card with person": "ID card with person",
|
"ID card with person": "ID card with person",
|
||||||
"Input your chat id": "Input your chat id",
|
|
||||||
"Input your email": "Masukkan alamat email Anda",
|
"Input your email": "Masukkan alamat email Anda",
|
||||||
"Input your phone number": "Masukkan nomor telepon Anda",
|
"Input your phone number": "Masukkan nomor telepon Anda",
|
||||||
"Is admin": "Apakah admin?",
|
"Is admin": "Apakah admin?",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"Grant types - Tooltip": "Select which grant types are allowed in the OAuth protocol",
|
"Grant types - Tooltip": "Select which grant types are allowed in the OAuth protocol",
|
||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
|
"Invitation code": "Invitation code",
|
||||||
|
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||||
|
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||||
"Left": "Left",
|
"Left": "Left",
|
||||||
"Logged in successfully": "Logged in successfully",
|
"Logged in successfully": "Logged in successfully",
|
||||||
"Logged out successfully": "Logged out successfully",
|
"Logged out successfully": "Logged out successfully",
|
||||||
@ -186,9 +189,9 @@
|
|||||||
"Cert - Tooltip": "The public key certificate that needs to be verified by the client SDK corresponding to this application",
|
"Cert - Tooltip": "The public key certificate that needs to be verified by the client SDK corresponding to this application",
|
||||||
"Certs": "Certs",
|
"Certs": "Certs",
|
||||||
"Click to Upload": "Click to Upload",
|
"Click to Upload": "Click to Upload",
|
||||||
"Client IP": "Client IP",
|
|
||||||
"Close": "Close",
|
"Close": "Close",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
|
"Copy": "Copy",
|
||||||
"Created time": "Created time",
|
"Created time": "Created time",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -288,7 +291,6 @@
|
|||||||
"Providers - Tooltip": "Providers to be configured, including 3rd-party login, object storage, verification code, etc.",
|
"Providers - Tooltip": "Providers to be configured, including 3rd-party login, object storage, verification code, etc.",
|
||||||
"Real name": "Real name",
|
"Real name": "Real name",
|
||||||
"Records": "Records",
|
"Records": "Records",
|
||||||
"Request URI": "Request URI",
|
|
||||||
"Resources": "Resources",
|
"Resources": "Resources",
|
||||||
"Role": "Role",
|
"Role": "Role",
|
||||||
"Role - Tooltip": "Role - Tooltip",
|
"Role - Tooltip": "Role - Tooltip",
|
||||||
@ -327,7 +329,6 @@
|
|||||||
"System Info": "System Info",
|
"System Info": "System Info",
|
||||||
"There was a problem signing you in..": "There was a problem signing you in..",
|
"There was a problem signing you in..": "There was a problem signing you in..",
|
||||||
"This is a read-only demo site!": "This is a read-only demo site!",
|
"This is a read-only demo site!": "This is a read-only demo site!",
|
||||||
"Timestamp": "Timestamp",
|
|
||||||
"Tokens": "Tokens",
|
"Tokens": "Tokens",
|
||||||
"Type": "Type",
|
"Type": "Type",
|
||||||
"Type - Tooltip": "Type - Tooltip",
|
"Type - Tooltip": "Type - Tooltip",
|
||||||
@ -634,10 +635,10 @@
|
|||||||
"Agent ID - Tooltip": "Agent ID",
|
"Agent ID - Tooltip": "Agent ID",
|
||||||
"Api Key": "Api Key",
|
"Api Key": "Api Key",
|
||||||
"Api Key - Tooltip": "Api Key - Tooltip",
|
"Api Key - Tooltip": "Api Key - Tooltip",
|
||||||
"Api Token": "Api Token",
|
|
||||||
"Api Token - Tooltip": "Api Token - Tooltip",
|
|
||||||
"App ID": "App ID",
|
"App ID": "App ID",
|
||||||
"App ID - Tooltip": "App ID",
|
"App ID - Tooltip": "App ID",
|
||||||
|
"App Key": "App Key",
|
||||||
|
"App Key - Tooltip": "App Key - Tooltip",
|
||||||
"App key": "App key",
|
"App key": "App key",
|
||||||
"App key - Tooltip": "App key",
|
"App key - Tooltip": "App key",
|
||||||
"App secret": "App secret",
|
"App secret": "App secret",
|
||||||
@ -658,8 +659,8 @@
|
|||||||
"Category - Tooltip": "Select a category",
|
"Category - Tooltip": "Select a category",
|
||||||
"Channel No.": "Channel No.",
|
"Channel No.": "Channel No.",
|
||||||
"Channel No. - Tooltip": "Channel No.",
|
"Channel No. - Tooltip": "Channel No.",
|
||||||
"Chat Id": "Chat Id",
|
"Chat ID": "Chat ID",
|
||||||
"Chat Id - Tooltip": "Chat Id - Tooltip",
|
"Chat ID - Tooltip": "Chat ID - Tooltip",
|
||||||
"Client ID": "Client ID",
|
"Client ID": "Client ID",
|
||||||
"Client ID - Tooltip": "Client ID",
|
"Client ID - Tooltip": "Client ID",
|
||||||
"Client ID 2": "Client ID 2",
|
"Client ID 2": "Client ID 2",
|
||||||
@ -705,10 +706,8 @@
|
|||||||
"Method - Tooltip": "Login method, QR code or silent login",
|
"Method - Tooltip": "Login method, QR code or silent login",
|
||||||
"New Provider": "New Provider",
|
"New Provider": "New Provider",
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"Notification content": "Notification content",
|
"Parameter": "Parameter",
|
||||||
"Notification content - Tooltip": "Notification content - Tooltip",
|
"Parameter - Tooltip": "Parameter - Tooltip",
|
||||||
"Parameter name": "Parameter name",
|
|
||||||
"Parameter name - Tooltip": "Parameter name - Tooltip",
|
|
||||||
"Parse": "Parse",
|
"Parse": "Parse",
|
||||||
"Parse metadata successfully": "Parse metadata successfully",
|
"Parse metadata successfully": "Parse metadata successfully",
|
||||||
"Path prefix": "Path prefix",
|
"Path prefix": "Path prefix",
|
||||||
@ -789,9 +788,6 @@
|
|||||||
"Wallets - Tooltip": "Wallets - Tooltip",
|
"Wallets - Tooltip": "Wallets - Tooltip",
|
||||||
"admin (Shared)": "admin (Shared)"
|
"admin (Shared)": "admin (Shared)"
|
||||||
},
|
},
|
||||||
"record": {
|
|
||||||
"Is triggered": "Is triggered"
|
|
||||||
},
|
|
||||||
"resource": {
|
"resource": {
|
||||||
"Copy Link": "Copy Link",
|
"Copy Link": "Copy Link",
|
||||||
"File name": "File name",
|
"File name": "File name",
|
||||||
@ -826,6 +822,7 @@
|
|||||||
"Please input your affiliation!": "Please input your affiliation!",
|
"Please input your affiliation!": "Please input your affiliation!",
|
||||||
"Please input your display name!": "Please input your display name!",
|
"Please input your display name!": "Please input your display name!",
|
||||||
"Please input your first name!": "Please input your first name!",
|
"Please input your first name!": "Please input your first name!",
|
||||||
|
"Please input your invitation code!": "Please input your invitation code!",
|
||||||
"Please input your last name!": "Please input your last name!",
|
"Please input your last name!": "Please input your last name!",
|
||||||
"Please input your phone number!": "Please input your phone number!",
|
"Please input your phone number!": "Please input your phone number!",
|
||||||
"Please input your real name!": "Please input your real name!",
|
"Please input your real name!": "Please input your real name!",
|
||||||
@ -957,7 +954,6 @@
|
|||||||
"ID card type": "ID card type",
|
"ID card type": "ID card type",
|
||||||
"ID card type - Tooltip": "ID card type - Tooltip",
|
"ID card type - Tooltip": "ID card type - Tooltip",
|
||||||
"ID card with person": "ID card with person",
|
"ID card with person": "ID card with person",
|
||||||
"Input your chat id": "Input your chat id",
|
|
||||||
"Input your email": "Input your email",
|
"Input your email": "Input your email",
|
||||||
"Input your phone number": "Input your phone number",
|
"Input your phone number": "Input your phone number",
|
||||||
"Is admin": "Is admin",
|
"Is admin": "Is admin",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"Grant types - Tooltip": "OAuthプロトコルで許可されているグラントタイプを選択してください",
|
"Grant types - Tooltip": "OAuthプロトコルで許可されているグラントタイプを選択してください",
|
||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
|
"Invitation code": "Invitation code",
|
||||||
|
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||||
|
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||||
"Left": "左",
|
"Left": "左",
|
||||||
"Logged in successfully": "正常にログインしました",
|
"Logged in successfully": "正常にログインしました",
|
||||||
"Logged out successfully": "正常にログアウトしました",
|
"Logged out successfully": "正常にログアウトしました",
|
||||||
@ -186,9 +189,9 @@
|
|||||||
"Cert - Tooltip": "このアプリケーションに対応するクライアントSDKによって検証する必要がある公開鍵証明書",
|
"Cert - Tooltip": "このアプリケーションに対応するクライアントSDKによって検証する必要がある公開鍵証明書",
|
||||||
"Certs": "証明書",
|
"Certs": "証明書",
|
||||||
"Click to Upload": "アップロードするにはクリックしてください",
|
"Click to Upload": "アップロードするにはクリックしてください",
|
||||||
"Client IP": "クライアントIP",
|
|
||||||
"Close": "閉じる",
|
"Close": "閉じる",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
|
"Copy": "Copy",
|
||||||
"Created time": "作成された時間",
|
"Created time": "作成された時間",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -288,7 +291,6 @@
|
|||||||
"Providers - Tooltip": "設定するプロバイダーには、サードパーティのログイン、オブジェクトストレージ、検証コードなどが含まれます。",
|
"Providers - Tooltip": "設定するプロバイダーには、サードパーティのログイン、オブジェクトストレージ、検証コードなどが含まれます。",
|
||||||
"Real name": "本名",
|
"Real name": "本名",
|
||||||
"Records": "記録",
|
"Records": "記録",
|
||||||
"Request URI": "リクエストURI",
|
|
||||||
"Resources": "リソース",
|
"Resources": "リソース",
|
||||||
"Role": "Role",
|
"Role": "Role",
|
||||||
"Role - Tooltip": "Role - Tooltip",
|
"Role - Tooltip": "Role - Tooltip",
|
||||||
@ -327,7 +329,6 @@
|
|||||||
"System Info": "システム情報",
|
"System Info": "システム情報",
|
||||||
"There was a problem signing you in..": "There was a problem signing you in..",
|
"There was a problem signing you in..": "There was a problem signing you in..",
|
||||||
"This is a read-only demo site!": "これは読み取り専用のデモサイトです!",
|
"This is a read-only demo site!": "これは読み取り専用のデモサイトです!",
|
||||||
"Timestamp": "タイムスタンプ",
|
|
||||||
"Tokens": "トークン",
|
"Tokens": "トークン",
|
||||||
"Type": "Type",
|
"Type": "Type",
|
||||||
"Type - Tooltip": "Type - Tooltip",
|
"Type - Tooltip": "Type - Tooltip",
|
||||||
@ -634,10 +635,10 @@
|
|||||||
"Agent ID - Tooltip": "エージェントID",
|
"Agent ID - Tooltip": "エージェントID",
|
||||||
"Api Key": "Api Key",
|
"Api Key": "Api Key",
|
||||||
"Api Key - Tooltip": "Api Key - Tooltip",
|
"Api Key - Tooltip": "Api Key - Tooltip",
|
||||||
"Api Token": "Api Token",
|
|
||||||
"Api Token - Tooltip": "Api Token - Tooltip",
|
|
||||||
"App ID": "アプリID",
|
"App ID": "アプリID",
|
||||||
"App ID - Tooltip": "アプリID",
|
"App ID - Tooltip": "アプリID",
|
||||||
|
"App Key": "App Key",
|
||||||
|
"App Key - Tooltip": "App Key - Tooltip",
|
||||||
"App key": "アプリキー",
|
"App key": "アプリキー",
|
||||||
"App key - Tooltip": "アプリキー",
|
"App key - Tooltip": "アプリキー",
|
||||||
"App secret": "アプリの秘密鍵",
|
"App secret": "アプリの秘密鍵",
|
||||||
@ -658,8 +659,8 @@
|
|||||||
"Category - Tooltip": "カテゴリーを選択してください",
|
"Category - Tooltip": "カテゴリーを選択してください",
|
||||||
"Channel No.": "チャンネル番号",
|
"Channel No.": "チャンネル番号",
|
||||||
"Channel No. - Tooltip": "チャンネル番号",
|
"Channel No. - Tooltip": "チャンネル番号",
|
||||||
"Chat Id": "Chat Id",
|
"Chat ID": "Chat ID",
|
||||||
"Chat Id - Tooltip": "Chat Id - Tooltip",
|
"Chat ID - Tooltip": "Chat ID - Tooltip",
|
||||||
"Client ID": "クライアントID",
|
"Client ID": "クライアントID",
|
||||||
"Client ID - Tooltip": "クライアントID",
|
"Client ID - Tooltip": "クライアントID",
|
||||||
"Client ID 2": "クライアントID 2",
|
"Client ID 2": "クライアントID 2",
|
||||||
@ -705,10 +706,8 @@
|
|||||||
"Method - Tooltip": "ログイン方法、QRコードまたはサイレントログイン",
|
"Method - Tooltip": "ログイン方法、QRコードまたはサイレントログイン",
|
||||||
"New Provider": "新しい提供者",
|
"New Provider": "新しい提供者",
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"Notification content": "Notification content",
|
"Parameter": "Parameter",
|
||||||
"Notification content - Tooltip": "Notification content - Tooltip",
|
"Parameter - Tooltip": "Parameter - Tooltip",
|
||||||
"Parameter name": "Parameter name",
|
|
||||||
"Parameter name - Tooltip": "Parameter name - Tooltip",
|
|
||||||
"Parse": "パースする",
|
"Parse": "パースする",
|
||||||
"Parse metadata successfully": "メタデータを正常に解析しました",
|
"Parse metadata successfully": "メタデータを正常に解析しました",
|
||||||
"Path prefix": "パスプレフィックス",
|
"Path prefix": "パスプレフィックス",
|
||||||
@ -789,9 +788,6 @@
|
|||||||
"Wallets - Tooltip": "Wallets - Tooltip",
|
"Wallets - Tooltip": "Wallets - Tooltip",
|
||||||
"admin (Shared)": "管理者(共有)"
|
"admin (Shared)": "管理者(共有)"
|
||||||
},
|
},
|
||||||
"record": {
|
|
||||||
"Is triggered": "トリガーされています"
|
|
||||||
},
|
|
||||||
"resource": {
|
"resource": {
|
||||||
"Copy Link": "コピー リンク",
|
"Copy Link": "コピー リンク",
|
||||||
"File name": "ファイル名",
|
"File name": "ファイル名",
|
||||||
@ -826,6 +822,7 @@
|
|||||||
"Please input your affiliation!": "所属を入力してください!",
|
"Please input your affiliation!": "所属を入力してください!",
|
||||||
"Please input your display name!": "表示名を入力してください!",
|
"Please input your display name!": "表示名を入力してください!",
|
||||||
"Please input your first name!": "最初の名前を入力してください!",
|
"Please input your first name!": "最初の名前を入力してください!",
|
||||||
|
"Please input your invitation code!": "Please input your invitation code!",
|
||||||
"Please input your last name!": "あなたの姓を入力してください!",
|
"Please input your last name!": "あなたの姓を入力してください!",
|
||||||
"Please input your phone number!": "あなたの電話番号を入力してください!",
|
"Please input your phone number!": "あなたの電話番号を入力してください!",
|
||||||
"Please input your real name!": "正しい名前を入力してください!",
|
"Please input your real name!": "正しい名前を入力してください!",
|
||||||
@ -957,7 +954,6 @@
|
|||||||
"ID card type": "ID card type",
|
"ID card type": "ID card type",
|
||||||
"ID card type - Tooltip": "ID card type - Tooltip",
|
"ID card type - Tooltip": "ID card type - Tooltip",
|
||||||
"ID card with person": "ID card with person",
|
"ID card with person": "ID card with person",
|
||||||
"Input your chat id": "Input your chat id",
|
|
||||||
"Input your email": "あなたのメールアドレスを入力してください",
|
"Input your email": "あなたのメールアドレスを入力してください",
|
||||||
"Input your phone number": "電話番号を入力してください",
|
"Input your phone number": "電話番号を入力してください",
|
||||||
"Is admin": "管理者ですか?",
|
"Is admin": "管理者ですか?",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"Grant types - Tooltip": "OAuth 프로토콜에서 허용되는 그란트 유형을 선택하십시오",
|
"Grant types - Tooltip": "OAuth 프로토콜에서 허용되는 그란트 유형을 선택하십시오",
|
||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
|
"Invitation code": "Invitation code",
|
||||||
|
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||||
|
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||||
"Left": "왼쪽",
|
"Left": "왼쪽",
|
||||||
"Logged in successfully": "성공적으로 로그인했습니다",
|
"Logged in successfully": "성공적으로 로그인했습니다",
|
||||||
"Logged out successfully": "로그아웃이 성공적으로 되었습니다",
|
"Logged out successfully": "로그아웃이 성공적으로 되었습니다",
|
||||||
@ -186,9 +189,9 @@
|
|||||||
"Cert - Tooltip": "이 응용 프로그램에 해당하는 클라이언트 SDK에서 확인해야 하는 공개 키 인증서",
|
"Cert - Tooltip": "이 응용 프로그램에 해당하는 클라이언트 SDK에서 확인해야 하는 공개 키 인증서",
|
||||||
"Certs": "증명서",
|
"Certs": "증명서",
|
||||||
"Click to Upload": "클릭하여 업로드하세요",
|
"Click to Upload": "클릭하여 업로드하세요",
|
||||||
"Client IP": "고객 IP",
|
|
||||||
"Close": "닫다",
|
"Close": "닫다",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
|
"Copy": "Copy",
|
||||||
"Created time": "작성한 시간",
|
"Created time": "작성한 시간",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -288,7 +291,6 @@
|
|||||||
"Providers - Tooltip": "공급 업체는 구성되어야합니다. 3rd-party 로그인, 객체 저장소, 검증 코드 등을 포함합니다.",
|
"Providers - Tooltip": "공급 업체는 구성되어야합니다. 3rd-party 로그인, 객체 저장소, 검증 코드 등을 포함합니다.",
|
||||||
"Real name": "실명",
|
"Real name": "실명",
|
||||||
"Records": "기록",
|
"Records": "기록",
|
||||||
"Request URI": "요청 URI",
|
|
||||||
"Resources": "자원",
|
"Resources": "자원",
|
||||||
"Role": "Role",
|
"Role": "Role",
|
||||||
"Role - Tooltip": "Role - Tooltip",
|
"Role - Tooltip": "Role - Tooltip",
|
||||||
@ -327,7 +329,6 @@
|
|||||||
"System Info": "시스템 정보",
|
"System Info": "시스템 정보",
|
||||||
"There was a problem signing you in..": "There was a problem signing you in..",
|
"There was a problem signing you in..": "There was a problem signing you in..",
|
||||||
"This is a read-only demo site!": "이것은 읽기 전용 데모 사이트입니다!",
|
"This is a read-only demo site!": "이것은 읽기 전용 데모 사이트입니다!",
|
||||||
"Timestamp": "타임스탬프",
|
|
||||||
"Tokens": "토큰",
|
"Tokens": "토큰",
|
||||||
"Type": "Type",
|
"Type": "Type",
|
||||||
"Type - Tooltip": "Type - Tooltip",
|
"Type - Tooltip": "Type - Tooltip",
|
||||||
@ -634,10 +635,10 @@
|
|||||||
"Agent ID - Tooltip": "에이전트 ID",
|
"Agent ID - Tooltip": "에이전트 ID",
|
||||||
"Api Key": "Api Key",
|
"Api Key": "Api Key",
|
||||||
"Api Key - Tooltip": "Api Key - Tooltip",
|
"Api Key - Tooltip": "Api Key - Tooltip",
|
||||||
"Api Token": "Api Token",
|
|
||||||
"Api Token - Tooltip": "Api Token - Tooltip",
|
|
||||||
"App ID": "앱 ID",
|
"App ID": "앱 ID",
|
||||||
"App ID - Tooltip": "앱 식별자",
|
"App ID - Tooltip": "앱 식별자",
|
||||||
|
"App Key": "App Key",
|
||||||
|
"App Key - Tooltip": "App Key - Tooltip",
|
||||||
"App key": "앱 키",
|
"App key": "앱 키",
|
||||||
"App key - Tooltip": "앱 키",
|
"App key - Tooltip": "앱 키",
|
||||||
"App secret": "앱 비밀키",
|
"App secret": "앱 비밀키",
|
||||||
@ -658,8 +659,8 @@
|
|||||||
"Category - Tooltip": "카테고리를 선택하세요",
|
"Category - Tooltip": "카테고리를 선택하세요",
|
||||||
"Channel No.": "채널 번호",
|
"Channel No.": "채널 번호",
|
||||||
"Channel No. - Tooltip": "채널 번호",
|
"Channel No. - Tooltip": "채널 번호",
|
||||||
"Chat Id": "Chat Id",
|
"Chat ID": "Chat ID",
|
||||||
"Chat Id - Tooltip": "Chat Id - Tooltip",
|
"Chat ID - Tooltip": "Chat ID - Tooltip",
|
||||||
"Client ID": "클라이언트 ID",
|
"Client ID": "클라이언트 ID",
|
||||||
"Client ID - Tooltip": "클라이언트 ID",
|
"Client ID - Tooltip": "클라이언트 ID",
|
||||||
"Client ID 2": "고객 ID 2",
|
"Client ID 2": "고객 ID 2",
|
||||||
@ -705,10 +706,8 @@
|
|||||||
"Method - Tooltip": "로그인 방법, QR 코드 또는 음성 로그인",
|
"Method - Tooltip": "로그인 방법, QR 코드 또는 음성 로그인",
|
||||||
"New Provider": "새로운 공급 업체",
|
"New Provider": "새로운 공급 업체",
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"Notification content": "Notification content",
|
"Parameter": "Parameter",
|
||||||
"Notification content - Tooltip": "Notification content - Tooltip",
|
"Parameter - Tooltip": "Parameter - Tooltip",
|
||||||
"Parameter name": "Parameter name",
|
|
||||||
"Parameter name - Tooltip": "Parameter name - Tooltip",
|
|
||||||
"Parse": "파싱",
|
"Parse": "파싱",
|
||||||
"Parse metadata successfully": "메타데이터를 성공적으로 분석했습니다",
|
"Parse metadata successfully": "메타데이터를 성공적으로 분석했습니다",
|
||||||
"Path prefix": "경로 접두어",
|
"Path prefix": "경로 접두어",
|
||||||
@ -789,9 +788,6 @@
|
|||||||
"Wallets - Tooltip": "Wallets - Tooltip",
|
"Wallets - Tooltip": "Wallets - Tooltip",
|
||||||
"admin (Shared)": "관리자 (공유)"
|
"admin (Shared)": "관리자 (공유)"
|
||||||
},
|
},
|
||||||
"record": {
|
|
||||||
"Is triggered": "반응하다"
|
|
||||||
},
|
|
||||||
"resource": {
|
"resource": {
|
||||||
"Copy Link": "링크 복사하기",
|
"Copy Link": "링크 복사하기",
|
||||||
"File name": "파일 이름",
|
"File name": "파일 이름",
|
||||||
@ -826,6 +822,7 @@
|
|||||||
"Please input your affiliation!": "소속을 입력해주세요!",
|
"Please input your affiliation!": "소속을 입력해주세요!",
|
||||||
"Please input your display name!": "디스플레이 이름을 입력해주세요!",
|
"Please input your display name!": "디스플레이 이름을 입력해주세요!",
|
||||||
"Please input your first name!": "이름을 입력해주세요!",
|
"Please input your first name!": "이름을 입력해주세요!",
|
||||||
|
"Please input your invitation code!": "Please input your invitation code!",
|
||||||
"Please input your last name!": "성을 입력해주세요!",
|
"Please input your last name!": "성을 입력해주세요!",
|
||||||
"Please input your phone number!": "전화번호를 입력해주세요!",
|
"Please input your phone number!": "전화번호를 입력해주세요!",
|
||||||
"Please input your real name!": "진짜 이름을 입력해주세요!",
|
"Please input your real name!": "진짜 이름을 입력해주세요!",
|
||||||
@ -957,7 +954,6 @@
|
|||||||
"ID card type": "ID card type",
|
"ID card type": "ID card type",
|
||||||
"ID card type - Tooltip": "ID card type - Tooltip",
|
"ID card type - Tooltip": "ID card type - Tooltip",
|
||||||
"ID card with person": "ID card with person",
|
"ID card with person": "ID card with person",
|
||||||
"Input your chat id": "Input your chat id",
|
|
||||||
"Input your email": "이메일을 입력하세요",
|
"Input your email": "이메일을 입력하세요",
|
||||||
"Input your phone number": "전화번호를 입력하세요",
|
"Input your phone number": "전화번호를 입력하세요",
|
||||||
"Is admin": "어드민인가요?",
|
"Is admin": "어드민인가요?",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"Grant types - Tooltip": "Select which grant types are allowed in the OAuth protocol",
|
"Grant types - Tooltip": "Select which grant types are allowed in the OAuth protocol",
|
||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
|
"Invitation code": "Invitation code",
|
||||||
|
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||||
|
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||||
"Left": "Left",
|
"Left": "Left",
|
||||||
"Logged in successfully": "Logged in successfully",
|
"Logged in successfully": "Logged in successfully",
|
||||||
"Logged out successfully": "Logged out successfully",
|
"Logged out successfully": "Logged out successfully",
|
||||||
@ -186,9 +189,9 @@
|
|||||||
"Cert - Tooltip": "The public key certificate that needs to be verified by the client SDK corresponding to this application",
|
"Cert - Tooltip": "The public key certificate that needs to be verified by the client SDK corresponding to this application",
|
||||||
"Certs": "Certs",
|
"Certs": "Certs",
|
||||||
"Click to Upload": "Click to Upload",
|
"Click to Upload": "Click to Upload",
|
||||||
"Client IP": "Client IP",
|
|
||||||
"Close": "Close",
|
"Close": "Close",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
|
"Copy": "Copy",
|
||||||
"Created time": "Created time",
|
"Created time": "Created time",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -288,7 +291,6 @@
|
|||||||
"Providers - Tooltip": "Providers to be configured, including 3rd-party login, object storage, verification code, etc.",
|
"Providers - Tooltip": "Providers to be configured, including 3rd-party login, object storage, verification code, etc.",
|
||||||
"Real name": "Real name",
|
"Real name": "Real name",
|
||||||
"Records": "Records",
|
"Records": "Records",
|
||||||
"Request URI": "Request URI",
|
|
||||||
"Resources": "Resources",
|
"Resources": "Resources",
|
||||||
"Role": "Role",
|
"Role": "Role",
|
||||||
"Role - Tooltip": "Role - Tooltip",
|
"Role - Tooltip": "Role - Tooltip",
|
||||||
@ -327,7 +329,6 @@
|
|||||||
"System Info": "System Info",
|
"System Info": "System Info",
|
||||||
"There was a problem signing you in..": "There was a problem signing you in..",
|
"There was a problem signing you in..": "There was a problem signing you in..",
|
||||||
"This is a read-only demo site!": "This is a read-only demo site!",
|
"This is a read-only demo site!": "This is a read-only demo site!",
|
||||||
"Timestamp": "Timestamp",
|
|
||||||
"Tokens": "Tokens",
|
"Tokens": "Tokens",
|
||||||
"Type": "Type",
|
"Type": "Type",
|
||||||
"Type - Tooltip": "Type - Tooltip",
|
"Type - Tooltip": "Type - Tooltip",
|
||||||
@ -634,10 +635,10 @@
|
|||||||
"Agent ID - Tooltip": "Agent ID",
|
"Agent ID - Tooltip": "Agent ID",
|
||||||
"Api Key": "Api Key",
|
"Api Key": "Api Key",
|
||||||
"Api Key - Tooltip": "Api Key - Tooltip",
|
"Api Key - Tooltip": "Api Key - Tooltip",
|
||||||
"Api Token": "Api Token",
|
|
||||||
"Api Token - Tooltip": "Api Token - Tooltip",
|
|
||||||
"App ID": "App ID",
|
"App ID": "App ID",
|
||||||
"App ID - Tooltip": "App ID",
|
"App ID - Tooltip": "App ID",
|
||||||
|
"App Key": "App Key",
|
||||||
|
"App Key - Tooltip": "App Key - Tooltip",
|
||||||
"App key": "App key",
|
"App key": "App key",
|
||||||
"App key - Tooltip": "App key",
|
"App key - Tooltip": "App key",
|
||||||
"App secret": "App secret",
|
"App secret": "App secret",
|
||||||
@ -658,8 +659,8 @@
|
|||||||
"Category - Tooltip": "Select a category",
|
"Category - Tooltip": "Select a category",
|
||||||
"Channel No.": "Channel No.",
|
"Channel No.": "Channel No.",
|
||||||
"Channel No. - Tooltip": "Channel No.",
|
"Channel No. - Tooltip": "Channel No.",
|
||||||
"Chat Id": "Chat Id",
|
"Chat ID": "Chat ID",
|
||||||
"Chat Id - Tooltip": "Chat Id - Tooltip",
|
"Chat ID - Tooltip": "Chat ID - Tooltip",
|
||||||
"Client ID": "Client ID",
|
"Client ID": "Client ID",
|
||||||
"Client ID - Tooltip": "Client ID",
|
"Client ID - Tooltip": "Client ID",
|
||||||
"Client ID 2": "Client ID 2",
|
"Client ID 2": "Client ID 2",
|
||||||
@ -705,10 +706,8 @@
|
|||||||
"Method - Tooltip": "Login method, QR code or silent login",
|
"Method - Tooltip": "Login method, QR code or silent login",
|
||||||
"New Provider": "New Provider",
|
"New Provider": "New Provider",
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"Notification content": "Notification content",
|
"Parameter": "Parameter",
|
||||||
"Notification content - Tooltip": "Notification content - Tooltip",
|
"Parameter - Tooltip": "Parameter - Tooltip",
|
||||||
"Parameter name": "Parameter name",
|
|
||||||
"Parameter name - Tooltip": "Parameter name - Tooltip",
|
|
||||||
"Parse": "Parse",
|
"Parse": "Parse",
|
||||||
"Parse metadata successfully": "Parse metadata successfully",
|
"Parse metadata successfully": "Parse metadata successfully",
|
||||||
"Path prefix": "Path prefix",
|
"Path prefix": "Path prefix",
|
||||||
@ -789,9 +788,6 @@
|
|||||||
"Wallets - Tooltip": "Wallets - Tooltip",
|
"Wallets - Tooltip": "Wallets - Tooltip",
|
||||||
"admin (Shared)": "admin (Shared)"
|
"admin (Shared)": "admin (Shared)"
|
||||||
},
|
},
|
||||||
"record": {
|
|
||||||
"Is triggered": "Is triggered"
|
|
||||||
},
|
|
||||||
"resource": {
|
"resource": {
|
||||||
"Copy Link": "Copy Link",
|
"Copy Link": "Copy Link",
|
||||||
"File name": "File name",
|
"File name": "File name",
|
||||||
@ -826,6 +822,7 @@
|
|||||||
"Please input your affiliation!": "Please input your affiliation!",
|
"Please input your affiliation!": "Please input your affiliation!",
|
||||||
"Please input your display name!": "Please input your display name!",
|
"Please input your display name!": "Please input your display name!",
|
||||||
"Please input your first name!": "Please input your first name!",
|
"Please input your first name!": "Please input your first name!",
|
||||||
|
"Please input your invitation code!": "Please input your invitation code!",
|
||||||
"Please input your last name!": "Please input your last name!",
|
"Please input your last name!": "Please input your last name!",
|
||||||
"Please input your phone number!": "Please input your phone number!",
|
"Please input your phone number!": "Please input your phone number!",
|
||||||
"Please input your real name!": "Please input your real name!",
|
"Please input your real name!": "Please input your real name!",
|
||||||
@ -957,7 +954,6 @@
|
|||||||
"ID card type": "ID card type",
|
"ID card type": "ID card type",
|
||||||
"ID card type - Tooltip": "ID card type - Tooltip",
|
"ID card type - Tooltip": "ID card type - Tooltip",
|
||||||
"ID card with person": "ID card with person",
|
"ID card with person": "ID card with person",
|
||||||
"Input your chat id": "Input your chat id",
|
|
||||||
"Input your email": "Input your email",
|
"Input your email": "Input your email",
|
||||||
"Input your phone number": "Input your phone number",
|
"Input your phone number": "Input your phone number",
|
||||||
"Is admin": "Is admin",
|
"Is admin": "Is admin",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"Grant types - Tooltip": "Selecione quais tipos de concessão são permitidos no protocolo OAuth",
|
"Grant types - Tooltip": "Selecione quais tipos de concessão são permitidos no protocolo OAuth",
|
||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
|
"Invitation code": "Invitation code",
|
||||||
|
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||||
|
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||||
"Left": "Esquerda",
|
"Left": "Esquerda",
|
||||||
"Logged in successfully": "Login realizado com sucesso",
|
"Logged in successfully": "Login realizado com sucesso",
|
||||||
"Logged out successfully": "Logout realizado com sucesso",
|
"Logged out successfully": "Logout realizado com sucesso",
|
||||||
@ -186,9 +189,9 @@
|
|||||||
"Cert - Tooltip": "O certificado da chave pública que precisa ser verificado pelo SDK do cliente correspondente a esta aplicação",
|
"Cert - Tooltip": "O certificado da chave pública que precisa ser verificado pelo SDK do cliente correspondente a esta aplicação",
|
||||||
"Certs": "Certificados",
|
"Certs": "Certificados",
|
||||||
"Click to Upload": "Clique para Enviar",
|
"Click to Upload": "Clique para Enviar",
|
||||||
"Client IP": "IP do Cliente",
|
|
||||||
"Close": "Fechar",
|
"Close": "Fechar",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
|
"Copy": "Copy",
|
||||||
"Created time": "Hora de Criação",
|
"Created time": "Hora de Criação",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -288,7 +291,6 @@
|
|||||||
"Providers - Tooltip": "Provedores a serem configurados, incluindo login de terceiros, armazenamento de objetos, código de verificação, etc.",
|
"Providers - Tooltip": "Provedores a serem configurados, incluindo login de terceiros, armazenamento de objetos, código de verificação, etc.",
|
||||||
"Real name": "Nome real",
|
"Real name": "Nome real",
|
||||||
"Records": "Registros",
|
"Records": "Registros",
|
||||||
"Request URI": "URI da solicitação",
|
|
||||||
"Resources": "Recursos",
|
"Resources": "Recursos",
|
||||||
"Role": "Role",
|
"Role": "Role",
|
||||||
"Role - Tooltip": "Role - Tooltip",
|
"Role - Tooltip": "Role - Tooltip",
|
||||||
@ -327,7 +329,6 @@
|
|||||||
"System Info": "Informações do Sistema",
|
"System Info": "Informações do Sistema",
|
||||||
"There was a problem signing you in..": "Ocorreu um problema ao fazer o login.",
|
"There was a problem signing you in..": "Ocorreu um problema ao fazer o login.",
|
||||||
"This is a read-only demo site!": "Este é um site de demonstração apenas para leitura!",
|
"This is a read-only demo site!": "Este é um site de demonstração apenas para leitura!",
|
||||||
"Timestamp": "Carimbo de Data/Hora",
|
|
||||||
"Tokens": "Tokens",
|
"Tokens": "Tokens",
|
||||||
"Type": "Type",
|
"Type": "Type",
|
||||||
"Type - Tooltip": "Type - Tooltip",
|
"Type - Tooltip": "Type - Tooltip",
|
||||||
@ -634,10 +635,10 @@
|
|||||||
"Agent ID - Tooltip": "ID do Agente",
|
"Agent ID - Tooltip": "ID do Agente",
|
||||||
"Api Key": "Api Key",
|
"Api Key": "Api Key",
|
||||||
"Api Key - Tooltip": "Api Key - Tooltip",
|
"Api Key - Tooltip": "Api Key - Tooltip",
|
||||||
"Api Token": "Api Token",
|
|
||||||
"Api Token - Tooltip": "Api Token - Tooltip",
|
|
||||||
"App ID": "ID do aplicativo",
|
"App ID": "ID do aplicativo",
|
||||||
"App ID - Tooltip": "ID do aplicativo",
|
"App ID - Tooltip": "ID do aplicativo",
|
||||||
|
"App Key": "App Key",
|
||||||
|
"App Key - Tooltip": "App Key - Tooltip",
|
||||||
"App key": "Chave do aplicativo",
|
"App key": "Chave do aplicativo",
|
||||||
"App key - Tooltip": "Chave do aplicativo",
|
"App key - Tooltip": "Chave do aplicativo",
|
||||||
"App secret": "Segredo do aplicativo",
|
"App secret": "Segredo do aplicativo",
|
||||||
@ -658,8 +659,8 @@
|
|||||||
"Category - Tooltip": "Selecione uma categoria",
|
"Category - Tooltip": "Selecione uma categoria",
|
||||||
"Channel No.": "Número do canal",
|
"Channel No.": "Número do canal",
|
||||||
"Channel No. - Tooltip": "Número do canal",
|
"Channel No. - Tooltip": "Número do canal",
|
||||||
"Chat Id": "Chat Id",
|
"Chat ID": "Chat ID",
|
||||||
"Chat Id - Tooltip": "Chat Id - Tooltip",
|
"Chat ID - Tooltip": "Chat ID - Tooltip",
|
||||||
"Client ID": "ID do cliente",
|
"Client ID": "ID do cliente",
|
||||||
"Client ID - Tooltip": "ID do cliente",
|
"Client ID - Tooltip": "ID do cliente",
|
||||||
"Client ID 2": "ID do cliente 2",
|
"Client ID 2": "ID do cliente 2",
|
||||||
@ -705,10 +706,8 @@
|
|||||||
"Method - Tooltip": "Método de login, código QR ou login silencioso",
|
"Method - Tooltip": "Método de login, código QR ou login silencioso",
|
||||||
"New Provider": "Novo Provedor",
|
"New Provider": "Novo Provedor",
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"Notification content": "Notification content",
|
"Parameter": "Parameter",
|
||||||
"Notification content - Tooltip": "Notification content - Tooltip",
|
"Parameter - Tooltip": "Parameter - Tooltip",
|
||||||
"Parameter name": "Parameter name",
|
|
||||||
"Parameter name - Tooltip": "Parameter name - Tooltip",
|
|
||||||
"Parse": "Analisar",
|
"Parse": "Analisar",
|
||||||
"Parse metadata successfully": "Metadados analisados com sucesso",
|
"Parse metadata successfully": "Metadados analisados com sucesso",
|
||||||
"Path prefix": "Prefixo do caminho",
|
"Path prefix": "Prefixo do caminho",
|
||||||
@ -789,9 +788,6 @@
|
|||||||
"Wallets - Tooltip": "Wallets - Tooltip",
|
"Wallets - Tooltip": "Wallets - Tooltip",
|
||||||
"admin (Shared)": "admin (Compartilhado)"
|
"admin (Shared)": "admin (Compartilhado)"
|
||||||
},
|
},
|
||||||
"record": {
|
|
||||||
"Is triggered": "Foi acionado"
|
|
||||||
},
|
|
||||||
"resource": {
|
"resource": {
|
||||||
"Copy Link": "Copiar Link",
|
"Copy Link": "Copiar Link",
|
||||||
"File name": "Nome do arquivo",
|
"File name": "Nome do arquivo",
|
||||||
@ -826,6 +822,7 @@
|
|||||||
"Please input your affiliation!": "Por favor, insira sua afiliação!",
|
"Please input your affiliation!": "Por favor, insira sua afiliação!",
|
||||||
"Please input your display name!": "Por favor, insira seu nome de exibição!",
|
"Please input your display name!": "Por favor, insira seu nome de exibição!",
|
||||||
"Please input your first name!": "Por favor, insira seu primeiro nome!",
|
"Please input your first name!": "Por favor, insira seu primeiro nome!",
|
||||||
|
"Please input your invitation code!": "Please input your invitation code!",
|
||||||
"Please input your last name!": "Por favor, insira seu sobrenome!",
|
"Please input your last name!": "Por favor, insira seu sobrenome!",
|
||||||
"Please input your phone number!": "Por favor, insira seu número de telefone!",
|
"Please input your phone number!": "Por favor, insira seu número de telefone!",
|
||||||
"Please input your real name!": "Por favor, insira seu nome real!",
|
"Please input your real name!": "Por favor, insira seu nome real!",
|
||||||
@ -957,7 +954,6 @@
|
|||||||
"ID card type": "Tipo de cartão de identidade",
|
"ID card type": "Tipo de cartão de identidade",
|
||||||
"ID card type - Tooltip": "Tipo de cartão de identidade - Tooltip",
|
"ID card type - Tooltip": "Tipo de cartão de identidade - Tooltip",
|
||||||
"ID card with person": "ID card with person",
|
"ID card with person": "ID card with person",
|
||||||
"Input your chat id": "Input your chat id",
|
|
||||||
"Input your email": "Digite seu e-mail",
|
"Input your email": "Digite seu e-mail",
|
||||||
"Input your phone number": "Digite seu número de telefone",
|
"Input your phone number": "Digite seu número de telefone",
|
||||||
"Is admin": "É administrador",
|
"Is admin": "É administrador",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"Grant types - Tooltip": "Выберите, какие типы грантов разрешены в протоколе OAuth",
|
"Grant types - Tooltip": "Выберите, какие типы грантов разрешены в протоколе OAuth",
|
||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
|
"Invitation code": "Invitation code",
|
||||||
|
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||||
|
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||||
"Left": "Левый",
|
"Left": "Левый",
|
||||||
"Logged in successfully": "Успешный вход в систему",
|
"Logged in successfully": "Успешный вход в систему",
|
||||||
"Logged out successfully": "Успешный выход из системы",
|
"Logged out successfully": "Успешный выход из системы",
|
||||||
@ -186,9 +189,9 @@
|
|||||||
"Cert - Tooltip": "Сертификат открытого ключа, который требуется проверить клиентским SDK, соответствующим этому приложению",
|
"Cert - Tooltip": "Сертификат открытого ключа, который требуется проверить клиентским SDK, соответствующим этому приложению",
|
||||||
"Certs": "сертификаты",
|
"Certs": "сертификаты",
|
||||||
"Click to Upload": "Нажмите, чтобы загрузить",
|
"Click to Upload": "Нажмите, чтобы загрузить",
|
||||||
"Client IP": "Клиентский IP",
|
|
||||||
"Close": "Близко",
|
"Close": "Близко",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
|
"Copy": "Copy",
|
||||||
"Created time": "Созданное время",
|
"Created time": "Созданное время",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -288,7 +291,6 @@
|
|||||||
"Providers - Tooltip": "Провайдеры должны быть настроены, включая вход с помощью сторонних сервисов, объектное хранилище, код подтверждения и т.д.",
|
"Providers - Tooltip": "Провайдеры должны быть настроены, включая вход с помощью сторонних сервисов, объектное хранилище, код подтверждения и т.д.",
|
||||||
"Real name": "Реальное имя",
|
"Real name": "Реальное имя",
|
||||||
"Records": "Записи",
|
"Records": "Записи",
|
||||||
"Request URI": "Запрос URI",
|
|
||||||
"Resources": "Ресурсы",
|
"Resources": "Ресурсы",
|
||||||
"Role": "Role",
|
"Role": "Role",
|
||||||
"Role - Tooltip": "Role - Tooltip",
|
"Role - Tooltip": "Role - Tooltip",
|
||||||
@ -327,7 +329,6 @@
|
|||||||
"System Info": "Системная информация",
|
"System Info": "Системная информация",
|
||||||
"There was a problem signing you in..": "There was a problem signing you in..",
|
"There was a problem signing you in..": "There was a problem signing you in..",
|
||||||
"This is a read-only demo site!": "Это демонстрационный сайт только для чтения!",
|
"This is a read-only demo site!": "Это демонстрационный сайт только для чтения!",
|
||||||
"Timestamp": "Отметка времени",
|
|
||||||
"Tokens": "Токены",
|
"Tokens": "Токены",
|
||||||
"Type": "Type",
|
"Type": "Type",
|
||||||
"Type - Tooltip": "Type - Tooltip",
|
"Type - Tooltip": "Type - Tooltip",
|
||||||
@ -634,10 +635,10 @@
|
|||||||
"Agent ID - Tooltip": "Агент ID",
|
"Agent ID - Tooltip": "Агент ID",
|
||||||
"Api Key": "Api Key",
|
"Api Key": "Api Key",
|
||||||
"Api Key - Tooltip": "Api Key - Tooltip",
|
"Api Key - Tooltip": "Api Key - Tooltip",
|
||||||
"Api Token": "Api Token",
|
|
||||||
"Api Token - Tooltip": "Api Token - Tooltip",
|
|
||||||
"App ID": "Идентификатор приложения",
|
"App ID": "Идентификатор приложения",
|
||||||
"App ID - Tooltip": "Идентификатор приложения",
|
"App ID - Tooltip": "Идентификатор приложения",
|
||||||
|
"App Key": "App Key",
|
||||||
|
"App Key - Tooltip": "App Key - Tooltip",
|
||||||
"App key": "Ключ приложения",
|
"App key": "Ключ приложения",
|
||||||
"App key - Tooltip": "Ключ приложения",
|
"App key - Tooltip": "Ключ приложения",
|
||||||
"App secret": "Секрет приложения",
|
"App secret": "Секрет приложения",
|
||||||
@ -658,8 +659,8 @@
|
|||||||
"Category - Tooltip": "Выберите категорию",
|
"Category - Tooltip": "Выберите категорию",
|
||||||
"Channel No.": "Канал №",
|
"Channel No.": "Канал №",
|
||||||
"Channel No. - Tooltip": "Номер канала.",
|
"Channel No. - Tooltip": "Номер канала.",
|
||||||
"Chat Id": "Chat Id",
|
"Chat ID": "Chat ID",
|
||||||
"Chat Id - Tooltip": "Chat Id - Tooltip",
|
"Chat ID - Tooltip": "Chat ID - Tooltip",
|
||||||
"Client ID": "Идентификатор клиента",
|
"Client ID": "Идентификатор клиента",
|
||||||
"Client ID - Tooltip": "Идентификатор клиента",
|
"Client ID - Tooltip": "Идентификатор клиента",
|
||||||
"Client ID 2": "Идентификатор клиента 2",
|
"Client ID 2": "Идентификатор клиента 2",
|
||||||
@ -705,10 +706,8 @@
|
|||||||
"Method - Tooltip": "Метод входа, QR-код или беззвучный вход",
|
"Method - Tooltip": "Метод входа, QR-код или беззвучный вход",
|
||||||
"New Provider": "Новый провайдер",
|
"New Provider": "Новый провайдер",
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"Notification content": "Notification content",
|
"Parameter": "Parameter",
|
||||||
"Notification content - Tooltip": "Notification content - Tooltip",
|
"Parameter - Tooltip": "Parameter - Tooltip",
|
||||||
"Parameter name": "Parameter name",
|
|
||||||
"Parameter name - Tooltip": "Parameter name - Tooltip",
|
|
||||||
"Parse": "Спарсить",
|
"Parse": "Спарсить",
|
||||||
"Parse metadata successfully": "Успешно обработана метаданные",
|
"Parse metadata successfully": "Успешно обработана метаданные",
|
||||||
"Path prefix": "Префикс пути",
|
"Path prefix": "Префикс пути",
|
||||||
@ -789,9 +788,6 @@
|
|||||||
"Wallets - Tooltip": "Wallets - Tooltip",
|
"Wallets - Tooltip": "Wallets - Tooltip",
|
||||||
"admin (Shared)": "администратор (общий)"
|
"admin (Shared)": "администратор (общий)"
|
||||||
},
|
},
|
||||||
"record": {
|
|
||||||
"Is triggered": "Сработало"
|
|
||||||
},
|
|
||||||
"resource": {
|
"resource": {
|
||||||
"Copy Link": "Копировать ссылку",
|
"Copy Link": "Копировать ссылку",
|
||||||
"File name": "Имя файла",
|
"File name": "Имя файла",
|
||||||
@ -826,6 +822,7 @@
|
|||||||
"Please input your affiliation!": "Пожалуйста, укажите свою принадлежность!",
|
"Please input your affiliation!": "Пожалуйста, укажите свою принадлежность!",
|
||||||
"Please input your display name!": "Пожалуйста, введите своё отображаемое имя!",
|
"Please input your display name!": "Пожалуйста, введите своё отображаемое имя!",
|
||||||
"Please input your first name!": "Пожалуйста, введите свое имя!",
|
"Please input your first name!": "Пожалуйста, введите свое имя!",
|
||||||
|
"Please input your invitation code!": "Please input your invitation code!",
|
||||||
"Please input your last name!": "Введите свою фамилию!",
|
"Please input your last name!": "Введите свою фамилию!",
|
||||||
"Please input your phone number!": "Пожалуйста, введите свой номер телефона!",
|
"Please input your phone number!": "Пожалуйста, введите свой номер телефона!",
|
||||||
"Please input your real name!": "Пожалуйста, введите своё настоящее имя!",
|
"Please input your real name!": "Пожалуйста, введите своё настоящее имя!",
|
||||||
@ -957,7 +954,6 @@
|
|||||||
"ID card type": "ID card type",
|
"ID card type": "ID card type",
|
||||||
"ID card type - Tooltip": "ID card type - Tooltip",
|
"ID card type - Tooltip": "ID card type - Tooltip",
|
||||||
"ID card with person": "ID card with person",
|
"ID card with person": "ID card with person",
|
||||||
"Input your chat id": "Input your chat id",
|
|
||||||
"Input your email": "Введите свой адрес электронной почты",
|
"Input your email": "Введите свой адрес электронной почты",
|
||||||
"Input your phone number": "Введите ваш номер телефона",
|
"Input your phone number": "Введите ваш номер телефона",
|
||||||
"Is admin": "Это администратор",
|
"Is admin": "Это администратор",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"Grant types - Tooltip": "Select which grant types are allowed in the OAuth protocol",
|
"Grant types - Tooltip": "Select which grant types are allowed in the OAuth protocol",
|
||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
|
"Invitation code": "Invitation code",
|
||||||
|
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||||
|
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||||
"Left": "Left",
|
"Left": "Left",
|
||||||
"Logged in successfully": "Logged in successfully",
|
"Logged in successfully": "Logged in successfully",
|
||||||
"Logged out successfully": "Logged out successfully",
|
"Logged out successfully": "Logged out successfully",
|
||||||
@ -186,9 +189,9 @@
|
|||||||
"Cert - Tooltip": "The public key certificate that needs to be verified by the client SDK corresponding to this application",
|
"Cert - Tooltip": "The public key certificate that needs to be verified by the client SDK corresponding to this application",
|
||||||
"Certs": "Certs",
|
"Certs": "Certs",
|
||||||
"Click to Upload": "Click to Upload",
|
"Click to Upload": "Click to Upload",
|
||||||
"Client IP": "Client IP",
|
|
||||||
"Close": "Close",
|
"Close": "Close",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
|
"Copy": "Copy",
|
||||||
"Created time": "Created time",
|
"Created time": "Created time",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -288,7 +291,6 @@
|
|||||||
"Providers - Tooltip": "Providers to be configured, including 3rd-party login, object storage, verification code, etc.",
|
"Providers - Tooltip": "Providers to be configured, including 3rd-party login, object storage, verification code, etc.",
|
||||||
"Real name": "Real name",
|
"Real name": "Real name",
|
||||||
"Records": "Records",
|
"Records": "Records",
|
||||||
"Request URI": "Request URI",
|
|
||||||
"Resources": "Resources",
|
"Resources": "Resources",
|
||||||
"Role": "Role",
|
"Role": "Role",
|
||||||
"Role - Tooltip": "Role - Tooltip",
|
"Role - Tooltip": "Role - Tooltip",
|
||||||
@ -327,7 +329,6 @@
|
|||||||
"System Info": "System Info",
|
"System Info": "System Info",
|
||||||
"There was a problem signing you in..": "There was a problem signing you in..",
|
"There was a problem signing you in..": "There was a problem signing you in..",
|
||||||
"This is a read-only demo site!": "This is a read-only demo site!",
|
"This is a read-only demo site!": "This is a read-only demo site!",
|
||||||
"Timestamp": "Timestamp",
|
|
||||||
"Tokens": "Tokens",
|
"Tokens": "Tokens",
|
||||||
"Type": "Type",
|
"Type": "Type",
|
||||||
"Type - Tooltip": "Type - Tooltip",
|
"Type - Tooltip": "Type - Tooltip",
|
||||||
@ -634,10 +635,10 @@
|
|||||||
"Agent ID - Tooltip": "Agent ID",
|
"Agent ID - Tooltip": "Agent ID",
|
||||||
"Api Key": "Api Key",
|
"Api Key": "Api Key",
|
||||||
"Api Key - Tooltip": "Api Key - Tooltip",
|
"Api Key - Tooltip": "Api Key - Tooltip",
|
||||||
"Api Token": "Api Token",
|
|
||||||
"Api Token - Tooltip": "Api Token - Tooltip",
|
|
||||||
"App ID": "App ID",
|
"App ID": "App ID",
|
||||||
"App ID - Tooltip": "App ID",
|
"App ID - Tooltip": "App ID",
|
||||||
|
"App Key": "App Key",
|
||||||
|
"App Key - Tooltip": "App Key - Tooltip",
|
||||||
"App key": "App key",
|
"App key": "App key",
|
||||||
"App key - Tooltip": "App key",
|
"App key - Tooltip": "App key",
|
||||||
"App secret": "App secret",
|
"App secret": "App secret",
|
||||||
@ -658,8 +659,8 @@
|
|||||||
"Category - Tooltip": "Select a category",
|
"Category - Tooltip": "Select a category",
|
||||||
"Channel No.": "Channel No.",
|
"Channel No.": "Channel No.",
|
||||||
"Channel No. - Tooltip": "Channel No.",
|
"Channel No. - Tooltip": "Channel No.",
|
||||||
"Chat Id": "Chat Id",
|
"Chat ID": "Chat ID",
|
||||||
"Chat Id - Tooltip": "Chat Id - Tooltip",
|
"Chat ID - Tooltip": "Chat ID - Tooltip",
|
||||||
"Client ID": "Client ID",
|
"Client ID": "Client ID",
|
||||||
"Client ID - Tooltip": "Client ID",
|
"Client ID - Tooltip": "Client ID",
|
||||||
"Client ID 2": "Client ID 2",
|
"Client ID 2": "Client ID 2",
|
||||||
@ -705,10 +706,8 @@
|
|||||||
"Method - Tooltip": "Login method, QR code or silent login",
|
"Method - Tooltip": "Login method, QR code or silent login",
|
||||||
"New Provider": "New Provider",
|
"New Provider": "New Provider",
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"Notification content": "Notification content",
|
"Parameter": "Parameter",
|
||||||
"Notification content - Tooltip": "Notification content - Tooltip",
|
"Parameter - Tooltip": "Parameter - Tooltip",
|
||||||
"Parameter name": "Parameter name",
|
|
||||||
"Parameter name - Tooltip": "Parameter name - Tooltip",
|
|
||||||
"Parse": "Parse",
|
"Parse": "Parse",
|
||||||
"Parse metadata successfully": "Parse metadata successfully",
|
"Parse metadata successfully": "Parse metadata successfully",
|
||||||
"Path prefix": "Path prefix",
|
"Path prefix": "Path prefix",
|
||||||
@ -789,9 +788,6 @@
|
|||||||
"Wallets - Tooltip": "Wallets - Tooltip",
|
"Wallets - Tooltip": "Wallets - Tooltip",
|
||||||
"admin (Shared)": "admin (Shared)"
|
"admin (Shared)": "admin (Shared)"
|
||||||
},
|
},
|
||||||
"record": {
|
|
||||||
"Is triggered": "Is triggered"
|
|
||||||
},
|
|
||||||
"resource": {
|
"resource": {
|
||||||
"Copy Link": "Copy Link",
|
"Copy Link": "Copy Link",
|
||||||
"File name": "File name",
|
"File name": "File name",
|
||||||
@ -826,6 +822,7 @@
|
|||||||
"Please input your affiliation!": "Please input your affiliation!",
|
"Please input your affiliation!": "Please input your affiliation!",
|
||||||
"Please input your display name!": "Please input your display name!",
|
"Please input your display name!": "Please input your display name!",
|
||||||
"Please input your first name!": "Please input your first name!",
|
"Please input your first name!": "Please input your first name!",
|
||||||
|
"Please input your invitation code!": "Please input your invitation code!",
|
||||||
"Please input your last name!": "Please input your last name!",
|
"Please input your last name!": "Please input your last name!",
|
||||||
"Please input your phone number!": "Please input your phone number!",
|
"Please input your phone number!": "Please input your phone number!",
|
||||||
"Please input your real name!": "Please input your real name!",
|
"Please input your real name!": "Please input your real name!",
|
||||||
@ -957,7 +954,6 @@
|
|||||||
"ID card type": "ID card type",
|
"ID card type": "ID card type",
|
||||||
"ID card type - Tooltip": "ID card type - Tooltip",
|
"ID card type - Tooltip": "ID card type - Tooltip",
|
||||||
"ID card with person": "ID card with person",
|
"ID card with person": "ID card with person",
|
||||||
"Input your chat id": "Input your chat id",
|
|
||||||
"Input your email": "Input your email",
|
"Input your email": "Input your email",
|
||||||
"Input your phone number": "Input your phone number",
|
"Input your phone number": "Input your phone number",
|
||||||
"Is admin": "Is admin",
|
"Is admin": "Is admin",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"Grant types - Tooltip": "Chọn loại hỗ trợ được cho phép trong giao thức OAuth",
|
"Grant types - Tooltip": "Chọn loại hỗ trợ được cho phép trong giao thức OAuth",
|
||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
|
"Invitation code": "Invitation code",
|
||||||
|
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
||||||
|
"Invitation code copied to clipboard successfully": "Invitation code copied to clipboard successfully",
|
||||||
"Left": "Trái",
|
"Left": "Trái",
|
||||||
"Logged in successfully": "Đăng nhập thành công",
|
"Logged in successfully": "Đăng nhập thành công",
|
||||||
"Logged out successfully": "Đã đăng xuất thành công",
|
"Logged out successfully": "Đã đăng xuất thành công",
|
||||||
@ -186,9 +189,9 @@
|
|||||||
"Cert - Tooltip": "Chứng chỉ khóa công khai cần được xác minh bởi SDK khách hàng tương ứng với ứng dụng này",
|
"Cert - Tooltip": "Chứng chỉ khóa công khai cần được xác minh bởi SDK khách hàng tương ứng với ứng dụng này",
|
||||||
"Certs": "Chứng chỉ",
|
"Certs": "Chứng chỉ",
|
||||||
"Click to Upload": "Nhấp để tải lên",
|
"Click to Upload": "Nhấp để tải lên",
|
||||||
"Client IP": "Địa chỉ IP của khách hàng",
|
|
||||||
"Close": "Đóng lại",
|
"Close": "Đóng lại",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
|
"Copy": "Copy",
|
||||||
"Created time": "Thời gian tạo",
|
"Created time": "Thời gian tạo",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -288,7 +291,6 @@
|
|||||||
"Providers - Tooltip": "Các nhà cung cấp phải được cấu hình, bao gồm đăng nhập bên thứ ba, lưu trữ đối tượng, mã xác minh, v.v.",
|
"Providers - Tooltip": "Các nhà cung cấp phải được cấu hình, bao gồm đăng nhập bên thứ ba, lưu trữ đối tượng, mã xác minh, v.v.",
|
||||||
"Real name": "Tên thật",
|
"Real name": "Tên thật",
|
||||||
"Records": "Hồ sơ",
|
"Records": "Hồ sơ",
|
||||||
"Request URI": "Yêu cầu URI",
|
|
||||||
"Resources": "Tài nguyên",
|
"Resources": "Tài nguyên",
|
||||||
"Role": "Role",
|
"Role": "Role",
|
||||||
"Role - Tooltip": "Role - Tooltip",
|
"Role - Tooltip": "Role - Tooltip",
|
||||||
@ -327,7 +329,6 @@
|
|||||||
"System Info": "Thông tin hệ thống",
|
"System Info": "Thông tin hệ thống",
|
||||||
"There was a problem signing you in..": "There was a problem signing you in..",
|
"There was a problem signing you in..": "There was a problem signing you in..",
|
||||||
"This is a read-only demo site!": "Đây là trang web giới thiệu chỉ có chức năng đọc!",
|
"This is a read-only demo site!": "Đây là trang web giới thiệu chỉ có chức năng đọc!",
|
||||||
"Timestamp": "Đánh dấu thời gian",
|
|
||||||
"Tokens": "Mã thông báo",
|
"Tokens": "Mã thông báo",
|
||||||
"Type": "Type",
|
"Type": "Type",
|
||||||
"Type - Tooltip": "Type - Tooltip",
|
"Type - Tooltip": "Type - Tooltip",
|
||||||
@ -634,10 +635,10 @@
|
|||||||
"Agent ID - Tooltip": "Mã đại lý",
|
"Agent ID - Tooltip": "Mã đại lý",
|
||||||
"Api Key": "Api Key",
|
"Api Key": "Api Key",
|
||||||
"Api Key - Tooltip": "Api Key - Tooltip",
|
"Api Key - Tooltip": "Api Key - Tooltip",
|
||||||
"Api Token": "Api Token",
|
|
||||||
"Api Token - Tooltip": "Api Token - Tooltip",
|
|
||||||
"App ID": "ID ứng dụng",
|
"App ID": "ID ứng dụng",
|
||||||
"App ID - Tooltip": "Định danh ứng dụng",
|
"App ID - Tooltip": "Định danh ứng dụng",
|
||||||
|
"App Key": "App Key",
|
||||||
|
"App Key - Tooltip": "App Key - Tooltip",
|
||||||
"App key": "Khóa ứng dụng",
|
"App key": "Khóa ứng dụng",
|
||||||
"App key - Tooltip": "Khóa ứng dụng",
|
"App key - Tooltip": "Khóa ứng dụng",
|
||||||
"App secret": "Mã bí mật ứng dụng",
|
"App secret": "Mã bí mật ứng dụng",
|
||||||
@ -658,8 +659,8 @@
|
|||||||
"Category - Tooltip": "Chọn một danh mục",
|
"Category - Tooltip": "Chọn một danh mục",
|
||||||
"Channel No.": "Kênh số.",
|
"Channel No.": "Kênh số.",
|
||||||
"Channel No. - Tooltip": "Kênh Số.",
|
"Channel No. - Tooltip": "Kênh Số.",
|
||||||
"Chat Id": "Chat Id",
|
"Chat ID": "Chat ID",
|
||||||
"Chat Id - Tooltip": "Chat Id - Tooltip",
|
"Chat ID - Tooltip": "Chat ID - Tooltip",
|
||||||
"Client ID": "Mã khách hàng",
|
"Client ID": "Mã khách hàng",
|
||||||
"Client ID - Tooltip": "Mã khách hàng",
|
"Client ID - Tooltip": "Mã khách hàng",
|
||||||
"Client ID 2": "ID khách hàng 2",
|
"Client ID 2": "ID khách hàng 2",
|
||||||
@ -705,10 +706,8 @@
|
|||||||
"Method - Tooltip": "Phương thức đăng nhập, mã QR hoặc đăng nhập im lặng",
|
"Method - Tooltip": "Phương thức đăng nhập, mã QR hoặc đăng nhập im lặng",
|
||||||
"New Provider": "Nhà cung cấp mới",
|
"New Provider": "Nhà cung cấp mới",
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"Notification content": "Notification content",
|
"Parameter": "Parameter",
|
||||||
"Notification content - Tooltip": "Notification content - Tooltip",
|
"Parameter - Tooltip": "Parameter - Tooltip",
|
||||||
"Parameter name": "Parameter name",
|
|
||||||
"Parameter name - Tooltip": "Parameter name - Tooltip",
|
|
||||||
"Parse": "Phân tích cú pháp",
|
"Parse": "Phân tích cú pháp",
|
||||||
"Parse metadata successfully": "Phân tích siêu dữ liệu thành công",
|
"Parse metadata successfully": "Phân tích siêu dữ liệu thành công",
|
||||||
"Path prefix": "Tiền tố đường dẫn",
|
"Path prefix": "Tiền tố đường dẫn",
|
||||||
@ -789,9 +788,6 @@
|
|||||||
"Wallets - Tooltip": "Wallets - Tooltip",
|
"Wallets - Tooltip": "Wallets - Tooltip",
|
||||||
"admin (Shared)": "quản trị viên (Chung)"
|
"admin (Shared)": "quản trị viên (Chung)"
|
||||||
},
|
},
|
||||||
"record": {
|
|
||||||
"Is triggered": "Bị kích hoạt"
|
|
||||||
},
|
|
||||||
"resource": {
|
"resource": {
|
||||||
"Copy Link": "Sao chép liên kết",
|
"Copy Link": "Sao chép liên kết",
|
||||||
"File name": "Tên tập tin",
|
"File name": "Tên tập tin",
|
||||||
@ -826,6 +822,7 @@
|
|||||||
"Please input your affiliation!": "Vui lòng nhập thông tin về đơn vị của bạn!",
|
"Please input your affiliation!": "Vui lòng nhập thông tin về đơn vị của bạn!",
|
||||||
"Please input your display name!": "Vui lòng nhập tên hiển thị của bạn!",
|
"Please input your display name!": "Vui lòng nhập tên hiển thị của bạn!",
|
||||||
"Please input your first name!": "Vui lòng nhập tên của bạn!",
|
"Please input your first name!": "Vui lòng nhập tên của bạn!",
|
||||||
|
"Please input your invitation code!": "Please input your invitation code!",
|
||||||
"Please input your last name!": "Vui lòng nhập họ của bạn!",
|
"Please input your last name!": "Vui lòng nhập họ của bạn!",
|
||||||
"Please input your phone number!": "Vui lòng nhập số điện thoại của bạn!",
|
"Please input your phone number!": "Vui lòng nhập số điện thoại của bạn!",
|
||||||
"Please input your real name!": "Vui lòng nhập tên thật của bạn!",
|
"Please input your real name!": "Vui lòng nhập tên thật của bạn!",
|
||||||
@ -957,7 +954,6 @@
|
|||||||
"ID card type": "ID card type",
|
"ID card type": "ID card type",
|
||||||
"ID card type - Tooltip": "ID card type - Tooltip",
|
"ID card type - Tooltip": "ID card type - Tooltip",
|
||||||
"ID card with person": "ID card with person",
|
"ID card with person": "ID card with person",
|
||||||
"Input your chat id": "Input your chat id",
|
|
||||||
"Input your email": "Nhập địa chỉ email của bạn",
|
"Input your email": "Nhập địa chỉ email của bạn",
|
||||||
"Input your phone number": "Nhập số điện thoại của bạn",
|
"Input your phone number": "Nhập số điện thoại của bạn",
|
||||||
"Is admin": "Là quản trị viên",
|
"Is admin": "Là quản trị viên",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"Grant types - Tooltip": "选择允许哪些OAuth协议中的grant types",
|
"Grant types - Tooltip": "选择允许哪些OAuth协议中的grant types",
|
||||||
"Incremental": "递增",
|
"Incremental": "递增",
|
||||||
"Input": "输入",
|
"Input": "输入",
|
||||||
|
"Invitation code": "邀请码",
|
||||||
|
"Invitation code - Tooltip": "注册时填写的邀请码",
|
||||||
|
"Invitation code copied to clipboard successfully": "邀请码成功复制到剪贴板",
|
||||||
"Left": "居左",
|
"Left": "居左",
|
||||||
"Logged in successfully": "登录成功",
|
"Logged in successfully": "登录成功",
|
||||||
"Logged out successfully": "登出成功",
|
"Logged out successfully": "登出成功",
|
||||||
@ -186,9 +189,9 @@
|
|||||||
"Cert - Tooltip": "该应用所对应的客户端SDK需要验证的公钥证书",
|
"Cert - Tooltip": "该应用所对应的客户端SDK需要验证的公钥证书",
|
||||||
"Certs": "证书",
|
"Certs": "证书",
|
||||||
"Click to Upload": "点击上传",
|
"Click to Upload": "点击上传",
|
||||||
"Client IP": "客户端IP",
|
|
||||||
"Close": "关闭",
|
"Close": "关闭",
|
||||||
"Confirm": "确认",
|
"Confirm": "确认",
|
||||||
|
"Copy": "复制",
|
||||||
"Created time": "创建时间",
|
"Created time": "创建时间",
|
||||||
"Custom": "自定义",
|
"Custom": "自定义",
|
||||||
"Dashboard": "数据看板",
|
"Dashboard": "数据看板",
|
||||||
@ -288,7 +291,6 @@
|
|||||||
"Providers - Tooltip": "需要配置的提供商,包括第三方登录、对象存储、验证码等",
|
"Providers - Tooltip": "需要配置的提供商,包括第三方登录、对象存储、验证码等",
|
||||||
"Real name": "姓名",
|
"Real name": "姓名",
|
||||||
"Records": "日志",
|
"Records": "日志",
|
||||||
"Request URI": "请求URI",
|
|
||||||
"Resources": "资源",
|
"Resources": "资源",
|
||||||
"Role": "角色",
|
"Role": "角色",
|
||||||
"Role - Tooltip": "所对应的角色",
|
"Role - Tooltip": "所对应的角色",
|
||||||
@ -327,7 +329,6 @@
|
|||||||
"System Info": "系统信息",
|
"System Info": "系统信息",
|
||||||
"There was a problem signing you in..": "登录时遇到问题..",
|
"There was a problem signing you in..": "登录时遇到问题..",
|
||||||
"This is a read-only demo site!": "这是一个只读演示站点!",
|
"This is a read-only demo site!": "这是一个只读演示站点!",
|
||||||
"Timestamp": "时间戳",
|
|
||||||
"Tokens": "令牌",
|
"Tokens": "令牌",
|
||||||
"Type": "类型",
|
"Type": "类型",
|
||||||
"Type - Tooltip": "类型",
|
"Type - Tooltip": "类型",
|
||||||
@ -634,10 +635,10 @@
|
|||||||
"Agent ID - Tooltip": "Agent ID",
|
"Agent ID - Tooltip": "Agent ID",
|
||||||
"Api Key": "Api Key",
|
"Api Key": "Api Key",
|
||||||
"Api Key - Tooltip": "Api Key - Tooltip",
|
"Api Key - Tooltip": "Api Key - Tooltip",
|
||||||
"Api Token": "Api Token",
|
|
||||||
"Api Token - Tooltip": "Api Token - Tooltip",
|
|
||||||
"App ID": "App ID",
|
"App ID": "App ID",
|
||||||
"App ID - Tooltip": "App ID",
|
"App ID - Tooltip": "App ID",
|
||||||
|
"App Key": "App Key",
|
||||||
|
"App Key - Tooltip": "App Key - Tooltip",
|
||||||
"App key": "App key",
|
"App key": "App key",
|
||||||
"App key - Tooltip": "App key",
|
"App key - Tooltip": "App key",
|
||||||
"App secret": "App secret",
|
"App secret": "App secret",
|
||||||
@ -658,8 +659,8 @@
|
|||||||
"Category - Tooltip": "分类",
|
"Category - Tooltip": "分类",
|
||||||
"Channel No.": "Channel号码",
|
"Channel No.": "Channel号码",
|
||||||
"Channel No. - Tooltip": "Channel号码",
|
"Channel No. - Tooltip": "Channel号码",
|
||||||
"Chat Id": "Chat Id",
|
"Chat ID": "Chat ID",
|
||||||
"Chat Id - Tooltip": "Chat Id - Tooltip",
|
"Chat ID - Tooltip": "Chat ID - Tooltip",
|
||||||
"Client ID": "Client ID",
|
"Client ID": "Client ID",
|
||||||
"Client ID - Tooltip": "Client ID",
|
"Client ID - Tooltip": "Client ID",
|
||||||
"Client ID 2": "Client ID 2",
|
"Client ID 2": "Client ID 2",
|
||||||
@ -705,10 +706,8 @@
|
|||||||
"Method - Tooltip": "登录方法,二维码或者静默授权登录",
|
"Method - Tooltip": "登录方法,二维码或者静默授权登录",
|
||||||
"New Provider": "添加提供商",
|
"New Provider": "添加提供商",
|
||||||
"Normal": "标准",
|
"Normal": "标准",
|
||||||
"Notification content": "Notification content",
|
"Parameter": "Parameter",
|
||||||
"Notification content - Tooltip": "Notification content - Tooltip",
|
"Parameter - Tooltip": "Parameter - Tooltip",
|
||||||
"Parameter name": "Parameter name",
|
|
||||||
"Parameter name - Tooltip": "Parameter name - Tooltip",
|
|
||||||
"Parse": "解析",
|
"Parse": "解析",
|
||||||
"Parse metadata successfully": "解析元数据成功",
|
"Parse metadata successfully": "解析元数据成功",
|
||||||
"Path prefix": "路径前缀",
|
"Path prefix": "路径前缀",
|
||||||
@ -789,9 +788,6 @@
|
|||||||
"Wallets - Tooltip": "Wallets - Tooltip",
|
"Wallets - Tooltip": "Wallets - Tooltip",
|
||||||
"admin (Shared)": "admin(共享)"
|
"admin (Shared)": "admin(共享)"
|
||||||
},
|
},
|
||||||
"record": {
|
|
||||||
"Is triggered": "已触发"
|
|
||||||
},
|
|
||||||
"resource": {
|
"resource": {
|
||||||
"Copy Link": "复制链接",
|
"Copy Link": "复制链接",
|
||||||
"File name": "文件名",
|
"File name": "文件名",
|
||||||
@ -826,6 +822,7 @@
|
|||||||
"Please input your affiliation!": "请输入您所在的工作单位!",
|
"Please input your affiliation!": "请输入您所在的工作单位!",
|
||||||
"Please input your display name!": "请输入您的显示名称!",
|
"Please input your display name!": "请输入您的显示名称!",
|
||||||
"Please input your first name!": "请输入您的名字!",
|
"Please input your first name!": "请输入您的名字!",
|
||||||
|
"Please input your invitation code!": "请输入你的邀请码!",
|
||||||
"Please input your last name!": "请输入您的姓氏!",
|
"Please input your last name!": "请输入您的姓氏!",
|
||||||
"Please input your phone number!": "请输入您的手机号码!",
|
"Please input your phone number!": "请输入您的手机号码!",
|
||||||
"Please input your real name!": "请输入您的姓名!",
|
"Please input your real name!": "请输入您的姓名!",
|
||||||
@ -957,7 +954,6 @@
|
|||||||
"ID card type": "身份证类型",
|
"ID card type": "身份证类型",
|
||||||
"ID card type - Tooltip": "身份证类型 - Tooltip",
|
"ID card type - Tooltip": "身份证类型 - Tooltip",
|
||||||
"ID card with person": "手持身份证",
|
"ID card with person": "手持身份证",
|
||||||
"Input your chat id": "Input your chat id",
|
|
||||||
"Input your email": "请输入邮箱",
|
"Input your email": "请输入邮箱",
|
||||||
"Input your phone number": "输入手机号",
|
"Input your phone number": "输入手机号",
|
||||||
"Is admin": "是组织管理员",
|
"Is admin": "是组织管理员",
|
||||||
|
@ -79,6 +79,7 @@ class SignupTable extends React.Component {
|
|||||||
{name: "Password", displayName: i18next.t("general:Password")},
|
{name: "Password", displayName: i18next.t("general:Password")},
|
||||||
{name: "Confirm password", displayName: i18next.t("signup:Confirm")},
|
{name: "Confirm password", displayName: i18next.t("signup:Confirm")},
|
||||||
{name: "Phone", displayName: i18next.t("general:Phone")},
|
{name: "Phone", displayName: i18next.t("general:Phone")},
|
||||||
|
{name: "Invitation code", displayName: i18next.t("application:Invitation code")},
|
||||||
{name: "Agreement", displayName: i18next.t("signup:Agreement")},
|
{name: "Agreement", displayName: i18next.t("signup:Agreement")},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user