mirror of
https://github.com/casdoor/casdoor.git
synced 2025-07-03 04:10:20 +08:00
Fix user profile page UI
This commit is contained in:
@ -368,7 +368,11 @@ class App extends Component {
|
|||||||
if (this.state.account === undefined) {
|
if (this.state.account === undefined) {
|
||||||
return null;
|
return null;
|
||||||
} else if (this.state.account === null) {
|
} else if (this.state.account === null) {
|
||||||
return null;
|
return (
|
||||||
|
<React.Fragment>
|
||||||
|
<LanguageSelect />
|
||||||
|
</React.Fragment>
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
return (
|
return (
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
|
@ -991,12 +991,14 @@ class UserEditPage extends React.Component {
|
|||||||
renderUser() {
|
renderUser() {
|
||||||
return (
|
return (
|
||||||
<Card size="small" title={
|
<Card size="small" title={
|
||||||
<div>
|
(this.props.account === null) ? i18next.t("user:User Profile") : (
|
||||||
{this.state.mode === "add" ? i18next.t("user:New User") : i18next.t("user:Edit User")}
|
<div>
|
||||||
<Button onClick={() => this.submitUserEdit(false)}>{i18next.t("general:Save")}</Button>
|
{this.state.mode === "add" ? i18next.t("user:New User") : i18next.t("user:Edit User")}
|
||||||
<Button style={{marginLeft: "20px"}} type="primary" onClick={() => this.submitUserEdit(true)}>{i18next.t("general:Save & Exit")}</Button>
|
<Button onClick={() => this.submitUserEdit(false)}>{i18next.t("general:Save")}</Button>
|
||||||
{this.state.mode === "add" ? <Button style={{marginLeft: "20px"}} onClick={() => this.deleteUser()}>{i18next.t("general:Cancel")}</Button> : null}
|
<Button style={{marginLeft: "20px"}} type="primary" onClick={() => this.submitUserEdit(true)}>{i18next.t("general:Save & Exit")}</Button>
|
||||||
</div>
|
{this.state.mode === "add" ? <Button style={{marginLeft: "20px"}} onClick={() => this.deleteUser()}>{i18next.t("general:Cancel")}</Button> : null}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
} style={(Setting.isMobile()) ? {margin: "5px"} : {}} type="inner">
|
} style={(Setting.isMobile()) ? {margin: "5px"} : {}} type="inner">
|
||||||
{
|
{
|
||||||
this.getUserOrganization()?.accountItems?.map(accountItem => {
|
this.getUserOrganization()?.accountItems?.map(accountItem => {
|
||||||
@ -1054,7 +1056,11 @@ class UserEditPage extends React.Component {
|
|||||||
if (userListUrl !== null) {
|
if (userListUrl !== null) {
|
||||||
this.props.history.push(userListUrl);
|
this.props.history.push(userListUrl);
|
||||||
} else {
|
} else {
|
||||||
this.props.history.push("/users");
|
if (Setting.isLocalAdminUser(this.props.account)) {
|
||||||
|
this.props.history.push("/users");
|
||||||
|
} else {
|
||||||
|
this.props.history.push("/");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
this.props.history.push(`/users/${this.state.user.owner}/${this.state.user.name}`);
|
this.props.history.push(`/users/${this.state.user.owner}/${this.state.user.name}`);
|
||||||
@ -1111,7 +1117,7 @@ class UserEditPage extends React.Component {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
this.state.user === null ? null :
|
(this.state.user === null || this.props.account === null) ? null :
|
||||||
<div style={{marginTop: "20px", marginLeft: "40px"}}>
|
<div style={{marginTop: "20px", marginLeft: "40px"}}>
|
||||||
<Button size="large" onClick={() => this.submitUserEdit(false)}>{i18next.t("general:Save")}</Button>
|
<Button size="large" onClick={() => this.submitUserEdit(false)}>{i18next.t("general:Save")}</Button>
|
||||||
<Button style={{marginLeft: "20px"}} type="primary" size="large" onClick={() => this.submitUserEdit(true)}>{i18next.t("general:Save & Exit")}</Button>
|
<Button style={{marginLeft: "20px"}} type="primary" size="large" onClick={() => this.submitUserEdit(true)}>{i18next.t("general:Save & Exit")}</Button>
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
"Invitation code": "Invitation code",
|
"Invitation code": "Invitation code",
|
||||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
|
||||||
"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",
|
||||||
@ -192,7 +191,6 @@
|
|||||||
"Close": "Close",
|
"Close": "Close",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||||
"Copy": "Copy",
|
|
||||||
"Created time": "Created time",
|
"Created time": "Created time",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -1092,6 +1090,7 @@
|
|||||||
"Upload ID card front picture": "Upload ID card front picture",
|
"Upload ID card front picture": "Upload ID card front picture",
|
||||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||||
"Upload a photo": "Upload a photo",
|
"Upload a photo": "Upload a photo",
|
||||||
|
"User Profile": "User Profile",
|
||||||
"Values": "Values",
|
"Values": "Values",
|
||||||
"Verification code sent": "Verification code sent",
|
"Verification code sent": "Verification code sent",
|
||||||
"WebAuthn credentials": "WebAuthn credentials",
|
"WebAuthn credentials": "WebAuthn credentials",
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
"Invitation code": "Invitation code",
|
"Invitation code": "Invitation code",
|
||||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
|
||||||
"Left": "Links",
|
"Left": "Links",
|
||||||
"Logged in successfully": "Erfolgreich eingeloggt",
|
"Logged in successfully": "Erfolgreich eingeloggt",
|
||||||
"Logged out successfully": "Erfolgreich ausgeloggt",
|
"Logged out successfully": "Erfolgreich ausgeloggt",
|
||||||
@ -192,7 +191,6 @@
|
|||||||
"Close": "Schließen",
|
"Close": "Schließen",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||||
"Copy": "Copy",
|
|
||||||
"Created time": "Erstellte Zeit",
|
"Created time": "Erstellte Zeit",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -1092,6 +1090,7 @@
|
|||||||
"Upload ID card front picture": "Upload ID card front picture",
|
"Upload ID card front picture": "Upload ID card front picture",
|
||||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||||
"Upload a photo": "Lade ein Foto hoch",
|
"Upload a photo": "Lade ein Foto hoch",
|
||||||
|
"User Profile": "User Profile",
|
||||||
"Values": "Werte",
|
"Values": "Werte",
|
||||||
"Verification code sent": "Bestätigungscode gesendet",
|
"Verification code sent": "Bestätigungscode gesendet",
|
||||||
"WebAuthn credentials": "WebAuthn-Anmeldeinformationen",
|
"WebAuthn credentials": "WebAuthn-Anmeldeinformationen",
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
"Invitation code": "Invitation code",
|
"Invitation code": "Invitation code",
|
||||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
|
||||||
"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",
|
||||||
@ -192,7 +191,6 @@
|
|||||||
"Close": "Close",
|
"Close": "Close",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||||
"Copy": "Copy",
|
|
||||||
"Created time": "Created time",
|
"Created time": "Created time",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -1092,6 +1090,7 @@
|
|||||||
"Upload ID card front picture": "Upload ID card front picture",
|
"Upload ID card front picture": "Upload ID card front picture",
|
||||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||||
"Upload a photo": "Upload a photo",
|
"Upload a photo": "Upload a photo",
|
||||||
|
"User Profile": "User Profile",
|
||||||
"Values": "Values",
|
"Values": "Values",
|
||||||
"Verification code sent": "Verification code sent",
|
"Verification code sent": "Verification code sent",
|
||||||
"WebAuthn credentials": "WebAuthn credentials",
|
"WebAuthn credentials": "WebAuthn credentials",
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
"Invitation code": "Invitation code",
|
"Invitation code": "Invitation code",
|
||||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
|
||||||
"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",
|
||||||
@ -192,7 +191,6 @@
|
|||||||
"Close": "Cerca",
|
"Close": "Cerca",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||||
"Copy": "Copy",
|
|
||||||
"Created time": "Tiempo creado",
|
"Created time": "Tiempo creado",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -1092,6 +1090,7 @@
|
|||||||
"Upload ID card front picture": "Upload ID card front picture",
|
"Upload ID card front picture": "Upload ID card front picture",
|
||||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||||
"Upload a photo": "Subir una foto",
|
"Upload a photo": "Subir una foto",
|
||||||
|
"User Profile": "User Profile",
|
||||||
"Values": "Valores",
|
"Values": "Valores",
|
||||||
"Verification code sent": "Código de verificación enviado",
|
"Verification code sent": "Código de verificación enviado",
|
||||||
"WebAuthn credentials": "Credenciales de WebAuthn",
|
"WebAuthn credentials": "Credenciales de WebAuthn",
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
"Invitation code": "Invitation code",
|
"Invitation code": "Invitation code",
|
||||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
|
||||||
"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",
|
||||||
@ -192,7 +191,6 @@
|
|||||||
"Close": "Close",
|
"Close": "Close",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||||
"Copy": "Copy",
|
|
||||||
"Created time": "Created time",
|
"Created time": "Created time",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -1092,6 +1090,7 @@
|
|||||||
"Upload ID card front picture": "Upload ID card front picture",
|
"Upload ID card front picture": "Upload ID card front picture",
|
||||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||||
"Upload a photo": "Upload a photo",
|
"Upload a photo": "Upload a photo",
|
||||||
|
"User Profile": "User Profile",
|
||||||
"Values": "Values",
|
"Values": "Values",
|
||||||
"Verification code sent": "Verification code sent",
|
"Verification code sent": "Verification code sent",
|
||||||
"WebAuthn credentials": "WebAuthn credentials",
|
"WebAuthn credentials": "WebAuthn credentials",
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
"Invitation code": "Invitation code",
|
"Invitation code": "Invitation code",
|
||||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
|
||||||
"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",
|
||||||
@ -192,7 +191,6 @@
|
|||||||
"Close": "Close",
|
"Close": "Close",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||||
"Copy": "Copy",
|
|
||||||
"Created time": "Created time",
|
"Created time": "Created time",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -1092,6 +1090,7 @@
|
|||||||
"Upload ID card front picture": "Upload ID card front picture",
|
"Upload ID card front picture": "Upload ID card front picture",
|
||||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||||
"Upload a photo": "Upload a photo",
|
"Upload a photo": "Upload a photo",
|
||||||
|
"User Profile": "User Profile",
|
||||||
"Values": "Values",
|
"Values": "Values",
|
||||||
"Verification code sent": "Verification code sent",
|
"Verification code sent": "Verification code sent",
|
||||||
"WebAuthn credentials": "WebAuthn credentials",
|
"WebAuthn credentials": "WebAuthn credentials",
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
"Incremental": "Incrémentale",
|
"Incremental": "Incrémentale",
|
||||||
"Input": "Saisie",
|
"Input": "Saisie",
|
||||||
"Invitation code": "Code d'invitation",
|
"Invitation code": "Code d'invitation",
|
||||||
"Invitation code - Tooltip": "Code d'invitation - infobulle",
|
|
||||||
"Left": "Gauche",
|
"Left": "Gauche",
|
||||||
"Logged in successfully": "Connexion réussie",
|
"Logged in successfully": "Connexion réussie",
|
||||||
"Logged out successfully": "Déconnexion réussie",
|
"Logged out successfully": "Déconnexion réussie",
|
||||||
@ -192,7 +191,6 @@
|
|||||||
"Close": "Fermer",
|
"Close": "Fermer",
|
||||||
"Confirm": "Confirmer",
|
"Confirm": "Confirmer",
|
||||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||||
"Copy": "Copier",
|
|
||||||
"Created time": "Date de création",
|
"Created time": "Date de création",
|
||||||
"Custom": "Personnalisée",
|
"Custom": "Personnalisée",
|
||||||
"Dashboard": "Tableau de bord",
|
"Dashboard": "Tableau de bord",
|
||||||
@ -1092,6 +1090,7 @@
|
|||||||
"Upload ID card front picture": "Télécharger une photo de l'endroit de la pièce d'identité",
|
"Upload ID card front picture": "Télécharger une photo de l'endroit de la pièce d'identité",
|
||||||
"Upload ID card with person picture": "Télécharger une photo la pièce d'identité avec une personne",
|
"Upload ID card with person picture": "Télécharger une photo la pièce d'identité avec une personne",
|
||||||
"Upload a photo": "Télécharger une photo",
|
"Upload a photo": "Télécharger une photo",
|
||||||
|
"User Profile": "User Profile",
|
||||||
"Values": "Valeurs",
|
"Values": "Valeurs",
|
||||||
"Verification code sent": "Code de vérification envoyé",
|
"Verification code sent": "Code de vérification envoyé",
|
||||||
"WebAuthn credentials": "Identifiants WebAuthn",
|
"WebAuthn credentials": "Identifiants WebAuthn",
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
"Invitation code": "Invitation code",
|
"Invitation code": "Invitation code",
|
||||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
|
||||||
"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",
|
||||||
@ -192,7 +191,6 @@
|
|||||||
"Close": "Close",
|
"Close": "Close",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||||
"Copy": "Copy",
|
|
||||||
"Created time": "Created time",
|
"Created time": "Created time",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -1092,6 +1090,7 @@
|
|||||||
"Upload ID card front picture": "Upload ID card front picture",
|
"Upload ID card front picture": "Upload ID card front picture",
|
||||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||||
"Upload a photo": "Upload a photo",
|
"Upload a photo": "Upload a photo",
|
||||||
|
"User Profile": "User Profile",
|
||||||
"Values": "Values",
|
"Values": "Values",
|
||||||
"Verification code sent": "Verification code sent",
|
"Verification code sent": "Verification code sent",
|
||||||
"WebAuthn credentials": "WebAuthn credentials",
|
"WebAuthn credentials": "WebAuthn credentials",
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
"Invitation code": "Invitation code",
|
"Invitation code": "Invitation code",
|
||||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
|
||||||
"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",
|
||||||
@ -192,7 +191,6 @@
|
|||||||
"Close": "Tutup",
|
"Close": "Tutup",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||||
"Copy": "Copy",
|
|
||||||
"Created time": "Waktu dibuat",
|
"Created time": "Waktu dibuat",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -1092,6 +1090,7 @@
|
|||||||
"Upload ID card front picture": "Upload ID card front picture",
|
"Upload ID card front picture": "Upload ID card front picture",
|
||||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||||
"Upload a photo": "Unggah foto",
|
"Upload a photo": "Unggah foto",
|
||||||
|
"User Profile": "User Profile",
|
||||||
"Values": "Nilai-nilai",
|
"Values": "Nilai-nilai",
|
||||||
"Verification code sent": "Kode verifikasi telah dikirim",
|
"Verification code sent": "Kode verifikasi telah dikirim",
|
||||||
"WebAuthn credentials": "Kredensial WebAuthn",
|
"WebAuthn credentials": "Kredensial WebAuthn",
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
"Invitation code": "Invitation code",
|
"Invitation code": "Invitation code",
|
||||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
|
||||||
"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",
|
||||||
@ -192,7 +191,6 @@
|
|||||||
"Close": "Close",
|
"Close": "Close",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||||
"Copy": "Copy",
|
|
||||||
"Created time": "Created time",
|
"Created time": "Created time",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -1092,6 +1090,7 @@
|
|||||||
"Upload ID card front picture": "Upload ID card front picture",
|
"Upload ID card front picture": "Upload ID card front picture",
|
||||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||||
"Upload a photo": "Upload a photo",
|
"Upload a photo": "Upload a photo",
|
||||||
|
"User Profile": "User Profile",
|
||||||
"Values": "Values",
|
"Values": "Values",
|
||||||
"Verification code sent": "Verification code sent",
|
"Verification code sent": "Verification code sent",
|
||||||
"WebAuthn credentials": "WebAuthn credentials",
|
"WebAuthn credentials": "WebAuthn credentials",
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
"Invitation code": "Invitation code",
|
"Invitation code": "Invitation code",
|
||||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
|
||||||
"Left": "左",
|
"Left": "左",
|
||||||
"Logged in successfully": "正常にログインしました",
|
"Logged in successfully": "正常にログインしました",
|
||||||
"Logged out successfully": "正常にログアウトしました",
|
"Logged out successfully": "正常にログアウトしました",
|
||||||
@ -192,7 +191,6 @@
|
|||||||
"Close": "閉じる",
|
"Close": "閉じる",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||||
"Copy": "Copy",
|
|
||||||
"Created time": "作成された時間",
|
"Created time": "作成された時間",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -1092,6 +1090,7 @@
|
|||||||
"Upload ID card front picture": "Upload ID card front picture",
|
"Upload ID card front picture": "Upload ID card front picture",
|
||||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||||
"Upload a photo": "写真をアップロードしてください",
|
"Upload a photo": "写真をアップロードしてください",
|
||||||
|
"User Profile": "User Profile",
|
||||||
"Values": "価値観",
|
"Values": "価値観",
|
||||||
"Verification code sent": "確認コードを送信しました",
|
"Verification code sent": "確認コードを送信しました",
|
||||||
"WebAuthn credentials": "WebAuthnの資格情報",
|
"WebAuthn credentials": "WebAuthnの資格情報",
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
"Invitation code": "Invitation code",
|
"Invitation code": "Invitation code",
|
||||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
|
||||||
"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",
|
||||||
@ -192,7 +191,6 @@
|
|||||||
"Close": "Close",
|
"Close": "Close",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||||
"Copy": "Copy",
|
|
||||||
"Created time": "Created time",
|
"Created time": "Created time",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -1092,6 +1090,7 @@
|
|||||||
"Upload ID card front picture": "Upload ID card front picture",
|
"Upload ID card front picture": "Upload ID card front picture",
|
||||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||||
"Upload a photo": "Upload a photo",
|
"Upload a photo": "Upload a photo",
|
||||||
|
"User Profile": "User Profile",
|
||||||
"Values": "Values",
|
"Values": "Values",
|
||||||
"Verification code sent": "Verification code sent",
|
"Verification code sent": "Verification code sent",
|
||||||
"WebAuthn credentials": "WebAuthn credentials",
|
"WebAuthn credentials": "WebAuthn credentials",
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
"Invitation code": "Invitation code",
|
"Invitation code": "Invitation code",
|
||||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
|
||||||
"Left": "왼쪽",
|
"Left": "왼쪽",
|
||||||
"Logged in successfully": "성공적으로 로그인했습니다",
|
"Logged in successfully": "성공적으로 로그인했습니다",
|
||||||
"Logged out successfully": "로그아웃이 성공적으로 되었습니다",
|
"Logged out successfully": "로그아웃이 성공적으로 되었습니다",
|
||||||
@ -192,7 +191,6 @@
|
|||||||
"Close": "닫다",
|
"Close": "닫다",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||||
"Copy": "Copy",
|
|
||||||
"Created time": "작성한 시간",
|
"Created time": "작성한 시간",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -1092,6 +1090,7 @@
|
|||||||
"Upload ID card front picture": "Upload ID card front picture",
|
"Upload ID card front picture": "Upload ID card front picture",
|
||||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||||
"Upload a photo": "사진을 업로드하세요",
|
"Upload a photo": "사진을 업로드하세요",
|
||||||
|
"User Profile": "User Profile",
|
||||||
"Values": "가치들",
|
"Values": "가치들",
|
||||||
"Verification code sent": "인증 코드가 전송되었습니다",
|
"Verification code sent": "인증 코드가 전송되었습니다",
|
||||||
"WebAuthn credentials": "웹 인증 자격증명",
|
"WebAuthn credentials": "웹 인증 자격증명",
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
"Invitation code": "Invitation code",
|
"Invitation code": "Invitation code",
|
||||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
|
||||||
"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",
|
||||||
@ -192,7 +191,6 @@
|
|||||||
"Close": "Close",
|
"Close": "Close",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||||
"Copy": "Copy",
|
|
||||||
"Created time": "Created time",
|
"Created time": "Created time",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -1092,6 +1090,7 @@
|
|||||||
"Upload ID card front picture": "Upload ID card front picture",
|
"Upload ID card front picture": "Upload ID card front picture",
|
||||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||||
"Upload a photo": "Upload a photo",
|
"Upload a photo": "Upload a photo",
|
||||||
|
"User Profile": "User Profile",
|
||||||
"Values": "Values",
|
"Values": "Values",
|
||||||
"Verification code sent": "Verification code sent",
|
"Verification code sent": "Verification code sent",
|
||||||
"WebAuthn credentials": "WebAuthn credentials",
|
"WebAuthn credentials": "WebAuthn credentials",
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
"Invitation code": "Invitation code",
|
"Invitation code": "Invitation code",
|
||||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
|
||||||
"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",
|
||||||
@ -192,7 +191,6 @@
|
|||||||
"Close": "Close",
|
"Close": "Close",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||||
"Copy": "Copy",
|
|
||||||
"Created time": "Created time",
|
"Created time": "Created time",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -1092,6 +1090,7 @@
|
|||||||
"Upload ID card front picture": "Upload ID card front picture",
|
"Upload ID card front picture": "Upload ID card front picture",
|
||||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||||
"Upload a photo": "Upload a photo",
|
"Upload a photo": "Upload a photo",
|
||||||
|
"User Profile": "User Profile",
|
||||||
"Values": "Values",
|
"Values": "Values",
|
||||||
"Verification code sent": "Verification code sent",
|
"Verification code sent": "Verification code sent",
|
||||||
"WebAuthn credentials": "WebAuthn credentials",
|
"WebAuthn credentials": "WebAuthn credentials",
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
"Invitation code": "Invitation code",
|
"Invitation code": "Invitation code",
|
||||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
|
||||||
"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",
|
||||||
@ -192,7 +191,6 @@
|
|||||||
"Close": "Close",
|
"Close": "Close",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||||
"Copy": "Copy",
|
|
||||||
"Created time": "Created time",
|
"Created time": "Created time",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -1092,6 +1090,7 @@
|
|||||||
"Upload ID card front picture": "Upload ID card front picture",
|
"Upload ID card front picture": "Upload ID card front picture",
|
||||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||||
"Upload a photo": "Upload a photo",
|
"Upload a photo": "Upload a photo",
|
||||||
|
"User Profile": "User Profile",
|
||||||
"Values": "Values",
|
"Values": "Values",
|
||||||
"Verification code sent": "Verification code sent",
|
"Verification code sent": "Verification code sent",
|
||||||
"WebAuthn credentials": "WebAuthn credentials",
|
"WebAuthn credentials": "WebAuthn credentials",
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
"Invitation code": "Código de convite",
|
"Invitation code": "Código de convite",
|
||||||
"Invitation code - Tooltip": "Código de convite - Tooltip",
|
|
||||||
"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",
|
||||||
@ -192,7 +191,6 @@
|
|||||||
"Close": "Fechar",
|
"Close": "Fechar",
|
||||||
"Confirm": "Confirmar",
|
"Confirm": "Confirmar",
|
||||||
"Copied to clipboard successfully": "Copiado para a área de transferência com sucesso",
|
"Copied to clipboard successfully": "Copiado para a área de transferência com sucesso",
|
||||||
"Copy": "Copiar",
|
|
||||||
"Created time": "Hora de Criação",
|
"Created time": "Hora de Criação",
|
||||||
"Custom": "Personalizar",
|
"Custom": "Personalizar",
|
||||||
"Dashboard": "Painel",
|
"Dashboard": "Painel",
|
||||||
@ -1092,6 +1090,7 @@
|
|||||||
"Upload ID card front picture": "Upload ID card front picture",
|
"Upload ID card front picture": "Upload ID card front picture",
|
||||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||||
"Upload a photo": "Enviar uma foto",
|
"Upload a photo": "Enviar uma foto",
|
||||||
|
"User Profile": "User Profile",
|
||||||
"Values": "Valores",
|
"Values": "Valores",
|
||||||
"Verification code sent": "Código de verificação enviado",
|
"Verification code sent": "Código de verificação enviado",
|
||||||
"WebAuthn credentials": "Credenciais WebAuthn",
|
"WebAuthn credentials": "Credenciais WebAuthn",
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
"Incremental": "Последовательный",
|
"Incremental": "Последовательный",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
"Invitation code": "Код приглашения",
|
"Invitation code": "Код приглашения",
|
||||||
"Invitation code - Tooltip": "Код приглашения",
|
|
||||||
"Left": "Левый",
|
"Left": "Левый",
|
||||||
"Logged in successfully": "Успешный вход в систему",
|
"Logged in successfully": "Успешный вход в систему",
|
||||||
"Logged out successfully": "Успешный выход из системы",
|
"Logged out successfully": "Успешный выход из системы",
|
||||||
@ -192,7 +191,6 @@
|
|||||||
"Close": "Близко",
|
"Close": "Близко",
|
||||||
"Confirm": "Подтвердить",
|
"Confirm": "Подтвердить",
|
||||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||||
"Copy": "Копировать",
|
|
||||||
"Created time": "Созданное время",
|
"Created time": "Созданное время",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Панель мониторинга",
|
"Dashboard": "Панель мониторинга",
|
||||||
@ -1092,6 +1090,7 @@
|
|||||||
"Upload ID card front picture": "Upload ID card front picture",
|
"Upload ID card front picture": "Upload ID card front picture",
|
||||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||||
"Upload a photo": "Загрузить фото",
|
"Upload a photo": "Загрузить фото",
|
||||||
|
"User Profile": "User Profile",
|
||||||
"Values": "Значения",
|
"Values": "Значения",
|
||||||
"Verification code sent": "Код подтверждения отправлен",
|
"Verification code sent": "Код подтверждения отправлен",
|
||||||
"WebAuthn credentials": "WebAuthn удостоверения",
|
"WebAuthn credentials": "WebAuthn удостоверения",
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
"Invitation code": "Invitation code",
|
"Invitation code": "Invitation code",
|
||||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
|
||||||
"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",
|
||||||
@ -192,7 +191,6 @@
|
|||||||
"Close": "Close",
|
"Close": "Close",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||||
"Copy": "Copy",
|
|
||||||
"Created time": "Created time",
|
"Created time": "Created time",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -1092,6 +1090,7 @@
|
|||||||
"Upload ID card front picture": "Upload ID card front picture",
|
"Upload ID card front picture": "Upload ID card front picture",
|
||||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||||
"Upload a photo": "Upload a photo",
|
"Upload a photo": "Upload a photo",
|
||||||
|
"User Profile": "User Profile",
|
||||||
"Values": "Values",
|
"Values": "Values",
|
||||||
"Verification code sent": "Verification code sent",
|
"Verification code sent": "Verification code sent",
|
||||||
"WebAuthn credentials": "WebAuthn credentials",
|
"WebAuthn credentials": "WebAuthn credentials",
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
"Invitation code": "Davet Kodu",
|
"Invitation code": "Davet Kodu",
|
||||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
|
||||||
"Left": "Sol",
|
"Left": "Sol",
|
||||||
"Logged in successfully": "Başarıyla giriş yapıldı",
|
"Logged in successfully": "Başarıyla giriş yapıldı",
|
||||||
"Logged out successfully": "Başarıyla çıkış yapıldı",
|
"Logged out successfully": "Başarıyla çıkış yapıldı",
|
||||||
@ -192,7 +191,6 @@
|
|||||||
"Close": "Kapat",
|
"Close": "Kapat",
|
||||||
"Confirm": "Onayla",
|
"Confirm": "Onayla",
|
||||||
"Copied to clipboard successfully": "Başarıyla kopyalandı",
|
"Copied to clipboard successfully": "Başarıyla kopyalandı",
|
||||||
"Copy": "Kopyala",
|
|
||||||
"Created time": "Oluşturma zamanı",
|
"Created time": "Oluşturma zamanı",
|
||||||
"Custom": "Özel",
|
"Custom": "Özel",
|
||||||
"Dashboard": "Gösterge Paneli",
|
"Dashboard": "Gösterge Paneli",
|
||||||
@ -1092,6 +1090,7 @@
|
|||||||
"Upload ID card front picture": "Upload ID card front picture",
|
"Upload ID card front picture": "Upload ID card front picture",
|
||||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||||
"Upload a photo": "Upload a photo",
|
"Upload a photo": "Upload a photo",
|
||||||
|
"User Profile": "User Profile",
|
||||||
"Values": "Values",
|
"Values": "Values",
|
||||||
"Verification code sent": "Verification code sent",
|
"Verification code sent": "Verification code sent",
|
||||||
"WebAuthn credentials": "WebAuthn credentials",
|
"WebAuthn credentials": "WebAuthn credentials",
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
"Incremental": "Incremental",
|
"Incremental": "Incremental",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
"Invitation code": "Invitation code",
|
"Invitation code": "Invitation code",
|
||||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
|
||||||
"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",
|
||||||
@ -192,7 +191,6 @@
|
|||||||
"Close": "Close",
|
"Close": "Close",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||||
"Copy": "Copy",
|
|
||||||
"Created time": "Created time",
|
"Created time": "Created time",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -1092,6 +1090,7 @@
|
|||||||
"Upload ID card front picture": "Upload ID card front picture",
|
"Upload ID card front picture": "Upload ID card front picture",
|
||||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||||
"Upload a photo": "Upload a photo",
|
"Upload a photo": "Upload a photo",
|
||||||
|
"User Profile": "User Profile",
|
||||||
"Values": "Values",
|
"Values": "Values",
|
||||||
"Verification code sent": "Verification code sent",
|
"Verification code sent": "Verification code sent",
|
||||||
"WebAuthn credentials": "WebAuthn credentials",
|
"WebAuthn credentials": "WebAuthn credentials",
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
"Incremental": "Tăng",
|
"Incremental": "Tăng",
|
||||||
"Input": "Input",
|
"Input": "Input",
|
||||||
"Invitation code": "Invitation code",
|
"Invitation code": "Invitation code",
|
||||||
"Invitation code - Tooltip": "Invitation code - Tooltip",
|
|
||||||
"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",
|
||||||
@ -192,7 +191,6 @@
|
|||||||
"Close": "Đóng lại",
|
"Close": "Đóng lại",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
"Copied to clipboard successfully": "Copied to clipboard successfully",
|
||||||
"Copy": "Copy",
|
|
||||||
"Created time": "Thời gian tạo",
|
"Created time": "Thời gian tạo",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
@ -1092,6 +1090,7 @@
|
|||||||
"Upload ID card front picture": "Upload ID card front picture",
|
"Upload ID card front picture": "Upload ID card front picture",
|
||||||
"Upload ID card with person picture": "Upload ID card with person picture",
|
"Upload ID card with person picture": "Upload ID card with person picture",
|
||||||
"Upload a photo": "Tải lên một bức ảnh",
|
"Upload a photo": "Tải lên một bức ảnh",
|
||||||
|
"User Profile": "User Profile",
|
||||||
"Values": "Giá trị",
|
"Values": "Giá trị",
|
||||||
"Verification code sent": "Mã xác minh đã được gửi",
|
"Verification code sent": "Mã xác minh đã được gửi",
|
||||||
"WebAuthn credentials": "Chứng chỉ WebAuthn",
|
"WebAuthn credentials": "Chứng chỉ WebAuthn",
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
"Incremental": "递增",
|
"Incremental": "递增",
|
||||||
"Input": "输入",
|
"Input": "输入",
|
||||||
"Invitation code": "邀请码",
|
"Invitation code": "邀请码",
|
||||||
"Invitation code - Tooltip": "注册时填写的邀请码",
|
|
||||||
"Left": "居左",
|
"Left": "居左",
|
||||||
"Logged in successfully": "登录成功",
|
"Logged in successfully": "登录成功",
|
||||||
"Logged out successfully": "登出成功",
|
"Logged out successfully": "登出成功",
|
||||||
@ -192,7 +191,6 @@
|
|||||||
"Close": "关闭",
|
"Close": "关闭",
|
||||||
"Confirm": "确认",
|
"Confirm": "确认",
|
||||||
"Copied to clipboard successfully": "已成功复制到剪贴板",
|
"Copied to clipboard successfully": "已成功复制到剪贴板",
|
||||||
"Copy": "复制",
|
|
||||||
"Created time": "创建时间",
|
"Created time": "创建时间",
|
||||||
"Custom": "自定义",
|
"Custom": "自定义",
|
||||||
"Dashboard": "数据看板",
|
"Dashboard": "数据看板",
|
||||||
@ -1092,6 +1090,7 @@
|
|||||||
"Upload ID card front picture": "上传身份证正面照片",
|
"Upload ID card front picture": "上传身份证正面照片",
|
||||||
"Upload ID card with person picture": "上传手持身份证照片",
|
"Upload ID card with person picture": "上传手持身份证照片",
|
||||||
"Upload a photo": "上传头像",
|
"Upload a photo": "上传头像",
|
||||||
|
"User Profile": "用户个人页",
|
||||||
"Values": "值",
|
"Values": "值",
|
||||||
"Verification code sent": "验证码已发送",
|
"Verification code sent": "验证码已发送",
|
||||||
"WebAuthn credentials": "WebAuthn凭据",
|
"WebAuthn credentials": "WebAuthn凭据",
|
||||||
|
Reference in New Issue
Block a user