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