mirror of
https://github.com/casdoor/casdoor.git
synced 2025-05-22 18:25:47 +08:00
feat: support custom page footer (#2790)
This commit is contained in:
parent
f5bcd00652
commit
d25eaa65cd
@ -105,6 +105,7 @@ type Application struct {
|
|||||||
SignupHtml string `xorm:"mediumtext" json:"signupHtml"`
|
SignupHtml string `xorm:"mediumtext" json:"signupHtml"`
|
||||||
SigninHtml string `xorm:"mediumtext" json:"signinHtml"`
|
SigninHtml string `xorm:"mediumtext" json:"signinHtml"`
|
||||||
ThemeData *ThemeData `xorm:"json" json:"themeData"`
|
ThemeData *ThemeData `xorm:"json" json:"themeData"`
|
||||||
|
FooterHtml string `xorm:"mediumtext" json:"footerHtml"`
|
||||||
FormCss string `xorm:"text" json:"formCss"`
|
FormCss string `xorm:"text" json:"formCss"`
|
||||||
FormCssMobile string `xorm:"text" json:"formCssMobile"`
|
FormCssMobile string `xorm:"text" json:"formCssMobile"`
|
||||||
FormOffset int `json:"formOffset"`
|
FormOffset int `json:"formOffset"`
|
||||||
|
@ -34,6 +34,7 @@ const ManagementPage = lazy(() => import("./ManagementPage"));
|
|||||||
const {Footer, Content} = Layout;
|
const {Footer, Content} = Layout;
|
||||||
|
|
||||||
import {setTwoToneColor} from "@ant-design/icons";
|
import {setTwoToneColor} from "@ant-design/icons";
|
||||||
|
import * as ApplicationBackend from "./backend/ApplicationBackend";
|
||||||
|
|
||||||
setTwoToneColor("rgb(87,52,211)");
|
setTwoToneColor("rgb(87,52,211)");
|
||||||
|
|
||||||
@ -56,6 +57,7 @@ class App extends Component {
|
|||||||
logo: this.getLogo(storageThemeAlgorithm),
|
logo: this.getLogo(storageThemeAlgorithm),
|
||||||
requiredEnableMfa: false,
|
requiredEnableMfa: false,
|
||||||
isAiAssistantOpen: false,
|
isAiAssistantOpen: false,
|
||||||
|
application: undefined,
|
||||||
};
|
};
|
||||||
Setting.initServerUrl();
|
Setting.initServerUrl();
|
||||||
Auth.initAuthWithConfig({
|
Auth.initAuthWithConfig({
|
||||||
@ -67,6 +69,7 @@ class App extends Component {
|
|||||||
UNSAFE_componentWillMount() {
|
UNSAFE_componentWillMount() {
|
||||||
this.updateMenuKey();
|
this.updateMenuKey();
|
||||||
this.getAccount();
|
this.getAccount();
|
||||||
|
this.getApplication();
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidUpdate(prevProps, prevState, snapshot) {
|
componentDidUpdate(prevProps, prevState, snapshot) {
|
||||||
@ -190,6 +193,24 @@ class App extends Component {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
getApplication() {
|
||||||
|
const applicationName = localStorage.getItem("applicationName");
|
||||||
|
if (!applicationName) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
ApplicationBackend.getApplication("admin", applicationName)
|
||||||
|
.then((res) => {
|
||||||
|
if (res.status === "error") {
|
||||||
|
Setting.showMessage("error", res.msg);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.setState({
|
||||||
|
application: res.data,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
getAccount() {
|
getAccount() {
|
||||||
const params = new URLSearchParams(this.props.location.search);
|
const params = new URLSearchParams(this.props.location.search);
|
||||||
|
|
||||||
@ -245,11 +266,17 @@ class App extends Component {
|
|||||||
}
|
}
|
||||||
}>
|
}>
|
||||||
{
|
{
|
||||||
Conf.CustomFooter !== null ? Conf.CustomFooter : (
|
this.state.application?.footerHtml && this.state.application.footerHtml !== "" ?
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
Powered by <a target="_blank" href="https://casdoor.org" rel="noreferrer"><img style={{paddingBottom: "3px"}} height={"20px"} alt={"Casdoor"} src={this.state.logo} /></a>
|
<div dangerouslySetInnerHTML={{__html: this.state.application.footerHtml}} />
|
||||||
</React.Fragment>
|
</React.Fragment>
|
||||||
)
|
: (
|
||||||
|
Conf.CustomFooter !== null ? Conf.CustomFooter : (
|
||||||
|
<React.Fragment>
|
||||||
|
Powered by <a target="_blank" href="https://casdoor.org" rel="noreferrer"><img style={{paddingBottom: "3px"}} height={"20px"} alt={"Casdoor"} src={this.state.logo} /></a>
|
||||||
|
</React.Fragment>
|
||||||
|
)
|
||||||
|
)
|
||||||
}
|
}
|
||||||
</Footer>
|
</Footer>
|
||||||
</React.Fragment>
|
</React.Fragment>
|
||||||
@ -330,6 +357,11 @@ class App extends Component {
|
|||||||
<EntryPage
|
<EntryPage
|
||||||
account={this.state.account}
|
account={this.state.account}
|
||||||
theme={this.state.themeData}
|
theme={this.state.themeData}
|
||||||
|
updateApplication={(application) => {
|
||||||
|
this.setState({
|
||||||
|
application: application,
|
||||||
|
});
|
||||||
|
}}
|
||||||
onLoginSuccess={(redirectUrl) => {
|
onLoginSuccess={(redirectUrl) => {
|
||||||
if (redirectUrl) {
|
if (redirectUrl) {
|
||||||
localStorage.setItem("mfaRedirectUrl", redirectUrl);
|
localStorage.setItem("mfaRedirectUrl", redirectUrl);
|
||||||
|
@ -887,6 +887,38 @@ class ApplicationEditPage extends React.Component {
|
|||||||
</Popover>
|
</Popover>
|
||||||
</Col>
|
</Col>
|
||||||
</Row>
|
</Row>
|
||||||
|
<Row style={{marginTop: "20px"}} >
|
||||||
|
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
||||||
|
{Setting.getLabel(i18next.t("application:Footer HTML"), i18next.t("application:Footer HTML - Tooltip"))} :
|
||||||
|
</Col>
|
||||||
|
<Col span={22} >
|
||||||
|
<Popover placement="right" content={
|
||||||
|
<div style={{width: "900px", height: "300px"}} >
|
||||||
|
<CodeMirror
|
||||||
|
value={this.state.application.footerHtml}
|
||||||
|
options={{mode: "htmlmixed", theme: "material-darker"}}
|
||||||
|
onBeforeChange={(editor, data, value) => {
|
||||||
|
this.updateApplicationField("footerHtml", value);
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
} title={i18next.t("application:Footer HTML - Edit")} trigger="click">
|
||||||
|
<Input value={this.state.application.footerHtml} style={{marginBottom: "10px"}} onChange={e => {
|
||||||
|
this.updateApplicationField("footerHtml", e.target.value);
|
||||||
|
}} />
|
||||||
|
</Popover>
|
||||||
|
</Col>
|
||||||
|
</Row>
|
||||||
|
<Row style={{marginTop: "20px"}} >
|
||||||
|
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
||||||
|
</Col>
|
||||||
|
<Button style={{marginLeft: "10px", marginBottom: "5px"}} onClick={() => this.updateApplicationField("footerHtml", Setting.getDefaultFooterContent())} >
|
||||||
|
{i18next.t("provider:Reset to Default HTML")}
|
||||||
|
</Button>
|
||||||
|
<Button style={{marginLeft: "10px", marginBottom: "5px"}} onClick={() => this.updateApplicationField("footerHtml", Setting.getEmptyFooterContent())} >
|
||||||
|
{i18next.t("application:Reset to Empty")}
|
||||||
|
</Button>
|
||||||
|
</Row>
|
||||||
{
|
{
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
<Row style={{marginTop: "20px"}} >
|
<Row style={{marginTop: "20px"}} >
|
||||||
|
@ -69,6 +69,9 @@ class EntryPage extends React.Component {
|
|||||||
});
|
});
|
||||||
const themeData = application !== null ? Setting.getThemeData(application.organizationObj, application) : Conf.ThemeDefault;
|
const themeData = application !== null ? Setting.getThemeData(application.organizationObj, application) : Conf.ThemeDefault;
|
||||||
this.props.updataThemeData(themeData);
|
this.props.updataThemeData(themeData);
|
||||||
|
this.props.updateApplication(application);
|
||||||
|
|
||||||
|
localStorage.setItem("applicationName", application.name);
|
||||||
};
|
};
|
||||||
|
|
||||||
const onUpdatePricing = (pricing) => {
|
const onUpdatePricing = (pricing) => {
|
||||||
|
@ -1467,6 +1467,19 @@ export function getUserCommonFields() {
|
|||||||
"PreferredMfaType", "TotpSecret", "SignupApplication"];
|
"PreferredMfaType", "TotpSecret", "SignupApplication"];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function getDefaultFooterContent() {
|
||||||
|
return "Powered by <a target=\"_blank\" href=\"https://casdoor.org\" rel=\"noreferrer\"><img style=\"padding-bottom: 3px\" height=\"20\" alt=\"Casdoor\" src=\"https://cdn.casbin.org/img/casdoor-logo_1185x256.png\"/></a>";
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getEmptyFooterContent() {
|
||||||
|
return `<style>
|
||||||
|
#footer {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
<style>
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
export function getDefaultHtmlEmailContent() {
|
export function getDefaultHtmlEmailContent() {
|
||||||
return `<!DOCTYPE html>
|
return `<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"File uploaded successfully": "File uploaded successfully",
|
"File uploaded successfully": "File uploaded successfully",
|
||||||
"First, last": "First, last",
|
"First, last": "First, last",
|
||||||
"Follow organization theme": "Follow organization theme",
|
"Follow organization theme": "Follow organization theme",
|
||||||
|
"Footer HTML": "Footer HTML",
|
||||||
|
"Footer HTML - Edit": "Footer HTML - Edit",
|
||||||
|
"Footer HTML - Tooltip": "Custom the footer of your application",
|
||||||
"Form position": "Form position",
|
"Form position": "Form position",
|
||||||
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
|
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
|
||||||
"Grant types": "Grant types",
|
"Grant types": "Grant types",
|
||||||
@ -88,6 +91,7 @@
|
|||||||
"Redirect URLs - Tooltip": "Allowed redirect URL list, supporting regular expression matching; URLs not in the list will fail to redirect",
|
"Redirect URLs - Tooltip": "Allowed redirect URL list, supporting regular expression matching; URLs not in the list will fail to redirect",
|
||||||
"Refresh token expire": "Refresh token expire",
|
"Refresh token expire": "Refresh token expire",
|
||||||
"Refresh token expire - Tooltip": "Refresh token expiration time",
|
"Refresh token expire - Tooltip": "Refresh token expiration time",
|
||||||
|
"Reset to Empty": "Reset to Empty",
|
||||||
"Right": "Right",
|
"Right": "Right",
|
||||||
"Rule": "Rule",
|
"Rule": "Rule",
|
||||||
"SAML metadata": "SAML metadata",
|
"SAML metadata": "SAML metadata",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"File uploaded successfully": "Datei erfolgreich hochgeladen",
|
"File uploaded successfully": "Datei erfolgreich hochgeladen",
|
||||||
"First, last": "First, last",
|
"First, last": "First, last",
|
||||||
"Follow organization theme": "Folge dem Theme der Organisation",
|
"Follow organization theme": "Folge dem Theme der Organisation",
|
||||||
|
"Footer HTML": "Footer HTML",
|
||||||
|
"Footer HTML - Edit": "Footer HTML - Edit",
|
||||||
|
"Footer HTML - Tooltip": "Custom the footer of your application",
|
||||||
"Form position": "Formposition",
|
"Form position": "Formposition",
|
||||||
"Form position - Tooltip": "Position der Anmelde-, Registrierungs- und Passwort-vergessen-Formulare",
|
"Form position - Tooltip": "Position der Anmelde-, Registrierungs- und Passwort-vergessen-Formulare",
|
||||||
"Grant types": "Grant-Typen",
|
"Grant types": "Grant-Typen",
|
||||||
@ -88,6 +91,7 @@
|
|||||||
"Redirect URLs - Tooltip": "Liste erlaubter Umleitungs-URLs mit Unterstützung von regulärer Ausdrucksprüfung; URLs, die nicht in der Liste enthalten sind, können nicht umgeleitet werden",
|
"Redirect URLs - Tooltip": "Liste erlaubter Umleitungs-URLs mit Unterstützung von regulärer Ausdrucksprüfung; URLs, die nicht in der Liste enthalten sind, können nicht umgeleitet werden",
|
||||||
"Refresh token expire": "Gültigkeitsdauer des Refresh-Tokens",
|
"Refresh token expire": "Gültigkeitsdauer des Refresh-Tokens",
|
||||||
"Refresh token expire - Tooltip": "Angabe der Gültigkeitsdauer des Refresh Tokens",
|
"Refresh token expire - Tooltip": "Angabe der Gültigkeitsdauer des Refresh Tokens",
|
||||||
|
"Reset to Empty": "Reset to Empty",
|
||||||
"Right": "Rechts",
|
"Right": "Rechts",
|
||||||
"Rule": "Regel",
|
"Rule": "Regel",
|
||||||
"SAML metadata": "SAML-Metadaten",
|
"SAML metadata": "SAML-Metadaten",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"File uploaded successfully": "File uploaded successfully",
|
"File uploaded successfully": "File uploaded successfully",
|
||||||
"First, last": "First, last",
|
"First, last": "First, last",
|
||||||
"Follow organization theme": "Follow organization theme",
|
"Follow organization theme": "Follow organization theme",
|
||||||
|
"Footer HTML": "Footer HTML",
|
||||||
|
"Footer HTML - Edit": "Footer HTML - Edit",
|
||||||
|
"Footer HTML - Tooltip": "Custom the footer of your application",
|
||||||
"Form position": "Form position",
|
"Form position": "Form position",
|
||||||
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
|
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
|
||||||
"Grant types": "Grant types",
|
"Grant types": "Grant types",
|
||||||
@ -88,6 +91,7 @@
|
|||||||
"Redirect URLs - Tooltip": "Allowed redirect URL list, supporting regular expression matching; URLs not in the list will fail to redirect",
|
"Redirect URLs - Tooltip": "Allowed redirect URL list, supporting regular expression matching; URLs not in the list will fail to redirect",
|
||||||
"Refresh token expire": "Refresh token expire",
|
"Refresh token expire": "Refresh token expire",
|
||||||
"Refresh token expire - Tooltip": "Refresh token expiration time",
|
"Refresh token expire - Tooltip": "Refresh token expiration time",
|
||||||
|
"Reset to Empty": "Reset to Empty",
|
||||||
"Right": "Right",
|
"Right": "Right",
|
||||||
"Rule": "Rule",
|
"Rule": "Rule",
|
||||||
"SAML metadata": "SAML metadata",
|
"SAML metadata": "SAML metadata",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"File uploaded successfully": "Archivo subido exitosamente",
|
"File uploaded successfully": "Archivo subido exitosamente",
|
||||||
"First, last": "First, last",
|
"First, last": "First, last",
|
||||||
"Follow organization theme": "Seguir el tema de la organización",
|
"Follow organization theme": "Seguir el tema de la organización",
|
||||||
|
"Footer HTML": "Footer HTML",
|
||||||
|
"Footer HTML - Edit": "Footer HTML - Edit",
|
||||||
|
"Footer HTML - Tooltip": "Custom the footer of your application",
|
||||||
"Form position": "Posición de la Forma",
|
"Form position": "Posición de la Forma",
|
||||||
"Form position - Tooltip": "Ubicación de los formularios de registro, inicio de sesión y olvido de contraseña",
|
"Form position - Tooltip": "Ubicación de los formularios de registro, inicio de sesión y olvido de contraseña",
|
||||||
"Grant types": "Tipos de subvenciones",
|
"Grant types": "Tipos de subvenciones",
|
||||||
@ -88,6 +91,7 @@
|
|||||||
"Redirect URLs - Tooltip": "Lista de URL de redireccionamiento permitidos, con soporte para coincidencias de expresiones regulares; las URL que no estén en la lista no se redirigirán",
|
"Redirect URLs - Tooltip": "Lista de URL de redireccionamiento permitidos, con soporte para coincidencias de expresiones regulares; las URL que no estén en la lista no se redirigirán",
|
||||||
"Refresh token expire": "Token de actualización expirado",
|
"Refresh token expire": "Token de actualización expirado",
|
||||||
"Refresh token expire - Tooltip": "Tiempo de caducidad del token de actualización",
|
"Refresh token expire - Tooltip": "Tiempo de caducidad del token de actualización",
|
||||||
|
"Reset to Empty": "Reset to Empty",
|
||||||
"Right": "Correcto",
|
"Right": "Correcto",
|
||||||
"Rule": "Regla",
|
"Rule": "Regla",
|
||||||
"SAML metadata": "Metadatos de SAML",
|
"SAML metadata": "Metadatos de SAML",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"File uploaded successfully": "File uploaded successfully",
|
"File uploaded successfully": "File uploaded successfully",
|
||||||
"First, last": "First, last",
|
"First, last": "First, last",
|
||||||
"Follow organization theme": "Follow organization theme",
|
"Follow organization theme": "Follow organization theme",
|
||||||
|
"Footer HTML": "Footer HTML",
|
||||||
|
"Footer HTML - Edit": "Footer HTML - Edit",
|
||||||
|
"Footer HTML - Tooltip": "Custom the footer of your application",
|
||||||
"Form position": "Form position",
|
"Form position": "Form position",
|
||||||
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
|
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
|
||||||
"Grant types": "Grant types",
|
"Grant types": "Grant types",
|
||||||
@ -88,6 +91,7 @@
|
|||||||
"Redirect URLs - Tooltip": "Allowed redirect URL list, supporting regular expression matching; URLs not in the list will fail to redirect",
|
"Redirect URLs - Tooltip": "Allowed redirect URL list, supporting regular expression matching; URLs not in the list will fail to redirect",
|
||||||
"Refresh token expire": "Refresh token expire",
|
"Refresh token expire": "Refresh token expire",
|
||||||
"Refresh token expire - Tooltip": "Refresh token expiration time",
|
"Refresh token expire - Tooltip": "Refresh token expiration time",
|
||||||
|
"Reset to Empty": "Reset to Empty",
|
||||||
"Right": "Right",
|
"Right": "Right",
|
||||||
"Rule": "Rule",
|
"Rule": "Rule",
|
||||||
"SAML metadata": "SAML metadata",
|
"SAML metadata": "SAML metadata",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"File uploaded successfully": "File uploaded successfully",
|
"File uploaded successfully": "File uploaded successfully",
|
||||||
"First, last": "First, last",
|
"First, last": "First, last",
|
||||||
"Follow organization theme": "Follow organization theme",
|
"Follow organization theme": "Follow organization theme",
|
||||||
|
"Footer HTML": "Footer HTML",
|
||||||
|
"Footer HTML - Edit": "Footer HTML - Edit",
|
||||||
|
"Footer HTML - Tooltip": "Custom the footer of your application",
|
||||||
"Form position": "Form position",
|
"Form position": "Form position",
|
||||||
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
|
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
|
||||||
"Grant types": "Grant types",
|
"Grant types": "Grant types",
|
||||||
@ -88,6 +91,7 @@
|
|||||||
"Redirect URLs - Tooltip": "Allowed redirect URL list, supporting regular expression matching; URLs not in the list will fail to redirect",
|
"Redirect URLs - Tooltip": "Allowed redirect URL list, supporting regular expression matching; URLs not in the list will fail to redirect",
|
||||||
"Refresh token expire": "Refresh token expire",
|
"Refresh token expire": "Refresh token expire",
|
||||||
"Refresh token expire - Tooltip": "Refresh token expiration time",
|
"Refresh token expire - Tooltip": "Refresh token expiration time",
|
||||||
|
"Reset to Empty": "Reset to Empty",
|
||||||
"Right": "Right",
|
"Right": "Right",
|
||||||
"Rule": "Rule",
|
"Rule": "Rule",
|
||||||
"SAML metadata": "SAML metadata",
|
"SAML metadata": "SAML metadata",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"File uploaded successfully": "Fichier téléchargé avec succès",
|
"File uploaded successfully": "Fichier téléchargé avec succès",
|
||||||
"First, last": "Prénom, nom",
|
"First, last": "Prénom, nom",
|
||||||
"Follow organization theme": "Suivre le thème de l'organisation",
|
"Follow organization theme": "Suivre le thème de l'organisation",
|
||||||
|
"Footer HTML": "Footer HTML",
|
||||||
|
"Footer HTML - Edit": "Footer HTML - Edit",
|
||||||
|
"Footer HTML - Tooltip": "Custom the footer of your application",
|
||||||
"Form position": "Position du formulaire",
|
"Form position": "Position du formulaire",
|
||||||
"Form position - Tooltip": "Emplacement des formulaires d'inscription, de connexion et de récupération de mot de passe",
|
"Form position - Tooltip": "Emplacement des formulaires d'inscription, de connexion et de récupération de mot de passe",
|
||||||
"Grant types": "Types d'autorisation",
|
"Grant types": "Types d'autorisation",
|
||||||
@ -88,6 +91,7 @@
|
|||||||
"Redirect URLs - Tooltip": "Liste des URL de redirection autorisées, les expressions régulières sont supportées ; les URL n'étant pas dans la liste ne seront pas redirigées",
|
"Redirect URLs - Tooltip": "Liste des URL de redirection autorisées, les expressions régulières sont supportées ; les URL n'étant pas dans la liste ne seront pas redirigées",
|
||||||
"Refresh token expire": "Expiration du jeton de rafraîchissement",
|
"Refresh token expire": "Expiration du jeton de rafraîchissement",
|
||||||
"Refresh token expire - Tooltip": "Durée avant expiration du jeton de rafraîchissement",
|
"Refresh token expire - Tooltip": "Durée avant expiration du jeton de rafraîchissement",
|
||||||
|
"Reset to Empty": "Reset to Empty",
|
||||||
"Right": "Droit",
|
"Right": "Droit",
|
||||||
"Rule": "Règle",
|
"Rule": "Règle",
|
||||||
"SAML metadata": "Métadonnées SAML",
|
"SAML metadata": "Métadonnées SAML",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"File uploaded successfully": "File uploaded successfully",
|
"File uploaded successfully": "File uploaded successfully",
|
||||||
"First, last": "First, last",
|
"First, last": "First, last",
|
||||||
"Follow organization theme": "Follow organization theme",
|
"Follow organization theme": "Follow organization theme",
|
||||||
|
"Footer HTML": "Footer HTML",
|
||||||
|
"Footer HTML - Edit": "Footer HTML - Edit",
|
||||||
|
"Footer HTML - Tooltip": "Custom the footer of your application",
|
||||||
"Form position": "Form position",
|
"Form position": "Form position",
|
||||||
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
|
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
|
||||||
"Grant types": "Grant types",
|
"Grant types": "Grant types",
|
||||||
@ -88,6 +91,7 @@
|
|||||||
"Redirect URLs - Tooltip": "Allowed redirect URL list, supporting regular expression matching; URLs not in the list will fail to redirect",
|
"Redirect URLs - Tooltip": "Allowed redirect URL list, supporting regular expression matching; URLs not in the list will fail to redirect",
|
||||||
"Refresh token expire": "Refresh token expire",
|
"Refresh token expire": "Refresh token expire",
|
||||||
"Refresh token expire - Tooltip": "Refresh token expiration time",
|
"Refresh token expire - Tooltip": "Refresh token expiration time",
|
||||||
|
"Reset to Empty": "Reset to Empty",
|
||||||
"Right": "Right",
|
"Right": "Right",
|
||||||
"Rule": "Rule",
|
"Rule": "Rule",
|
||||||
"SAML metadata": "SAML metadata",
|
"SAML metadata": "SAML metadata",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"File uploaded successfully": "Berkas telah diunggah dengan sukses",
|
"File uploaded successfully": "Berkas telah diunggah dengan sukses",
|
||||||
"First, last": "First, last",
|
"First, last": "First, last",
|
||||||
"Follow organization theme": "Ikuti tema organisasi",
|
"Follow organization theme": "Ikuti tema organisasi",
|
||||||
|
"Footer HTML": "Footer HTML",
|
||||||
|
"Footer HTML - Edit": "Footer HTML - Edit",
|
||||||
|
"Footer HTML - Tooltip": "Custom the footer of your application",
|
||||||
"Form position": "Posisi formulir",
|
"Form position": "Posisi formulir",
|
||||||
"Form position - Tooltip": "Tempat pendaftaran, masuk, dan lupa kata sandi",
|
"Form position - Tooltip": "Tempat pendaftaran, masuk, dan lupa kata sandi",
|
||||||
"Grant types": "Jenis-jenis hibah",
|
"Grant types": "Jenis-jenis hibah",
|
||||||
@ -88,6 +91,7 @@
|
|||||||
"Redirect URLs - Tooltip": "Daftar URL redirect yang diizinkan, mendukung pencocokan ekspresi reguler; URL yang tidak ada dalam daftar akan gagal dialihkan",
|
"Redirect URLs - Tooltip": "Daftar URL redirect yang diizinkan, mendukung pencocokan ekspresi reguler; URL yang tidak ada dalam daftar akan gagal dialihkan",
|
||||||
"Refresh token expire": "Token segar kedaluwarsa",
|
"Refresh token expire": "Token segar kedaluwarsa",
|
||||||
"Refresh token expire - Tooltip": "Waktu kedaluwarsa token penyegaran",
|
"Refresh token expire - Tooltip": "Waktu kedaluwarsa token penyegaran",
|
||||||
|
"Reset to Empty": "Reset to Empty",
|
||||||
"Right": "Benar",
|
"Right": "Benar",
|
||||||
"Rule": "Aturan",
|
"Rule": "Aturan",
|
||||||
"SAML metadata": "Metadata SAML",
|
"SAML metadata": "Metadata SAML",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"File uploaded successfully": "File uploaded successfully",
|
"File uploaded successfully": "File uploaded successfully",
|
||||||
"First, last": "First, last",
|
"First, last": "First, last",
|
||||||
"Follow organization theme": "Follow organization theme",
|
"Follow organization theme": "Follow organization theme",
|
||||||
|
"Footer HTML": "Footer HTML",
|
||||||
|
"Footer HTML - Edit": "Footer HTML - Edit",
|
||||||
|
"Footer HTML - Tooltip": "Custom the footer of your application",
|
||||||
"Form position": "Form position",
|
"Form position": "Form position",
|
||||||
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
|
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
|
||||||
"Grant types": "Grant types",
|
"Grant types": "Grant types",
|
||||||
@ -88,6 +91,7 @@
|
|||||||
"Redirect URLs - Tooltip": "Allowed redirect URL list, supporting regular expression matching; URLs not in the list will fail to redirect",
|
"Redirect URLs - Tooltip": "Allowed redirect URL list, supporting regular expression matching; URLs not in the list will fail to redirect",
|
||||||
"Refresh token expire": "Refresh token expire",
|
"Refresh token expire": "Refresh token expire",
|
||||||
"Refresh token expire - Tooltip": "Refresh token expiration time",
|
"Refresh token expire - Tooltip": "Refresh token expiration time",
|
||||||
|
"Reset to Empty": "Reset to Empty",
|
||||||
"Right": "Right",
|
"Right": "Right",
|
||||||
"Rule": "Rule",
|
"Rule": "Rule",
|
||||||
"SAML metadata": "SAML metadata",
|
"SAML metadata": "SAML metadata",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"File uploaded successfully": "ファイルが正常にアップロードされました",
|
"File uploaded successfully": "ファイルが正常にアップロードされました",
|
||||||
"First, last": "First, last",
|
"First, last": "First, last",
|
||||||
"Follow organization theme": "組織のテーマに従ってください",
|
"Follow organization theme": "組織のテーマに従ってください",
|
||||||
|
"Footer HTML": "Footer HTML",
|
||||||
|
"Footer HTML - Edit": "Footer HTML - Edit",
|
||||||
|
"Footer HTML - Tooltip": "Custom the footer of your application",
|
||||||
"Form position": "フォームのポジション",
|
"Form position": "フォームのポジション",
|
||||||
"Form position - Tooltip": "登録、ログイン、パスワード忘れフォームの位置",
|
"Form position - Tooltip": "登録、ログイン、パスワード忘れフォームの位置",
|
||||||
"Grant types": "グラント種類",
|
"Grant types": "グラント種類",
|
||||||
@ -88,6 +91,7 @@
|
|||||||
"Redirect URLs - Tooltip": "許可されたリダイレクトURLリストは、正規表現マッチングをサポートしています。リストに含まれていないURLはリダイレクトできません",
|
"Redirect URLs - Tooltip": "許可されたリダイレクトURLリストは、正規表現マッチングをサポートしています。リストに含まれていないURLはリダイレクトできません",
|
||||||
"Refresh token expire": "リフレッシュトークンの有効期限が切れました",
|
"Refresh token expire": "リフレッシュトークンの有効期限が切れました",
|
||||||
"Refresh token expire - Tooltip": "リフレッシュトークンの有効期限時間",
|
"Refresh token expire - Tooltip": "リフレッシュトークンの有効期限時間",
|
||||||
|
"Reset to Empty": "Reset to Empty",
|
||||||
"Right": "右",
|
"Right": "右",
|
||||||
"Rule": "ルール",
|
"Rule": "ルール",
|
||||||
"SAML metadata": "SAMLメタデータ",
|
"SAML metadata": "SAMLメタデータ",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"File uploaded successfully": "File uploaded successfully",
|
"File uploaded successfully": "File uploaded successfully",
|
||||||
"First, last": "First, last",
|
"First, last": "First, last",
|
||||||
"Follow organization theme": "Follow organization theme",
|
"Follow organization theme": "Follow organization theme",
|
||||||
|
"Footer HTML": "Footer HTML",
|
||||||
|
"Footer HTML - Edit": "Footer HTML - Edit",
|
||||||
|
"Footer HTML - Tooltip": "Custom the footer of your application",
|
||||||
"Form position": "Form position",
|
"Form position": "Form position",
|
||||||
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
|
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
|
||||||
"Grant types": "Grant types",
|
"Grant types": "Grant types",
|
||||||
@ -88,6 +91,7 @@
|
|||||||
"Redirect URLs - Tooltip": "Allowed redirect URL list, supporting regular expression matching; URLs not in the list will fail to redirect",
|
"Redirect URLs - Tooltip": "Allowed redirect URL list, supporting regular expression matching; URLs not in the list will fail to redirect",
|
||||||
"Refresh token expire": "Refresh token expire",
|
"Refresh token expire": "Refresh token expire",
|
||||||
"Refresh token expire - Tooltip": "Refresh token expiration time",
|
"Refresh token expire - Tooltip": "Refresh token expiration time",
|
||||||
|
"Reset to Empty": "Reset to Empty",
|
||||||
"Right": "Right",
|
"Right": "Right",
|
||||||
"Rule": "Rule",
|
"Rule": "Rule",
|
||||||
"SAML metadata": "SAML metadata",
|
"SAML metadata": "SAML metadata",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"File uploaded successfully": "파일이 성공적으로 업로드되었습니다",
|
"File uploaded successfully": "파일이 성공적으로 업로드되었습니다",
|
||||||
"First, last": "First, last",
|
"First, last": "First, last",
|
||||||
"Follow organization theme": "조직의 주제를 따르세요",
|
"Follow organization theme": "조직의 주제를 따르세요",
|
||||||
|
"Footer HTML": "Footer HTML",
|
||||||
|
"Footer HTML - Edit": "Footer HTML - Edit",
|
||||||
|
"Footer HTML - Tooltip": "Custom the footer of your application",
|
||||||
"Form position": "양식 위치",
|
"Form position": "양식 위치",
|
||||||
"Form position - Tooltip": "가입, 로그인 및 비밀번호 재설정 양식의 위치",
|
"Form position - Tooltip": "가입, 로그인 및 비밀번호 재설정 양식의 위치",
|
||||||
"Grant types": "Grant types: 부여 유형",
|
"Grant types": "Grant types: 부여 유형",
|
||||||
@ -88,6 +91,7 @@
|
|||||||
"Redirect URLs - Tooltip": "허용된 리디렉션 URL 목록은 정규 표현식 일치를 지원합니다. 목록에 없는 URL은 리디렉션에 실패합니다",
|
"Redirect URLs - Tooltip": "허용된 리디렉션 URL 목록은 정규 표현식 일치를 지원합니다. 목록에 없는 URL은 리디렉션에 실패합니다",
|
||||||
"Refresh token expire": "리프레시 토큰 만료",
|
"Refresh token expire": "리프레시 토큰 만료",
|
||||||
"Refresh token expire - Tooltip": "리프레시 토큰 만료 시간",
|
"Refresh token expire - Tooltip": "리프레시 토큰 만료 시간",
|
||||||
|
"Reset to Empty": "Reset to Empty",
|
||||||
"Right": "옳은",
|
"Right": "옳은",
|
||||||
"Rule": "규칙",
|
"Rule": "규칙",
|
||||||
"SAML metadata": "SAML 메타데이터",
|
"SAML metadata": "SAML 메타데이터",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"File uploaded successfully": "File uploaded successfully",
|
"File uploaded successfully": "File uploaded successfully",
|
||||||
"First, last": "First, last",
|
"First, last": "First, last",
|
||||||
"Follow organization theme": "Follow organization theme",
|
"Follow organization theme": "Follow organization theme",
|
||||||
|
"Footer HTML": "Footer HTML",
|
||||||
|
"Footer HTML - Edit": "Footer HTML - Edit",
|
||||||
|
"Footer HTML - Tooltip": "Custom the footer of your application",
|
||||||
"Form position": "Form position",
|
"Form position": "Form position",
|
||||||
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
|
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
|
||||||
"Grant types": "Grant types",
|
"Grant types": "Grant types",
|
||||||
@ -88,6 +91,7 @@
|
|||||||
"Redirect URLs - Tooltip": "Allowed redirect URL list, supporting regular expression matching; URLs not in the list will fail to redirect",
|
"Redirect URLs - Tooltip": "Allowed redirect URL list, supporting regular expression matching; URLs not in the list will fail to redirect",
|
||||||
"Refresh token expire": "Refresh token expire",
|
"Refresh token expire": "Refresh token expire",
|
||||||
"Refresh token expire - Tooltip": "Refresh token expiration time",
|
"Refresh token expire - Tooltip": "Refresh token expiration time",
|
||||||
|
"Reset to Empty": "Reset to Empty",
|
||||||
"Right": "Right",
|
"Right": "Right",
|
||||||
"Rule": "Rule",
|
"Rule": "Rule",
|
||||||
"SAML metadata": "SAML metadata",
|
"SAML metadata": "SAML metadata",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"File uploaded successfully": "File uploaded successfully",
|
"File uploaded successfully": "File uploaded successfully",
|
||||||
"First, last": "First, last",
|
"First, last": "First, last",
|
||||||
"Follow organization theme": "Follow organization theme",
|
"Follow organization theme": "Follow organization theme",
|
||||||
|
"Footer HTML": "Footer HTML",
|
||||||
|
"Footer HTML - Edit": "Footer HTML - Edit",
|
||||||
|
"Footer HTML - Tooltip": "Custom the footer of your application",
|
||||||
"Form position": "Form position",
|
"Form position": "Form position",
|
||||||
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
|
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
|
||||||
"Grant types": "Grant types",
|
"Grant types": "Grant types",
|
||||||
@ -88,6 +91,7 @@
|
|||||||
"Redirect URLs - Tooltip": "Allowed redirect URL list, supporting regular expression matching; URLs not in the list will fail to redirect",
|
"Redirect URLs - Tooltip": "Allowed redirect URL list, supporting regular expression matching; URLs not in the list will fail to redirect",
|
||||||
"Refresh token expire": "Refresh token expire",
|
"Refresh token expire": "Refresh token expire",
|
||||||
"Refresh token expire - Tooltip": "Refresh token expiration time",
|
"Refresh token expire - Tooltip": "Refresh token expiration time",
|
||||||
|
"Reset to Empty": "Reset to Empty",
|
||||||
"Right": "Right",
|
"Right": "Right",
|
||||||
"Rule": "Rule",
|
"Rule": "Rule",
|
||||||
"SAML metadata": "SAML metadata",
|
"SAML metadata": "SAML metadata",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"File uploaded successfully": "File uploaded successfully",
|
"File uploaded successfully": "File uploaded successfully",
|
||||||
"First, last": "First, last",
|
"First, last": "First, last",
|
||||||
"Follow organization theme": "Follow organization theme",
|
"Follow organization theme": "Follow organization theme",
|
||||||
|
"Footer HTML": "Footer HTML",
|
||||||
|
"Footer HTML - Edit": "Footer HTML - Edit",
|
||||||
|
"Footer HTML - Tooltip": "Custom the footer of your application",
|
||||||
"Form position": "Form position",
|
"Form position": "Form position",
|
||||||
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
|
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
|
||||||
"Grant types": "Grant types",
|
"Grant types": "Grant types",
|
||||||
@ -88,6 +91,7 @@
|
|||||||
"Redirect URLs - Tooltip": "Allowed redirect URL list, supporting regular expression matching; URLs not in the list will fail to redirect",
|
"Redirect URLs - Tooltip": "Allowed redirect URL list, supporting regular expression matching; URLs not in the list will fail to redirect",
|
||||||
"Refresh token expire": "Refresh token expire",
|
"Refresh token expire": "Refresh token expire",
|
||||||
"Refresh token expire - Tooltip": "Refresh token expiration time",
|
"Refresh token expire - Tooltip": "Refresh token expiration time",
|
||||||
|
"Reset to Empty": "Reset to Empty",
|
||||||
"Right": "Right",
|
"Right": "Right",
|
||||||
"Rule": "Rule",
|
"Rule": "Rule",
|
||||||
"SAML metadata": "SAML metadata",
|
"SAML metadata": "SAML metadata",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"File uploaded successfully": "Arquivo enviado com sucesso",
|
"File uploaded successfully": "Arquivo enviado com sucesso",
|
||||||
"First, last": "Primeiro, último",
|
"First, last": "Primeiro, último",
|
||||||
"Follow organization theme": "Seguir tema da organização",
|
"Follow organization theme": "Seguir tema da organização",
|
||||||
|
"Footer HTML": "Footer HTML",
|
||||||
|
"Footer HTML - Edit": "Footer HTML - Edit",
|
||||||
|
"Footer HTML - Tooltip": "Custom the footer of your application",
|
||||||
"Form position": "Posição do formulário",
|
"Form position": "Posição do formulário",
|
||||||
"Form position - Tooltip": "Localização dos formulários de registro, login e recuperação de senha",
|
"Form position - Tooltip": "Localização dos formulários de registro, login e recuperação de senha",
|
||||||
"Grant types": "Tipos de concessão",
|
"Grant types": "Tipos de concessão",
|
||||||
@ -88,6 +91,7 @@
|
|||||||
"Redirect URLs - Tooltip": "Lista de URLs de redirecionamento permitidos, com suporte à correspondência por expressões regulares; URLs que não estão na lista falharão ao redirecionar",
|
"Redirect URLs - Tooltip": "Lista de URLs de redirecionamento permitidos, com suporte à correspondência por expressões regulares; URLs que não estão na lista falharão ao redirecionar",
|
||||||
"Refresh token expire": "Expiração do token de atualização",
|
"Refresh token expire": "Expiração do token de atualização",
|
||||||
"Refresh token expire - Tooltip": "Tempo de expiração do token de atualização",
|
"Refresh token expire - Tooltip": "Tempo de expiração do token de atualização",
|
||||||
|
"Reset to Empty": "Reset to Empty",
|
||||||
"Right": "Direita",
|
"Right": "Direita",
|
||||||
"Rule": "Regra",
|
"Rule": "Regra",
|
||||||
"SAML metadata": "Metadados do SAML",
|
"SAML metadata": "Metadados do SAML",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"File uploaded successfully": "Файл успешно загружен",
|
"File uploaded successfully": "Файл успешно загружен",
|
||||||
"First, last": "Имя, Фамилия",
|
"First, last": "Имя, Фамилия",
|
||||||
"Follow organization theme": "Cледуйте теме организации",
|
"Follow organization theme": "Cледуйте теме организации",
|
||||||
|
"Footer HTML": "Footer HTML",
|
||||||
|
"Footer HTML - Edit": "Footer HTML - Edit",
|
||||||
|
"Footer HTML - Tooltip": "Custom the footer of your application",
|
||||||
"Form position": "Позиция формы",
|
"Form position": "Позиция формы",
|
||||||
"Form position - Tooltip": "Местоположение форм регистрации, входа и восстановления пароля",
|
"Form position - Tooltip": "Местоположение форм регистрации, входа и восстановления пароля",
|
||||||
"Grant types": "Типы грантов",
|
"Grant types": "Типы грантов",
|
||||||
@ -88,6 +91,7 @@
|
|||||||
"Redirect URLs - Tooltip": "Разрешенный список URL-адресов для перенаправления с поддержкой сопоставления регулярных выражений; URL-адреса, которые не находятся в списке, не будут перенаправляться",
|
"Redirect URLs - Tooltip": "Разрешенный список URL-адресов для перенаправления с поддержкой сопоставления регулярных выражений; URL-адреса, которые не находятся в списке, не будут перенаправляться",
|
||||||
"Refresh token expire": "Срок действия токена обновления истек",
|
"Refresh token expire": "Срок действия токена обновления истек",
|
||||||
"Refresh token expire - Tooltip": "Время истечения токена обновления",
|
"Refresh token expire - Tooltip": "Время истечения токена обновления",
|
||||||
|
"Reset to Empty": "Reset to Empty",
|
||||||
"Right": "Правильно",
|
"Right": "Правильно",
|
||||||
"Rule": "Правило",
|
"Rule": "Правило",
|
||||||
"SAML metadata": "Метаданные SAML",
|
"SAML metadata": "Метаданные SAML",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"File uploaded successfully": "File uploaded successfully",
|
"File uploaded successfully": "File uploaded successfully",
|
||||||
"First, last": "First, last",
|
"First, last": "First, last",
|
||||||
"Follow organization theme": "Follow organization theme",
|
"Follow organization theme": "Follow organization theme",
|
||||||
|
"Footer HTML": "Footer HTML",
|
||||||
|
"Footer HTML - Edit": "Footer HTML - Edit",
|
||||||
|
"Footer HTML - Tooltip": "Custom the footer of your application",
|
||||||
"Form position": "Form position",
|
"Form position": "Form position",
|
||||||
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
|
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
|
||||||
"Grant types": "Grant types",
|
"Grant types": "Grant types",
|
||||||
@ -88,6 +91,7 @@
|
|||||||
"Redirect URLs - Tooltip": "Allowed redirect URL list, supporting regular expression matching; URLs not in the list will fail to redirect",
|
"Redirect URLs - Tooltip": "Allowed redirect URL list, supporting regular expression matching; URLs not in the list will fail to redirect",
|
||||||
"Refresh token expire": "Refresh token expire",
|
"Refresh token expire": "Refresh token expire",
|
||||||
"Refresh token expire - Tooltip": "Refresh token expiration time",
|
"Refresh token expire - Tooltip": "Refresh token expiration time",
|
||||||
|
"Reset to Empty": "Reset to Empty",
|
||||||
"Right": "Right",
|
"Right": "Right",
|
||||||
"Rule": "Rule",
|
"Rule": "Rule",
|
||||||
"SAML metadata": "SAML metadata",
|
"SAML metadata": "SAML metadata",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"File uploaded successfully": "File uploaded successfully",
|
"File uploaded successfully": "File uploaded successfully",
|
||||||
"First, last": "Adı, Soyadı",
|
"First, last": "Adı, Soyadı",
|
||||||
"Follow organization theme": "Follow organization theme",
|
"Follow organization theme": "Follow organization theme",
|
||||||
|
"Footer HTML": "Footer HTML",
|
||||||
|
"Footer HTML - Edit": "Footer HTML - Edit",
|
||||||
|
"Footer HTML - Tooltip": "Custom the footer of your application",
|
||||||
"Form position": "Form position",
|
"Form position": "Form position",
|
||||||
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
|
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
|
||||||
"Grant types": "Grant types",
|
"Grant types": "Grant types",
|
||||||
@ -88,6 +91,7 @@
|
|||||||
"Redirect URLs - Tooltip": "Kabul edilen yönlendirme URL listesi, düzenli ifadeleri (regexp) kullanabilirsiniz. Eğer url bu lşistede yoksa hata sayfasına yönlendirilirsiniz",
|
"Redirect URLs - Tooltip": "Kabul edilen yönlendirme URL listesi, düzenli ifadeleri (regexp) kullanabilirsiniz. Eğer url bu lşistede yoksa hata sayfasına yönlendirilirsiniz",
|
||||||
"Refresh token expire": "Refresh token expire",
|
"Refresh token expire": "Refresh token expire",
|
||||||
"Refresh token expire - Tooltip": "Refresh token expiration time",
|
"Refresh token expire - Tooltip": "Refresh token expiration time",
|
||||||
|
"Reset to Empty": "Reset to Empty",
|
||||||
"Right": "Sağ",
|
"Right": "Sağ",
|
||||||
"Rule": "Rule",
|
"Rule": "Rule",
|
||||||
"SAML metadata": "SAML metadata",
|
"SAML metadata": "SAML metadata",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"File uploaded successfully": "File uploaded successfully",
|
"File uploaded successfully": "File uploaded successfully",
|
||||||
"First, last": "First, last",
|
"First, last": "First, last",
|
||||||
"Follow organization theme": "Follow organization theme",
|
"Follow organization theme": "Follow organization theme",
|
||||||
|
"Footer HTML": "Footer HTML",
|
||||||
|
"Footer HTML - Edit": "Footer HTML - Edit",
|
||||||
|
"Footer HTML - Tooltip": "Custom the footer of your application",
|
||||||
"Form position": "Form position",
|
"Form position": "Form position",
|
||||||
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
|
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
|
||||||
"Grant types": "Grant types",
|
"Grant types": "Grant types",
|
||||||
@ -88,6 +91,7 @@
|
|||||||
"Redirect URLs - Tooltip": "Allowed redirect URL list, supporting regular expression matching; URLs not in the list will fail to redirect",
|
"Redirect URLs - Tooltip": "Allowed redirect URL list, supporting regular expression matching; URLs not in the list will fail to redirect",
|
||||||
"Refresh token expire": "Refresh token expire",
|
"Refresh token expire": "Refresh token expire",
|
||||||
"Refresh token expire - Tooltip": "Refresh token expiration time",
|
"Refresh token expire - Tooltip": "Refresh token expiration time",
|
||||||
|
"Reset to Empty": "Reset to Empty",
|
||||||
"Right": "Right",
|
"Right": "Right",
|
||||||
"Rule": "Rule",
|
"Rule": "Rule",
|
||||||
"SAML metadata": "SAML metadata",
|
"SAML metadata": "SAML metadata",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"File uploaded successfully": "Tệp được tải lên thành công",
|
"File uploaded successfully": "Tệp được tải lên thành công",
|
||||||
"First, last": "Tên, Họ",
|
"First, last": "Tên, Họ",
|
||||||
"Follow organization theme": "Theo giao diện tổ chức",
|
"Follow organization theme": "Theo giao diện tổ chức",
|
||||||
|
"Footer HTML": "Footer HTML",
|
||||||
|
"Footer HTML - Edit": "Footer HTML - Edit",
|
||||||
|
"Footer HTML - Tooltip": "Custom the footer of your application",
|
||||||
"Form position": "Vị trí của hình thức",
|
"Form position": "Vị trí của hình thức",
|
||||||
"Form position - Tooltip": "Vị trí của các biểu mẫu đăng ký, đăng nhập và quên mật khẩu",
|
"Form position - Tooltip": "Vị trí của các biểu mẫu đăng ký, đăng nhập và quên mật khẩu",
|
||||||
"Grant types": "Loại hỗ trợ",
|
"Grant types": "Loại hỗ trợ",
|
||||||
@ -88,6 +91,7 @@
|
|||||||
"Redirect URLs - Tooltip": "Danh sách URL chuyển hướng được phép, hỗ trợ khớp biểu thức chính quy; các URL không có trong danh sách sẽ không được chuyển hướng",
|
"Redirect URLs - Tooltip": "Danh sách URL chuyển hướng được phép, hỗ trợ khớp biểu thức chính quy; các URL không có trong danh sách sẽ không được chuyển hướng",
|
||||||
"Refresh token expire": "Làm mới mã thông báo hết hạn",
|
"Refresh token expire": "Làm mới mã thông báo hết hạn",
|
||||||
"Refresh token expire - Tooltip": "Thời gian hết hạn của mã thông báo làm mới",
|
"Refresh token expire - Tooltip": "Thời gian hết hạn của mã thông báo làm mới",
|
||||||
|
"Reset to Empty": "Reset to Empty",
|
||||||
"Right": "Đúng",
|
"Right": "Đúng",
|
||||||
"Rule": "Quy tắc",
|
"Rule": "Quy tắc",
|
||||||
"SAML metadata": "SAML metadata: Siêu dữ liệu SAML",
|
"SAML metadata": "SAML metadata: Siêu dữ liệu SAML",
|
||||||
|
@ -58,6 +58,9 @@
|
|||||||
"File uploaded successfully": "文件上传成功",
|
"File uploaded successfully": "文件上传成功",
|
||||||
"First, last": "名字, 姓氏",
|
"First, last": "名字, 姓氏",
|
||||||
"Follow organization theme": "使用组织主题",
|
"Follow organization theme": "使用组织主题",
|
||||||
|
"Footer HTML": "Footer HTML",
|
||||||
|
"Footer HTML - Edit": "Footer HTML - Edit",
|
||||||
|
"Footer HTML - Tooltip": "自定义应用的footer",
|
||||||
"Form position": "表单位置",
|
"Form position": "表单位置",
|
||||||
"Form position - Tooltip": "注册、登录、忘记密码等表单的位置",
|
"Form position - Tooltip": "注册、登录、忘记密码等表单的位置",
|
||||||
"Grant types": "OAuth授权类型",
|
"Grant types": "OAuth授权类型",
|
||||||
@ -88,6 +91,7 @@
|
|||||||
"Redirect URLs - Tooltip": "允许的重定向URL列表,支持正则匹配,不在列表中的URL将会跳转失败",
|
"Redirect URLs - Tooltip": "允许的重定向URL列表,支持正则匹配,不在列表中的URL将会跳转失败",
|
||||||
"Refresh token expire": "Refresh Token过期",
|
"Refresh token expire": "Refresh Token过期",
|
||||||
"Refresh token expire - Tooltip": "Refresh Token过期时间",
|
"Refresh token expire - Tooltip": "Refresh Token过期时间",
|
||||||
|
"Reset to Empty": "重置为空",
|
||||||
"Right": "居右",
|
"Right": "居右",
|
||||||
"Rule": "规则",
|
"Rule": "规则",
|
||||||
"SAML metadata": "SAML元数据",
|
"SAML metadata": "SAML元数据",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user